
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '微软雅黑',serif;
}
html, body{
    scroll-behavior:smooth;
    color: #333333;
}
a{
    color: #333;
    text-decoration: none;
}
input, button, textarea {
    outline: none;
}
strong{
    font-weight: bold;
}

/* 公共类名 */
.none{
    display: none;
}
.auto{
    width: 1360px;
    margin: 0 auto;
    max-width: 95%;
    padding: 0 30px;
}
.ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-more{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.ellipsis-more-3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.ellipsis-more-4{
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 4;
     overflow: hidden;
}
.title{
    display: flex;
    align-items: center;
    line-height: 1;
    margin-bottom: 30px;
}
.title span{
    font-size: 36px;
    color: #333333;
    margin-left: 15px;
}

/* header */
.header-container{
    width: 100%;
    height: 140px;
    background: #ffffff;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
}
.header-height{
    height: 0;
}
.header-box{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    margin-top: 30px;
}
.header-logo a{
    display: flex;
    align-items: center;
}
.header-list{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.header-li{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #333333;
    margin-right: 60px;
    line-height: 1;
    transition: all 0.5s;
    position: relative;
    padding-bottom: 30px;
}
.header-li:last-child{
    margin-right: 0;
}
.header-li:hover{
    color: #1d8cc4;
}
.header-right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.header-right-top{
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.header-search{
    margin-right: 80px;
}
.header-search a {
    display: flex;
    align-items: center;
}
.header-lan a{
    display: flex;
    align-items: center;
}
.header-lan a span{
    margin-left: 10px;
    color: #666666;
}
.header-contact{
    width: 113px;
    height: 38px;
    background-color: #1d8cc4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
}
.header-menu{
    margin-left: 20px;
}
.header-menu-box{
    display: flex;
    align-items: center;
}
.header-menu img{
    width: 28px;
}
.header-nav-container{
    position: fixed;
    width: 100%;
    left: 0;
    top: 140px;
    z-index: 98;
    opacity: 1;
    transition: all 0.5s;
}
.header-nav-active{
    top: 140px;
    opacity: 1;
}
.header-nav-box{
    display: flex;
}
.header-nav-list{
    display: flex;
    padding: 25px 0 15px 35px;
    background-image: linear-gradient(to right, rgba(29,140,196,0.7) 0%, rgba(25,203,210,0.7) 100%);
    border-radius: 0 0 6px 6px;
}
.header-nav-li{
    /*min-width: 36px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 60px;
}
.header-nav-li:nth-child(1){
    width: 126px;
}
.header-nav-li:nth-child(2){
    width: 90px;
}
.header-nav-li:nth-child(3){
    width: 72px;
}
.header-nav-li a{
    width: 100%;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
    white-space: nowrap;
}
.header-nav-li a:hover{
    text-decoration: underline;
}
.header-nav-home{
    width: 36px;
    margin-right: 25px;
}

/* header-mobile*/
.header-mobile{
    width: 260px;
    height: 100vh;
    position: fixed;
    left: -260px;
    top: 0;
    z-index: 1001;
    background: #F5F5F5;
    transition: all 0.4s;
    opacity: 0;
}
.header-mobile-active{
    left: 0;
    opacity: 1;
}
.mobile-mask{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}
.mobile-top{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    background-image: linear-gradient(to right, #1d8cc4 0%, #19cbd2 100%);
    line-height: 100%;
}
.mobile-top img{
    width: 130px;
}
.mobile-list{
    height: calc(100vh - 50px);
    overflow-y: auto;
}
.mobile-li{
    border-top: 1px solid #EBEBEB;
    line-height: 100%;
}
.mobile-li-a{
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
    padding: 0 20px;
    color: #999999;
    font-size: 15px;
    box-sizing: border-box;
}
.mobile-li-left{
    height: 100%;
    display: flex;
    align-items: center;
}
.mobile-li-left span{
    width: 8px;
    height: 8px;
    background-image: linear-gradient(to right, #1d8cc4 0%, #19cbd2 100%);
    border-radius: 50%;
    margin-right: 20px;
}
.mobile-li-right{
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #666666;
}
.mobile-li-list-a{
    display: flex;
    width: 100%;
    height: 50px;
    padding: 0 30px;
    color: #999999;
    font-size: 14px;
    align-items: center;
    border-top: 1px solid #EBEBEB;
    background: #F6F6F6;
    box-sizing: border-box;
}
.mobile-li-list-a i{
    margin-right: 20px;
}
.mobile-li-active{
    background: #EBEBEB;
}
.mobile-li-active .mobile-li-a{
    color: #3D3D3D;
}
.mobile-top-search{
    display: flex;
    align-items: center;
}
.mobile-top-search img{
    width: 20px;
}
.mobile-top-lan{
    display: flex;
    align-items: center;
}
.mobile-top-lan img{
    width: 20px;
    margin-right: 10px;
}
.mobile-top-lan span{
    font-size: 14px;
    color: #ffffff;
}

.swiper-box{
    width: 100%;
    height: 100vh;
}
.index-swiper-container{
    height: 100vh;
    display: flex;
    align-items: flex-end;
}
.index-swiper-box{
    height: calc(100vh - 140px);
    padding-top: 40px;
    overflow: hidden;
}
.swiper-box .banner-pagination{
    position: fixed;
    right: 20px;
}
.swiper-box .banner-pagination .swiper-pagination-bullet{
    width: 13px;
    height: 13px;
    background-color: #1d8cc4;
    margin: 10px 0;
    opacity: 1;
    transition: all 0.5s;
    outline: 1px dotted rgba(0,0,0,0);
    outline-offset: 2px;
}
.swiper-box .banner-pagination .swiper-pagination-bullet-active{
    background: #19cbd2;
    outline: 1px dotted #19cbd2;
}

/* banner */
.banner{
    position: relative;
    width: 100%;
}
.banner-img img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.banner-container{
    position: absolute;
    width: 100%;
    height: calc(100% - 140px);
    bottom: 0;
    left: 0;
    z-index: 10;
}
.banner-box{
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.banner-bread{
    position: absolute;
    top: 20px;
    left: 30px;
    display: flex;
    align-items: center;
}
.banner-bread .banner-bread-img{
    margin-right: 10px;
}
.banner-bread .banner-bread-text{
    font-size: 14px;
    line-height: 1;
    color: #fff;
}
.banner-bread-tb{
    margin: 0 10px;
}
.banner-bread .banner-bread-text:last-child{
    font-weight: bold;
}
.banner-bread .banner-bread-text:hover{
    text-decoration: underline;
}
.banner-tit{
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.53);
    margin-bottom: 20px;
}
.banner-index-desc{
    max-width: 690px;
    font-size: 24px;
    line-height: 48px;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.53);
}
.banner-btn{
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.banner-btn-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-image: linear-gradient(90deg, #66ccff 0%, #99ffff 100%),
    linear-gradient(#83e0c3, #83e0c3);
    background-blend-mode: normal, normal;
    border-radius: 4px;
    padding: 0 30px 0 20px;
    margin-right: 20px;
}
.banner-btn-item span{
    font-size: 16px;
    color: #000028;
    margin-right: 20px;
}
.banner-btn-item img{
    transition: all 0.5s;
}
.banner-btn-item:hover img{
    transform: translateX(10px);
}
.index-banner-swiper{
    height: 100%;
}

.index-a{
    /*margin-top: 200px;*/
    /*padding-bottom: 120px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.index-a-tit{
    font-size: 42px;
    color: #333333;
    line-height: 1;
    margin-bottom: 30px;
}
.index-a-list{
    display: flex;
    justify-content: space-between;
}
.index-a-li{
    width: calc((100% - 30px)/4);
    align-items: stretch;
}
.index-a-li{
    background-image: linear-gradient(to right, #1d8cc4 0%, #1d8cc4 50%, #19cbd2 100%);
    border-radius: 15px;
    position: relative;
}
.index-a-li-box{
    background: #fff;
    height: calc(100% - 4px);
    border-radius: 8px;
    border: solid 1px #e8e8e8;
    overflow: hidden;
}
.index-a-li-img{
    display: flex;
    align-items: center;
    overflow: hidden;
}
.index-a-li-img img{
    width: 100%;
    height: 254px;
    object-fit: cover;
    transition: all 0.5s;
}
.index-a-li-con{
    padding: 30px 40px;
    position: relative;
}
.index-a-li-line{
    position: absolute;
    width: 100%;
    height: 4px;
    background: #fff;
    left: 0;
    bottom: 0;
    opacity: 1;
    transition: all 0.5s;
}
.index-a-li-tit{
    font-size: 24px;
    color: #000028;
    line-height: 1;
    margin-bottom: 20px;
}
.index-a-li-desc{
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #666666;
    min-height: 58px;
    margin-bottom: 20px;
}
.index-a-li-tit2{
    font-size: 16px;
    font-weight: bold;
    color: #000028;
    line-height: 1;
    margin-bottom: 5px;
}
.index-a-li-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 48px;
    margin-bottom: 20px;
}
.index-a-li-list span{
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #666666;
    margin-right: 30px;
}
.index-a-li:hover .index-a-li-line{
    opacity: 0;
}
.index-a-li:hover .index-a-li-img img{
    transform: scale(1.1);
}

.index-b{
    width: 100%;
    background: url("../img/bg1_02.jpg") no-repeat center center;
    background-size: cover;
    /*padding: 200px 0 130px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.index-b-box{

}
.index-b-tit{
    font-size: 42px;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 25px;
}
.index-b-con{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.index-b-left{
    width: calc(100% - 506px - 15px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.index-b-right{
    width: 506px;
    margin-left: 15px;
}
.index-b-right-img{
    width: 100%;
    display: flex;
    border-radius: 8px;
    align-items: center;
    overflow: hidden;
}
.index-b-right-img img{
    width: 100%;
    height: 337px;
    object-fit: cover;
}
.index-b-right-con{
    background: #ffffff;
    border-radius: 8px;
    position: relative;
    top: -10px;
    padding: 45px 44px 36px;
}
.index-b-right-tag{
    margin-bottom: 16px;
}
.qssk-tag{
    width: 100%;
    display: flex;
    align-items: center;
}
.qssk-tag span{
    width: 103px;
    height: 26px;
    border-radius: 13px;
    border: solid 1px #66cccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666666;
    margin-right: 15px;
}
.index-b-right-tit{
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    color: #333333;
    margin-bottom: 20px;
}
.qssk-more{
    display: flex;
    align-items: center;
}
.qssk-more span{
    font-size: 14px;
    color: #666666;
    line-height: 1;
    margin-right: 8px;
    transition: all 0.5s;
}
.qssk-more img{
    transition: all 0.5s;
}
.qssk-more:hover img{
    transform: translateX(10px);
}
.qssk-more:hover span{
    color: #1d8cc4;
}
.index-b-left-item{
    width: 100%;
    height: calc((100% - 26px)/2);
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 32px 38px;
    align-items: flex-start;
}
.index-b-left-item:last-child{
    position: relative;
    top: -10px;
}
.index-b-left-img{
    width: 255px;
    height: 176px;
    display: flex;
    align-items: center;
    margin-right: 44px;

}
.index-b-left-img img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.index-b-left-con{
    width: calc(100% - 255px - 44px);
}
.index-b-left-tag{
    margin: 8px 0 20px;
}
.index-b-left-tit{
    font-size: 24px;
    line-height: 1;
    color: #333333;
    margin-bottom: 10px;
}
.index-b-left-desc{
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #666666;
    margin-bottom: 15px;
}

.index-c{
    /*padding-top: 250px;*/
    /*padding-bottom: 140px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.index-c-tit{
    font-size: 42px;
    color: #333333;
    line-height: 1;
    margin-bottom: 50px;
}
.index-c-swiper{
    position: relative;
}
.index-c-list{
    display: flex;
    flex-wrap: wrap;
}
.index-c-li{
    width: calc((100% - 75px)/6);
    margin-right: 15px;
    height: 108px;
    background-image: linear-gradient(0deg, #1d8cc4 0%, #19cbd2 100%);
    border-radius: 10px;
    transition: all 0.5s;
    cursor: pointer;
    overflow: hidden;
    padding: 2px;
    margin-bottom: 40px;
}
.index-c-li:nth-child(6n){
    margin-right: 0;
}
.index-c-li-box{
    background: #ffffff;
    height: 100%;
    border: solid 1px #e8e8e8;
    border-radius: 8px;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 3px solid #ffffff;
}
.index-c-li-box img{
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}
.index-c-li:hover .index-c-li-box{
    border-color: rgba(0,0,0,0);
    outline: 3px solid rgba(0,0,0,0);
}
.index-c-btn img{
    position: absolute;
    top: 50%;
    margin-top: -10.5px;
    z-index: 10;
    cursor: pointer;
    outline: none;
}
.index-c-prev img{
    left: -40px;
}
.index-c-next img{
    right: -40px;
}
.index-c-none img{
    display: none;
}
.index-c-none img:last-child{
    display: inline-block;
}

.index-d{
    width: 100%;
    background: #F2F2F2;
    /*padding: 220px 0 120px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.index-d-tit{
    font-size: 42px;
    line-height: 1;
    color: #333333;
    margin-bottom: 60px;
}
.index-d-list{
    display: flex;
    justify-content: space-between;
}
.index-d-li{
    width: calc((100% - 90px)/3);
    background-image: linear-gradient(90deg, #1d8cc4 0%, #19cbd2 100%),
    linear-gradient(#ffffff, #ffffff);
    background-blend-mode: normal, normal;
    border-radius: 12px;
    opacity: 0.9;
    position: relative;
}
.index-d-li-box{
    height: calc(100% - 3px);
    background-color: #ffffff;
    border-radius: 8px;
    padding: 55px 70px 60px 40px;
    border: solid 1px #f0f0f0;
}
.index-d-li-img{
    height: 96px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 30px;
}
.index-d-li-img img{
    height: 100%;
    object-fit: contain;
}
.index-d-li-tit{
    font-size: 36px;
    line-height: 1;
    color: #333333;
    margin-bottom: 20px;
}
.index-d-li-desc{
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    color: #333333;
    min-height: 72px;
    margin-bottom: 30px;
}
.index-d-li-more .index-d-li-more-a{
    width: 154px;
    height: 60px;
    background-image: linear-gradient(#1d8cc4, #1d8cc4),
    linear-gradient(90deg, #66ccff 0%, #99ffff 100%),
    linear-gradient(#83e0c3, #83e0c3);
    background-blend-mode: normal, normal, normal;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.index-d-li-more .index-d-li-more-a span{
    font-size: 16px;
    color: #fff;
    margin-right: 20px;
}
.index-d-li-more .index-d-li-more-a img{
    transition: all 0.5s;
}
.index-d-li-line{
    position: absolute;
    width: 100%;
    height: 3px;
    background: #F2F2F2;
    left: 0;
    bottom: 0;
    opacity: 1;
    transition: all 0.5s;
    border-radius: 12px;
}
.index-d-li:hover .index-d-li-line{
    opacity: 0;
}
.index-d-li-more .index-d-li-more-a:hover img{
    transform: translateX(10px);
}

.banner-tu{
    display: flex;
    align-items: center;
}
.banner-tu img{
    width: 100%;
}
.banner-tit-2{
    font-size: 60px;
    letter-spacing: 6px;
}
.banner-desc{
    font-size: 36px;
    font-weight: 300;
    line-height: 48px;
    letter-spacing: 4px;
}

.qssk-nav{
    position: absolute;
    width: 100%;
    height: 75px;
    bottom: 0;
    left: 0;
    background-color: #f8f8f8;
    z-index: 10;
}
.qssk-nav-box{
    height: 100%;
    overflow-x: auto;
}
.qssk-nav-box::-webkit-scrollbar{
    width: 0;
    display: none;
}
.qssk-nav-list{
    height: 100%;
    display: flex;
}
.qssk-nav-li{
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 60px;
    font-size: 16px;
    color: #333333;
    position: relative;
    white-space: nowrap;
}
.qssk-nav-active{
    font-weight: bold;
}
.qssk-nav-active:after{
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background-image: linear-gradient(#3399cc, #3399cc),
    linear-gradient(#007437, #007437);
    background-blend-mode: normal, normal;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -11px;
}
.qssk-nav-li:hover:after{
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background-image: linear-gradient(#3399cc, #3399cc),
    linear-gradient(#007437, #007437);
    background-blend-mode: normal, normal;
    border-radius: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -11px;
}

.about-a{
    margin-top: 90px;
    padding-bottom: 80px;
}
.about-a-container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.about-a-right{
    width: 640px;
    margin-left: 35px;
}
.about-a-right img{
    width: 100%;
    border-radius: 24px;
}
.about-a-left{
    width: calc(100% - 35px - 640px);
}
.about-a-tit{
    font-size: 36px;
    color: #333333;
    margin-bottom: 20px;
}
.about-a-desc{
    margin-bottom: 70px;
}
.about-a-desc p{
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #333333;
    margin-bottom: 20px;
    text-align: justify;
}
.about-a-desc p:last-child{
    margin-bottom: 0;
}
.about-a-info{
    display: flex;
    align-items: center;
}
.about-a-info-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 150px;
}
.about-a-info-item:last-child{
    margin-right: 0;
}
.about-a-info-num{
    font-size: 36px;
    color: #3399cc;
}
.about-a-info-num span{
    font-size: 48px;
    color: #3399cc;
}
.about-a-info-desc{
    font-size: 16px;
    color: #666666;
}
.about-a-list{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 305px;
    align-content: space-between;
    justify-content: flex-end;
    margin-top: 45px;
}
.about-a-li{
    width: calc((100% - 30px)/2);
    height: 95px;
    background-image: linear-gradient(90deg, #efefef 0%, #f8f8f8 100%),
    linear-gradient(#1d8cc4, #1d8cc4);
    background-blend-mode: normal, normal;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 18px 25px 20px;
    display: flex;
    align-items: flex-start;
}
.about-a-li:nth-child(3n){
    margin-bottom: 0;
}
.about-a-li:last-child{
    margin-bottom: 0;
}
.about-a-img{
    margin-right: 20px;
}
.about-a-li-tit{
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 5px;
    line-height: 1.5;
}
.about-a-li-desc{
    font-size: 16px;
    color: #666666;
}
#intro{
    position: relative;
    top: -80px;
}

.about-b{
    height: 880px;
    padding: 150px 0;
    background: url("../img/bg2_18.jpg") no-repeat center center;
    background-size: cover;
}
.about-b-tit{
    font-size: 36px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 40px;
}
.about-b-list{
    display: flex;
    justify-content: space-between;
}
.about-b-li{
    height: 504px;
    border-radius: 0 0 30px 0;
    width: calc((100% - 60px)/3.5);
    cursor: pointer;
    background-image: linear-gradient(90deg, #1d8cc4 0%, #19cbd2 100%),
    linear-gradient(#ffffff, #ffffff);
    background-blend-mode: normal, normal;
    transition: all 0.5s;
}
.about-b-li-box{
    height: 100%;
    background-color: #ffffff;
    border-radius: 0 0 30px 0;
    padding: 60px 50px;
    transition: all 0.5s;
    position: relative;
}
.about-b-li-num{
    margin-bottom: 60px;
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    line-height: 1;
    transition: all 0.5s;
}
.about-b-li-img{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
    margin-bottom: 60px;
    transition: all 0.5s;
}
.about-b-li-img img{
    transition: all 0.5s;
}
.about-b-li-tag{
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #333333;
    margin-bottom: 15px;
    transition: all 0.5s;
}
.about-b-li-tit{
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
}
.about-b-li-to{
    margin-top: 60px;
    width: 46px;
    height: 46px;
    background-image: linear-gradient(90deg, #1d8cc4 0%, #19cbd2 100%),
    linear-gradient(#006633, #006633);
    background-blend-mode: normal, normal;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50px;
    bottom: 60px;
}
.about-b-li-to-box{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0);
    transition: all 0.5s;
}
.about-b-li-to img{
    position: relative;
    z-index: 10;
}
.about-b-li-active{
    width: calc(((100% - 60px)/3.5)*1.5);
}
.about-b-li-active .about-b-li-box{
    background: rgba(0,0,0,0);
}
.about-b-li-active .about-b-li-num{
    color: #fff;
    margin-bottom: 24px;
}
.about-b-li-active .about-b-li-img{
    margin-bottom: 45px;
}
.about-b-li-active .about-b-li-img img{
    transform: translatex(60px);
}
.about-b-li-active .about-b-li-tag{
    color: #ffffff;
    text-align: left;
}
.about-b-li-active .about-b-li-tit{
    display: block;
}
.about-b-li-active .about-b-li-to-box{
    background: #ffffff;
}
.about-b-li-active .about-b-li-to img{
    display: none;
}
.about-b-li-active .about-b-li-to img:nth-child(2){
    display: inline-block;
}

.about-c{
    padding: 150px 0 110px;
    background: url("../img/bg3_19.jpg") no-repeat center center;
    background-size: cover;
}
.about-c-tit{
    font-size: 36px;
    line-height: 1;
    color: #333333;
    margin-bottom: 20px;
}
.about-c-img{
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-c-img img{
    max-width: 100%;
}

.about-d{
    padding: 160px 0 80px;
    background: url("../img/bg4_20.jpg") no-repeat center center;
    background-size: cover;
}
.about-d-tit{
    font-size: 36px;
    line-height: 1;
    color: #333333;
    margin-bottom: 40px;
}
.about-d-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-d-img img{
    max-width: 100%;
}

.details{
    width: 1030px;
    max-width: 95%;
    margin: 70px auto 90px;
}
.details-top{
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.details-tit{
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 15px;
    text-align: center;
}
.details-info{
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    color: #333333;
}
.detail-content p{
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: #333333;
    margin-bottom: 20px;
    text-align: justify;
}
.detail-content p:last-child{
    margin-bottom: 0;
}
.detail-content p img{
    max-width: 100%;
}
.details-return{
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 60px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.details-return a{
    width: 200px;
    height: 44px;
    background-color: #1d8cc4;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.details-return a img{
    margin-right: 10px;
}
.details-return a span{
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
}
.details-return a:hover{
    opacity: 0.7;
}
.details-next-item{
    display: flex;
    align-items: center;
}
.details-next-item span{
    font-size: 16px;
    font-weight: bold;
    line-height: 36px;
    color: #1ba2c1;
}
.details-next-item a{
    font-size: 16px;
    font-weight: 300;
    color: #333333;
}
.details-next-item a:hover{
    text-decoration: underline;
    color: #1d8cc4;
}

.news-a{
    margin-top: 40px;
    min-height: 400px;
}
.news-a-list{
    margin-bottom: 50px;
}
.news-a-li{
    display: flex;
    align-items: stretch;
    margin-bottom: 35px;
    border: solid 1px #efefef;
    border-radius: 8px;
    transition: all 0.5s;
}
.news-a-li-left{
    display: flex;
    align-items: center;
    width: 506px;
    height: 337px;
}
.news-a-li-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.news-a-li-right{
    width: calc(100% - 506px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 65px;
    padding-right: 50px;
}
.news-a-li-tag{
    margin-bottom: 15px;
}
.news-a-li-tit{
    font-size: 24px;
    line-height: 30px;
    color: #333333;
    margin-bottom: 20px;
}
.news-a-li-desc{
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 20px;
    text-align: justify;
}
.news-a-li:hover{
    border-color: #19cbd2;
}
.news-a-li:nth-child(even){
    flex-direction: row-reverse;
}
.news-a-li:nth-child(even) .news-a-li-right{
    padding-left: 60px;
    padding-right: 65px;
}

.case-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    margin-top: 80px;
}
.case-pagination a{
    padding: 10px 15px;
    border: 1px solid #dddddd;
    font-size: 14px;
    color: #666666;
    margin: 0 6px 10px;
    transition: all 0.5s;
}
.case-pagination span{
    margin-bottom: 30px;
}
.case-pagination a.page-num-current{
    background: #37A8E2;
    font-weight: bold;
    color: #ffffff;
    border-color: #37A8E2;
}
.case-pagination a:hover{
    background: #37A8E2;
    font-weight: bold;
    color: #ffffff;
    border-color: #37A8E2;
}

.hzhb-a{
    margin-top: 55px;
    margin-bottom: 80px;
}
.hzhb-a-item{
    background: url("../img/bg5_04.jpg") no-repeat center center;
    background-size: cover;
    height: 430px;
    margin-bottom: 35px;
    padding: 60px 50px;
    display: flex;
    border-radius: 8px;
}
.hzhb-a-con{
    width: 625px;
    max-width: 100%;
}
.hzhb-a-tit{
    font-size: 36px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 25px;
}
.hzhb-a-desc{
    margin-bottom: 30px;
}
.hzhb-a-desc p{
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: justify;
}
.hzhb-a-desc p:last-child{
    margin-bottom: 0;
}
.hzhb-a-btn a{
    width: 195px;
    height: 60px;
    background: #1d8cc4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hzhb-a-btn a span{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-right: 20px;
}
.hzhb-a-btn a img{
    transition: all 0.5s;
}
.hzhb-a-btn a:hover img{
    transform: translateX(10px);
}
.hzhb-a-item:nth-child(2){
    justify-content: flex-end;
    background: url("../img/bg6_03.jpg") no-repeat center center;
    background-size: cover;
}
.hzhb-b{
    margin-bottom: 60px;
}
.hzhb-b-box .index-c-li{
    margin-bottom: 40px;
}
.hzhb-c{
    margin-bottom: 90px;
}
.hzhb-c-box{
    position: relative;
}
.hzhb-c-li{
    background-color: #ffffff;
    border-radius: 8px;
    border: solid 1px #e8e8e8;
    overflow: hidden;
}
.hzhb-c-li-img{
    width: 100%;
    height: 245px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hzhb-c-li-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.hzhb-c-li-con{
    padding: 36px 40px 40px;
}
.hzhb-c-li-tit{
    font-size: 24px;
    line-height: 1;
    color: #000028;
    margin-bottom: 15px;
}
.hzhb-c-li-desc{
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #666666;
}
.hzhb-c-li:hover .hzhb-c-li-img img{
    transform: scale(1.15);
}
.hzhb-c-item{
    position: absolute;
    width: 46px;
    height: 46px;
    background-color: #ffffff;
    border: solid 1px #cccccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    margin-top: -23px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.5s;
}
.hzhb-c-prev{
    left: -80px;
}
.hzhb-c-next{
    right: -80px;
}
.hzhb-c-item:hover{
    background-color: #0284d0;
    border: solid 1px #0284d0;
}
.hzhb-c-item:hover img{
    display: none;
}
.hzhb-c-item:hover img:last-child{
    display: inline-block;
}

#tzzjs{
    position: relative;
    top: -120px;
}
.tzzgx-a{
    margin-top: 50px;
    margin-bottom: 50px;
}
.tzzgx-c-box{

}
.tzzgx-c-item{
    width: 100%;
    display: flex;
    border-radius: 8px;
    border: solid 1px #efefef;
    margin-bottom: 30px;
}
.tzzgx-c-item-left{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tzzgx-c-item-left img{
    max-width: 85%;
    max-height: 90%;
    object-fit: contain;
}
.tzzgx-c-item-right{
    width: 50%;
    padding: 40px 40px 40px 0;
}
.tzzgx-c-item-tit{
    font-size: 30px;
    line-height: 1;
    color: #333333;
    margin-bottom: 20px;
}
.tzzgx-c-item-con p{
    font-size: 16px;
    line-height: 2;
    color: #666666;
    text-align: justify;
}
.tzzgx-c-item:nth-child(even){
    flex-direction: row-reverse;
}
.tzzgx-c-item:nth-child(even) .tzzgx-c-item-right{
    padding: 40px 0 40px 40px;
}

.tzzgx-a-box{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.tzzgx-a-item{
    width: calc((100% - 60px)/2);
    display: flex;
    flex-direction: column;
}
.tzzgx-a-img{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}
.tzzgx-a-img img{
    width: 100%;
    border-radius: 8px;
}
.tzzgx-a-con{
    border-radius: 8px;
    border: solid 1px #efefef;
    position: relative;
    top: -10px;
    padding: 60px 30px 50px 50px;
}
.tzzgx-a-tit{
    font-size: 30px;
    line-height: 1;
    color: #333333;
    margin-bottom: 20px;
}
.tzzgx-a-desc{
    height: 666px;
    overflow-y: auto;
    padding-right: 20px;
}
.tzzgx-a-desc::-webkit-scrollbar{
    width: 5px;
}
.tzzgx-a-desc::-webkit-scrollbar-track{
    background-color: #efefef;
    border-radius: 3px;
}
.tzzgx-a-desc::-webkit-scrollbar-thumb{
    background-color: #0284d0;
    border-radius: 3px;
}
.tzzgx-a-desc p{
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    /*margin-bottom: 40px;*/
    text-align: justify;
}
.tzzgx-a-desc p:last-child{
    margin-bottom: 0;
}
.tzzgx-a-item:nth-child(2){
    flex-direction: column-reverse;
    position: relative;
    top: -10px;
}
.tzzgx-a-item:nth-child(2) .tzzgx-a-con{
    top: 10px;
}
#dx{
    position: relative;
    top: -170px;
}
.tzzgx-b{
    margin-bottom: 50px;
}
.tzzgx-b-li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F2F2F2;
    margin-bottom: 14px;
    padding: 14px 36px 14px 14px;
    transition: all 0.5s;
}
.tzzgx-b-li-right{
    width: 46px;
    height: 46px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-left: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.tzzgx-b-li-left{
    width: calc(100% - 46px - 40px);
    display: flex;
    align-items: center;
}
.tzzgx-b-date{
    width: 80px;
    height: 80px;
    background-color: #0284d0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-right: 50px;
    transition: all 0.5s;
}
.tzzgx-b-date span{
    color: #ffffff;
    transition: all 0.5s;
}
.tzzgx-b-date span:nth-child(1){
    font-size: 36px;
    margin-bottom: 10px;
}
.tzzgx-b-date span:nth-child(2){
    font-size: 14px;
    font-weight: 300;
}
.tzzgx-b-li-tit{
    width: calc(100% - 50px - 80px);
    font-size: 18px;
    line-height: 1;
    color: #333333;
    transition: all 0.5s;
}
.tzzgx-b-li:hover{
    background: #1d8cc4;
}
.tzzgx-b-li:hover .tzzgx-b-date{
    background: #fff;
}
.tzzgx-b-li:hover .tzzgx-b-date span{
    color: #1d8cc4;
}
.tzzgx-b-li:hover .tzzgx-b-li-tit{
    color: #fff;
}

.jjfa-a{
    margin-top: 60px;
}
.jjfa-container{
    background-color: #ffffff;
    border-radius: 0 0 60px 0;
    border: solid 1px #efefef;
    padding: 30px;
    margin-bottom: 50px;
}
.jjfa-container img{
    max-width: 100%;
}
.jjfa-a-con{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.jjfa-a-left{
    padding: 30px;
}
.jjfa-a-right{
    margin-left: 20px;
    display: flex;
    align-items: center;
}
.jjfa-a-right img{
    max-width: 100%;
}
.jjfa-a-left-item{
    margin-bottom: 20px;
}
.jjfa-a-left-item:last-child{
    margin-bottom: 0;
}
.jjfa-a-tit{
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    color: #333333;
}
.jjfa-a-desc{
    font-size: 16px;
    color: #333333;
}
.jjfa-b-con{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px;
}
.jjfa-b-right{
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 60px;
}
.jjfa-b-right img{
    margin-bottom: 20px;
}
.jjfa-b-right img:last-child{
    margin-bottom: 0;
}
.jjfa-b-left{
    flex: 1;
}
.jjfa-b-left-img{
    display: flex;
    align-items: center;
}
.jjfa-b-left-img img{
    max-width: 100%;
}
.jjfa-b-left-text{
    margin-bottom: 40px;
}
.jjfa-b-left-intro{
    font-size: 16px;
    line-height: 30px;
    color: #333333;
    margin-bottom: 30px;
}
.jjfa-b-left-tit{
    font-size: 18px;
    color: #333333;
    margin-bottom: 5px;
    font-weight: bold;
}
.jjfa-b-left-desc{
    font-size: 16px;
    color: #333333;
}
.jjfa-c-con{
    padding: 20px;
}
.jjfa-c-item{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}
.jjfa-c-item:last-child{
    margin-bottom: 0;
}
.jjfa-c-img{
    width: 606px;
    display: flex;
    align-items: center;
}
.jjfa-c-img img{
    max-width: 100%;
}
.jjfa-c-text{
    width: calc(100% - 60px - 606px);
    margin-top: 20px;
}
.jjfa-c-tit{
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    color: #333333;
    margin-bottom: 5px;
}
.jjfa-c-desc{
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
    text-align: justify;
}
.jjfa-c-item:last-child .jjfa-c-text{
    width: calc(100% - 60px - 554px);
}
.jjfa-d-con{
    padding-left: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.jjfa-d-right{
    display: flex;
    align-items: center;
}
.jjfa-d-right img{
    max-width: 100%;
}
.jjfa-d-left{
    flex: 1;
    margin-top: 80px;
}
.jjfa-d-tit{
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    color: #333333;
    margin-bottom: 30px;
}
.jjfa-d-desc{
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    text-align: justify;
}
.jjfa-e-con{
    padding: 30px 30px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.jjfa-e-left{
    width: 576px;
    display: flex;
    align-items: center;
    margin-right: 50px;
}
.jjfa-e-left img{
    max-width: 100%;
}
.jjfa-e-right{
    flex: 1;
}
.jjfa-e-item{
    margin-bottom: 20px;
}
.jjfa-e-item:last-child{
    margin-bottom: 0;
}
.jjfa-e-tit{
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    color: #333333;
}
.jjfa-e-desc{
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    text-align: justify;
}
.jjfa-f{
    padding: 70px 0;
    background: #F8F8F8;
    margin-bottom: 80px;
}
.jjfa-f-container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 8px;
    border: solid 1px #efefef;
}
.jjfa-f-left{
    width: 640px;
    margin-right: 40px;
    display: flex;
    align-items: center;
}
.jjfa-f-left img{
    max-width: 100%;
    border-radius: 8px;
}
.jjfa-f-right{
    flex: 1;
    padding: 60px 40px 30px 0;
}
.jjfa-f-tit{
    font-size: 30px;
    line-height: 30px;
    color: #333333;
    margin-bottom: 20px;
}
.jjfa-f-desc{
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 20px;
}
.jjfa-f-item{
    background: #F8F8F8;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.jjfa-f-item-left{
    width: 32px;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: #1d8cc4;
    margin-right: 25px;
}
.jjfa-f-item-right{
    flex: 1;
}
.jjfa-f-item-right p{
    font-size: 16px;
    line-height: 24px;
    color: #666666;
}
.jjfa-f-btn{
    width: 195px;
    height: 60px;
    background: #1d8cc4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.jjfa-f-btn span{
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-right: 30px;
}
.jjfa-f-btn img{
    transition: all 0.5s;
}
.jjfa-f-btn:hover img{
    transform: translateX(10px);
}
.jjfa-g-li{
    background-color: #ffffff;
    border-radius: 8px;
    border: solid 1px #e8e8e8;
    overflow: hidden;
}
.jjfa-g-li-img{
    height: 245px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.jjfa-g-li-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.jjfa-g-li:hover .jjfa-g-li-img img{
    transform: scale(1.15);
}
.jjfa-g-li-con{
    padding: 26px 26px 30px;
}
.jjfa-g-li-date{
    font-size: 14px;
    line-height: 1;
    color: #0284d0;
    margin-bottom: 15px;
}
.jjfa-g-li-tit{
    font-size: 24px;
    line-height: 30px;
    color: #333333;
    margin-bottom: 10px;
}
.jjfa-g-li-desc{
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #666666;
}
.jjfa-g-li-text{
    min-height: 171px;
    margin-bottom: 20px;
}

.jjfa2-a{
    margin-top: 70px;
    margin-bottom: 60px;
}
.jjfa2-a-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 0 0 60px 0;
    border: solid 1px #efefef;
}
.jjfa2-a-left{
    width: 639px;
    margin-right: 44px;
    position: relative;
}
.jjfa2-a-img{
    display: flex;
    align-items: center;
}
.jjfa2-a-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.jjfa2-a-right{
    flex: 1;
    padding: 20px 40px 20px 0;
}
.jjfa2-a-tit{
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    line-height: 1;
    margin-bottom: 15px;
}
.jjfa2-a-desc{
    font-size: 16px;
    line-height: 22px;
    color: #666666;
    margin-bottom: 15px;
    text-align: justify;
}
.jjfa2-a-desc2{
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 20px;
}
.jjfa2-a-left .jjfa2-a-pagination{
    bottom: 30px;
}
.jjfa2-a-pagination .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    opacity: 1;
}
.jjfa2-a-pagination .swiper-pagination-bullet-active{
    background: #1d8cc4;
}
.jjfa2-a-prev{
    left: -23px;
}
.jjfa2-a-next{
    right: -23px;
}
.jjfa2-a-2 .jjfa2-a-box{
    flex-direction: row-reverse;
}
.jjfa2-a-2 .jjfa2-a-left{
    margin-right: 0;
    margin-left: 44px;
}
.jjfa2-a-2 .jjfa2-a-right{
    padding: 20px 0 20px 40px;
}
.jjfa2-b{
    margin-bottom: 80px;
}
.jjfa2-b-top{
    height: 60px;
    background: #F8F8F8;
}
.jjfa2-b-text{
    width: 248px;
    height: 100%;
    background: url("../img/jx1_08.png") no-repeat center center;
    background-size: 100% 100%;
    padding-left: 34px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
}
.jjfa2-b-box{
    padding: 40px 55px 75px;
    background-color: #ffffff;
    border-radius: 0 0 60px 0;
    border: solid 1px #efefef;
}
.jjfa2-b-img{
    display: flex;
    align-items: center;
    margin-bottom: 38px;
}
.jjfa2-b-img img{
    max-width: 100%;
}
.jjfa2-b-tit{
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #333333;
    margin-bottom: 20px;
}
.jjfa2-b-desc-item{
    margin-bottom: 25px;
}
.jjfa2-b-desc-item:last-child{
    margin-bottom: 0;
}
.jjfa2-b-desc-tit{
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: #1d8cc4;
}
.jjfa2-b-desc-text p{
    font-size: 14px;
    color: #333333;
}

.list-a{
    margin-top: 90px;
    margin-bottom: 50px;
}
.list-a-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.list-a-li{
    width: calc((100% - 55px)/2);
    margin-bottom: 55px;
    background-color: #ffffff;
    border-radius: 8px;
    border: solid 1px #efefef;
}
.list-a-img{
    height: 413px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}
.list-a-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.5s;
}
.list-a-li:hover .list-a-img img{
    transform: scale(1.15);
}
.list-a-con{
    padding: 70px 55px;
    position: relative;
}
.list-a-num{
    position: absolute;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    color: #1d8cc4;
    right: 60px;
    top: -24px;
}
.list-a-tit{
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    color: #333333;
    margin-bottom: 40px;
}
.list-a-desc{
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    min-height: 96px;
    margin-bottom: 40px;
    text-align: justify;
}

.product-box{
    margin-top: 40px;
}
.product-box-item{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.product-box-img{
    width: 293px;
    margin-right: 24px;
    display: flex;
    align-items: center;
}
.product-box-img img{
    width: 100%;
}
.product-box-con{
    flex: 1;
    line-height: 1.8;
}
.product-box-item:nth-child(even){
    flex-direction: row-reverse;
}
.product-box-item:nth-child(even) .product-box-img{
    margin-right: 0;
    margin-left: 24px;
}

.rczp-a{
    height: 229px;
    background-color: #f8f8f8;
    padding: 20px 0;
    position: relative;
    top: -60px;
}
.rczp-a-box{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rczp-a-tit{
    font-size: 42px;
    font-weight: bold;
    line-height: 1;
    color: #333333;
    margin-bottom: 16px;
}
.rczp-a-btn{
    display: flex;
    align-items: center;
}
.rczp-a-btn a{
    width: 162px;
    height: 52px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    transition: all 0.5s;
}
.rczp-a-btn a span{
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
}
.rczp-a-boss{
    background-image: linear-gradient(90deg, #1dd5e6 0%, #46aef7 100%),
    linear-gradient(#83e0c3, #83e0c3);
    background-blend-mode: normal, normal;
    margin-right: 10px;
}
.rczp-a-51{
    background-image: linear-gradient(90deg, #33cc99 0%, #01e9bd 100%),
    linear-gradient(#83e0c3, #83e0c3);
    background-blend-mode: normal, normal;
}
.rczp-a-btn a:hover{
    opacity: 0.6;
}
.rczp-a-right{
    display: flex;
    align-items: flex-start;
}
.rczp-a-right-img{
    display: flex;
    align-items: center;
    margin-right: 24px;
}
.rczp-a-right-tit{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    color: #1d8cc4;
}
.rczp-a-right-desc p{
    font-size: 18px;
    line-height: 30px;
    color: #333333;
}
.rczp-b{
    margin-bottom: 90px;
}
.rczp-b-tit{
    font-size: 36px;
    font-weight: bold;
    line-height: 30px;
    color: #333333;
    margin-bottom: 30px;
    text-align: center;
}
.rczp-b-desc{
    margin-bottom: 35px;
}
.rczp-b-desc p{
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    text-align: center;
}
.rczp-b-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.rczp-b-img img{
    max-width: 100%;
    border-radius: 36px;
}
.rczp-c{
    margin-bottom: 120px;
}
.rczp-c-item{
    display: flex;
    align-items: stretch;
    background-color: #f8f8f8;
    border-radius: 36px;
    margin-bottom: 50px;
}
.rczp-c-img{
    width: 607px;
    display: flex;
    align-items: center;
}
.rczp-c-img img{
    width: 100%;
    border-radius: 36px;
}
.rczp-c-con{
    flex: 1;
    padding: 30px 96px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}
.rczp-c-num{
    position: absolute;
    top: 80px;
    right: 74px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    color: #1d8cc4;
}
.rczp-c-tit{
    font-size: 30px;
    line-height: 1;
    color: #333333;
    margin-bottom: 35px;
}
.rczp-c-desc p{
    font-size: 18px;
    line-height: 30px;
    color: #666666;
}
.rczp-c-item:nth-child(even){
    flex-direction: row-reverse;
}

.qssk-right-item{
    width: 58px;
    height: 58px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: fixed;
    right: 20px;
    z-index: 90;
    box-shadow: 1px 1px 10px 0 rgba(29, 140, 196, 0.3);
    cursor: pointer;
    transition: all 0.4s;
}
.qssk-right-concat{
    top: 60%;
}
.qssk-right-top{
    top: calc(60% + 58px + 10px);
}
.qssk-right-item:hover{
    right: 30px;
}

.qssk-concat{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    z-index: 100;
}
.qssk-concat-box{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    opacity: 0;
}
.qssk-concat-con{
    width: 1260px;
    max-width: 90%;
    background: #ffffff;
    padding: 70px 40px 70px 66px;
    position: relative;
    border-radius: 8px;
    transform: scale(0.5);
    transition: all 0.4s;
}
.qssk-concat-con-box{
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 30px;
}
.qssk-concat-active{
    opacity: 1;
}
.qssk-concat-active .qssk-concat-con{
    transform: scale(1);
}
.qssk-concat-close{
    position: absolute;
    top: -30px;
    right: -30px;
    cursor: pointer;
}
.qssk-concat-form{
    margin-bottom: 60px;
    margin-top: 50px;
}
.qssk-concat-form form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.qssk-concat-ipt{
    width: calc((100% - 48px)/2);
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}
.qssk-concat-ipt label{
    font-size: 16px;
    line-height: 1;
    color: #333333;
}
.qssk-concat-ipt input{
    flex: 1;
    font-size: 16px;
    line-height: 1;
    color: #333333;
    margin-left: 10px;
    border: 0;
}
.qssk-concat-textarea{
    width: 100%;
    margin-bottom: 25px;
}
.qssk-concat-textarea textarea{
    width: 100%;
    height: 120px;
    resize: none;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
}
.qssk-concat-btn{
    width: 100%;
}
.qssk-concat-btn button{
    width: 328px;
    height: 52px;
    max-width: 100%;
    background-color: #1d8cc4;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    transition: all 0.5s;
}
.qssk-concat-btn button:hover{
    opacity: 0.7;
}
.qssk-concat-info{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.qssk-concat-item{
    background: #F0F0F0;
    height: 130px;
    width: calc((100% - 40px)/2);
    margin-bottom: 30px;
    padding: 30px 60px;
    display: flex;
    align-items: center;
}
.qssk-concat-item:first-child{
    width: 100%;
    margin-bottom: 0;
}
.qssk-concat-info-img{
    margin-right: 50px;
}
.qssk-concat-info-text{
    font-size: 16px;
    line-height: 1;
    color: #333333;
    margin-bottom: 8px;
}
.qssk-concat-info-desc{
    font-size: 24px;
    color: #333333;
}
.qssk-concat-info-desc p{
    font-size: 24px;
    color: #333333;
    line-height: 1.2;
}
.qssk-concat-first{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.qssk-concat-qrcode{
    height: 100%;
    margin-left: 40px;
}
.qssk-concat-qrcode img{
    height: 100%;
    border: 1px solid #e5e5e5;
}
.qssk-concat-bottom-qr{
    width: 100%;
    align-items: center;
    justify-content: center;
}
.qssk-concat-bottom-qr img{
    border: 1px solid #e5e5e5;
    width: 128px;
}

.cpsy-banner-list{
    display: flex;
    flex-wrap: wrap;
    width: 605px;
    justify-content: space-between;
    margin-top: 40px;
}
.cpsy-banner-li{
    width: calc((100% - 25px)/2);
    height: 54px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 0 16px;
    background: url("../img/jx2_03.png") no-repeat center center;
    background-size: 100% 100%;
}
.cpsy-banner-li span{
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    margin-left: 10px;
}
.cpsy-banner-text{
    width: 100%;
    position: absolute;
    bottom: 40px;
    left: 0;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 4px;
    color: #ffffff;
    padding: 0 2.5%;
}
.cpsy-title{
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-align: center;
}
.cpsy-a{
    width: 100%;
    height: 766px;
    background: url("../img/bg7_02.jpg") no-repeat center center;
    background-size: cover;
    padding: 50px 0;
}
.cpsy-a-box{
    height: 100%;
    display: flex;
    align-items: center;
}
.cpsy-a-container{
    width: 684px;
    max-width: 100%;
}
.cpsy-a-tit{
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 40px;
}
.cpsy-a-tit span{
    font-size: 52px;
    font-weight: bold;
    color: #ffffff;
}
.cpsy-a-desc p{
    font-size: 18px;
    line-height: 36px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: justify;
}
.cpsy-a-desc p:last-child{
    margin-bottom: 0;
}
.cpsy-b{
    width: 100%;
    position: relative;
}
.cpsy-b-img{
    display: flex;
    align-items: center;
}
.cpsy-b-img img{
    width: 100%;
}
.cpsy-b-tit{
    position: absolute;
    width: 100%;
    padding: 0 2.5%;
    left: 0;
    top: 8%;
}
.cpsy-b-text{
    position: absolute;
    width: 100%;
    padding: 0 2.5%;
    text-align: center;
    left: 0;
    bottom: 6%;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
}
.cpsy-c{
    width: 100%;
    min-height: 816px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    background: url("../img/bg8_04.jpg") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}
.cpsy-c-tit{
    margin-bottom: 20px;
}
.cpsy-c-desc{
    font-size: 18px;
    line-height: 36px;
    color: #ffffff;
    margin-bottom: 35px;
    text-align: center;
}
.cpsy-c-list{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.cpsy-c-li{
    width: calc((100% - 60px)/4);
    height: 410px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 10px 20px;
    border-style: solid;
    border-width: 1px;
    border-image-source: linear-gradient(0deg, #1d8dc4 0%, #23d3f4 100%);
    border-image-slice: 1;
    background: url("../img/jx3_06.png") no-repeat center center;
    background-size: cover;
}
.cpsy-c-li-tit{
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
    background: linear-gradient(to bottom, #89f7fd 0%, #c8e3fb 100%);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 44px;
    text-align: center;
}
.cpsy-c-li-num{
    width: 40px;
    height: 40px;
    border-style: solid;
    border-width: 2px;
    border-image-source: linear-gradient(-35deg, #209cff 0%, #68e0cf 100%);
    border-image-slice: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    margin-bottom: 50px;
}
.cpsy-c-li-num span{
    transform: rotate(-45deg);
    font-size: 24px;
    line-height: 1;
    background: linear-gradient(to bottom, #89f7fd 0%, #c8e3fb 100%);
    -webkit-background-clip: text;
    color: transparent;
}
.cpsy-c-li-desc{
    padding: 0 35px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #ffffff;
    text-align: justify;
}
.cpsy-d{
    width: 100%;
    min-height: 746px;
    padding: 50px 0;
    display: flex;
    align-items: center;
    background: url("../img/bg9_05.jpg") no-repeat center center;
    background-size: cover;
}
.cpsy-d-tit{
    margin-bottom: 60px;
}
.cpsy-d-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cpsy-d-li{
    width: calc((100% - 16px)/2);
    display: flex;
    align-items: flex-start;
}
.cpsy-d-li:first-child{
    margin-bottom: 40px;
}
.cpsy-d-li-left{
    display: flex;
    align-items: flex-start;
    margin-right: 60px;
}
.cpsy-d-li-num{
    font-size: 24px;
    line-height: 1;
    background: linear-gradient(to bottom, #89f7fd 0%, #c8e3fb 100%);
    -webkit-background-clip: text;
    color: transparent;
    margin-right: 40px;
}
.cpsy-d-li-img{
    display: flex;
    align-items: center;
}
.cpsy-d-li-right{
    flex: 1;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 25px;
}
.cpsy-d-li-tit{
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 25px;
}
.cpsy-d-li-desc p{
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
}
.cpsy-d-li:nth-child(3) .cpsy-d-li-right{
    border-bottom: 0;
}
.cpsy-d-li:nth-child(4) .cpsy-d-li-right{
    border-bottom: 0;
}
.cpsy-e{
    width: 100%;
    padding: 55px 0 70px;
    display: flex;
    align-items: center;
    background: url("../img/bg10_06.jpg") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}
.cpsy-e-tit{
    margin-bottom: 40px;
}
.cpsy-e-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cpsy-e-li{
    width: calc((100% - 30px)/2);
    margin-bottom: 30px;
}
.cpsy-e-li-img{
    width: 100%;
    height: 357px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.cpsy-e-li-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.cpsy-e-li-con{
    height: 50px;
    background: rgba(0,7,25,0.34);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
}
.cpsy-e-li:hover .cpsy-e-li-img img{
    transform: scale(1.15);
}
.cpsy-e-yw{
    display: flex;
    flex-wrap: wrap;
}
.cpsy-e-item{
    width: calc((100% - 70px)/8);
    height: 60px;
    border-style: solid;
    border-width: 1px;
    border-image-source: linear-gradient(0deg, #1d8dc4 0%, #23d3f4 100%);
    border-image-slice: 1;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
    background: url("../img/jx4_03.png") no-repeat center center;
    background-size: cover;
}
.cpsy-e-item:nth-child(8n){
    margin-right: 0;
}
.cpsy-e-item span{
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    background: linear-gradient(to bottom, #89f7fd 0%, #c8e3fb 100%);
    -webkit-background-clip: text;
    color: transparent;
}
.cpsy-f{
    width: 100%;
    min-height: 532px;
    padding: 50px 0;
    background: url("../img/bg11_07.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}
.cpsy-f-tit{
    margin-bottom: 60px;
}
.cpsy-f-time{
    display: flex;
    align-items: center;
    justify-content: center;
}
.cpsy-f-item{
    display: flex;
    align-items: center;
    margin-right: 60px;
}
.cpsy-f-ipt{
    height: 90px;
    background-color: #13132d;
    border-radius: 6px;
    border: solid 2px #1d8cc4;
    padding: 25px 45px;
    display: flex;
    align-items: center;
    margin-right: 30px;
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    color: #ff9900;
}
.cpsy-f-text{
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
}
.cpsy-f-item:last-child{
    margin-right: 0;
}

/* footer */
.footer{
    background-image: linear-gradient(90deg, #1d8cc4 0%, #19cbd2 100%);
    padding-top: 60px;
}
.footer-top{
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.footer-logo{
    margin-bottom: 10px;
}
.footer-top-left{
    margin-right: 100px;
}
.footer-info-item{
    display: flex;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
}
.footer-info-item span{
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
}
.footer-info-item p{
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 5px;
}
.footer-top-center{
    margin-right: 100px;
}
.footer-list{
    width: 478px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-li{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-li span{
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 15px;
}
.footer-li a{
    font-size: 14px;
    line-height: 1;
    margin-bottom: 15px;
    color: #ffffff;
}
.footer-li a:hover{
    text-decoration: underline;
}
.footer-top-right{
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}
.footer-qrcode{
    width: 120px;
    margin-right: 10px;
}
.footer-tb-item{
    width: 60px;
    height: 57px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
}
.footer-tb-item:last-child{
    margin-bottom: 0;
}
.footer-top-line{
    width: 1px;
    opacity: 0.5;
    background: #ffffff;
    margin-right: 20px;
}
.footer-center{
    border-top: 1px solid rgba(255,255,255,0.22);
    border-bottom: 1px solid rgba(255,255,255,0.22);
    padding: 20px 0;
}
.footer-center-box{
    display: flex;
    align-items: center;
    line-height: 24px;
}
.footer-center-box span{
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    margin-right: 10px;
}
.footer-center-box a{
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
}
.footer-center-line{
    width: 1px;
    height: 14px;
    margin: 0 20px;
    background: #ffffff;
    opacity: 0.5;
}
.footer-center-box a:hover{
    text-decoration: underline;
}
.footer-bottom-box{
    padding: 20px 0;
    display: flex;
    align-items: center;
    line-height: 24px;
}
.footer-bottom-bq{
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    margin-right: 80px;
}
.footer-bottom-ba{
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
}
.footer-bottom-ba a{
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
}
.footer-bottom-ba a:hover{
    text-decoration: underline;
}

.cp-a{
    margin-top: 60px;
    padding-bottom: 30px;
}
.cp-container{
    background-color: #ffffff;
    border-radius: 0 0 60px 0;
    border: solid 1px #efefef;
    padding: 70px 50px 60px;
}
.cp-container-tit{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #333333;
    margin-bottom: 30px;
}
.cp-container-desc{
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    text-align: justify;
}
.cp-a-con{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cp-a-item{
    width: calc((100% - 45px)/2);
    margin-bottom: 45px;
}
.cp-b{
    padding: 70px 0 80px;
    background: #F8F8F8;
}
.cp-b-top, .cp-b-bottom{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cp-b-top-item{
    width: calc((100% - 30px)/3);
    margin-bottom: 20px;
}
.cp-b-bottom-item{
    width: calc((100% - 22px)/2);
    margin-bottom: 20px;
}
.cp-c{
    padding: 70px 0;
    background: #F8F8F8;
}

.fw-a .cp-a-item{
    margin-bottom: 20px;
}
.fw-a{
    padding-bottom: 60px;
}
.cp-container-desc p{
    line-height: 2;
}
.cp-container-desc p{

}
.fw-a .cp-container-desc p span{
    /*color: #1d8cc4;*/
    /*margin-right: 5px;*/
}
.fw-b .cp-container-desc{
    text-align: left;
}
.fw-a .cp-container-desc{
    text-align: left;
}
.fw-b .cp-container-desc p span{
    color: #333333;
    font-weight: bold;
}
.fw-b-tab{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.fw-b-tab-item{
    height: 110px;
    width: calc((100% - 30px)/3);
    border-radius: 0 0 60px 0;
    background-image: linear-gradient(90deg, #82BFDE 0%, #ADEADA 100%);
    padding: 10px 40px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.search-a .news-a-li-right{
    width: 100%;
    padding: 40px;
}
.search-b{
    margin-top: 80px;
    margin-bottom: 100px;
    display: flex;
}
.search-b-con{
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 40px;
}
.search-b-box{
    width: 800px;
    max-width: 100%;
}
.search-b-box form{
    /*width: 100%;*/
    display: flex;
    align-items: center;
}
.search-b-box button{
    width: 140px;
    height: 50px;
    border: 0;
    background-image: linear-gradient(90deg, #82BFDE 0%, #ADEADA 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 5px;
    border-radius: 5px;
    margin-left: 30px;
    opacity: 1;
    transition: all 0.5s;
    cursor: pointer;
}
.search-b-box button:hover{
    opacity: 0.8;
}
.search-b-box input{
    flex: 1;
    height: 50px;
    border: 1px solid #ccc;
    padding: 0 20px;
    border-radius: 5px;
    background: none;
    font-size: 16px;
    color: #333;
}
.banner-content{
    width: 100%;
}