@charset "utf-8";


.banner-bg img {
    width: 100%;
    height: 85vh;
}

.banner-bg {
    position: relative;
    height: 80vh;
}

.banner-bg::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    content: "";
}

.banner-con {
    position: absolute;
    ;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.banner-con .contain {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-con .title {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s .1s ease;
    line-height: 1.3;
}

.banner-con .comMore-box {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease;
}

.swiper-slide-active .banner-con .title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .8s;
}

.swiper-slide-active .banner-con .comMore-box {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .9s;
}

.swiper-slide-active.first .banner-con .title {
    transition-delay: 0s;
}

.swiper-slide-active.first .banner-con .comMore-box {
    transition-delay: .1s;
}

.banner-pagination-box {
    position: absolute;
    left: 0;
    bottom: 35px;
    width: 100%;
    z-index: 2;
}

.banner-pagination .swiper-pagination-bullet {
    margin-left: 3px;
    width: 36px;
    height: 36px;
    position: relative;
    background: transparent;
    opacity: 1;
    border-radius: 0;
}

.banner-pagination .swiper-pagination-bullet:first-child {
    margin-left: 0;
}

.banner-pagination .swiper-pagination-bullet::before {
    transition: all .4s ease;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
}

.banner-pagination .swiper-pagination-bullet::after {
    content: "";
    opacity: 0;
    transition: all .6s ease;
    animation: banPage 2s linear infinite;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner-pagination.png') no-repeat center/100% auto;
}

.banner-pagination .swiper-pagination-bullet-active::before {
    background: #fff;
    width: 8px;
    height: 8px;
}

.banner-pagination .swiper-pagination-bullet-active::after {
    opacity: 1;
}

@keyframes banPage {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}


.index_aBg {
    width: 100%;
    background-image: url(../images/sec-bgi.png);
    /* background-position: center top -400%; */
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.index_a {
    margin: 0 auto;
    padding: 50px 0 100px 0;
}

.index_a h1 {
    font-size: 80px;
    font-weight: bold;
    color: #58B531;
    margin-bottom: 20px;
    font-family: 'Montserrat-B';
    -webkit-text-stroke: 1px #c7c7c7;
    text-shadow: 0 5px 5px rgb(0 0 0 / 30%);
}

.index_a h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.index_a h2 span {
    color: #58B531;
    font-size: 35px;
}

.index_a p {
    width: 80%;
}

.index_a a {
    background: #a7a7a7;
    padding: 8px 40px;
    color: #fff;
    margin: 30px 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease;
}

.index_a a i {
    margin-left: 10px;
    transition: all .4s ease;
    font-size: 14px;
}

.index_a a:hover {
    background: #58B531
}

.index_a a:hover i {
    margin-left: 20px;
}

.index_a ul:nth-child(1) {
    text-align: center;
    margin-bottom: 60px;
    line-height: 30px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.index_a ul:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.index_a ul li {
    width: 20%;
    float: left;
    text-align: center;
    border-left: 1px solid #eee;
    box-sizing: border-box;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.index_a ul li:nth-child(5) {
    border-right: 1px solid #eee;
}

.index_a ul li font {
    display: block;
    font-size: 44px;
    line-height: 40px;
    color: #000;
    margin-bottom: 10px;
}

.index_a ul li font span {
    font-size: 14px;
    color: #aaa;
    margin-left: 5px;
}


.ind_title {
    font-size: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ind_title p {
    width: 100%;
}

.ind_title p:nth-child(2) {
    font-size: 16px;
}

.ind_title span {
    color: var(--main-color);
}


.ind_b {
    background-image: url(../images/ind_bBg.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
}

.ind_b ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
    align-items: self-start;
    width: 100%;
    margin-top: 80px;
}

.ind_b ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ind_b ul li .ib_box {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    text-align: center;
    border: 2px solid #d6eecb;
    border-radius: 50%;
    font-size: 60px;
    line-height: 155px;
    display: inline-block;
    color: #090909;
    margin: 0 0 36px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ind_b ul li .ib_box i {
    color: #fff;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 40px;
    padding-top: 5px;
}

.ind_b ul li .ib_box:hover i {
    /* filter: brightness(0) invert(1) */
}


.ind_b ul li .ib_box span {
    position: absolute;
    right: 0;
    top: -6px;
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    font-size: 18px;
    font-weight: 500;
    color: var(--main-color);
    line-height: 50px;
    -webkit-box-shadow: 0 15px 40px 0 rgba(0, 0, 0, .09);
    -moz-box-shadow: 0 15px 40px 0 rgba(0, 0, 0, .09);
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, .09)
}

.ind_b ul li .ib_box:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    background: var(--main-color);
    border-radius: 50%;
    z-index: -1;
    width: calc(100% - 38px);
    height: calc(100% - 38px);
    visibility: hidden;
    opacity: 0;
    transform: scale(.8);
    -moz-transform: scale(.8);
    -webkit-transform: scale(.8);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.ind_b ul li h3 {
    font-size: 24px;
    line-height: 26px;
    font-weight: 500;
    margin: 0 0 16px;
    color: #fff;
}

.ind_b ul li p {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
}

.ind_b ul li:hover .ib_box {
    border-color: var(--main-color)
}

.ind_b ul li:hover .ib_box i {
    color: #fff;
    transform: scale(.9);
    -moz-transform: scale(.9);
    -webkit-transform: scale(.9)
}

.ind_b ul li:hover .ib_box:after {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1)
}



.more_2 {
    width: 3.125rem;
    height: 3.125rem;
    line-height: 3.125rem;
    text-align: center;
    border-radius: 50%;
    background: #F8F8F8;
    display: inline-block;
    z-index: 2;
    position: relative;
}

.more_2 .iconfont {
    font-size: 1.25rem;
    display: block;
    color: #000000;
}

.more_2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    border-radius: 50%;
    background: #54BCB7;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    z-index: -1;
}

.more_2:hover::before {
    transform: scale(0.8);
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.more_2:hover .iconfont {
    color: #fff;
}

/* .ind_c .list2 .swiper-slide:nth-child(2) .right,
.ind_c .list2 .swiper-slide:nth-child(4) .right {
    bottom: 1rem;
} */

/* .ind_c .list2 .swiper-slide:nth-child(2) img,
.ind_c .list2 .swiper-slide:nth-child(4) img {
    width: 75%;
} */

.ind_c .list2 .swiper-slide img {
    width: 100%;
}

.ind_c .list2 .swiper-slide .clearfix .left {
    z-index: -2;
}

.suqer_pro.swiper-slide {
    padding: 0.375rem;
    border-radius: 1.25rem;
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.suqer_pro.swiper-slide.height_pro {
    height: 34.5rem;
}

.suqer_pro.swiper-slide.height_pro>a {
    height: 100%;
}

.suqer_pro.swiper-slide.height_pro>a>div {
    height: 100%;
    z-index: 7;
}

.suqer_pro.swiper-slide:hover {
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    filter: drop-shadow(0 0 0.25rem rgba(0, 0, 0, 0.2));
}

.suqer_pro.swiper-slide:hover .name {
    color: var(--main-color);
}

.suqer_pro.swiper-slide:hover .more_2::before {
    background: #205c06;
    transform: scale(0.8);
    transition: all 0.4s;
    -webkit-transform: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.suqer_pro.swiper-slide a {
    background: #f3f3f3;
    border-radius: 1.25rem;
    padding: 2.5rem 1.25rem 1.25rem 1.875rem;
}

.suqer_pro.swiper-slide a .text18 {
    margin: 0.75rem 0 0.3125rem;
}

.suqer_pro.swiper-slide a .clearfix {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.suqer_pro.swiper-slide a .clearfix .left {
    padding-bottom: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
}

.suqer_pro.swiper-slide a .clearfix .right {
    position: absolute;
    bottom: 10rem;
    right: 0;
    z-index: -1;
}

.suqer_pro.swiper-slide a .clearfix .right .bl {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ind_c .jiantou {
    position: static;
    bottom: 0;
    top: auto;
    transform: translateY(0);
    margin-top: 0;
}

.ind_c .container2 .hover {
    margin-top: 3.125rem;
    display: flow-root;
}

.ind_c .container2 .swiper-button-next {
    margin-left: 1.25rem;
}

.ind_c .container2 .swiper-pagination {
    width: calc(100% - 7rem - 3.125rem - 1.25rem);
    height: 0.125rem;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 1.5625rem;
}

.ind_c .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--main-color);
    height: 0.25rem;
    top: -1px;
}

.ind_c .swiper-button-next.swiper-button-disabled,
.ind_c .swiper-button-prev.swiper-button-disabled {
    opacity: 0.6;
}

.suqer_pro .name {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 3.125rem;
    color: #333;
}

.suqer_pro .name.c {
    color: #a6ce95;
}

.suqer_pro .text18 {
    font-size: 1.125rem;
    line-height: 1.625rem;
    font-weight: 600;
    color: #000000;
}

.suqer_pro .text {
    color: rgba(0, 0, 0, 0.6);
}

.suqer_pro .number {
    font-family: 'Montserrat-B';
    font-size: 7.5rem;
    line-height: 0.8;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(84, 188, 183, 0.2);
    color: transparent;
    position: absolute;
    bottom: -18px;
}

.suqer_pro .more_2 {
    position: absolute;
    bottom: -0.5rem;
    left: 0.125rem;
    background: var(--main-color);
}

.suqer_pro .more_2 .iconfont {
    color: #fff;
}

.suqer_pro .more_2::before {
    background: #54BCB7;
}

.suqer_pro .more_2:hover {
    background: var(--main-color);
}

.jiantou {
    width: 3.5rem;
    height: 3.5rem;
    text-align: center;
    line-height: 3.5rem;
    background: #F8F8F8;
    border-radius: 50%;
    margin-top: 0;
    transform: translateY(-50%);
}




.index_appBox {
    background-color: #f4f9fb;
    width: 100%;
}

.index_app {
    margin-bottom: 3vw;
}



.index_app-ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.index_app-ul li {
    /* width:calc(100% / 8); */
    width: calc(100% / 5);
    border-right: 1px solid #fff;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: all .3s;
    position: relative;

}

.index_app-ul li .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.index_app-ul li .index_app_w {
    background-image: linear-gradient(180deg, rgba(73, 183, 174, 0.00) 48%, rgba(88, 181, 49, 0.1) 80%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 3vw;
    color: #fff;
    opacity: 0;
    transition: all .3s;
}

.index_app-ul li.active .index_app_w {
    opacity: 1;
}

.index_app_w i {
    font-size: 70px;
}

.index_app_w p {
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    width: 80%;
}

.index_app-ul li .index_app_b {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s;
}

.index_app-ul li.active .index_app_b {
    opacity: 0;
}

.index_app_b i {
    font-size: 40px;
    color: var(--main-color)
}

.index_app-ul li.active {
    /* width: 60% !important; */
    width: 40% !important;
}

.index_app-ul li::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    position: absolute;
}

.index_app-ul .active::before {
    background: rgba(0, 0, 0, 0.2);
}


.box-4 .swiper-container {
    padding: .7rem 0;
}

.box-4 .swiper-container:first-child {
    padding-top: 2.16rem;
}

.box-4 .swiper-container:last-child {
    padding-bottom: 2.16rem;
}

.box-4 .swiper-slide {
    background-color: #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(5, 8, 15, 0.07);
    border-radius: 10px;
}

.box-4 .swiper-slide a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 9vw;
}

.box-4 .swiper-slide img {
    /* height: 1.9rem; */
    object-fit: contain;
    max-width: 60%;
    max-height: 60%;
}

.ind_news {
    width: 100%;
    background: #f8f8f8;
}

.index_news {
    height: auto;
    overflow: hidden;
}

.index_news h1 {
    margin-bottom: 10px;
    color: #003F98;
    font-weight: bold;
}

.index_news dd {
    position: absolute;
    top: 0px;
    left: 20px;
    font-size: 80px;
    line-height: 80px;
    color: #fff;
    z-index: -1;
    -webkit-text-stroke: 1px #dbdbdb;
    letter-spacing: 2px;
}

.index_news ul:nth-child(1) {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
}

.index_news ul ol {
    width: 50%;
    float: left;
}

.index_news ul ol .news_jj {
    line-height: 20px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 40px;
    font-size:14px;
}

.index_news ul ol .index_about_title {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
}

.index_news ul ol .index_about_title h2 {
    font-size: 30px;
    padding-top: 10px;
}

.index_news ul ol .index_about_title h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
}

.index_news ul ol .index_about_title dd {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 80px;
    line-height: 80px;
    color: #fff;
    z-index: -1;
    -webkit-text-stroke: 1px #eee;
    letter-spacing: 2px;
}

.index_news ul ol:nth-child(2) {
    text-align: right;
}

.index_news ul ol:nth-child(2) a {
    border: 1px solid #003F98;
    color: #003F98;
    width: 100px;
    text-align: center;
    padding: 5px 15px;
    margin-top: 30px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.index_news ul {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.index_news ul li {
    width: calc(50% - 35px);
    float: left;
    margin-right: 70px;
    position: relative;
}

.ind_news_leftImg {
    height: 410px;
    overflow: hidden;
}

.ind_news_leftImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.ind_news_leftImg img:first-child {
    display: block;
}

.index_news ul li:nth-child(2) {
    margin-right: 0;
}

.ind_newsMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.ind_newsMenu a {
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    padding: 8px 20px;
    margin: 0 12px;
}

.ind_newsMenu a.on {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
}

.ind_newsMenu a:hover {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
}

.ind_newsList {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
}

.ind_newsBox .ind_newsList:first-child {
    display: flex;
}

.index_news ul li dd {
    position: absolute;
    bottom: 0;
    width: calc(100% - 40px);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    color: #fff;
    font-size: 18px;
}

.index_news ul li dd span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}

.index_news ul li dl {
    border-bottom: 1px solid #ddd;
    padding-bottom: 17px;
    margin-bottom: 17px;
    cursor: pointer;
    font-size: 12px;
    overflow: hidden;
    padding: 10px;
    width: 100%;
}

.ind_newsList dl:last-child {
    margin-bottom: 0;
}

.index_news ul li dl:hover span {
    color: var(--main-color);
}

.index_news ul li dl span {
    font-size: 18px;
    color: #000;
    width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index_news ul li dl div ol:nth-child(1) {
    float: left;
    width: 80%;
    font-size: 13px;
}

.index_news ul li dl div ol:nth-child(2) {
    float: left;
    width: 15%;
    margin-left: 5%;
    font-size: 14px;
    text-align: center;
    background-color: #fff;
}

.index_news ul li dl div ol font {
    font-size: 30px;
    line-height: 50px;
    background-color: var(--main-color);
    width: 100%;
    display: block;
    height: 50px;
    color: #fff;
}


/* 侧边栏 */
.side-view {
    display: none;
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    user-select: none;
    cursor: pointer;
}

.side-view i {
    transition: all .4s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .2);
}

.side-view i img {
    max-width: 50%;
    max-height: 50%;
}

.sideCta {
    font-size: 12px;
    transition: all .4s ease;
    width: 75px;
    height: 112px;
    border-radius: 40px;
    flex-direction: column;
}

.sideCta span {
    display: block;
    margin-top: 7px;
}

.sideTop {
    margin-top: 10px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    transition: all .4s ease;
}

.sideCta:hover,
.sideTop:hover {
    background: #F39902;
}

.sideCta:hover i,
.sideTop:hover i {
    background: rgba(255, 255, 255, .5);
}

/* 侧边栏弹窗 */
.ctaPop-box {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 99999;
}

.ctaPop {
    position: absolute;
    width: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 60px;
    user-select: none;
    cursor: pointer;
}

.ctaPop-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    font-size: 15px;
}

.ctaPop-close i {
    display: block;
    transition: all .4s ease;
}

.ctaPop-close:hover {
    background: var(--main-color);
}

.ctaPop-close:hover i {
    transform: rotate(180deg);
}

.ctaPop-form {
    justify-content: space-between;
}

.ctaPop-form-item {
    width: 48%;
}

.ctaPop-form-item.w100 {
    width: 100%;
}

.ctaPop-form-item .title span {
    display: inline-block;
    margin-right: 4px;
}

.ctaPop-form-item input {
    width: 100%;
    height: 50px;
    background: transparent;
    padding-left: 18px;
    border: 1px solid #d1d8de;
}

.ctaPop-form-item input::-webkit-input-placeholder {
    color: inherit;
}

.ctaPop-form-item textarea {
    width: 100%;
    height: 110px;
    background: transparent;
    padding: 14px 0 0 18px;
    border: 1px solid #d1d8de;
}

.ctaPop-form-select {
    user-select: none;
    cursor: pointer;
}

.ctaPop-form-menu {
    height: 50px;
    border: 1px solid #d1d8de;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
    transition: all .4s ease;
}

.ctaPop-form-menu::after {
    content: "\e727";
    font-family: 'icon';
    display: block;
    color: #666;
    font-size: 13px;
    transform: rotate(180deg);
    transition: all .4s ease;
}

.ctaPop-form-menu.active {
    border-radius: 10px 10px 0 0;
}

.ctaPop-form-menu.active::after {
    transform: rotate(0);
}

.ctaPop-form-drop {
    border: 1px solid #d1d8de;
    border-top: unset;
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    z-index: 10;
    border-radius: 0 0 10px 10px;
    padding: 10px 14px;
}

.ctaPop-form-drop .item {
    padding: 5px 0;
}

.ctaPop-form-drop .item:hover {
    color: var(--main-color);
}

.ctaPop-form-code {
    justify-content: space-between;
    align-items: center;
}

.ctaPop-form-code .code-left {
    width: 52%;
    justify-content: space-between;
}

.ctaPop-form-item .ctaPop-form-code input {
    width: 65%;
}

.ctaPop-form-code .img {
    width: 31%;
    user-select: none;
    cursor: pointer;
}

.ctaPop-form-code .img img {
    width: 100%;
    height: 50px;
}

.ctaPop-form-code .code-btn {
    width: 21.5%;
    height: 50px;
    border-radius: 40px;
    user-select: none;
    cursor: pointer;
}

.ctaPop-form-code .code-btn i {
    display: block;
    margin-left: 25px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(180deg);
    transition: transform .4s ease;
}

.ctaPop-form-code .code-btn:hover {
    background: var(--main-color);
}

.ctaPop-form-code .code-btn:hover i {
    transform: translateX(4px) rotate(180deg);
}



.n_banner {
    width: 100%;
    min-width: 1400px;
    padding: 0 8vw;
    height: 55vh;
    display: flex;
    -webkit-display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    background-size: cover;
    background-position: center;
}

.n_banner ul {
    width: 100%;
    /* min-width: 1200px; */
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 52px;
    font-family: 'Montserrat-R';
    color: #333;
    line-height: 1.2;
    text-transform: uppercase;
}


/* job */
.job_a {
    padding: 80px 0 74px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.job_a h1 {
    font-size: 30px;
    line-height: 1.5;
    font-weight: bold;
    color: #333;
}

.job_a ul:nth-child(1) {
    text-align: center;
    margin-bottom: 30px;
}

.job_a ul:nth-child(2) {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.job_a ul {
    width: 100%;
    margin: 0 auto;
}

.job_a ul li {
    width: calc(33.33% - 20px);
    float: left;
    margin-right: 30px;
}

.job_a ul li:nth-child(3) {
    margin-right: 0;
}

.job_a ul li img {
    width: 100%;
    margin-bottom: 15px;
}

.job_a ul li span {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.ygfc_c {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ygfc_c .topTitle {
    border: none;
    font-size: 30px;
    line-height: 1.5;
    font-weight: bold;
    color: #333;
}

.ygfc_c .js {
    font-size: 16px;
    text-align: center;
    width: 50%;
}

.ygfc_c .swiper {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 50px;
}

.ygfc_c .swiper-pagination-bullet-active {
    background: var(--main-color);
}

.ygfc_img {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px 20px;
    align-items: stretch; */
    position: relative;
    margin-top: 50px;
}

.ygfc_img .swiper-slide {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px 20px;
    align-items: stretch;
    position: relative;
}

.ygfc_img .swiper-slide .imgHover {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 18vw;
    border-radius: 50px;
}

.ygfc_img .swiper-slide .imgHover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ygfc_img .swiper-slide p {
    width: 100%;
    text-align: center;
    color: #333;
    font-size: 16px;
}

.z_zp_warp {
    padding: 6vw 8.2vw;
    box-sizing: border-box;
    display: flex;
    background: #f7f7f7;
    justify-content: space-between;
}

.z_zp_warp .fl_warp,
.z_contact_warp .fl_warp {
    width: 300px;
    flex-shrink: 0;
}

.z_zp_warp .fr_warp {
    width: calc(100% - 400px);
    border-top: 8px solid var(--main-color);
}

.sideMenu {
    line-height: 66px;
}

.sideMenu {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* { display: block; width: 25%; font-size: 18px; font-weight: bold; margin-bottom: 30px; float: left;} */
.rc_box .tit {
    color: #444444;
    cursor: pointer;
    position: relative;
}

.zp_tit,
.rc_box .tit {
    cursor: pointer;
    box-sizing: border-box;
    transition: all .6s;
    padding: 0 2vw;
    box-sizing: border-box;
    z-index: 1;
    box-sizing: border-box;
}

.rc_box .tit {
    display: flex;
}

.rc_box .tit span,
.zp_tit span {
    display: block;
    font-size: 16px;
    box-sizing: border-box;
    width: 25%;
    color: #333;
    float: left;
    line-height: 66px;
}

.rc_box .tit span {
    font-weight: 500;
}

.rc_box .tit span:nth-child(3),
.zp_tit span:nth-child(3) {
    width: 12%;
}

.zp_tit {
    border-bottom: 1px solid #ccc;
    width: 100%;
}

.sideMenu .warp {
    width: 100%;
}

.sideMenu .warp .rc_box:hover {
    background: #fff;
}

.rc_box .rc_con {
    width: 100%;
    box-sizing: border-box;
    padding: 2vw;
    box-sizing: border-box;
    display: none;
    border-top: none;
}

.rc_box .tit.on {
    background: #F8F8F8;
}

.rc_box .tit.on::before {
    background-image: url(../images/jian2.png);
}

.rc_box .rc_con h4 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 40px;
    color: #000;
}

.rc_box .rc_con .boxcon {
    line-height: 30px;
    box-sizing: border-box;
    color: #7f7f7f;
    background: #ffffff;
    padding: 2vw;
}

.rc_box .rc_con .boxcon .ypBtn {
    width: 100%;
    margin-top: 50px;
}

.rc_box .rc_con .boxcon .ypBtn a {
    display: inline-block;
    border-radius: 50px;
    padding: 6px 40px;
    background: var(--main-color);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.rc_box .rc_con .boxcon .ypBtn a:hover {
    padding: 6px 50px;
}

.rc_box .tit::before {
    content: "";
    display: block;
    width: 66px;
    height: 66px;
    background: url(../images/jia2.png) no-repeat center;
    position: absolute;
    right: 0;
    top: 0;
}

.rc_box .rc_con .boxcon p {
    background-color: none !important;
}

@media only screen and (min-width: 220px) and (max-width: 1200px) {
    .z_zp_warp {
        margin-top: 0;
    }

    .rc_box .tit span,
    .zp_tit span {
        display: none;
    }

    .rc_box .tit span:nth-child(1),
    .zp_tit span:nth-child(1) {
        display: block;
        width: 100%;
    }

    .z_zp_warp .fl_warp,
    .z_contact_warp .fl_warp {
        width: 100%;
    }

    .z_zp_warp,
    .z_contact_warp {
        display: block;
        padding: 35px 12px;
    }
}

.z_about_tit {
    font-size: 30px;
    line-height: 1.5;
    font-weight: bold;
    color: #333;
}

.join {
    position: relative;
    width: 100%;
    height: auto;
    padding: 100px 0;
    z-index: 2;
}

.join .bks1 {
    width: 95%;
    height: auto;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.join .bks1 img {
    display: block;
    width: 100%;
    height: auto;
}

.join .bks2 {
    display: none;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.join .bks2 img {
    display: block;
    width: 100%;
    height: auto;
}

.join .join-c {
    padding-right: 45%;
    width: 100%;
    height: auto;
    padding-bottom: 15%;
}

.join .join-c h2 {
    font-size: 30px;
    color: #333;
    font-weight: bold;
}

.join .join-c .txt {
    margin-top: 15px;
    width: 65%
}

.join .join-c .txt p {
    font-size: 18px;
    color: #000000;
}

.join .join-c .join-list {
    width: 100%;
    height: auto;
    font-size: 0;
    padding-top: 15%;
    padding-bottom: 13%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.join .join-c .join-list li {
    display: inline-block;
    width: 50%;
    height: auto;
    padding-right: 10%;
}

.join .join-c .join-list li .ico {
    width: 36px;
    height: auto;
}

.join .join-c .join-list li .ico img {
    display: block;
    width: 100%;
    height: auto;
}

.join .join-c .join-list h6 {
    width: 100%;
    font-size: 24px;
    color: #000000;
    height: auto;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 4px solid var(--main-color);
}

.join .join-c .join-list h6 span {
    text-transform: uppercase;
}

.join .join-c .join-list a {
    overflow: hidden;
    font-weight: bolder;
    position: relative;
    padding-right: 30px;
    display: block;
    color: var(--main-color);
    font-size: 20px;
}

.join .join-c .join-list a i {
    width: 20px;
    height: auto;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.w85 {
    /* width: 85%;
    max-width: 1600px; */
    padding: 0 8.2vw;
    margin: 0 auto;
}

@media only screen and (max-width:1680px) {
    .join .join-c .txt p {
        font-size: 16px;
    }

    .join .join-c .join-list h6 {
        font-size: 22px;
    }

    .join .join-c .join-list a {
        font-size: 18px;
        padding-right: 25px;
    }

    .join .join-c .join-list a i {
        width: 18px;
        height: auto;
    }
}

@media only screen and (max-width:1440px) {
    .join .join-c {
        padding-right: 35%;
    }

    .join .join-c .txt p {
        font-size: 16px;
    }

    .join .join-c .join-list h6 {
        font-size: 20px;
    }

    .join .join-c .join-list a {
        font-size: 18px;
        padding-right: 20px;
    }

    .join .join-c .join-list a i {
        width: 16px;
        height: auto;
    }
}

@media only screen and (max-width:1280px) {
    .join .join-c .join-list li .ico {
        width: 34px;
    }

}

@media only screen and (max-width:1024px) {
    .join .join-c {
        padding-right: 30%;
    }

    .join .join-c .txt p {
        font-size: 16px;
    }

    .join .join-c .join-list h6 {
        font-size: 18px;
    }

    .join .join-c .join-list a {
        font-size: 16px;
        padding-right: 20px;
    }

    .join .join-c .join-list a i {
        width: 16px;
        height: auto;
    }
}

@media only screen and (max-width:800px) {
    .join {
        background: rgba(255, 255, 255, 0.4);
        padding: 50px 0 200px;
    }

    .join .join-c {
        padding: 0;
        padding-bottom: 15%;
    }

    .join .join-c .txt {
        width: 100%;
    }

    .join .join-c .txt p {
        font-size: 15px;
    }

    .join .bks1 {
        display: none;
    }

    .join .bks2 {
        display: block;
        width: 100%;
        opacity: 0.8;
    }

    .join .join-c .join-list {
        padding-top: 15%;
        padding-bottom: 5%;
        padding-right: 15%;
    }

    .join .join-c .join-list li {
        width: 100%;
        padding-right: 0;
        padding-bottom: 25px;
    }

    .join .join-c .join-list li .ico {
        width: 24px;
    }

    .join .join-c .join-list h6 {
        font-size: 17px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 4px solid var(--main-color);
    }

    .join .join-c .join-list a {
        padding-right: 30px;
        font-size: 16px;
    }

    .join .join-c .join-list a i {
        width: 20px;
        height: auto;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }
}


/*job_c*/
.job_c {
    width: 80%;
    min-width: 1200px;
    margin: 80px auto 100px auto;
    border: 1px solid #eee;
}

.job_c ul {
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.job_c ul:first-child {
    border: none;
    background-color: #003f8c;
    color: #fff;
}

.job_c ul:last-child {
    border: none;
    padding: 20px 15px;
}

.job_c ul font {
    font-size: 16px;
    color: #fff;
}

.job_c ul li {
    width: calc(50% - 25px);
    margin-right: 50px;
    float: left;
    padding: 10px 0;
}

.job_c ul li:nth-child(2n+2) {
    margin-right: 0;
}

.job_c .yzm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.job_c .yzm img {
    margin-left: 12px;
}

.bda {
    width: 100%;
    line-height: 40px;
    color: #333;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 0 8px;
}

.bdb {
    width: 100%;
    line-height: 40px;
    height: 120px;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 0 8px;
    font-family: "Montserrat-L"
}

.bdc {
    padding: 12px 50px;
    border: 1px solid var(--main-color);
    border-radius: 50px;
    background-color: var(--main-color);
    color: #fff;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.bdc:hover {
    padding: 12px 60px;
}


/* foot */
.footer {
    width: 100%;
    box-sizing: border-box;
    background-color: #F8F9FA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 2;
    box-shadow: 0px 10px 30px 0px rgb(47 54 69 / 20%);
}

.color_line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    width: 100%;
    height: 10px;
}

.color_line li:nth-child(1) {
    /* background: #1C2466; */
    background: var(--main-color);
}

.color_line li:nth-child(2) {
    background: var(--main-color);
}

.color_line li:nth-child(3) {
    /* background: #F39902; */
    background: var(--main-color);
}

.footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8vw 0;
    border-bottom: 1px solid #ccc;
}

.footer_top .left {
    width: 60%;
    line-height: 1.5;
}

.footer_top .left b {
    color: var(--main-color)
}

.footer_top .right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer_top .right a {
    margin-left: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    border-radius: 20px 0 20px 0;
    padding: 8px 20px;
    color: #333;
    transition: all 0.3s;
}

.footer_top .right a i {
    color: var(--main-color);
    margin-left: 3vw;
    transition: all 0.3s;
}

.footer_top .right a:hover {
    background: var(--main-color);
    color: #fff;
}

.footer_top .right a:hover i {
    color: #fff;
}

.footer_btm {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_btm .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #333;
    line-height: 2;
}

.footer_btm .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    color: #a7a7a7;
    line-height: 2;
}

.footer_btm .right a {
    color: #a7a7a7;
    margin-left: 12px;
}



.contact_a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contact_a h2 {
    font-weight: bold;
    font-size: 34px;
    margin-bottom: 30px;
}

.contact_a .ul1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px 100px;
    align-items: stretch;
    width: 100%;
    padding-bottom: 36px;
    border-bottom: 1px solid rgb(216, 218, 221);
}

.contact_a .ul1 li p:nth-child(2) {
    font-weight: bold;
    font-size: 20px;
    color: #333;
    margin-bottom: 3px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact_a .ul1 li p:nth-child(2) span:nth-child(1){
    margin-right: 10px;
}

.contact_a .ul1 li p:nth-child(1) {
    font-size: 16px;
}

.contact_a .ul2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 36px 100px;
    align-items: stretch;
    width: 100%;
    padding-top: 36px;
    font-size: 16px;
}

.contact_a .ul2 li p:nth-child(1) {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact_a .ul2 li p:nth-child(1) span {
    font-weight: bold;
    font-size: 20px;
    color: #333;
}

.contact_a .ul2 li p:nth-child(1) img {
    width: 25px;
}

.contact_a .ul2 li p:nth-child(2) i {
    margin-right: 8px;
}



.index_contactBox {
    width: 100%;
    background: #FCFCFC;
    background-image: url(../images/bg1.jpg);
    background-position: left bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
    overflow: hidden;
}

.index_title {
    color: var(--main-color);
    font-size: 35px;
    padding-top: 30px;
    position: relative;
    width: 100%;
}

.index_contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index_contact_l {
    width: 34%;
    font-size: 16px;
}

.index_contact_r {
    width: 60%;
    background: #fff;
}

.index_contact_r form {
    padding: 40px 30px;
    box-shadow: 0 0 4px 4px #eee;
    overflow: hidden;
}

.control-group {
    margin-bottom: 16px;
    width: 50%;
    float: left;
    display: block;
    padding: 0 10px;
}

.control-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}

.control-group input {
    width: 100%;
    padding: 4px;
    text-indent: 6px;
    box-sizing: content-box;
    margin-left: -1px;
    background-color: inherit;
    color: rgb(0, 0, 0);
    border: 1px solid #ccc;
    height: 30px;
    border-radius: 4px;
    line-height: 30px;
    vertical-align: middle;
    display: inline-block;
}

.control-group.textarea {
    width: 100%;
    margin-left: 0;
}

.control-group.textarea textarea {
    width: 100%;
    padding: 4px;
    text-indent: 6px;
    box-sizing: content-box;
    margin-left: -1px;
    background-color: inherit;
    color: rgb(0, 0, 0);
    border: 1px solid #ccc;
    height: 20px;
    border-radius: 4px;
    line-height: 20px;
    vertical-align: middle;
    display: inline-block;
    height: 120px;
    resize: none;
}

.control-group.submitGroup {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
}

.control-group.submitGroup button {
    border: none;
    border-radius: 3px;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    width: 136px;
    height: 38px;
    padding: 0 30px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
}

.control-group.submitGroup button:hover {
    box-shadow: 0px 10px 30px 0px rgb(47 54 69 / 20%);
}


/* news */
.product-leval-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.product-leval-list li {
    padding: 10px 30px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 12px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s;
}

.product-leval-list li.active {
    background: var(--main-color);
    color: #fff;
}

.product-leval-list li:hover {
    background: var(--main-color);
    color: #fff;
}

.z_news_page {
    background: #F5F5F6;
    padding: 80px 0 0;
}

.z_news_list,
.z_zb_list {
    /* width: 79.16666vw; */
    margin: 0 auto;
}

.z_news_list li {
    position: relative;
    margin-bottom: 25px;
}

.z_news_list li a {
    display: flex;
    background: #fff;
    height: 260px;
    align-items: center;
    position: relative;
}

.z_news_list li .infobox {
    padding: 2.2vw 2.5vw;
    box-sizing: border-box;
    width: 73%;
}

.z_news_list li h3 {
    font-size: 1.25vw;
    font-weight: bold;
    color: #333333;
    line-height: 1.875vw;
}

.z_news_list li h4 {
    color: #666666;
    line-height: 22px;
    height: 44px;
    font-size: 14px;
    margin: 10px 0;
    font-weight: 500;
}

.z_news_list li .z_other_more {
    margin-top: 40px;
}

.z_news_list .timebox {
    flex-shrink: 0;
    width: 190px;
    transition: all 1s;
    font-size: 16px;
    font-weight: bold;
    border-right: 1px solid #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.z_news_list .timebox .iconfont {
    font-size: 30px;
    color: #D4D4D4;
    margin-bottom: 10px;
    display: block;
}

.z_news_list .day {
    display: block;
    font-size: 2.5vw;
    font-style: normal;
}

.z_news_list .zd {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #E22D2D;
    border-radius: 0 0 10px 0;
    color: #FFFFFF;
    padding: 5px 10px;
    line-height: 1.2;
}

.z_news_list li:hover .z_other_more::before {
    transform: translate(0, -50%) scale(1, 1);
}

.z_news_list li:hover .z_other_more .iconfont {
    color: #fff;
}

.z_news_list li::before {
    content: "";
    display: block;
    width: 0;
    height: 5px;
    z-index: 1;
    background: var(--main-color);
    transition: all 2s;
    position: absolute;
    left: 0;
    bottom: 0;
}

.z_news_list li:hover::before {
    width: 100%;
}

.z_news_list li:hover .timebox {
    color: var(--main-color);
}

.z_index_more,
.z_other_more {
    display: flex;
    align-items: center;
    font-family: "Gilroy";
    z-index: 1;
    white-space: nowrap;
    width: 152px;
    position: relative;
    text-align: left;
    height: 36px;
    line-height: 36px;
    color: #fff;
}

.z_index_more::after,
.z_other_more::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    left: 0%;
    bottom: 0;
    height: 1px;
    background: #fff;
    transition: ease 1s;
}

.z_index_more .icon {
    margin-left: auto;
    transition: ease 1s;
    width: 56px;
    height: 36px;
    background: url(../images/arr.png) no-repeat center;
}

.z_index_more::before,
.z_other_more::before {
    content: "";
    transition: ease 1s;
    border-radius: 50%;
    display: block;
    width: 56px;
    height: 56px;
    background: var(--main-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.z_index_more:hover::before {
    width: 100px;
    height: 100px;
    transform: translate(-30px, -50%);
}

.z_index_more:hover {
    text-align: center;
    padding-left: 35px;
    transform-origin: center;
}

.z_index_more:hover .icon {
    transform: translateX(-100%);
    opacity: 0;
}

.z_index_more:hover::after {
    width: 0;
    left: 50%;
}

.z_other_more::before {
    transform: translate(0, -50%) scale(0, 0);
}

.z_other_more::after {
    background: #CACACA;
}

.z_other_more .iconfont {
    width: 56px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    color: var(--main-color);
    display: inline-block;
    margin-left: auto;
}

.z_other_more {
    color: #333;
}

.z_other_more:hover::before {
    transform: translate(0, -50%) scale(1, 1);
}

.z_other_more:hover .iconfont {
    color: #fff;
}

.z_other_more:before,
.z_other_more:after {
    z-index: -1;
}

.ellipsis2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pagepn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap {
    margin: 5vw 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.wrap a {
    width: 42px;
    height: 42px;
    color: #000;
    /* background: var(--main-color); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.6vw 0 0;
    transition: all ease-out 0.3s;
    font-size: 16px;
}

.wrap a i {
    font-size: 18px;
}

.wrap .on {
    background: var(--main-color);
    color: #ffffff;
}

.wrap a:hover {
    background: var(--main-color);
    color: #ffffff;
}



.newsBox {
    padding: 60px 50px;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
}

.newsTitle {
    font-size: 40px;
    font-family: 'Gilroy-b';
    width: 90%;
    line-height: 1.3;
    color: #333;
}

.newsInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    border-bottom: 2px solid #ccc;
    margin-top: 10px;
    margin-bottom: 50px;
}

.newsInfo span {
    font-size: 12px;
    color: #808080;
}

.newsContent {
    width: 100%;
    overflow: hidden;
}

.newsContent p {
    line-height: 2 !important;
    font-size: 16px;
}

.news_fy {
    border-top: 1px solid #ccc;
    width: 100%;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 20px;
    font-size: 16px;
}

.news_fy a:hover {
    color: var(--main-color)
}

.news_fy .returnList {
    padding: 12px 25px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s;
}

.news_fy .returnList:hover {
    padding: 12px 30px;
    color:#fff;
}



.about_a {
    padding: 100px 0;
}

.about_a .top {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_a .top .tople>div {
    display: inline-block;
}

.about_a .top .since {
    font-size: 34px;
    font-weight: 700;
    font-style: italic;
    color: var(--main-color);
    margin-right: 12px;
}

.about_a .top .counter {
    font-size: 68px;
    font-weight: 700;
    color: var(--main-color);
    min-width: 170px;
}

.about_a .top .xian {
    width: 2px;
    height: 50px;
    background: var(--main-color);
    margin: 0 55px 0 35px;
}

.about_a .top .topre span {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

.about_a .text {
    width: 80%;
    margin: auto;
    padding-top: .2rem;
}

.about_a .text p {
    margin-top: 20px;
    color: #666666;
    line-height: 1.7;
    text-indent: 2em;
    font-size: 16px;
}




.aboutTwo .prodateTle {
    margin-bottom: 110px;
}

.aboutTwo .prodateTle h3 {
    width: 100%;
    text-align: center;
    color: #333;
    font-size: 40px;
    /* font-weight: bold; */
}

.aboutTwo ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px 100px;
    align-items: stretch;
}

.aboutTwo li {
    width: 100%;
    position: relative;
}

.aboutTwo li .icBox {
    margin: auto;
    width: 100px;
    height: 100px;
    transform: translateY(50%);
    transition: .5s;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -50px;
    margin-top: -110px;
}

.aboutTwo li .icBox img {
    max-width: 100%;
}

.aboutTwo li .con {
    background: #eef6fa;
    border-radius: 10px;
    padding: 80px 40px;
    text-align: center;
    height: 100%;
    min-height: 300px;
}

.aboutTwo li .con span {
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
    display: block;
}

.aboutTwo li .con strong {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    display: block;
    margin-top: 30px;
}

.aboutTwo li:hover .icBox {
    transform: translateY(30%) rotateY(180deg);
}

/* .aboutTwo li:nth-child(2) .con {
    background: #eef6fa url(../images/aboutTwo-libj.png) no-repeat center;
    background-size: cover;
} */

.AbojjFz {
    background: #fff;
}

.AbojjFz-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.AbojjFz-shade {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .4);
}

.AbojjFz-mix {
    width: 100%;
    color: #fff;
    position: relative;
    z-index: 4;
}

.AbojjFz-title {
    width: 100%;
    text-align: center;
}

.AbojjFz-mix .gallery {
    width: 100%;
    text-align: center;
    padding: 0 4%;
}

.AbojjFz-mix .gallery-more {
    max-width: 1400px;
    margin: 0 auto;
}

.AbojjFz-mix .gallery-more .num {
    line-height: 1;
    font-size: 200px;
    font-family: 'Montserrat-B';
}

.AbojjFz-mix .gallery-more .num span {
    color: var(--main-color);
}

.AbojjFz-mix .gallery-more .text {
    width: 100%;
    line-height: 30px;
    height: 90px;
    overflow-y: auto;
    padding: 0 12px;
}

.AbojjFz-mix .gallery-more .text::-webkit-scrollbar {
    width: 2px;
}

.AbojjFz-mix .gallery-more .text::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

.AbojjFz-mix .gallery-more .text::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.AbojjFz-mix .gallery-more .text {
    scrollbar-color: var(--main-color) #f1f1f1;
    scrollbar-width: thin;
}

.AbojjFz-mix .gallery-more .text {
    scrollbar-face-color: var(--main-color);
    scrollbar-shadow-color: var(--main-color);
    scrollbar-arrow-color: #000;
    scrollbar-track-color: #f1f1f1;
}

.AbojjFz-mix .thumbs {
    width: 1152px;
    margin: 30px auto 0;
    position: relative;
}

.AbojjFz-mix .thumbs::before {
    content: "";
    position: absolute;
    width: calc(1920px * 3);
    top: 0;
    height: 9px;
    left: -1908px;
    background: url('../images/Abojj7Line.png') repeat-x left center/auto 100%;
}

.AbojjFz-mix .thumbs-click {
    cursor: pointer;
    height: 79px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 21px;
    position: relative;
}

.AbojjFz-mix .thumbs-click i {
    position: absolute;
    width: 0;
    height: 1px;
    background: #fff;
    top: 8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: all .4s ease;
}

.AbojjFz-mix .thumbs-click.active i {
    opacity: 1;
    width: 100%;
}

.AbojjFz-mix .thumbs-click::before,
.AbojjFz-mix .thumbs-click::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 8px;
    background: url('../images/Abojj7Arr.png') no-repeat center/100% auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: all .4s ease;
}

.AbojjFz-mix .thumbs-click::before {
    top: 21px;
}

.AbojjFz-mix .thumbs-click::after {
    bottom: 0;
    transform: rotateX(180deg);
}

.AbojjFz-mix .thumbs-click.active::before,
.AbojjFz-mix .thumbs-click.active::after {
    opacity: 1;
}

.AbojjFz-mix .thumbs-click:hover::before,
.AbojjFz-mix .thumbs-click:hover::after {
    opacity: 1;
}

.AbojjFz-mix .thumbs-prev,
.AbojjFz-mix .thumbs-next {
    position: absolute;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    width: 20px;
    opacity: 0.6;
    transform: translateY(0);
    padding-top: 21px;
    transition: all .4s ease;
    font-size: 14px;
}

.AbojjFz-mix .thumbs-prev i,
.AbojjFz-mix .thumbs-next i {
    font-size: inherit;
}

.AbojjFz-mix .thumbs-prev {
    left: -50px;
}

.AbojjFz-mix .thumbs-next {
    right: -50px;
    transform: rotateY(180deg);
}

.AbojjFz-mix .thumbs-prev:hover,
.AbojjFz-mix .thumbs-next:hover {
    opacity: 1;
}


.aboutpart04 {
    padding-top: 60px;
    overflow: hidden;
}

.aboutpart04 .ab04 {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tipsTitle {
    width: 100%;
    text-align: left;
}

.ab04title .test-title {
    color: #393939;
    line-height: 2.5;
    position: relative;
    font-size: 40px;
    /* margin-bottom: 50px; */
}

/* .ab04title .test-title::before {
    content: "";
    position: absolute;
    height: 4px;
    width: 100px;
    background-color: var(--main-color);
    bottom: 0;
} */

.aboutpart04 .ab04left {
    float: left;
    width: calc(45% - 30px);
}

.aboutpart04 .ab04right {
    float: right;
    width: 55%;
    position: relative;
}

.ab04left h3 {
    height: 50px;
    cursor: pointer;
    line-height: 49px;
    font-size: 20px;
    color: #5f5f5f;
    font-weight: normal;
    margin-top: 10px;
    overflow: hidden;
    border-bottom: 1px solid #a9a9a9;
}

.ab04left h3.on {
    color: var(--main-color);
}

.ab04left h3 .tit02 {
    width: 20px;
    float: left;
    margin-right: 40px;
    font-weight: bold;
    color: var(--main-color);
    font-style: italic;
    font-size: 26px;
}

.ab04left h3 .tit01 {
    font-size: 18px;
    font-weight: 500 !important;
    font-weight: bold;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ab04left h3 em {
    float: right;
    display: block;
    width: 49px;
    height: 49px;
    background: url(../images/icoAdd02.png) center top no-repeat;
    cursor: pointer;
}

.ab04left h3.on em {
    background-position: center bottom;
}


.ab04left .nwms {
    padding: 30px 60px;
    background-color: rgb(249, 249, 249);
}

.gwjsrow p {
    font-size: 14px;
    color: #5f5f5f;
    margin-bottom: 12px;
}

.item-1 {
    width: 12px;
    height: 12px;
    background: var(--main-color);
    border-radius: 50%;
    background-color: rgb(88, 181, 49 / 50%);
    margin: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 1111;
    top: 52%;
    right: 18%;
    cursor: pointer;
}

.item-1 span {
    position: absolute;
    width: max-content;
    left: 130%;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50%,
    75% {
        transform: scale(2.5);
    }

    78%,
    100% {
        opacity: 0;
    }
}

.item-1:before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--main-color);
    opacity: 0.7;
    animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
    animation-delay: 200ms;
    transition: 0.5s all ease;
    transform: scale(1);
}

.item-1:after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
}


.item-1_1 {
    top: 38%;
    right: 19%;
}

.item-1_2 {
    top: 44%;
    right: 19%;
}

.item-1_3 {
    top: 63%;
    right: 22%;
}

.item-1_4 {
    top: 55%;
    left: 19%;
}

.item-1_5 {
    top: 39%;
    left: 53%;
}

.item-1_6 {
    top: 45%;
    left: 17%;
}

.item-1_7 {
    top: 28%;
    right: 12%;
}

.gcImg {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px 20px;
    align-items: stretch;
    width: 100%;
    margin-top: 100px;
}

.gcImg li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gcImg li p {
    margin-top: 20px;
    font-size: 16px;
}

.about_ryzz {
    position: relative;
    width: 100%;
}

.ryzz_cont {
    position: absolute;
    top: 4vw;
    left: 50%;
    transform: translate(-50%, 0%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ryzz_cont .test-title{
    font-size: 40px;
}

.ryzz_cont .contBox {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

@media all and (max-width:1500px) {

    .ryzz_cont .contBox {
        margin-top: 80px;
    }
}

@media all and (max-width:1400px) {

    .ryzz_cont .contBox {
        margin-top: 60px;
    }
}

.ryzz_cont .contBox .left {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: 16px;
}

.ryzz_cont .contBox .left img {
    width: 100%;
    margin-top: 30px;
}

.ryzz_cont .contBox .right {
    width: 30%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.ryzz_cont .contBox .right li {
    border-top: 1px solid #ccc;
    width: 100%;
    margin-bottom: 20px;
}

.ryzz_cont .contBox .right li p {
    color: var(--main-color);
    font-size: 16px;
}

.ryzz_cont .contBox .right li p span {
    font-family: 'HS-B';
}

.ryzz_cont .contBox a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--main-color);
    border-radius: 20px 0 20px 0;
    padding: 8px 20px;
    color: #fff;
    transition: all 0.3s;
    margin-top: 30px;
    background: var(--main-color);
}

.ryzz_cont .contBox a i {
    color: #fff;
    margin-left: 3vw;
    transition: all 0.3s;
}

.ryzz_cont .contBox a:hover {
    background: none;
    border: 1px solid #ccc;
    color: var(--main-color);
}

.ryzz_cont .contBox a:hover i {
    color: var(--main-color);
}

/* honor */
.honor_title {
    font-size: 40px;
}
.honor_menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px 12px;
    align-items: stretch;
    padding: 50px 0 30px;
}

.honor_menu li {
    text-align: center;
    background: #E5E5E5;
    color: #333;
    font-size: 16px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.honor_menu li.on {
    background: var(--main-color);
    color: #fff;
}

.honor_cont {
    margin-top: 30px;
    padding-bottom: 50px;
}

.honor_cont li {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px 20px;
    align-items: stretch;
    display: none;
}

.honor_cont li:nth-child(1) {
    display: grid;
}

.honorBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.honorBox .img {
    border: 1px solid var(--main-color);
    padding: 12px;
    width: 100%;
    height: 22vw;
    margin-bottom: 12px;
    ;
}

.honorBox .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* pro */
.proBox {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px 20px;
    align-items: stretch;
}

.pro-list-item {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
    transition: 0.5s;
}

.nlazy {
    /* min-width: 20%;
    position: absolute; width: 100%; left: 0px; top: 0px; */
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-pic_a {
    position: relative;
    height: 20vw;
    width: 100%;
    overflow: hidden;
    display: block;
}

.pro-list-item .pro-item-box {
    background: #FFFFFF;
    position: relative;
    width: 100%;
    transition: all .3s;
}

.pro-list-item .pro-item-box:hover {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    box-shadow: 0px 3px 29px 0px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.pro-list-item .pro-item-box .item-pic {
    position: relative;
    width: 100%;
    border: 1px solid #EBEBEB;
}

.pro-list-item .pro-item-box:hover .item-pic {
    border: 0;
    border-radius: 12px;
}

.pro-list-item .pro-item-box .item-backdrop {
    /* position: absolute;
    width: 100%;
    height: 100%;
    left: 100%;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EBEBEB;
    background: rgba(88, 181, 49, .7);
    border-radius: 12px;
    transition: all .3s; */
}

.pro-list-item .pro-item-box:hover .item-backdrop {
    left: 0;
}

.pro-list-item .pro-item-box .item-body {
    background: #F5F5F5;
}

.pro-list-item .pro-item-box .item-linkbox {
    position: relative;
    width: 42px;
    height: 42px;
}

.pro-list-item .pro-item-box .item-linkbox img {
    width: 100%;
    position: relative;
    display: block;
}

.pro-list-item .pro-item-box .item-body {
    padding: 26px 20px 22px;
    position: relative;
    width: 100%;
    transition: 0.5s;
}

.pro-list-item .pro-item-box:hover .item-body {
    padding: 26px 25px 22px;
}

.pro-list-item .item-body .item-title {
    font-size: 18px;
    font-family: CenturyGothic-Bold;
    color: #333333;
    line-height: 30px;
}

.pro-list-item .item-body .item-title a p:nth-child(2) {
    font-size: 14px;
}

.pro-list-item .item-body .item-desc {
    font-size: 16px;
    margin-top: 4px;
    color: #666666;
    line-height: 30px;
    height: 60px;
}

.pro-list-item .item-body .item-btn {
    margin-top: 14px;
}

.pro-list-item .item-body .item-btn a {
    font-size: 16px;
    font-family: CenturyGothic-Bold;
    color: #333333;
    line-height: 30px;
    text-transform: uppercase;
}

.pro-list-item .pro-item-box:hover .item-btn a,
.pro-list-item .pro-item-box:hover .item-title p,
.pro-list-item .item-body .item-btn a:hover {
    color: var(--main-color);
}

.pro-list-item .item-body .item-btn input {
    display: inline-block;
    vertical-align: top;
    width: 12px;
    margin-top: 9px;
    margin-left: 10px;
    height: 12px;
}


.proListBox {
    padding: 4vw 0 2vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* pro_n */
.pro_n_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.proBox_r2 .swiper {
    width: 100%;
    height: 100%;
}

.proBox_r2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.proBox_r2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proBox_r2 .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.proBox_r2 .swiper-slide {
    background-size: cover;
    background-position: center;
}

.proBox_r2 .mySwiper2 {
    height: 30vw;
    max-height: 470px;
    width: 100%;
    box-shadow: #dedede 0px 0px 10px;
}

.proBox_r2 .mySwiper {
    height: 8vw;
    max-height: 120px;
    box-sizing: border-box;
    padding: 10px 0;
}

.proBox_r2 .mySwiper .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.4;
    border: 1px solid #ddd;
    cursor: pointer;
}

.proBox_r2 .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
    border-bottom: 3px solid #9F7636;
}

.proBox_r2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proBox_r2 .swiper-button-next {
    background-image: none;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    font-size: 16px;
    right: 25px;
}

.proBox_r2 .swiper-button-next::after {
    content: none;
}

.proBox_r2 .swiper-button-prev {
    background-image: none;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    font-size: 16px;
    left: 25px;
}

.proBox_r2 .swiper-button-prev::after {
    content: none;
}

.proBox_r2 .swiper-button-next i {
    color: #ddd;
}

.proBox_r2 .swiper-button-prev i {
    color: #ddd;
}

.pro_mk {
    width: 50%;
    overflow: hidden;
    margin-bottom: 30px;
}

.pro_0 {
    padding: 10px;
    height: 26vw;
    max-height: 470px;
    width: 40%;
    box-shadow: #dedede 0px 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro_n_cs {
    width: 53%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
}

.pro_n_cs .sortname {
    font-size: 16px;
    padding-left: 40px;
    position: relative;
}

.pro_n_cs .sortname::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--main-color);
    left: 0;
    top: 12px;
}

.pro_n_cs .title {
    font-size: 30px;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.pro_n_cs .jj {
    font-size: 16px;
    width: 100%;
    margin-top: 20px;
}

.pro_iconBox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

.pro_iconBox img {
    width: 40px;
    margin-right: 12px;
}

.pro_iconBox li {
    margin-right: 30px;
    font-weight: bold;
}

.pro_n_cs .jj p,
.pro_n_cs .jj span {
    background: none !important;
    color: #333 !important;
    font-size: 16px !important;
}

.pro_n_cs a {
    padding: 8px 30px;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    border: none;
    background: var(--main-color);
    height: 100%;
    text-transform: uppercase;
    margin-top: 50px;
    transition: all 0.3s;
}

.pro_n_cs a:hover {
    padding: 8px 38px;
}

.pro_n_btm {
    padding: 20px 0 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.topTitle {
    font-size: 30px;
    color: #333;
    line-height: 2;
    border-bottom: 1px solid #e3e3e3;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.nav_nr {
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
}

.nav_nr p {
    font-size: 16px;
    margin-bottom: 12px;
}

.nav_nr_title {
    font-size: 24px;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.nav_nr_title::after {
    content: '';
    display: block;
    width: 25px;
    height: 5px;
    background: var(--main-color);
    bottom: 0;
    left: 0;
}

.pro_showBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pro_show {
    background: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 30px;
}

.pro_show .left {
    margin-right: 40px;
    width: 250px;
    height: 200px;
}

.pro_show .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro_show .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px 0;
}

.pro_show .right h2 {
    color: var(--main-color);
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
}

.pro_show ul {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.pro_show ul li {
    line-height: 1.5;
    list-style: inside;
}

/* jsyf */
.milestone-row1 {
    padding: 70px 0 0
}

.milestone_title {
    color: #333;
    font-size: 40px;
    text-align: center;
    position: relative;
}

.milestone_title:after {
    content: '';
    display: block;
    width: 25px;
    height: 5px;
    background: var(--main-color);
    margin: 18px auto 0;
}

.swiper-milestone {
    position: relative;
    overflow: hidden;
    padding: 265px 0 40px
}

.swiper-milestone .swiper-wrapper {
    margin-bottom: 136px
}

.swiper-milestone .swiper-slide {
    height: 134px;
    width: 400px
}

.swiper-milestone .dian {
    position: absolute;
    left: 50%;
    margin-left: -15px;
    width: 30px;
    height: 30px;
    background: url(../images/dian.png) no-repeat center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.swiper-milestone .year {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    font-family: BEBAS;
    font-size: 42px;
    color: #d8d7d7;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer
}

.swiper-milestone .swiper-slide:nth-child(odd) {
    background: url(../images/zhou1.png) center
}

.swiper-milestone .swiper-slide:nth-child(odd) .dian {
    top: -13px
}

.swiper-milestone .swiper-slide:nth-child(odd) .year {
    top: -80px
}

.swiper-milestone .swiper-slide:nth-child(even) {
    background: url(../images/zhou2.png) center
}

.swiper-milestone .swiper-slide:nth-child(even) .dian {
    bottom: -13px
}

.swiper-milestone .swiper-slide:nth-child(even) .year {
    bottom: -80px
}

.swiper-milestone .swiper-slide:hover .dian {
    background-image: url(../images/dian-on.png)
}

.swiper-milestone .swiper-slide:hover .year {
    color: var(--main-color)
}

.pop-intro {
    position: absolute;
    left: 280px;
    top: -230px;
    width: 520px;
    border-radius: 30px;
    overflow: hidden;
    background: var(--main-color);
    z-index: -2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.pop-intro .pic-box {
    position: relative;
    width: 100%;
    height: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pop-intro .pic-box img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}


.pop-intro .txt-box {
    color: #fff;
    padding: 20px 30px 0
}

.pop-intro .txt-box .s1 {
    font-family: PuHuiTi-Bold;
    font-size: 16px;
    margin-bottom: 20px
}

.pop-intro .txt-box .s1 span {
    font-family: Bebas;
    font-size: 32px;
    margin-right: 8px
}

.pop-intro .txt-box .s2 {
    /* height: 180px; */
    overflow-y: auto;
    border-bottom: 1px solid rgba(255, 255, 255, .5)
}

.pop-intro .txt-box .s2-item {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    /* padding-left: 16px; */
    margin-bottom: 30px
}

/* .pop-intro .txt-box .s2-item:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%
} */

.pop-intro .img {
    display: flex;
    justify-content: flex-end;
    padding: 15px 0
}

.pop-intro .img img {
    display: block
}

.pop-intro .txt-box .s2::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px
}

.pop-intro .txt-box .s2::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px
}

.pop-intro .txt-box .s2::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px
}

.pop-intro .txt-box .s2::-webkit-scrollbar-thumb:window-inactive {
    background: #fff;
    border-radius: 10px
}

.swiper-milestone .swiper-slide:hover .pop-intro {
    visibility: visible;
    opacity: 1;
    z-index: 2
}

.swiper-milestone .line {
    position: absolute;
    top: 40%;
    left: -50%;
    right: -50%;
    height: 171px;
    background: url(../images/bolang.png) no-repeat center;
    animation: lineAni 20s linear infinite alternate;
    -webkit-animation: lineAni 20s linear infinite
}

.swiper-milestone .swiper-slide:last-child .pop-intro {
    left: auto;
    right: 280px
}

@keyframes lineAni {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-20%)
    }
}

@-webkit-keyframes lineAni {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-20%)
    }
}


.g-swiper-btn {
    display: flex
}

.g-swiper-btn.center {
    justify-content: center
}

.g-swiper-btn .swiper-arrow {
    width: 60px;
    height: 60px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 30px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.g-swiper-btn .swiper-arrow2 {
    background-color: #f9f9f9
}

.g-swiper-btn .swiper-arrow.swiper-prev {
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.g-swiper-btn .swiper-arrow.swiper-next {
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px
}

.g-swiper-btn .swiper-arrow.swiper-num {
    margin-left: 20px;
    margin-top: -10px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 40px;
    background-color: var(--main-color);
    color: #fff;
    text-align: center
}

.g-swiper-btn .swiper-arrow:hover {
    background-color: var(--main-color)
}

.g-swiper-btn .swiper-arrow.swiper-prev:hover {
    color: #fff;
}

.g-swiper-btn .swiper-arrow.swiper-next:hover {
    color: #fff;
}

/* jsyf */
.cxyf_a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.cxyf_a .left {
    width: 50%;
    padding: 0 6vw 0 4vw;
}

.cxyf_a .left p:nth-child(1) {
    font-size: 36px;
}

.cxyf_a .left p:nth-child(2) {
    font-size: 16px;
}

.cxyf_a .right {
    width: 50%;
    height: 40vh;
}

.cxyf_a .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jsfw_aBox {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding-top:4vw; */
}

.jsfw_aBox .topTitle {
    line-height: 2;
    margin-bottom: 20px;
    color: #333;
    border: none;
    font-size: 40px;
}

.jsfw_aBox .btmBox {
    width: 100%;
    background: #EBEBEB;
    padding: 80px 0;
}

.jsfw_aBox .btmBox .btm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.jsfw_aBox .btmBox .btm .line {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.jsfw_aBox .btmBox .btm .line .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 60%;
}

.jsfw_aBox .btmBox .btm .line .left p:nth-child(1) {
    margin-bottom: 15px;
    color: #333;
    font-size: 36px;
}

.jsfw_aBox .btmBox .btm .line .left p:nth-child(2) {
    line-height: 1.8;
    font-size: 16px;
}

.jsfw_aBox .btmBox .btm .line .right {
    width: calc(50% - 10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jsfw_aBox .btmBox .btm .line .right img {
    width: 100%;
}

.jsfw_aBox .btmBox .btm .line:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px 20px;
    align-items: stretch;
    margin-top: 30px
}

.jsfw_aBox .btmBox .btm .line .img {
    width: 100%;
}

T .jsfw_aBox .btmBox .btm .line .img img {
    width: 100%;
    margin-top: 20px;
}

.jsfw_c {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.jsfw_c .topTitle {
    border: none;
    line-height: 2;
    margin-bottom: 20px;
    color: #333;
    border: none;
    font-size: 36px;
}

.jsfw_c .js {
    font-size: 16px;
    text-align: center;
    width: 50%;
}

.jsfw_c .swiper {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 50px;
}

.jsfw_c .swiper-pagination-bullet-active {
    background: var(--main-color);
}

.jsfw_c_img {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px 20px;
    align-items: stretch; */
    position: relative;
    margin-top: 50px;
}

.jsfw_c_img .swiper-slide {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px 20px;
    align-items: stretch;
    position: relative;
}

.jsfw_c_img .swiper-slide .imgHover {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.jsfw_c_img .swiper-slide .imgHover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jsfw_c_img .swiper-slide .imgHover p {
    /* display: none; */
    opacity: 0;
    font-size: 20px;
    color: #fff;
    transition: all 0.35s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.jsfw_c_img .swiper-slide .imgHover::before {
    background: rgba(0, 0, 0, .4);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    left: -100%;
}

.jsfw_c_img .swiper-slide .imgHover:hover::before {
    left: 0;
}

.jsfw_c_img .swiper-slide .imgHover:hover p {
    opacity: 1;
}

.jsfw_c_img .swiper-slide:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px 20px;
    align-items: stretch;
}

.jsfw_c_img .swiper-slide img {
    width: 100%;
}


.pro_cont {
    width: 100%;
}

.clxz {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.clxz li {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
}

.clxz li .bk {
    width: 60px;
    height: 60px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clxz li .bk img {
    width: 60%;
}

.clxz .n-pt2 {
    width: 110px;
    text-align: left;
    border-right: 1px dashed #c1c1c1;
    margin-right: 15px;
    padding-right: 15px;
    padding-left: 30px;
}

.cpys {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 50px;
    align-items: stretch;
    width: 100%;
}

.cpys li {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.cpys li .left {
    margin-right: 12px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cpys li .left img {
    width: 80%;
}

.cpys li .right {
    width: calc(100% - 62px);
}

.cpys li .right p:nth-child(1) {
    color: var(--main-color);
    margin-bottom: 5px;
    font-size: 18px;
}

.cpys li .right p:nth-child(2) {
    font-size: 14px;
}

.pro_table {
    border-collapse: collapse;
    border-top: 3px solid var(--main-color);
    table-layout: fixed;
    width: 100%;
}

.pro_table tr td {
    padding: 6px 12px;
    border-bottom: 1px solid #ccc;
    border-right: 1px dashed #ccc;
}

.pro_table tr td:last-child {
    border-right: none;
}

.pro_table tr:nth-child(2n) {
    background: #f1f1f1;
}

.video_list {
    /* padding-bottom: 80px; */
}

.video_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px 20px;
    align-items: stretch;
    width: 100%;
}

.fzlcBox {
    width: 100%;
    position: relative;
    height: 80vh;
    padding: 80px 0
}

.fzlcBox h3 {
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
}

.fzlcBox video {
    position: absolute;
    top: 0;
    left: 0;
}

.fzlc_w {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 20px;
    left: 50%;
    top: 50%;
}

.fzlc_w li {
    list-style: inside;
}

@media screen and (max-width: 2800px) {
    .fzlc1 {
        margin-top: 180px;
        margin-left: -800px;
        /* left: 30px; */
        /* top:auto;
        bottom:150px; */
    }

    .fzlc2 {
        margin-top: 80px;
        margin-left: -538px;
    }

    .fzlc3 {
        margin-top: -33px;
        margin-left: -284px;
    }

    .fzlc4 {
        margin-top: -147px;
        margin-left: 77px;
    }

    .fzlc5 {
        margin-top: -166px;
        /* margin-left: 657px; */
        left: auto;
        right: 30px;
    }

    .fzlc6 {
        margin-top: -333px;
        margin-left: 357px;
    }
}

@media screen and (max-width: 1600px) {

    .fzlc_w {
        position: absolute;
        z-index: 2;
        color: #fff;
        font-size: 16px;
        left: 50%;
        top: 50%;
    }

    .fzlc1 {
        margin-top: auto;
        margin-left: auto;
        left: 30px;
        top: auto;
        bottom: 150px;
    }

    .fzlc2 {
        margin-top: 64px;
        margin-left: -465px;
    }

    .fzlc3 {
        margin-top: -23px;
        margin-left: -246px;
    }

    .fzlc4 {
        margin-top: -120px;
        margin-left: 68px;
    }

    .fzlc5 {
        margin-top: -146px;
        /* margin-left: 657px; */
        left: auto;
        right: 30px;
    }

    .fzlc6 {
        margin-top: -274px;
        margin-left: 333px;
    }
}

@media screen and (max-width: 1500px) {
    .aboutpart04 .ab04right {
        float: right;
        width: 65%;
        position: relative;
    }

    .aboutpart04 .ab04left {
        float: left;
        width: calc(35% - 30px);
    }

    .ab04left h3 .tit01 {
        font-size: 16px;
    }

    .ab04left .nwms {
        padding: 20px 40px;
    }
}

.fzlcBoox {
    position: relative;
    width: 100%;
}

.fzlcBoox .title {
    color: #fff;
    position: absolute;
    width: 100%;
    text-align: center;
    top: 60px;
    z-index: 2;
    font-size: 40px;
}

.fzlcBoox::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
}

.AbojjFz-bg2 {
    position: relative;
    width: 100%;
    font-size: 16px;
}

.fzlc_dBox {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
}

.fzlc_d {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    height: 200px;
    overflow: hidden;
    bottom: 0;
    width: 160px;
}

.fzlc_d p {
    position: relative;
    padding-left: 20px;
    font-size: 40px;
    font-weight: bold;
    color: var(--main-color);
    text-shadow: 0 5px 5px rgb(0 0 0 / 20%);
}

.fzlc_d p::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main-color);
    left: 0;
    top: 50%;
    margin-top: -5px;
}

.fzlc_d dl {
    padding-left: 10px;
    border-left: 1px dashed #ccc;
    height: 100%;
}

.fzlc_d dl dd {
    position: relative;
    padding-left: 10px;
}

.fzlc_d dl dd::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    left: 0;
    top: 8px;
}

.fzlc_dBox .fzlc_d:nth-child(1) {
    left: 24%;
}

.fzlc_dBox .fzlc_d:nth-child(2) {
    left: 35%;
    margin-bottom: 6%;
}

.fzlc_dBox .fzlc_d:nth-child(3) {
    left: 47%;
    margin-bottom: 11%;
}

.fzlc_dBox .fzlc_d:nth-child(4) {
    left: 60%;
    margin-bottom: 16%;
}

.fzlc_dBox .fzlc_d:nth-child(5) {
    left: 71%;
    margin-bottom: 19%;
}

.fzlc_dBox .fzlc_d:nth-child(6) {
    left: 80%;
    margin-bottom: 22%;
}

@media screen and (max-width: 1500px) {
    .fzlc_dBox .fzlc_d:nth-child(1) {
        left: 20%;
    }

    .fzlc_dBox .fzlc_d:nth-child(2) {
        /* left:33%; */
        left: calc(20% + 170px);
        margin-bottom: 5%;
    }

    .fzlc_dBox .fzlc_d:nth-child(3) {
        /* left:47%; */
        left: calc(20% + 340px);
        margin-bottom: 10%;
    }

    .fzlc_dBox .fzlc_d:nth-child(4) {
        /* left:62%; */
        left: calc(20% + 510px);
        margin-bottom: 14%;
    }

    .fzlc_dBox .fzlc_d:nth-child(5) {
        /* left: 71%; */
        left: calc(20% + 680px);
        margin-bottom: 19%;
        height: 150px;
    }

    .fzlc_dBox .fzlc_d:nth-child(6) {
        /* left: 80%; */
        left: calc(20% + 850px);
        margin-bottom: 22%;
        height: 150px;
    }
}



@media only screen and (max-width:1000px) {
    .banner-bg {
        height: 40vh;
    }

    .banner-bg img {
        width: 100%;
        height: 100%;
    }

    .index_a h2 {
        font-size: 26px;
    }

    .index_a p {
        width: calc(100% - 24px);
    }

    .side-view {
        display: none !important;
    }

    .index_a ul:nth-child(2) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px 20px;
        align-items: stretch;
    }

    .index_a ul li {
        width: 100%;
        justify-content: flex-start;
    }

    .index_a ul li font {
        font-size: 24px;
    }

    .ind_title {
        font-size: 26px;
    }

    .ind_title p:nth-child(1) {
        margin-bottom: 20px;
        font-weight: bold;
    }

    .ind_b ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .index_app-ul {
        height: 250px;
    }

    .index_app_w p {
        font-size: 20px;
    }

    .index_app_w i {
        font-size: 50px;
    }

    .ind_title p:nth-child(2) {
        font-size: 18px;
        width: calc(100% - 24px);
    }

    .box-4 .swiper-slide a {
        height: 80px;
    }

    .index_news ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .index_news ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .ind_news_leftImg {
        height: 200px;
        overflow: hidden;
    }

    .ind_newsMenu a {
        padding: 8px 12px;
        margin: 0;
    }

    .ind_newsMenu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 12px;
        align-items: stretch;
    }

    .footer_top {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer_top .left {
        width: 100%;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .footer_top .right a:nth-child(1) {
        margin-left: 0;
    }

    .footer_btm {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer_btm>div {
        width: 100%;
    }

    .footer_btm .right {
        display: none;
    }

    .n_banner {
        height: 25vh;
        margin-top: 60px;
        min-width: 0;
    }

    .n_banner ul {
        font-size: 30px;
    }

    .about_a .top {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about_a .top .xian {
        width: 2px;
        height: 30px;
        background: var(--main-color);
        margin: 0 55px 20px 35px;
    }

    .about_a .text {
        width: 100%;
    }

    .aboutTwo ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .aboutTwo li {
        width: 100%;
        position: relative;
        margin-bottom: 50px;
    }

    .aboutTwo li .con {
        min-height: 200px;
    }

    .fzlc_dBox {
        position: relative;
        padding: 0 12px;
    }

    .fzlc_d {
        position: relative;
        left: 0 !important;
        margin: 0 !important;
        top: 0 !important;
        height: auto !important;
        background: rgba(255, 255, 255, 0.8);
        width: 100%;
        padding: 12px;
        margin-bottom: 20px !important;
    }

    .fzlcBoox {
        background-image: url(../images/Abojj7Bg2.jpg);
        background-position: center;
        background-size: cover;
        padding-bottom: 20px;
    }

    .fzlcBoox>img {
        display: none;
    }

    .fzlcBoox .title {
        position: relative;
        top: 0;
        padding-top: 60px;
        margin-bottom: 30px;
        font-size: 26px;
        font-weight: bold;
    }

    .fzlc_d p {
        font-size: 30px;
    }

    .fzlc_d dl {
        border-left: 1px dashed #333;
    }

    .fzlc_d dl dd {
        color: #333;
    }

    .fzlc_d dl dd::before {
        background: #333;
    }

    .about_a .top .topre span {
        font-size: 26px;
        text-align: center;
    }

    .aboutpart04 .ab04left {
        float: left;
        width: 100%;
    }

    .aboutpart04 .ab04right {
        width: 100%;
        left: -7%;
        margin-top: 30px;
    }

    .item-1_7 {
        top: 26%;
        right: 12%;
    }

    .item-1_1 {
        top: 36%;
        right: 19%;
    }

    .item-1_2 {
        top: 47%;
        right: 19%;
    }

    .gcImg {
        grid-template-columns: repeat(1, 1fr);
    }

    .ryzz_cont {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }

    .ryzz_cont h1 {
        position: absolute;
        left: 0%;
        top: -23%;
        font-size: 26px;
        font-weight: bold;
    }

    .ryzz_cont .contBox .left {
        width: 100%;
    }

    .ryzz_cont .contBox .right {
        width: 100%;
    }

    .ryzz_cont .contBox .right li {
        width: 50%;
    }

    .ryzz_cont .contBox img {
        width: 100% !important;
    }

    .ryzz_cont .contBox {
        margin: 40px 0;
    }

    .honor_cont li {
        grid-template-columns: repeat(2, 1fr);
    }

    .honorBox .img {
        height: 26vh;
    }

    .proBox {
        grid-template-columns: repeat(1, 1fr);
    }

    .item-pic_a {
        height: 30vh;
    }

    .pro_n_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .pro_0 {
        height: 30vh;
        max-height: auto;
        width: 100%;
    }

    .pro_n_cs {
        width: 100%;
    }

    .pro_n_cs a {
        width: 100%;
        text-align: center;
    }

    .pro_iconBox {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px 20px;
        align-items: stretch;
    }

    .pro_iconBox li {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: 0;
    }

    .pro_iconBox img {
        margin-bottom: 15px;
    }

    .cpys {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px 50px;
    }

    .clxz li {
        font-size: 14px;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .clxz li span {
        width: calc(100% - 190px);
        display: inline-block;
    }

    .pro_cont img {
        width: 100% !important;
    }

    .clxz li .bk img {
        width: 60% !important;
    }

    .pro_show .left {
        width: 100%;
        height: auto;
        margin-right: 0;
    }

    .pro_show .right {
        padding: 20px 20px;
    }

    .pro_show ul {
        padding-left: 15px;
    }

    .pro_show ul li {
        line-height: 1.5;
        list-style: outside;
    }

    .cpys li .left {
        width: 30px;
    }

    .cxyf_a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .cxyf_a .left {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .cxyf_a .right {
        width: 100%;
        height: auto;
    }

    .jsfw_aBox .btmBox .btm .line .left {
        width: 100%;
    }

    .jsfw_aBox .btmBox .btm .line:nth-child(2) {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 12px;
        align-items: stretch;
        margin-top: 30px;
    }

    .cxyf_a .left p:nth-child(1) {
        font-size: 26px;
        font-weight: bold;
    }

    .cxyf_a .left p:nth-child(2) {
        font-size: 14px;
    }

    .jsfw_aBox .btmBox .btm .line .left p:nth-child(1) {
        font-size: 26px;
        font-weight: bold;
    }

    .jsfw_aBox .btmBox .btm .line .left p:nth-child(2) {
        font-size: 14px;
    }

    .jsfw_c .js {
        width: 100%;
        font-size: 14px;
    }

    .jsfw_c .topTitle {
        font-size: 26px;
        line-height: 1.5;
        margin-bottom: 12px;
        font-weight: bold;
    }

    .jsfw_aBox .btmBox {
        padding: 40px 0;
    }

    .jsfw_cBox {
        padding: 40px 0;
    }

    .product-leval-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 12px;
        align-items: stretch;
    }

    .product-leval-list li {
        margin: 0;
    }

    .z_news_page {
        padding: 30px 15px;
    }

    .z_news_list,
    .z_zb_list {
        width: 100%;
    }

    .z_news_list .timebox {
        width: 80px;
        font-size: 14px;
    }

    .z_news_list .timebox .day {
        font-size: 20px;
    }

    .z_news_list li {
        margin-bottom: 15px;
    }

    .z_news_list li h3 {
        font-size: 15px;
        line-height: 20px;
    }

    .z_news_list li .infobox {
        flex: 1;
        padding: 20px;
    }

    .z_news_list .zd {
        padding: 4px 8px;
        font-size: 12px;
    }

    .z_news_list li a {
        height: auto;
    }

    .z_news_list li .z_other_more {
        margin-top: 10px;
    }

    .z_xw_frwarp,
    .z_xwxq_page::before {
        display: none;
    }

    .z_xq_page {
        margin-top: 50px;
        padding: 0;
    }

    .z_xw_flwarp {
        width: 100%;
        padding: 30px 15px;
    }

    .z_xw_flwarp .tit {
        font-size: 18px;
        line-height: 28px;
        margin: 30px 0;
    }

    .z_xw_flwarp .desc,
    .z_artic_con {
        font-size: 14px;
    }

    .z_xq_share {
        margin: 30px 0;
    }

    .newsBox {
        padding: 20px;
    }

    .newsTitle {
        font-size: 28px;
    }

    .news_fy .returnList {
        width: 100%;
        text-align: center;
    }
    .contact_a .ul1{
        grid-template-columns: repeat(1, 1fr);
    }
    .contact_a .ul2{
        grid-template-columns: repeat(1, 1fr);
    }
    .index_contactBox{
        padding:30px 0;
    }
    .index_contact{
		display: flex;flex-direction: column;align-items: center;justify-content:center;
	}
    .index_title{
        font-size: 26px;
    }
	.index_contact_l{
		width: 100%;
		margin-bottom: 30px;
	}
	.index_contact_r{
		width: 100%;
	}
	.control-group{
		width: 100%;
		padding:0;
	}
    .index_contact_r form {
        padding: 40px 32px 40px 20px;
    }
    .control-group.submitGroup button{
        width: 100%;
    }
    .job_a ul li{
        width: 100%;
        margin-bottom: 30px;
    }

    .ygfc_img .swiper-slide .imgHover{
        height: 18vh;
    }

    .z_zp_warp {
        margin-top: 0;
    }

    .rc_box .tit span,
    .zp_tit span {
        display: none;
    }

    .rc_box .tit span:nth-child(1),
    .zp_tit span:nth-child(1) {
        display: block;
        width: 100%;
    }

    .z_zp_warp .fl_warp,
    .z_contact_warp .fl_warp {
        width: 100%;
    }

    .z_zp_warp,
    .z_contact_warp {
        display: block;
        padding: 35px 12px;
    }
    .z_zp_warp .fr_warp {
        width: 100%;
    }

    .about_a {
        padding: 50px 0;
    }
    .aboutTwo .prodateTle h3{
        font-size: 26px;
        font-weight: bold;
    }
    .ab04title .test-title{
        font-size: 26px;
        font-weight: bold;
    }
    .item-1_5 span{
        top: -22px;
        left: -235%;
    }
    .video_list ul{
        grid-template-columns: repeat(1, 1fr);
    }

    .job_a h1{
        font-size: 26px;
        font-weight: bold;
    }
    .ygfc_c .topTitle{
        font-size: 26px;
        font-weight: bold;
    }
    .join .join-c h2{
        font-size: 26px;
        font-weight: bold;
    }
    .w85{
        padding:0 12px;
    }
    .z_about_tit{
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 12px;
    }








}