.banner {
    width: 100%;
    height: 500px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.banner_box {
    display: flex;
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.banner_box li {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.banner_box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.banner_item {
    min-width: 100%;
    position: relative;
}

.banner_box a {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    z-index: 1000;
}

.banner_box a:hover {
    background-color: #e65c00;
}

.hk_num {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hk_num_item {
    width: 30px;
    height: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.hk_num_item.on {
    background-color: #ff6600;
}

/* 关于我们 */

.about {
    width: 1280px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.about_left {
    width: 850px;
}

.aout_right {
    width: 370px;
}

/* 关于我们标题区域 */
.about-header {
    margin-bottom: 30px;
    text-align: center;
}

.about-header h1 {
    font-size: 32px;
    color: #333;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.about-header h2 {
    font-size: 18px;
    color: #666;
    margin: 0 0 20px 0;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gsname {
    padding: 15px 0;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #ff6600;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gsname::before,
.gsname::after {
    content: '';
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(to right,
            #ff6600 0,
            #ff6600 8px,
            transparent 8px,
            transparent 16px);
    margin: 0 20px;
}

/* 公司介绍文本区域 */
.about_txt {
    position: relative;
    margin-bottom: 30px;
    min-height: 400px;
}

.about_txt img {
    width: 200px;
    height: 400px;
    float: left;
    margin-right: 30px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about_tnt {
    margin-left: 310px;
}

.about_tnt p:first-child {
    margin-top: 0;
}

.about_tnt p:last-child {
    position: absolute;
    bottom: 0;
    left: 310px;
    right: 0;
}

.about_tnt strong {
    color: #ff6600;
    font-weight: bold;
}

.abgl {
    color: #ff6600;
    font-weight: bold;
}

/* 公司优势描述 */
.about_ms {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #ff6600;
}

.about_ms p {
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: justify;
}

.highlight {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* 托运须知区域 */
.tyxz {
    display: flex;
    gap: 20px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.tyimg {
    width: 280px;
}

.tyimg img {
    width: 100%;
    height: 295px;
    object-fit: cover;
    margin-bottom: 8px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.tyimg img:hover {
    transform: scale(1.05);
}

.tyxztext {
    flex: 1;
}

.tyxztext h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 8px;
}

.tyxztext p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
    padding-left: 10px;
    position: relative;
}

.tyxztext p:before {
    content: "";
    width: 4px;
    height: 20px;
    border-radius: 3px;
    background: #ff6600;
    color: #ff6600;
    position: absolute;
    left: 0;
    top: 5px;
}

/* 右侧服务项目 */
.servicelist {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    height: 568px;
}

.servicelist h2 {
    color: #333;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 10px;
}

.servicelist .service_tem {
    display: flex;
    margin-bottom: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 6px;
    border-left: 3px solid #ff6600;
    transition: all 0.3s ease;
}

.servicelist .service_tem:hover {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.1);
}

.servicelist .service_tem h3 {
    width: 100px;
    font-size: 14px;
    color: #ff6600;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.servicelist .service_tem p {
    flex: 1;
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* 区域服务 */
.area {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.area h2 {
    color: #333;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 10px;
}

.arealist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.area_item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 6px;
    border-left: 3px solid #ff6600;
    transition: all 0.3s ease;
}

.area_item:hover {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
}

.area_item img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    filter: hue-rotate(20deg);
}

.area_item span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* 线路区域 */
.xianlu {
    width: 1280px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.xlleft {
    width: 650px;
}

.xlright {
    width: 600px;
    display: flex;
    flex-direction: column;
}

.liucheng {
    margin-top: 65px;
}

.xlleft h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 10px;
}

.xlarea {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6600;
}

.xlarea p {
    line-height: 2;
    color: #555;
    margin: 0;
    text-align: justify;
    font-size: 14px;
}

.liucheng ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

.liucheng li {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.liucheng li:hover {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.2);
}

.liucheng li img {
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.liucheng li:hover img {
    transform: scale(1.1);
}

/* 优势标题区域 */
.youshi_tit {
    width: 1280px;
    margin: 40px auto;
    height: 120px;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tit_lfet {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 40px;
    color: white;
}

.tit_lfet::after {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    width: 60px;
    height: 100%;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    transform: skewX(-15deg);
    z-index: 1;
}

.tit_right {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #14a0f7 0%, #0d7bc4 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 20px 40px;
    color: white;
    margin-left: 30px;
}

.tit_right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 60px;
    height: 100%;
    background: linear-gradient(135deg, #14a0f7 0%, #0d7bc4 100%);
    transform: skewX(-15deg);
    z-index: 1;
}

.ysup {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ysup span {
    font-size: 32px;
    color: #ffc107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ysdown {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

.ysdown span {
    font-size: 22px;
    color: #ffc107;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tit_right span {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.ystell {
    font-size: 24px !important;
    font-weight: bold;
    color: #ffc107 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

/* 优势展示区域 */
.ysbox {
    width: 1280px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.ysitem {
    width: 32%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    float: left;
    margin-right: 2%;
    min-height: 230px;
}

.ysitem:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ysitem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6600 0%, #14a0f7 50%, #ff6600 100%);
}

.ysitem img {
    width: 150px;
    height: 200px;
    float: left;
    margin: 15px;
    border-radius: 8px;
}

.ysitem:hover img {
    transform: scale(1.05);
}

.ystext {
    padding: 25px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    margin-left: 180px;
}

.ystext p:first-child {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.ystext p:first-child::before {
    content: '✈';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6600;
    font-size: 16px;
}

.ystext p:last-child {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* 新闻与服务区域 */
.news {
    width: 1280px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
}

.newsbox {
    width: 400px;
}

.zxright {
    width: 850px;
}

/* 新闻标题区域 */
.news_head {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.news_head .star {
    color: #ff6600;
    font-size: 20px;
    margin-right: 10px;
}

.news_head .title {
    font-size: 16px;
    color: #333;
    margin: 0;
    flex: 1;
}

.news_head .more {
    font-size: 14px;
}

.news_head .more a {
    color: #666;
    text-decoration: none;
}

.news_head .more a:hover {
    color: #ff6600;
}

/* 新闻列表 */
.newslist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news_item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

.news_item::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../images/zgta15.jpg');
    background-size: contain;
    margin-right: 8px;
    vertical-align: middle;
    opacity: 0.7;
}

.news_item a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.news_item a:hover {
    color: #ff6600;
}

.news_fuwu {
    width: 100%;
    overflow: hidden;
}

.news_fuwu li {
    float: left;
    list-style: none;
    width: 192px;
    text-align: center;
    margin-right: 20px;
    margin-bottom: 15px;
}

.news_fuwu li:last-child {
    margin-bottom: 0px;
}

.fw_desc {
    width: 100%;
    background: #f0f0f0;
}

.fw_desc span {
    width: 100%;
    display: inline-block;
    font-weight: bold;
    line-height: 30px;
    font-size: 14px;
}

.news_fuwu li img {
    width: 100%;
    height: auto;
}

.fw_desc small {
    line-height: 26px;
    font-size: 13px;
}

.hezuo {
    width: 1280px;
    margin: 40px auto;
    padding: 20px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
}
.hezuo h3 {
    font-size: 16px;
    text-align: center;
    height: 40px;
    line-height: 40px;
}

.hezuo p {
    text-align: center;
    font-size: 14px;
    line-height: 40px;
}
.hezuo_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    width: 100%;
    overflow: hidden;
}

.hezuo_list img {
    width: 140px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.hezuo_list img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}