
@font-face {
    font-family: "Mont";
    src: url(../fonts/font_mot.otf)
}

/* Banner覆盖层样式 */
.index_banner {
    position: relative;
}

.index_banner .carousel-focus {
    position: relative;
}

.index_banner .carousel-focus .item {
    position: relative;
    height: 720px;
    overflow: hidden;
}

.index_banner .carousel-focus .item .banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index_banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.index_banner .banner-overlay .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.index_banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index_banner .banner-text {
    flex: 1;
    max-width: 60%;
}

.index_banner .banner-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.index_banner .banner-title .title-prefix {
    font-size: 72px;
    font-weight: bold;
    color: #222;
    margin-right: 5px;
}

.index_banner .banner-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    display: inline-block;
    padding: 5px 15px;
    background: #c00000;
    color: #fff;
}

.index_banner .banner-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    letter-spacing: 8px;
}

.index_banner .banner-desc:before,
.index_banner .banner-desc:after {
    content: '——';
    margin: 0 10px;
    color: #999;
}

.index_banner .banner-features {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.index_banner .banner-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
}

.index_banner .banner-features .feature-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.index_banner .banner-btn {
    display: inline-block;
    padding: 15px 50px;
    background: #222;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.index_banner .banner-btn:hover {
    background: #444;
    color: #fff;
    text-decoration: none;
}

.index_banner .banner-product {
    flex: 0 0 auto;
    max-width: 45%;
    text-align: right;
}

.index_banner .banner-product img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* 轮播控制按钮样式 */
.index_banner .carousel-control {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    opacity: 1 !important;
    border-radius: 0;
    margin: 0 20px;
    display: flex !important;
    visibility: visible !important;
}

.index_banner .carousel-control.left,
.index_banner .carousel-control.right {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.index_banner .carousel-control:hover {
    background: none !important;
    opacity: 1 !important;
}

.index_banner .carousel-control .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: #666;
    transition: color 0.3s;
}

.index_banner .carousel-control:hover .fa {
    color: #000;
}

.index_banner .carousel-indicators {
    bottom: 30px;
    opacity: 1 !important;
    display: flex !important;
    justify-content: center;
}

.index_banner .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
    opacity: 1 !important;
    display: block !important;
}

.index_banner .carousel-indicators li.active {
    background: #fff;
}

/* Banner响应式 */
@media (max-width: 1200px) {
    .index_banner .banner-title {
        font-size: 32px;
    }
    .index_banner .banner-title .title-prefix {
        font-size: 54px;
    }
    .index_banner .banner-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .index_banner .carousel-focus .item {
        height: 500px;
    }
    .index_banner .banner-content {
        flex-direction: column;
        text-align: center;
    }
    .index_banner .banner-text {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .index_banner .banner-features {
        justify-content: center;
    }
    .index_banner .banner-product {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .index_banner .carousel-focus .item {
        height: 450px;
    }
    .index_banner .banner-title {
        font-size: 20px;
    }
    .index_banner .banner-title .title-prefix {
        font-size: 36px;
    }
    .index_banner .banner-subtitle {
        font-size: 14px;
        padding: 3px 10px;
    }
    .index_banner .banner-desc {
        font-size: 14px;
        letter-spacing: 4px;
    }
    .index_banner .banner-features {
        flex-wrap: wrap;
        gap: 15px;
    }
    .index_banner .banner-features .feature-item {
        font-size: 14px;
    }
    .index_banner .banner-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
    .index_banner .banner-product {
        max-width: 80%;
    }
    .index_banner .banner-product img {
        max-height: 200px;
    }
    .index_banner .carousel-control {
        width: 35px;
        height: 35px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .index_banner .carousel-focus .item {
        height: 400px;
    }
    .index_banner .banner-title {
        font-size: 16px;
    }
    .index_banner .banner-title .title-prefix {
        font-size: 28px;
    }
    .index_banner .banner-product {
        display: none;
    }
}
/* End Banner样式 */

.s_title {
    font-size: 16px;
    color: #333;
}
.index_pro_cate,.index_pro_list{ margin-top: 50px;  }
.index_pro_cate{ padding-bottom: 50px; }
.index_title_title_en .e_text-3 {
    color:#cf3731;
    line-height: normal;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    font-family: Arial;
    font-family: "Mont";
}
.index_title_title .e_text-3 {
    line-height: normal;
    text-align: center;
    font-size: 36px;
    font-family: Arial;
}
.index_title_title .e_line-4 {
    display-radio: 1;
    border-top-style: solid;
    border-top-width: 3px;
    border-top-color: rgba(4, 63, 86, 1);
    width: 36px;
    max-width: none;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.index_title_desc{
    margin-top: 10px;
    margin-bottom: 10px;
    background: url(../new_img/tit_line.png) no-repeat center center;
    text-align: center;
    line-height: 24px; 
    text-align: center; 
    color: rgb(51, 51, 51); 
    font-size:16px;
}
.gallery-cates .cates_li_a{
    display: block;
    position: relative;
}
.gallery-cates .cates_li_a img{
    width: 100%; height:auto;
}
.gallery-cates .cates_li_a .bg{
    position: absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.2);
}
.gallery-cates .cates_li_a h3{
    width: 100%;
    bottom: 0;
    text-align: center;
    font-size: 15px;
    color: #000;
}
.gallery-cates .cates_li_a:hover .bg{
    display: none;
}
.gallery-cates .cates_li_a:hover h3{
    display: block;
}
.pro_cate,.pro_list{ margin-top:50px; }
.index_application{ padding-top:50px; }
.pro_list  .p_list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    max-width: 100%;
}
.pro_list .pro_li_a{
    position: relative;
}
@media screen and (min-width: 769px){
    .pro_list .pro_li_a{
        width: 25%;
    }
}

.pro_list .pro_li_a .pro_li_content{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: auto;
    padding-left: 25px;
    padding-right: 25px;
    margin-left: auto;
    margin-bottom: 30px;
    margin-top: 30px;
    transition-property: all;
    transition-radio: hover;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.25,0.1,0.25,1);
    display-radio: flex;
}
.pro_list .pro_li_a .pro_li_content{
    animation-name: none, none;
    animation-delay: 0.0s, 0.6s;
    animation-duration: 0.6s, 0.6s;
    animation-iteration-count: 1, 1;
}
.pro_list .pro_li_a .pro_li_content .e_line{     
    width: 100%;
    background: #eaeaea;
    height: 3px;
    border-top: none; 
}
.pro_list .pro_li_a .pro_li_content img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: all 0.5s
}

