@import url(./base.css);

/******************header*******************/
.inner-page .header-top{}
.header .logo{transition: .3s all;}
.header-top{color: #fff;}
.header{position: sticky;background:#fff; top: 0;width: 100%;z-index: 999;color: #000;backdrop-filter: blur(5px); /* 毛玻璃效果（可选） */transition: all 0.5s ease;box-shadow: 0 2px 10px rgba(0, 0, 0, 0); /* 初始无阴影 */}
.header.scrolled{background:#fff; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 下滑后显示阴影 */}
.header .logo img{ max-height:calc(80*var(--vw))}
header{height:100%;display:flex;color:#000;}
header .logo{font-size: 24px; font-weight: bold;z-index: 999;}
header .menu{align-self: stretch;font-size: 16px;text-transform: capitalize;z-index: 998;}
header .other,header .searchbox{z-index: 998;}
header .menu ul.menu-0{display: flex;align-items: center;gap:calc(55 * var(--vw));height: 100%;}
header .menu ul.menu-0>li.active{color: var(--color-primary);border-bottom: 3px solid var(--color-primary);}
header .menu ul.menu-0>li:hover .dropdown-menu-1{background-color:#fff ;visibility: visible;transform: translate(0%,0px);opacity: 1;     color: #000;}
header .menu ul.menu-0>li{padding: 0% 10px;display: flex;align-items: center;height: 100%;position: relative;}
.header .talkus{ /* 四个点分别对应：左上角、右上角（向内偏移）、右下角、左下角 */
     clip-path: polygon(0px 100%,100% 100%, 100% 0% , 30px 0);
}

@media screen and (max-width: 1550px) {
    header .menu{font-size: 12px;}
    header .menu ul.menu-0>li{padding:0 4px}
}

/* 下拉菜单美化 - 居中并对齐 */
header .menu ul.dropdown-menu-1 {
    flex-direction: column;
    visibility: hidden;
    position: absolute;
    opacity: 0;
    top: 100%;
    left: 50%; /* 居中关键：相对于父元素居中 */
    transform: translateX(-50%) translateY(10px); /* 水平居中 + 初始偏移 */
    width: auto; /* 自动宽度，适应内容 */
    min-width: 180px; /* 最小宽度，避免太窄 */
    transition: all 0.3s ease-out;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 999;
    text-align: center; /* 文本居中 */
}

/* 悬停时显示下拉菜单 */
header .menu ul.menu-0 > li:hover .dropdown-menu-1 {
    visibility: visible;
    transform: translateX(-50%) translateY(0); /* 水平居中 + 无偏移 */
    opacity: 1;
}

/* 下拉菜单项样式 */
header .menu ul.dropdown-menu-1 > li {
    width: 100%;
    text-align: center; /* 确保文本居中 */
    padding: 8px 20px; /* 增加左右 padding */
    transition: all 0.2s ease;
    white-space: nowrap; /* 防止换行 */
}

/* 下拉菜单项悬停效果 */
header .menu ul.dropdown-menu-1 > li:hover {
    background-color: var(--color-secondary);
    color: white;
}

/* 二级下拉菜单（如果有） */
header .menu ul.dropdown-menu-2 {
    position: absolute;
    left: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center; /* 文本居中 */
    color:#333;
}

/* 二级菜单显示效果 */
header .menu li.dropdown-submenu:hover .dropdown-menu-2 {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
header .menu ul.dropdown-menu-2 li{padding:5px 0}
header .menu ul.dropdown-menu-2 li:hover{background-color: var(--color-secondary);color: white;}
/* 当前激活菜单项样式 */
header .menu ul.menu-0 > li{color:#000;}
header .menu ul.menu-0 > li.active {color: #000;border-bottom: 3px solid #fff;}
/* 菜单项悬停效果 */
header .menu ul.menu-0 > li:hover {color: #000;}
.inner-page header .menu ul.menu-0 a{color:#000}
.inner-page header .menu ul.menu-0 li:hover>a{color:var(--color-secondary)}
.inner-page header .menu ul.menu-0 .dropdown-menu-1 li:hover>a{color:#fff}
.inner-page header .lang>dt{color:#000}
.header.inner-page{position: sticky}

/******************banner*******************/
.banner .pic{width: 100%;overflow: hidden;}
.banner .pic img{transition: all 0.5s ease-in-out;}
.banner .swiper-slide-active img {animation: scaleImg 15s ease forwards;}
.banner .swiper-slide-active .pic .wenzi {transform: translateY(0);opacity: 1;transition: all 1s linear;}
.banner img{width: 100%;}
.banner{position: relative;}
.warp{width:calc(1706*var(--vw));margin: 0 auto;}

/*index*/
@keyframes loops {
    from {
        transform:translateX(0%);
    }
    to {
        transform:translateX(-100%);
    }
}
/****************footer**********************/


/******************产品列表页面*******************/



/******************侧边栏*******************/
.leftsearch .form-control,
.leftsearch .input-group-text {  border-radius: 1.5rem; background-color: #fff}
.leftsearch  #search-keyword{  display: block; width: 100%;padding: 0.375rem 0.75rem;font-size: 14px;font-weight: 400;line-height: 1.5;color:#333;background-color: #fff;background-clip: padding-box;border: 1px solid  #999;border-right: none;-webkit-appearance: none;-moz-appearance: none;appearance: none;border-radius: 0.375rem;transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;border-top-right-radius: 0;border-bottom-right-radius: 0;}
.leftsearch .input-group-text{display: flex;align-items: center;padding: 0.375rem 0.75rem;font-size: 1rem;font-weight: 400;line-height: 1.5;color: #333;text-align: center;white-space: nowrap;background-color: #eee;border: 1px solid #999;border-radius: 0.375rem;border-top-left-radius: 0;border-bottom-left-radius: 0;}

.leftborder{border: 1px solid var(--cprimary);}
.leftsidetitle{position: relative;}
.leftsidetitle .title{ position: relative; z-index: 2; line-height: 3.25rem;font-size: 1rem;}
.leftsidetitle .title span{ display: inline-block; margin:0 0;font-size:1rem; font-family: var(--titlefamily); font-weight: 600;}
.leftsidecategorylist ul li{position: relative;border-bottom: 1px solid var(--cprimary);}
.leftsidecategorylist ul li a{ padding: 0.5rem 1rem; line-height: 2rem; display: block;}
.leftsidecategorylist ul li a i{ float: right;line-height: 2rem; }
.leftsidenewslist ul li a{ padding: 0.25rem 1rem; line-height: 2rem; display: block;}
.leftsidekeywordslist ul li{ margin: 0.25rem 0;}
.leftsidekeywordslist ul li a{display: block;text-align: center;font-size: 14px;color:var(--lightWords);line-height: 2rem;border: 1px dashed var(--cprimary);}
.leftsidekeywordslist ul li a:hover {color:var(--hongse); border-color: var(--hongse);}
.leftsidecontactlist{ line-height: 2rem;}

.menuTree ul{}
.menuTree li{line-height:3rem;color:var(--lvse); display:block;position:relative;}
.menuTree li:after{ position:absolute;content: "";display: block;height:1px;width:100%;border-bottom: 1px dashed var(--footerwords);left: 0; top: 2.9375rem;}
.menuTree li a{font-size: 16px;line-height:3rem;height:3rem;overflow:hidden; position:relative;color:var(--color-grey );white-space:nowrap;text-overflow:ellipsis;word-break:break-all;border-bottom:1px dashed #cecccc;padding:0 0.25rem;}
.menuTree li a::before{ display: inline-block;content: ""; height: 1rem; width: 1rem; border: 1px solid var(--color-grey ); margin-right: 0.75rem;}
.menuTree ul li a.active::before{ background-color: var(--color-text );}
.menuTree ul ul a{font-size: 12px;color: #666}
.menuTree li i{    user-select: none; display:block; float:right; color:var(--color-grey ); font-size:24px; width: 20px; height: 45px; line-height: 45px; text-align: center; font-style: normal; position: absolute; top: 0; right: -3px; cursor: pointer;}
.menuTree li.parent>i.parent::after{content: "+"; display: block;}
.menuTree li.parent.expanded>i.parent::after{content: "-"; display: block;}
.menuTree ul li ul li a{line-height:3rem;height:3rem;overflow:hidden;color:var(--color-grey );white-space:nowrap;text-overflow:ellipsis;word-break: break-all; display:block;padding:0 0.25rem 0 2rem;}
.menuTree ul li ul li a:hover,.menuTree ul li a.active{color:var(--color-grey );/*text-decoration:underline;*/}
.menuTree ul li ul li ul li a{padding:0 0.25rem 0 3rem;}
.menuTree ul li ul li ul li ul li a{padding:0 0.25rem 0 3rem;}

/******************关于我们页面*******************/


.abo1 {
    padding: 140px 0;
    background: url(../images/ab_2.jpg) center no-repeat;
    background-size: cover;
}

.abo1 .aox {
    display: flex;
}

.abo1 .aox .alt {
    width: 31%;
}

.abo1 .aox .alt .ul1 {}

.abo1 .aox .alt .ul1 li {
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    margin-bottom: 90px;
}

.abo1 .aox .alt .ul1 li .ico {
    width: 40px;
    padding-bottom: 35px;
}

.abo1 .aox .alt .ul1 li .txt {
    margin-left: 40px;
}

.abo1 .aox .alt .ul1 li .txt .ltt {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-end;
    align-content: flex-end;
}

.abo1 .aox .alt .ul1 li .txt .ltt .num {
    font-size: 60px;
    position: relative;
    bottom: -15px;
}

.abo1 .aox .alt .ul1 li .txt .ltc {
    line-height: 20px;
}

.abo1 .aox .alt .ul1 li:last-child {
    margin: 0;
}

.abo1 .aox .art {
    width: 69%;
    line-height: 1.5;
}

.abo1 .aox .art .atc {
    line-height: 40px;
}

.abo3 {
    padding: 80px 0 100px;
    background: url(../images/ab_3.jpg) center no-repeat;
    background-size: cover;
    text-align: center;
}

.abo3 .tc {
    line-height: 36px;
    margin: 30px 0 60px;
}

.abo3 .ul1 {
    display: flex;
}

.abo3 .ul1 li {
    width: 33.33%;
    height: 480px;
    border: 1px solid #e8e8e8;
    background: url(../images/ab_3_5.png) center no-repeat;
    background-size: cover;
    text-align: center;
    display: flex;
    align-items: center;
    align-content: center;
    padding: 2vw;
}

.abo3 .ul1 li .lox {
    width: 100%;
}

.abo3 .ul1 li .ico {
    position: relative;
    width: 80px;
    margin: 0 auto 30px;
}

.abo3 .ul1 li .ico img {
    display: block;
    width: 100%;
}

.abo3 .ul1 li .ico img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
}

.abo3 .ul1 li .ltt {
    margin: 25px 0;
    color: #000;
}

.abo3 .ul1 li .xian {
    display: block;
    width: 40px;
    height: 2px;
    background: #e4e5e6;
    margin: 30px auto 40px;
}

.abo3 .ul1 li .ltc {
    line-height: 30px;
    margin-top: 15px;
    color: #000;
    height: 60px;
}

.abo3 .ul1 li:hover {
    background: url(../images/ab_3_5b.jpg) center no-repeat;
    background-size: cover;
}

.abo3 .ul1 li:hover .ico img:nth-child(1) {
    opacity: 0;
}

.abo3 .ul1 li:hover .ico img:nth-child(2) {
    opacity: 1;
}

.abo3 .ul1 li:hover .ltt,
.abo3 .ul1 li:hover .ltc {
    color: #fff;
}

.abo4 {
    padding: 80px 0 100px;
    background: url(../images/ab_4.jpg) center no-repeat;
    background-size: cover;
}

.abo4 .tc {
    line-height: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

.abo4 .abx {
    margin-top: 80px;
    position: relative;
}

.abo4 .abx .swiper6 {}

.abo4 .abx .swiper6 .swiper-slide {
    text-align: center;
    line-height: 1.5;
}

.abo4 .abx .swiper6 .swiper-slide .img,
.abo4 .abx .swiper6 .swiper-slide .img img {
    display: block;
    width: 100%;
}

.abo4 .abx .swiper6 .swiper-slide .txt {
    margin-top: 40px;
}

.abo4 .abx .anniu {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.abo4 .abx .anniu .btn {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff url(../images/jt_h.png) center no-repeat;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}

.abo4 .abx .anniu .next6 {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.abo4 .abx .anniu .btn:hover {
    background: #e40012 url(../images/jt_b2.png) center no-repeat;
    border: 1px solid #fff;
}


.abo5_com {
    padding: 80px 0 85px;
    background: #f9f9f9;
}

.abo5_com .jtt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.abo5_com .jtt .jrt {
    display: flex;
}

.abo5_com .jtt .jrt span {
    position: relative;
    height: 40px;
    margin-left: 50px;
    cursor: pointer;
}

.abo5_com .jtt .jrt span s {
    display: block;
    width: 0%;
    height: 3px;
    background: #d61518;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
}

.abo5_com .jtt .jrt span.act s {
    width: 100%;
}

.abo5_com .jtt .jrt span.act,
.abo5_com .jtt .jrt span:hover {
    color: #d61518;
}

.abo5_com .dl1 {
    margin-top: 70px;
}

.abo5_com .dl1 dd {
    display: none;
}

.abo5_com .dl1 dd:nth-child(1) {
    display: block;
}

.abo5_com .dl1 dd .ul1 {
    display: flex;
    flex-wrap: wrap;
}

.abo5_com .dl1 dd .ul1 li .img {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 30px;
}

.abo5_com .dl1 dd .ul1 li .img img {
    display: block;
    width: 100%;
    transform: scale(1.00000001);
    -webkit-transform: scale(1.00000001);
    transition: 300ms all;
}

.abo5_com .dl1 dd .ul1 li .imgc {
    position: absolute;
    left: 0;
    bottom: 0;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #fff;
}

.abo5_com .dl1 dd .ul1 li .imgc .txt {
    min-width: 35%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 15px;
    text-align: center;
    background-color: var(--color-primary);
}

.abo5_com .dl1 dd .ul1 li .imgc .txt .ltc {
    font-weight: 100;
    margin-top: 10px;
    line-height: 1.5;
}

.abo5_com .dl1 dd .ul1 .li1 {
    width: 49.28%;
}

.abo5_com .dl1 dd .ul1 .li2 {
    width: 31.28%;
    align-content: space-between;
    display: flex;
    flex-wrap: wrap;
    margin-right: 3%
}

.abo5_com .dl1 dd .ul1 .li2:nth-child(3n) {
    margin-right: 0;
}

.abo5_com .dl1 dd .ul1 .li3 {
    width: 24.28%;
}

.abo5_com .dl1 dd .ul1 li .img:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
/******************新闻详情页面*******************/

/******************产品详情页面*******************/

.zoomContainer { z-index: 99999;}
.product__wrapper {display: flex;align-items: flex-start;gap: 30px;flex-wrap: wrap;}
.show-product  .likeproductlist  .pic{position: absolute;inset: 0;overflow: hidden;}

/* 容器整体布局 */
.product__details__pic {width: 50%;max-width: 600px;position: relative;}

/* 主图 Swiper */
.productImageSwiper { overflow: hidden; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);}
.productImageSwiper .swiper-slide img {width: 100%;height: auto;transition: transform 0.3s ease-in-out;}
.productImageSwiper .swiper-slide img:hover { transform: scale(1.05);}
.productImageSwiper img {cursor: zoom-in;}
/* 缩略图 Swiper */
.thumbnailSwiper {padding: 10px 2px;}
.thumbnailSwiper .swiper-slide {width: 100px;overflow: hidden;cursor: pointer;transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;}
.thumbnailSwiper .swiper-slide img {width: 100%;height: 100%;object-fit: cover;}
.thumbnailSwiper .swiper-slide-thumb-active {transform: scale(1.01);box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);border: 2px solid var(--color-primary);}

/* Swiper 按钮样式 */
.show-pruduct .swiper-button-next,
.show-pruduct .swiper-button-prev {color: var(--color-primary);border-radius: 50%;width: 36px;height: 36px;display: flex;align-items: center;justify-content: center;transition: background 0.3s ease-in-out;}
.show-pruduct .swiper-button-next:hover,
.show-pruduct .swiper-button-prev:hover {background: var(--color-primary);color: #fff;}

.show-pruduct [thumbsSlider] {padding: 10px;overflow: hidden;position: relative;margin-top:10px;}
/* 隐藏无效的按钮 */
.show-pruduct .swiper-button-disabled {opacity: 0.3;cursor: not-allowed;}

.producttitle,.productcolor{border-bottom: 1px solid var(--qianhuise);}
.productcolor .title{ font-size: 1.125rem;}
.producttitle .modelno{ font-size: 1.875rem; line-height: 120%;}
.producttitle .title{ font-size: 1.875rem; line-height: 120%;}
.producttitle .subtitle{ font-size: 1.875rem; line-height: 120%;}
.productcolor .productcolorlist ul li{ border-radius: 50%; padding: 0.125rem; border: 1px solid var(--white);}
.productcolor .productcolorlist ul li.active{ border-color: var(--words);}
.productcolor .productcolorlist ul li a{   width: 70px; overflow: hidden; line-height: 1.5; display: block; display: block;   text-indent: -9999px}
.product-button button{ background-color: var(--lanse); line-height: 3rem; color: var(--white); border-radius: 0.5rem; font-weight: bold; border: none; overflow: hidden;}
.product-button button:after{content:""; z-index: 1; background-color: var(--hongse);width:0; position: absolute; top: 0; left:0; height: 100%;-webkit-transition:.3s;-moz-transition:.3s;transition:.3s;}
.product-button button:hover:after{width:100% }
.show-product .publish_time{background: #eee;padding: 4px;border-left: 6px solid #999;color: #999;}
.productcolor {margin-top: 20px;}
.productcolorlist a{transition: 0.5s all;display:block;outline: none;}
.productcolorlist a:focus {box-shadow:0px 0px 0px 3px #fff, 0px 0px 0px 5px var(--color); }
.show-product .tab-content{position:relative;opacity:1;transition:all 0.3s ease-in-out;}
/******************新闻列表页面*******************/
.list-article .joudlbox .img {
    height: auto;
    width: 100%;
}
.list-article .joudlbox .img .bg{
    height:100%;
    width: 100%;
    background-size: cover;

    background-repeat: no-repeat;
}
.list-article .joudlbox  .txt {
    background-color: #f6f6f6;
    padding: 40px;
    flex: 1
}
.list-article .joudlbox  .txt .tit-top{
    width: 100%;
    display: flex;
    margin-bottom: 30px;
    justify-content: space-between;
}

.list-article .joudlbox  .txt .tit-top .tipri{
    color: #999999;
    display: flex;
    flex-wrap: nowrap;
    font-family: "din";

}
.list-article .joudlbox .txt .tit-top .tipri img{
    width: 16px;
    margin-right: 5px;
}

.list-article .joudlbox  .txt .tit-text{
    width: 100%;
    line-height: 36px;
    height: 72px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.list-article .joudlbox .hoverbox {
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    position: absolute;
    padding: 8.5%;
    box-sizing: border-box;
    top: 0;
    left: 0;
    transition: all 0.5s;
    background-image: url(../imgs/jou_hoverbackground.png);
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-clip-path: circle(0.0% at 100% 100%);
    clip-path: circle(0.0% at 100% 100%);
}
.list-article .joudlbox:hover .hoverbox {
    -webkit-clip-path: circle(141.4% at 100% 100%);
    clip-path: circle(141.4% at 100% 100%);
}

.list-article .joudlbox   .hoverbox .tip {
    display: flex;
    justify-content: space-between;
    line-height: 20px;
}
.list-article .joudlbox   .hoverbox .tip .tiple{
    color: #fff;
    flex: 1;
}
.list-article .joudlbox   .hoverbox .tip .tipri{
    color: #fff;
    display: flex;
    align-content: center;
    align-items: center;
    font-family: "din";
}
.list-article .joudlbox .hoverbox .tip .tipri img{
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
.list-article .joudlbox .hoverbox .tit-18 {
    line-height: 36px;
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 15px 0;
}
.list-article .joudlbox .hoverbox .tit-14 {
    line-height: 30px;
    color: #fff;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 60px;
}

.list-article .joudlbox   .hoverbox .more {
    position: absolute;
    bottom: 40px;
}

.list-article .joudlbox  .li_button {

    line-height: 30px;
    color: #fff;
    display: none;
    margin-top: 20px;
}
.list-article .joudlbox  .li_button .button {
    width: 240px;
    height: 40px;
    background: none;
    border-radius: 50px;
    line-height: 40px;
    display: flex;
    flex-direction: row;
    padding: 0 10px; box-sizing: border-box;
    cursor:pointer;
    z-index: 2;

}
.list-article .joudlbox  .li_button .button img{
    width: 6px;
    height: 10px;
    margin-top: 15px;
    margin-left: 7px;
    z-index: 2;
}
.list-article .joudlbox  .li_button .button span{
    color: #fff;
    z-index: 2;
}



.list-article .joudlbox:hover .li_button {

    display: block;

}
.list-article .joudlbox:hover .li_button .button:hover {
    width: 240px;
    height: 40px;
    /* background: #e40012; */
    /* border-radius: 50px; */

    line-height: 40px;
    color: #fff;
    display: flex;
    flex-direction: row;
    padding: 0 10px; box-sizing: border-box;
    z-index: 2;

}

.new4 .joubox  .joudlbox:hover .li_button .button:hover span {

    color: #000;


}
.new4 .joubox  .joudlbox .li_button .button .background{
    width: 40px;
    height: 40px;
    /* background: #e40012; */
    /* border-radius: 50px; */
    background: #fff;
    border-radius: 50px;
    position: relative;
    right: 25px;
}
.new4 .joubox  .joudlbox:hover .li_button .button:hover .background{
    width: 110px;
    height: 40px;
    background: #fff;
    border-radius: 50px;
    position: relative;
    right: 95px;

}

.new4 .joubox  .joudlbox:hover  .li_titel {
    height: 72px;
    line-height: 36px;
    margin-bottom: 0px;

}
.new4 .joubox  .joudlbox:hover .li_text {
    display: block;
    margin-top: 20px;
    border-top: 2px solid #cccccc50;

}


/**新闻详情**/

/** weihzi.html **/
.weihzhibg li { position: relative;}
.weihzhibg li::after{position: absolute;content: '';width: 60%; height: 2px;background:var(--color-primary);left: 50%;bottom: -21px; transform: translateX(-50%);visibility: hidden;}
.weihzhibg li.active::after{visibility: visible;}
.weihzhibg li a{display: block;line-height: 2rem;}
.weihzhibg li:not(:last-of-type)::before{content: "";position: absolute;top: 50%;right: 0;width: 2px;height: 13px;background-color: #ddd;z-index: -1;transform: translateY(-50%);}
.mb .active{color:var(--color-primary)}
/*****************list-image.html*******************/

@media screen and (max-width: 768px) {
    .warp{width: 95%!important;min-width: auto;margin: 0 auto;min-width: 0px!important;}
    body{--swiper-navigation-size: 14px; --swiper-theme-color:var(--color-primary);padding-top: 50px;}
    #app{padding-top: 0px;}
    body{padding-bottom:64px}

    /*-----------------------*/
    .abo1{padding:30px 0}
    .abo1 .aox{flex-direction:column-reverse}
    .abo1 .aox .alt .ul1 li .txt .ltt .num{font-size:20px}
    .abo1 .aox .alt .ul1 li .ico{padding-bottom:10px}
    .abo1 .aox .alt .ul1 li .txt{margin:0}
    .abo1 .aox .alt{width:100%}
    .abo1 .aox .alt .ul1{display:flex;justify-content:space-between; align-items: self-start;
    }
    .abo1 .aox .alt .ul1 li{flex-direction:column; align-items: center;     width: 33%; margin-bottom:40px;justify-content: center}
    .abo1 .aox .alt .ul1 li:last-child{margin:unset;margin-bottom:40px}
    .abo1 .aox .art{width:100%}
    .abo3{    padding: 40px 0 ;}
    .abo3 .ul1{display: flex; flex-wrap: wrap;height:500px;overflow:auto}
    .abo3 .ul1 li{width:100%;height:auto;padding:20px}
    .abo3 .ul1 li .ico img{width:40px}
    .abo3 .ul1 li .ltc{height: auto;}
    .abo3 .ul1 li .ico{    margin: 0 auto 10px;width:40px}
    .abo3 .ul1 li .xian{margin: 20px auto;}
    .abo3 .ul1 li:nth-of-type(3){width:100%;height:300px}
    .abo4 .tc{padding: 10px 0;}
    .abo4{padding: 40px 0;}
    .abo4 .abx{margin-top: 20px;}
    .abo5_com{padding:30px 0 ;}
    .abo5_com .dl1 dd .ul1 .li2 {width:100%;margin:0}
    .abo5_com .dl1 dd .ul1{display:grid;gap:10px}
    .abo5_com .dl1 dd .ul1 li .img{margin:0}
    .abo5_com .dl1 dd .ul1 li:last-of-type{display:none}
    .abo5_com .dl1 dd .ul1 li .imgc .txt{padding:5px;font-size:12px}
    .abo5_com .dl1{margin-top:20px}

    .list-article .joudlbox .txt .tit-text{height:auto}
    .list-article .joudlbox .txt{padding:20px}
}