.pro_list .pro_li_a .pro_li_content .e_image {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 0 30px #eaeaea;
    border-radius: 10px;
}
.pro_list .pro_li_a .pro_li_content h3{
    line-height: 1.5;
    font_radio: 2;
    font-size: 15px;
    color: #333;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    display-radio: -webkit-box;
    width:100%;
}


.pro_list .pro_li_a .pro_li_content:hover img {
    transform: scale(1.1)
}

.pro_list .pro_li_a .pro_li_content:hover h3{
    color:#cf3731;
}
.pro_list .pro_li_a .pro_li_content:hover .e_line{
    background: #cf3731;
}

.app_main{ margin-top:60px; display:flex; justify-content: space-between; }
.app_main .app_li{
    position: relative;
    flex: 0 0 auto;
    flex-grow: 0;
    width: 25%;
    flex-shrink: 0;
    flex-basis: calc(100% / 3);
    transition: all .5s ease;
}
.app_main .app_li  .app_li_img{
    max-width: 800px;
    animation-name: none, none;
    animation-delay: 0.0s, 0.6s;
    animation-duration: 0.6s, 0.6s;
    animation-iteration-count: 1, 1;
}
.app_main .app_li  .app_li_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: unset;
}
.app_main .app_li .app_li_desc {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 70%;
    display-radio: flex;
    padding-top: 5%;
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 5%;
    background-color: rgba(240, 130, 0, 0.8);
    position: absolute;
    left: 0;
    z-index: 2;
    bottom: 0;
    top: auto;
    right: auto;
    border-top-right-radius: 50px;
    margin-top: 0px;
}
.app_main .app_li .app_li_desc .app_li_desc_text {
    flex: 1;
    max-width: 100%;
    max-height: 100%;
}
.app_main .app_li .app_li_desc .app_li_desc_text .e_text_title{
    display-radio: 1;
    font_radio: 2;
    color: rgba(255, 255, 255, 1);
    font-size: clamp(0.938rem, 0.597rem + 1.7vw, 1.875rem);
    line-height: 2;
    font-weight: bold;
    margin-bottom: 10px;
}
.app_main .app_li .app_li_desc .app_li_desc_text .e_text_desc{
    display-radio: 1;
    font_radio: 2;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
}

@media screen and (min-width: 769px){
    .app_main .app_li  .app_li_img img {
        width: 100%;
        height: 560px;
        object-fit: cover;
    }
    .app_main .app_li .app_li_desc{
        background-color: rgba(240, 130, 0, 0);
        transition: all .5s ease;
    }
    .app_main .app_li.cur .app_li_desc{
        background-image: linear-gradient(0.0deg, rgba(0, 99, 176, 1) 0.0, rgba(0, 153, 226, 1) 100.0%);
    }

    
    .app_main .app_li:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
        transition: all .5s ease;
    }
    .app_main .app_li.cur:after {
        background: rgba(0, 0, 0, 0);
    }
}

.index_about{
    position: relative;
    min-height: 300px;
    background-color: rgb(248, 248, 248);
    background-attachment: scroll;
    background-position: left top;
    background-repeat: repeat;
    background-image: url('../new_img/about_bg.jpg');
    padding:50px 0;
}
@media screen and (min-width: 769px){
.index_about .e_container-1 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    max-width: none;
    padding-left: 8%;
}

.index_about .e_container-1 > .p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%;
}
.index_about .e_container-1 .cbox-1-0 {
    flex: 0 0 47%;
    padding-top: 0px;
    align-self: center;
}
.index_about .e_container-2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: auto;
    display-radio: flex;
    padding-left: 10px;
    margin-top: 0px;
}
.index_about .e_richText-36 {
    font_radio: 1;
    display-radio: 1;
    margin-top: 30px;
    margin-right: 50px;
}
.index_about .e_container-2 .cbox-2-0 {
    padding-left: 0px;
    padding-right: 10px;
    align-self: center;
}
.index_about .e_text-4 {
    line-height: 1;
    font-size: 46px;
    color: #333;
    font-family: Impact;
}
.index_about .e_text-6 {
    line-height: normal;
    display-radio: 1;
    font_radio: 2;
    font-size: 36px;
    font-family: Microsoft YaHei;
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
}
.index_about .e_container-17 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}
.index_about .e_container-18 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    display-radio: flex;
    transition-property: all;
    transition-radio: hover;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.25,0.1,0.25,1);
    border-left: solid 1px #ffffff38;
    border-bottom: solid 1px #ffffff38;
    border-right: solid 1px #ffffff38;
    border-top: solid 1px #ffffff38;
}
.index_about .e_container-18 .cbox-18-0 {
    padding-left: 30px;
    padding-top: 120px;
    padding-bottom: 120px;
}
.index_about .e_image-19 {
    overflow: hidden;
    display-radio: 1;
    width: auto;
    transition-property: all;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.25,0.1,0.25,1);
    max-width: 73px;
}
.index_about .e_image-19 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.index_about .e_text-20 {
    line-height: normal;
    display-radio: 1;
    font_radio: 2;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding-top: 5px;
    padding-bottom: 10px;
}
}
.index_about .e_text-21 {
    line-height: 2;
    display-radio: -webkit-box;
    font_radio: 2;
    font-size: 14px;
    font-family: Microsoft YaHei;
    color: rgba(255, 255, 255, 1);
    width: 90%;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.index_about .e_text-20, .index_about .e_text-21 {
    transition-property: all;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.25,0.1,0.25,1);
}
.index_about .e_container-17 > .p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%;
}
.index_about .e_container-22 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    display-radio: flex;
    transition-property: all;
    transition-radio: hover;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.25,0.1,0.25,1);
    border-left: solid 0px #ffffff38;
    border-bottom: solid 1px #ffffff38;
    border-right: solid 1px #ffffff38;
    bordr-top: solid 1px #ffffff38;
}
.index_about .e_container-22 > .p_item {
    flex: 1;
    max-width: 100%;
    max-height: 100%;
}
.index_about .e_container-22 .cbox-22-0 {
    padding-left: 30px;
    padding-top: 120px;
    padding-bottom: 120px;
}
.index_about .e_image-23 {
    overflow: hidden;
    display-radio: 1;
    max-width: 73px;
}
.index_about .e_image-23 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.index_about .e_text-24 {
    line-height: normal;
    display-radio: 1;
    font_radio: 2;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding-top: 5px;
    padding-bottom: 10px;
}
.index_about .e_text-24, .index_about .e_text-24 {
    transition-property: all;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.25,0.1,0.25,1);
}
.index_about .e_text-25 {
    line-height: 2;
    display-radio: -webkit-box;
    font_radio: 2;
    font-size: 14px;
    font-family: Microsoft YaHei;
    color: rgba(255, 255, 255, 1);
    width: 90%;
    padding-bottom: 28px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.index_about .e_container-22:hover,.index_about .e_container-18:hover  {
    display-radio: 1;
    background-color: rgba(254, 18, 18, 1);
    background: rgba(160, 77, 47, 0.8);
}

.news_main{
    margin-top:50px;
    position: relative;
}
.news_main .p_list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    max-width: 100%;
}
@media screen and (min-width: 769px){
    .news_main .p_list .p_loopitem {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(100% / 3);
    }
}


.news_main .p_list .p_loopitem {
    flex: 0 0 33.3%;
    position: relative;
}


.news_main .p_list .p_loopitem .e_container-4 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: auto;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 72px;
    margin-top: 0px;
    transition-property: all;
    transition-radio: hover;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.25,0.1,0.25,1);
    display-radio: flex;
}
.news_main .p_list .p_loopitem .e_image-5 {
    overflow: hidden;
    margin-left: 0px;
    display-radio: 1;
    max-height: 250px;
}
.news_main .p_list .p_loopitem .e_image-5 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news_main .p_list .p_loopitem .e_text-8 {
    line-height: normal;
    font_radio: 2;
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    margin-top: 40px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition-property: all;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.25,0.1,0.25,1);
    display-radio: -webkit-box;
    font-weight: bold;
}

.news_main .p_list .p_loopitem .e_timeFormat-9 {
    min-height: 20px;
    font_radio: 2;
    font-size: 14px;
    color: rgba(138, 138, 138, 1);
    margin-top: 8px;
    font-family: Arial;
    line-height: 1;
}
.news_main .p_list .e_line-10 {
    border-top-color: rgba(239, 239, 239, 1);
    border-top-style: solid;
    border-top-width: 1px;
    max-height: 1px;
}
.news_main .p_list .e_text-11 {
    line-height: 1.5;
    font_radio: 2;
    font-size: 14px;
    color: rgba(119, 119, 119, 1);
    margin-top: 20px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0px;
    display-radio: -webkit-box;
}

.news_main .p_list .e_container-4:hover {
    margin-top: -20px;
}

.index_hezuo{
    min-height: 0px;
    display-radio: 1;
    max-height: none;
    padding-top: 30px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: auto;
    background-color: rgba(242, 242, 242, 1);
    padding-bottom: 20px;
    padding-right: 0px;
}
.hezuo_main .hz_img{ margin:10px 0; background:#fff; }
.hezuo_main .hz_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hezuo_main{ padding:30px 0; }

ul.yous_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
ul.yous_list .yous_li{ width:50%; background: rgb(212, 212, 212); }
ul.yous_list li .yous_txt {
    padding: 45px 80px 80px 86px;
}
ul.yous_list .yous_li .yous_img img{ width:100%; }
ul.yous_list li .yous_txt .txt_tit {
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    line-height: 25.2px;
    font-weight: bold;
    color: rgb(67, 67, 67);
}
ul.yous_list li .yous_txt .txt_tit span {
    float: left;
    margin-right: 24px;
}
ul.yous_list li .yous_txt .txt_tit span img {
    display: block;
}
ul.yous_list li .yous_txt .txt_cont {
    margin-top: 10px;
}
ul.yous_list li.yous_li2 .yous_txt, ul.yous_list li.yous_li4 .yous_txt {
    border-left: 6px solid rgb(0, 117, 197);
}

.index_application{
    min-height: 300px;
    background: #f8f9fa;
}

.index_application .index_app_title .e_h3-30 {
    display-radio: 1;
    font_radio: 2;
    font-size: 52px;
    color: rgba(160, 77, 47, 1);
    font-family: "Mont";
}
.index_application .index_app_title .e_text-5 {
    display-radio: 1;
    font_radio: 2;
    font-size: 32px;
    font-family: Microsoft YaHei;
    color: rgba(147, 149, 152, 1);
    line-height: 1.5;
}
.index_app_main {
    margin-top: 60px;
    margin-bottom: 70px;
    overflow: hidden;
}

/* 无限循环滚动样式 */
.application-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.application-scroll-container {
    display: flex;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
}

.application-scroll-container:hover {
    animation-play-state: paused;
}

.app-item {
    flex-shrink: 0;
    width: 280px;
    margin-right: 20px;
}

.app-item-inner {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-item-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.app-item .app-img {
    width: 100%;
    overflow: hidden;
}

.app-item .app-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.app-item-inner:hover .app-img img {
    transform: scale(1.1);
}

.app-item .app-title {
    padding: 15px;
    text-align: center;
}

.app-item .app-title h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.index_app_main .app_floor {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    display-radio: flex;
    margin-top: 0px;
}
.app_floor  .app_li{
    position: relative;
    flex: 1;
    max-width: 100%;
    max-height: 100%;
    padding-right: 10px;
    padding-bottom: 20px;
    overflow: hidden;
}
.app_floor  .app_li.app_li_2{
    padding-left: 10px;
    padding-bottom: 20px;
    padding-right:0;
}

.app_floor  .app_li .e_richText-69 {
    font_radio: 2;
    font-size: 24px;
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    font-family: Microsoft JhengHei;
    margin-top: 40px;
    padding-left: 40px;
    position: absolute;
    top: auto;
    left: 0px;
    z-index: 1;
    bottom: 0px;
    display-radio: 1;
}
.app_floor  .app_li .e_image-70 {
    overflow: hidden;
    max-width: none;
    width: 100%;
    transition: all .5s;
    display-radio: 1;
}
.app_floor  .app_li .e_image-70 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.app_floor2{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-bottom: 0px;
    display-radio: flex;
    width: auto;
}
.app_floor2 .app_li {
    position: relative;
    flex: 0 0 33.33%;
    padding-right: 15px;
    padding-left: 0px;
    padding-bottom: 0px;
    overflow: hidden;
}
.app_floor2 .app_li.app_li_2 {
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 20px;
}

.app_floor2 .app_li.app_li_3 {
    padding-left: 15px;
    padding-right: 0px;
    padding-bottom: 20px;
}

.app_floor2 .app_li .e_richText-69 {
    font_radio: 2;
    font-size: 24px;
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    font-family: Microsoft JhengHei;
    margin-top: 40px;
    padding-left: 40px;
    position: absolute;
    top: auto;
    left: 0px;
    z-index: 1;
    bottom: 0px;
    display-radio: 1;
}
.app_floor2 .app_li .e_image-70 {
    overflow: hidden;
    max-width: none;
    width: 100%;
    transition: all .5s;
    display-radio: 1;
}
.app_floor2 .app_li .e_image-70 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.app_li .app_li_cont{
        background-color: #a04d2f;
    flex: 1;
    max-width: 100%;
    max-height: 100%;
    position: relative;
    overflow: hidden;
}
.app_floor .app_li:hover .e_image-70,.app_floor2 .app_li:hover .e_image-70{
    opacity: 0.2;
    transition: all .5s;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.index_about_main{ margin-top:50px; }
.about_desc_main{
    display: flex;
    justify-content: space-between;
}
.about_desc_main .about_desc{ width:45%; }
.about_desc_main .about_desc .about_d_tit1{ font-size:24px; font-weight:bold; color:#af251b; line-height: 42px; }
.about_desc_main .about_desc .about_d_tit2{ font-size:22px; color:#333; margin:10px 0; } 
.about_desc_main .about_desc .about_d_text{ font-size:15px; }
.about_desc_main .about_desc .about_d_text p{ margin-top:15px; }
.about_desc_main .about_img{ width:50%;  }
.about_desc_main .about_img img{ width:100%; }

/* 关于我们 - 图片叠加效果 */
.about_img .img-overlay-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 60%; /* 4:3 宽高比 */
}

.about_img .img-back,
.about_img .img-front {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 12px;
}

.about_img .img-back {
    height: 80%;
    left: 0;
    top: 0;
    z-index: 1;
}

.about_img .img-front {
    width: 40%;
    right: 0;
    bottom: 0;
    z-index: 2;
    border: 5px solid #fff;
}

.about_img .img-back img,
.about_img .img-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about_desc_ul{
    display:flex; justify-content: space-between; padding:30px 0; margin:30px 0; border-top:1px solid #ddd; border-bottom:1px solid #ddd;
}
.desc_ul_li{
    display: flex;
}


.desc_ul_li .desc_ul_li_img{ 
    width: 45px; 
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.desc_ul_li .desc_ul_li_img img{ max-width:100%; max-height:100%; }
.desc_ul_li .desc_ul_li_img.ul_li_img_1 img{ width:23px; height:23px; }
.desc_ul_li .desc_ul_li_img.ul_li_img_2 img{ width:25px; height:25px; }
.desc_ul_li .desc_ul_li_img.ul_li_img_3 img{ width:25px; height:25px; }
.desc_ul_li .desc_ul_li_text{ margin-left:10px; }
.desc_ul_li .desc_ul_li_text .desc_ul_li_text_nums{ height:42px; line-height:42px; font-size:40px; }

/* 产品分类样式 - Slick Carousel */
.pro_cate {
    position: relative;
    padding: 0;
}

.product-category-slider {
    margin: 0 -10px;
}

.product-category-slider .category-item {
    padding: 0 10px;
    outline: none;
}

.pro_cate .cates_li_a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.pro_cate .cates_li_a:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #ccc;
}

.pro_cate .cate-img {
    height: 280px;
    overflow: hidden;
}

.pro_cate .cate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro_cate .cate-content {
    padding: 15px;
    background: #fff;
}

.pro_cate .cate-content h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pro_cate .cate-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    height: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Slick 箭头样式 */
.pro_cate .slick-prev,
.pro_cate .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 10;
    background: none !important;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
    outline: none;
}

.pro_cate .slick-prev:hover,
.pro_cate .slick-next:hover {
    color: #000;
}

.pro_cate .slick-prev:before,
.pro_cate .slick-next:before {
    display: none;
}

.pro_cate .slick-prev {
    left: -60px;
}

.pro_cate .slick-next {
    right: -60px;
}

.pro_cate .slick-prev i,
.pro_cate .slick-next i {
    font-size: 24px;
}

/* 应用案例 - 无限循环滚动 */
.application-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding:15px 0;
}

.application-scroll-container {
    display: flex;
    gap: 30px;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.application-scroll-container:hover {
    animation-play-state: paused;
}

.app-item {
    flex-shrink: 0;
    width: 280px;
}

.app-item-inner {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: block;
    text-decoration: none;
}

.app-item-inner:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    text-decoration: none;
}

.app-item .app-img {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.app-item .app-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.app-item-inner:hover .app-img img {
    transform: scale(1.05);
}

.app-item .app-title {
    padding: 15px;
    text-align: center;
}

.app-item .app-title h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 新闻区域样式 */
.index_news {
    padding: 60px 0;
}

.index_news .news_main {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.index_news .news_ul {
    flex: 1;
    order: 1;
    display: flex;
    flex-direction: column;
}

.index_news .news_img {
    width: 45%;
    order: 2;
    position: relative;
}

.index_news .news_ul_li {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.index_news .news_ul_li:hover {
    background: rgba(255, 255, 255, 0.5);
    padding-left: 10px;
}

.index_news .news_ul_time {
    width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.index_news .n_time_day {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.index_news .n_time_date {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.index_news .news_ul_title {
    flex: 1;
    padding-left: 20px;
}


.index_news .news_ul_title .n_title a {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.index_news .news_ul_title .n_title a:hover {
    color: #007bff;
}

.index_news .news_ul_title .n_desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index_news .news_img_img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
}

.index_news .news_img_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.index_news .news_img_title {
    position: absolute;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.index_news .news_img_title .n_title a {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.index_news .news_img_title .n_title a:hover {
    color: #f0f0f0;
}

.index_news .news_img_title .n_time {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.index_news .news_img_title .n_desc {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* 底部二维码样式 */
.qrcode-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 150px;
    height: 150px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 5px;
    background: #fff;
    display: block;
    margin: 0 auto;
}

.qrcode-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* ========================================
   关于我们页面样式
   ======================================== */

/* 导航栏咨询热线样式 */
.hotline-container {
    padding: 15px 20px !important;
    display: flex !important;
}

.hotline-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hotline-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.hotline-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

/* 默认状态（没选中）：第一张图显示（白色图标），第二张图隐藏 */
.hotline-icon img:first-child {
    opacity: 1;
}

.hotline-icon img:last-child {
    opacity: 0;
}

/* hover状态（选中）：第一张图隐藏，第二张图显示（彩色图标） */
header:hover .hotline-icon img:first-child,
header.hover .hotline-icon img:first-child {
    opacity: 0;
}

header:hover .hotline-icon img:last-child,
header.hover .hotline-icon img:last-child {
    opacity: 1;
}

.hotline-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

/* 默认状态（没选中）：标题和电话都是白色 */
.hotline-label {
    font-size: 12px;
    color: #fff;
    transition: color 0.3s ease;
}

.hotline-number {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s ease;
}

/* hover状态（选中）：标题变红色，电话变黑色 */
header:hover .hotline-label,
header.hover .hotline-label {
    color: #c00000;
}

header:hover .hotline-number,
header.hover .hotline-number {
    color: #333;
}

/* 响应式：移动端隐藏热线 */
@media (max-width: 768px) {
    .hotline-container {
        display: none;
    }
}

.about_page .company_title {
    text-align: left;
    padding: 30px 0 25px;
}
.about_page .title_line{
    width: 100px;
    height:3px; background: #c00000;
}
.about_page .company_name_en {
    font-size: 32px;
    font-weight: bold;
    color: #c00000;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}

.about_page .company_name_zh {
    font-size: 26px;
    color: #333;
    margin: 0;
}

.about_page .company_intro {
    padding: 20px 0 0;
}

.about_page .company_intro .article-content {
    font-size: 14px;
    line-height: 2.2;
    color: #666;
}

.about_page .company_intro .article-content p {
    margin-bottom: 20px;
    text-align: justify;
}

/* 图片自动平均分配 - 1张100%，2张各半 */
.about_page .company_intro .article-content .img-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.about_page .company_intro .article-content .img-row img {
    flex: 1;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.about_page .value_section {
    padding: 20px 0 30px;
}

.about_page .value_title {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.about_page .value_desc {
    font-size: 14px;
    line-height: 2.2;
    color: #666;
    text-align: justify;
}

.about_page .stats_section {
    padding: 50px 0;
}

/* 两张图片并排 */
.about_page .about_images {
    padding: 20px 0 40px;
}

.about_page .about_images .img-row {
    display: flex;
    gap: 20px;
}

.about_page .about_images .img-row img {
    flex: 1;
    width: 50%;
    height: 300px;
    object-fit: cover;
}

.about_page .stats_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about_page .stat_item {
    text-align: left;
    flex: 0 0 18%;
    min-width: 140px;
}

.about_page .stat_number {
    font-size: 52px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.about_page .stat_unit {
    font-size: 24px;
    font-weight: normal;
    margin-left: 2px;
    vertical-align: top;
}

.about_page .stat_desc {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.about_page .bottom_images {
    padding: 40px 0 60px;
    overflow: hidden;
}

.about_page .bottom_images .application-scroll-wrapper {
    margin: 0 -15px;
}

.about_page .bottom_images .app-item {
    width: 320px;
    margin-right: 20px;
}


.about_page .bottom_images .app-item-inner {
    border-radius: 0;
}

.about_page .bottom_images .row {
    margin: 0 -10px;
}

.about_page .bottom_images .col-md-6 {
    padding: 0 10px;
}

.about_page .image_wrapper {
    overflow: hidden;
    margin-bottom: 20px;
}

.about_page .image_wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .about_page .company_name_en {
        font-size: 24px;
    }
    
    .about_page .company_name_zh {
        font-size: 20px;
    }
    
    .about_page .stat_item {
        flex: 0 0 48%;
        margin-bottom: 30px;
    }
    
    .about_page .stat_number {
        font-size: 40px;
    }
    
    .about_page .stat_unit {
        font-size: 18px;
    }
    
    .about_page .company_intro .article-content,
    .about_page .value_desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .about_page .stat_item {
        flex: 0 0 100%;
    }
}

/* list_cate 分类导航样式 - 自动平均分配 */
.list_cate {
    width: 100%;
    margin-bottom: 20px;
}

.list_cate .list_cate_wrap {
    width: 100%;
}

.list_cate .cate_list {
    display: flex;
    width: 100%;
}

.list_cate .cate_item {
    flex: 1;
    text-align: center;
    background: #f5f5f5;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.list_cate .cate_item:last-child {
    border-right: none;
}

.list_cate .cate_item a {
    display: block;
    padding: 15px 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.list_cate .cate_item:hover {
    background: #af251b;
}

.list_cate .cate_item:hover a {
    color: #fff;
}

.list_cate .cate_item.cur {
    background: #af251b;
}

.list_cate .cate_item.cur a {
    color: #fff;
}

/* 服务领域页面样式 */
.service_page {
    padding: 60px 0;
}

.service_header {
    text-align: center;
    margin-bottom: 50px;
}

.service_title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin: 0 0 30px;
}

.service_intro {
    font-size: 14px;
    line-height: 2;
    color: #666;
    text-align: justify;
}

.service_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service_item {
    flex: 0 0 calc(33.333% - 20px);
    text-align: center;
    background: #fff;
    padding: 20px;
}

.service_img {
    overflow: hidden;
    border-radius: 8px;
}

.service_img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service_icon {
    position: relative;
    padding: 20px 0;
    text-align: center;
}

.service_icon .icon_circle {
    position: relative;
    z-index: 1;
    display: inline-block;
    color: #af251b;
}

.service_icon .icon_name {
    font-size: 18px;
    font-weight: bold;
    color: #af251b;
}

.service_icon .icon_line {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px dashed #ccc;
}

.service_name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px;
}

.service_name a {
    color: #333;
    text-decoration: none;
}

.service_name a:hover {
    color: #af251b;
}

.service_desc {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    text-align: left;
    padding-top: 20px;
}

/* 响应式 */
@media (max-width: 992px) {
    .service_item {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .service_item {
        flex: 0 0 100%;
    }
    
    .service_title {
        font-size: 28px;
    }
}

/* 新版底部样式 */
.new_footer {
    background: #212121;
}

.new_footer .footer_main {
    padding: 50px 0;
}

.new_footer .footer_content {
    display: flex;
}

.new_footer .footer_left {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.new_footer .footer_nav_col {
    flex: 1;
    min-width: 0;
}

.new_footer .footer_nav_title {
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    margin: 0 0 15px;
}

.new_footer .footer_nav_line {
    width: 30px;
    height: 2px;
    background: #666;
    margin-bottom: 20px;
}

.new_footer .footer_nav_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new_footer .footer_nav_list li {
    margin-bottom: 12px;
}

.new_footer .footer_nav_list a {
    color: #bbb;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.new_footer .footer_nav_list a:hover {
    color: #fff;
}

.new_footer .footer_divider {
    width: 1px;
    margin: 0 40px;
    position: relative;
}

.new_footer .footer_divider .divider_red {
    width: 3px;
    height: 30px;
    background: #af251b;
    position: absolute;
    top: 0;
    left: -1px;
}

.new_footer .footer_divider .divider_line {
    width: 1px;
    height: 100%;
    background: #444;
}

.new_footer .footer_right {
    width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.new_footer .footer_contact {
    margin-bottom: 30px;
}

.new_footer .footer_logo {
    display: flex;
    align-items: center;
}



.new_footer .footer_company {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.new_footer .footer_phone {
    font-size: 28px;
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.new_footer .footer_info p {
    color: #bbb;
    font-size: 13px;
    margin: 0 0 5px;
}

.new_footer .footer_qrcode {
    display: flex;
}

.new_footer .qrcode_item {
    text-align: center;
}

.new_footer .qrcode_item img {
    width: 100px;
    height: 100px;
    background: #fff;
    padding: 5px;
}

.new_footer .qrcode_item p {
    color: #fff;
    font-size: 12px;
    margin: 10px 0 0;
}

.new_footer .footer_bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
}

.new_footer .footer_bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new_footer .footer_copyright,
.new_footer .footer_beian {
    color: #666;
    font-size: 13px;
}

.new_footer .footer_copyright a,
.new_footer .footer_beian a {
    color: #666;
}

/* 响应式 */
@media (max-width: 992px) {
    .new_footer .footer_content {
        flex-wrap: wrap;
    }
    
    .new_footer .footer_left {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .new_footer .footer_divider {
        display: none;
    }
    
    .new_footer .footer_right {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .new_footer .footer_left {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .new_footer .footer_divider {
        display: none;
    }
    
    /* 手机端显示水平分割线 */
    .footer_divider_horizontal {
        display: block !important;
    }
    
    /* 手机端：三个栏目各占一排 */
    .new_footer .footer_nav_col {
        flex: 0 0 100% !important;
        margin-bottom: 20px;
    }
    
    /* 快捷导航：一行多个，多了换行 */
    .new_footer .footer_nav_list:not([style*="flex-wrap"]) {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .new_footer .footer_nav_list:not([style*="flex-wrap"]) li {
        margin-bottom: 8px;
        margin-right: 15px;
    }
    
    /* 产品服务：一行两个 */
    .new_footer .footer_nav_list[style*="flex-wrap"] {
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .new_footer .footer_nav_list[style*="flex-wrap"] li {
        width: calc(50% - 8px) !important;
        margin-right: 0;
    }
    /* 水平分割线 */
    .footer_divider_horizontal {
        width: 100%;
        height: 1px;
        background: #444;
        margin: 20px 0;
    }
    
    .new_footer .footer_bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* List Banner 样式 */
.list_banner {
    position: relative;
    overflow: hidden;
}
.list_banner img { 
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}
.list_banner_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: rgba(0,0,0,0.35);
}
.list_banner_overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.05) 1px,
        transparent 1px,
        transparent 3px
    );
}
.list_banner_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}
.list_banner_tit {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.list_banner_tit::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #fff;
    margin: 15px auto 0;
}
.list_banner_txt .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.list_banner_txt .breadcrumb li,
.list_banner_txt .breadcrumb li a,
.list_banner_txt .breadcrumb li i {
    color: rgba(255,255,255,0.9) !important;
}
.list_banner_txt .breadcrumb li a:hover {
    color: #fff !important;
}
.list_banner_txt .breadcrumb > li + li::before {
    color: rgba(255,255,255,0.7);
}
