*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'MiSansLatin-Normal',serif;
}
html, body{
    scroll-behavior:smooth;
    color: #333333;
    background: #fff;
}
a{
    color: #333;
    text-decoration: none;
}
input, button, textarea {
    outline: none;
}

/* 公共类名 */
.none{
    display: none;
}
.auto{
    width: 1200px;
    margin: 0 auto;
    max-width: 95%;
}
.ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ellipsis-more{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.title{
    width: 100%;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    color: #181818;
    text-align: center;
}
.title-white{
    color: #ffffff;
}

/* header */
.header{

}
.header-box{
    width: 100%;
    position: fixed;
    height: 70px;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #fff;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
}
.header-box-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left{
    height: 100%;
    display: flex;
    align-items: center;
}
.header-logo{
    margin-right: 100px;
    display: flex;
    align-items: center;
}
.header-logo img{
    width: 151px;
}
.header-list{
    height: 100%;
    display: flex;
    align-items: center;
}
.header-li{
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 70px;
    position: relative;
}
.header-li-a{
    height: 100%;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 17px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    position: relative;
}
.header-li-a:after{
    font-family: 'FontAwesome';
    content: "\f107";
    position: absolute;
    right: -20px;
    font-size: 16px;
    margin-top: 6px;
}
.header-li-ul{
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.10);
    position: absolute;
    top: 100%;
    left: 0;
    transform: perspective(300px) scaleY(0) translateZ(30px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.header-li-ul li{
    display: flex;
    align-items: center;
    position: relative;
}
.header-li-pro{
    background: #0ca554;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.header-li-pro span{
    width: 220px;
    margin-right: 40px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.header-li-pro:before{
    position: absolute;
    content: '//';
    left: 15px;
    opacity: 0;
    color: #ffffff;
    font-size: 14px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.header-li-pro:after{
    font-family: 'FontAwesome';
    content: "\f105";
    position: absolute;
    right: 15px;
    width: 10px;
    height: 20px;
    z-index: 5;
    display: block;
    line-height: 20px;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.header-li-ul-list{
    background: #0ca554;
    position: absolute;
    left: 100%;
    top: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
}
.header-li-ul-list a{
    display: flex;
    width: 260px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    border-left: 1px solid rgba(255,255,255,0.2);
    position: relative;
}
.header-li-ul-list a span{
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.header-li-ul-list a:before{
    position: absolute;
    content: '//';
    left: 15px;
    opacity: 0;
    color: #ffffff;
    font-size: 14px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.products-header .header-box{
    background-color: #020033;
}
.products-header .header-li-a{
    color: #fff;
}
.header-li-ul li:hover .header-li-pro:before{
    opacity: 1;
}
.header-li-ul li:hover .header-li-pro span{
    transform: translateX(15px);
}
.header-li-ul li:hover .header-li-pro:after{
     color: #333333;
}
.header-li-ul li:hover .header-li-ul-list{
    /*display: block;*/
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}
.header-li-ul-list a:hover:before{
    opacity: 1;
}
.header-li-ul-list a:hover span{
    transform: translateX(15px);
}
.header-li:hover .header-li-ul{
    /*display: block;*/
    transform: perspective(300px) scaleY(1) translateZ(0);
    opacity: 1;
    visibility: visible;
}
.header-li:hover .header-li-a{
    color: #0ca554;
}
.header-li-pro-none:after{
    content: ''
}
.header-right a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 165px;
    height: 50px;
    background-color: #0ca454;
    border-radius: 30px;
    font-size: 14px;
    color: #ffffff;
    line-height: 1;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.header-right a span{
    margin-right: 10px;
}
.header-right a:hover{
    background: #555;
}
.header-height{
    height: 70px;
}
.header-menu-box{
    display: flex;
    align-items: center;
}
.header-menu-box img{
    width: 40px;
}

/* mobile header */
.header-mobile{
    width: 75vw;
    height: 100vh;
    position: fixed;
    left: -75vw;
    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: #020033;
    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: #020033;
    border-radius: 50%;
    margin-right: 10px;
}
.mobile-li-right{
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #666666;
}
.mobile-li-list-a{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    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: 10px;
}
.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-li-list-a-ul ul li a{
    display: flex;
    align-items: center;
    border-top: 1px solid #EBEBEB;
    background: #F6F6F6;
    height: 50px;
    padding: 0 20px 0 40px;
    color: #999999;
    font-size: 14px;
}

.banner{
    position: relative;
}
.banner-bg{
    display: flex;
    align-items: center;
}
.banner-bg img{
    width: 100%;
    min-height: 284px;
    object-fit: cover;
}
.banner-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.banner-container{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}
.banner-bread{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.banner-bread-line{
    margin: 0 10px;
}
.banner-bread-text{
    color: #ffffff;
}
.banner-bread-home img{
    width: 21px;
}
.banner-bread-text:hover{
    color: #0ca554;
    text-decoration: underline;
}
.banner-tit{
    font-size: 42px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
    color: #ffffff;
}
.banner-img{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-img img{
    max-width: 95%;
}

.banner-inquire{
    position: absolute;
    height: 40px;
    background: #0ca554;
    color: #fff;
    right: 90px;
    bottom: 30px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.5s;
    padding: 0 15px;
}
.banner-inquire-img{
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 20px;
}
.banner-inquire-img img{
    width: 100%;
    height: 100%;
    color: #fff;
}
.banner-inquire:hover{
    background: #158343;
    /*background: #0E7643;*/
}

.content{
    padding: 90px 0;
}
.content-tit{
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    margin-bottom: 28px;
}
.content-line{
    width: 0;
    display: flex;
    border-bottom: 2px solid #dbdbdb;
    margin-bottom: 50px;
    transition: all 1s;
}
.content-line span{
    width: 109px;
    height: 9px;
    background-color: #0ca454;
}
.content-line-ani{
    width: 100%;
}
.content-desc{
    font-size: 33px;
    font-weight: bold;
    line-height: 41px;
    color: #000000;
    margin-bottom: 46px;
}
.content-tab{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.content-tab a{
    height: 40px;
    padding: 13px 24px;
    line-height: 1;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    background-color: #e6e6e6;
    border-radius: 40px;
    margin-right: 20px;
    margin-bottom: 14px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
/*.content-tab a:nth-child(5){*/
/*    margin-right: 0;*/
/*}*/
.content-tab a:hover{
    color: #ffffff;
    background: #0ca554;
}
.content-tab a.content-tab-active{
    color: #ffffff;
    background: #0ca554;
}

.content-list-ul ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px 10px;
}
.content-list-ul ul li a{
    display: block;
    background-color: #f7f7f7;
    padding: 0 20px 20px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.content-list-li-img{
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-list-li-tit{
    font-size: 13px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 4px;
}
.content-list-li-desc{
    font-size: 17px;
    font-weight: bold;
    line-height: 19px;
    color: #000000;
}
.content-list-ul ul li a:hover{
    background: #e6e6e6;
}

/* footer */
.footer{
    width: 100%;
    background-color: #696969;
    padding-top: 60px;
}
.footer-top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-logo{
    display: flex;
    align-items: center;
    margin-right: 60px;
}
.footer-logo img{
    width: 151px;
}
.footer-list{
    display: flex;
    align-items: flex-start;
}
.footer-item{
    margin-right: 90px;
}
.footer-tit{
    display: flex;
    flex-direction: column;
    font-size: 17px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 15px;
}
.footer-tit-line{
    width: 43px;
    height: 2px;
    background-color: #0ca554;
    margin-top: 12px;
}
.footer-item-list a{
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
}
.footer-item-list a:hover{
    color: #0ca554;
    text-decoration: none;
}
.footer-info-tel{
    margin-bottom: 24px;
}
.footer-info-tit{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.footer-info-tit span{
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
    margin-left: 10px;
}
.footer-info-tit img{
    width: 15px;
}
.footer-info-tel-desc{
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
    font-weight: bold;
    margin-left: 24px;
}
.footer-info-email-desc{
    margin-left: 24px;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
}
.footer-line{
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    margin-top: 60px;
}
.footer-bottom{
    padding: 15px 0 20px;
}
.footer-bottom-text-1{
    text-align: center;
    font-size: 14px;
    line-height: 27px;
    color: #9c9c9c;
}
.footer-bottom-text-1 a{
    font-weight: bold;
    color: #0ca454;
}
.footer-bottom-text-1 a:hover{
    text-decoration: underline;
}
.footer-bottom-text-2{
    font-size: 14px;
    color: #9c9c9c;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-bottom-text-2 span{
    margin-right: 20px;
}
.footer-bottom-text-2 a{
    color: #0ca554;
    display: flex;
    align-items: center;
}
.footer-bottom-text-2 img{
    margin: 0 5px 0 20px;
}
.footer-bottom-text-2 a:hover{
    text-decoration: underline;
}

.details-bread{
    height: 60px;
    background-color: #efefef;
}
.details-bread-box{
    height: 100%;
    display: flex;
    align-items: center;
}
.details-bread-box img{
    margin: 1px 12px 0;
}
.details-bread-text{
    font-size: 15px;
    line-height: 1;
    color: #282828;
    transition: all 0.5s;
}
.details-bread-text:hover{
    color: #0ca554;
}
.details-bread-home{
    display: flex;
    align-items: center;
}
.details-bread-home img{
    width: 21px;
    margin: 0;
}

.details{
    padding: 90px 0;
    overflow: hidden;
}
.details-tit{
    font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
}
.details-line{
    width: 0;
    display: flex;
    border-bottom: 2px solid #dbdbdb;
    margin-bottom: 50px;
    transition: all 1s;
}
.details-line span{
    width: 109px;
    height: 9px;
    background-color: #0ca454;
}
.details-line-ani{
    width: 100%;
}
.details-top-con{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.details-top-right{
    width: 360px;
    position: relative;
}
.details-top-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.details-top-img img{
    max-width: 100%;
}
.details-top-left{
    margin-right: 80px;
    width: 100%;
}
.details-top-tit{
    font-size: 33px;
    font-weight: bold;
    line-height: 41px;
    color: #000000;
    margin-bottom: 30px;
}
.details-top-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #646464;
}
.details-top-desc p{
    margin-bottom: 20px;
}
.details-top-desc p:last-child{
    margin-bottom: 0;
}
.details-top-swiper-btn img{
    position: absolute;
    top: 50%;
    margin-top: -17px;
    cursor: pointer;
    z-index: 2;
}
.details-top-swiper-prev{
    left: -17px;
}
.details-top-swiper-next{
    right: -17px;
}

.details-content{
    margin-top: 80px;
}
.details-content-tab{
    overflow: hidden;
    display: flex;
    align-items: center;
}
.details-content-tab a{
    padding: 15px 16px;
    background-color: #e6e6e6;
    font-size: 19px;
    font-weight: bold;
    line-height: 24px;
    color: #282828;
    transition: all 0.5s;
    margin-right: 5px;
}
.details-content-tab a.details-content-tab-active{
    background: #0ca554;
    color: #ffffff;
}
.details-content-tab a:hover{
    background: #0ca554;
    color: #ffffff;
}
.details-content-item{
    padding: 60px 0;
    overflow: hidden;
}
.details-content-item:nth-child(odd){
    background: #f7f7f7;
}
.details-content-tit{
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 10px;
}
.details-content-para{
    margin-top: 20px;
}
.details-content-para-li{
    font-size: 14px;
    line-height: 2;
    color: #505050;
}
.details-content-desc{
    font-size: 32px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 40px;
}
.details-content-img{
    display: flex;
    align-items: center;
}
.details-content-img img{
    max-width: 100%;
}
.details-content-li{
    margin-bottom: 25px;
}
.details-content-li-tit{
    font-size: 18px;
    line-height: 1;
    color: #0f0f0f;
    margin-bottom: 10px;
}
.details-content-li-desc{
    font-size: 15px;
    font-weight: 1.5;
    color: #646464;
}
.details-content-cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.details-content-cards-item{
    width: calc((100% - 40px)/2);
    margin-bottom: 30px;
}
.details-content-cards-img{
    display: flex;
    align-items: center;
    overflow: hidden;
}
.details-content-cards-img img{
    width: 100%;
    transition: all 0.5s;
}
.details-content-cards-desc{
    padding: 15px 0;
    font-size: 17px;
    line-height: 25px;
    color: #0f0f0f;
    transition: all 0.5s;
}
.details-content-cards-item:hover .details-content-cards-img img{
    transform: scale(1.2);
}
.details-content-cards-item:hover .details-content-cards-desc{
    color: #0ca554;
}
.details-content-app-li{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #e7e7e7;
    margin-bottom: 10px;
    min-height: 204px;
}
.details-content-app-img{
    width: 324px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.details-content-app-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.details-content-app-text{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 80px 30px 40px;
}
.details-content-app-tit{
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    color: #646464;
    margin-bottom: 10px;
    transition: all 0.5s;
}
.details-content-app-desc{
    font-size: 15px;
    line-height: 25px;
    color: #646464;
    transition: all 0.5s;
}
.details-content-app-li:hover .details-content-app-img img{
    transform: scale(1.2);
}
.details-content-app-li:hover .details-content-app-tit{
    color: #0ca554;
}
.details-content-app-li:hover .details-content-app-desc{
    color: #0ca554;
}
.details-download{
    display:block;
    margin-top: 40px;
    border-radius: 9px;
    border: 1px solid #009242;
    width: 168px;
    overflow: hidden;
    background: #fff;
}
.details-download-img{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}
.details-download-img img{
    width: 48px;
}
.details-download-text{
    background: #009242;
    color: #fff;
    padding: 5px 20px;
    text-align: center;
}

.about{
    padding: 30px 0 80px;
    overflow: hidden;
}
.about-img{
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}
.about-img img{
    width: 100%;
}
.about-img-text{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    padding: 60px 112px;
}
.about-img-text span{
    width: 490px;
    font-size: 40px;
    font-weight: bold;
    line-height: 52px;
    color: #ffffff;
}
.about-tit{
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    margin-bottom: 25px;
}
.about-desc{
    font-size: 33px;
    font-weight: bold;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 40px;
}
.about-con{
    font-size: 14px;
    line-height: 1.5;
    color: #646464;
}
.about-con p{
    margin-bottom: 30px;
}

.contact-img-text{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 30px;
    z-index: 2;
    display: flex;
    padding: 0 130px;
}
.contact-img-text span{
    font-size: 34px;
    line-height: 1.5;
    color: #ffffff;
}
.contact-box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.contact-box-left{
    width: 382px;
    margin-right: 150px;
}
.contact-box-tit{
    width: 359px;
    font-size: 28px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 90px;
}
.contact-box-info-item{
    margin-bottom: 32px;
}
.contact-box-info-tit{
    font-size: 17px;
    line-height: 1;
    color: #505050;
    margin-bottom: 15px;
}
.contact-box-info-desc{
    font-size: 19px;
    line-height: 1.5;
    color: #0ca454;
}
.contact-box-right{
    flex: 1;
}
.contact-box-right-tit{
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    margin-bottom: 20px;
}
.contact-form-ipt{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
.contact-form-ipt label{
    font-size: 16px;
    line-height: 1;
    color: #000000;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.contact-form-ipt label:after{
    content: '*';
    display: block;
    font-size: 16px;
    color: #e64600;
    margin-left: 3px;
    margin-top: 5px;
}
.contact-form-ipt input{
    height: 48px;
    width: 100%;
    background: none;
    border: 1px solid #dddddd;
    outline: none;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 16px;
    color: #333;
}
.contact-form-ipt textarea{
    height: 112px;
    width: 100%;
    background: none;
    border: 1px solid #dddddd;
    outline: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    color: #333;
    resize: none;
}
.contact-form-ipt select{
    height: 48px;
    width: 100%;
    background: none;
    border: 1px solid #dddddd;
    outline: none;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 16px;
    color: #646464;
}
.contact-form-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.contact-form-btn button{
    margin: 0 15px;
    width: 149px;
    height: 46px;
    font-size: 17px;
    line-height: 1;
    color: #ffffff;
    border: 0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.5s;
}
.contact-form-submit{
    background: #0ca554;
}
.contact-form-reset{
    background: #666666;
}
.contact-form-btn button:hover{
    opacity: 0.7;
}

.download{
    padding: 90px 0;
    display: flex;
    justify-content: space-between;
    height: 1000px;
}
.download-left{
    height: 100%;
    width: 400px;
    margin-right: 10px;
}
.download-right{
    height: 100%;
    width: 100%;
}
.download-right iframe{
    width: 100%;
    height: 100%;
}

/* index */
.home-banner{
    padding: 40px 0 60px;
    width: 1326px;
    margin: 0 auto;
    max-width: 95%;
}
.home-banner-li{
    position: relative;
}
.home-banner-img{
    display: flex;
    align-items: center;
}
.home-banner-img img{
    width: 100%;
}
.home-banner-con{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 80px 64px;
}
.home-banner-tit{
    width: 550px;
    max-width: 100%;
    font-size: 49px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 15px;
}
.home-banner-desc{
    width: 660px;
    max-width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 40px;
}
.home-banner-btn{
    display: flex;
}
.home-banner-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 47px;
    background: #0ca554;
    border-radius: 40px;
    font-size: 17px;
    line-height: 1;
    color: #ffffff;
}

.home{
    overflow: hidden;
    padding-bottom: 90px;
}
.home-daqo{
    margin-bottom: 100px;
}
.home-tit{

}
.home-tit-text{
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    color: #282828;
    margin-bottom: 30px;
}
.home-daqo-top{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
}
.home-daqo-top-left{
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    color: #000000;
}
.home-daqo-top-more{
    display: flex;
}
.home-daqo-top-more a{
    margin-left: 180px;
    width: 186px;
    height: 53px;
    background: #0ca554;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    transition: all 0.5s;
}
.home-daqo-top-more a:hover{
    background: #666666;
}
.home-daqo-con{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.home-daqo-left{
    width: 364px;
    margin-right: 70px;
}
.home-daqo-right{
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-right: 30px;
}
.home-daqo-left-item{
    margin-bottom: 60px;
}
.home-daqo-left-item:last-child{
    margin-bottom: 0;
}
.home-daqo-tit{
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.home-daqo-desc{
    font-size: 19px;
    line-height: 1.5;
    color: #000000;
}
.home-daqo-img{
    display: flex;
    align-items: center;
    width: 400px;
    height: 407px;
    margin-right: 40px;
    border-radius: 30px;
    overflow: hidden;
}
.home-daqo-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-daqo-counts{
    /*flex: 1;*/
}
.home-daqo-counts-box{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.home-daqo-counts-box-img{
    width: 90px;
    margin-right: 20px;
    display: flex;
    align-items: center;
}
.home-daqo-counts-item{
    width: 220px;
}
.home-daqo-counts-tit{
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    margin-bottom: 8px;
}
.home-daqo-counts-num{
    margin-bottom: 10px;
}
.home-daqo-counts-num span{
    font-size: 56px;
    font-weight: bold;
    line-height: 1;
    color: #828282;
    position: relative;
}
.home-daqo-counts-num span:after{
    content: '+';
    display: block;
    font-size: 38px;
    font-weight: bold;
    line-height: 1;
    color: #828282;
    position: absolute;
    top: 0;
    right: -30px;
}
.home-daqo-counts-desc{
    font-size: 15px;
    line-height: 1;
    color: #828282;
}
.home-pro-tit{
    font-size: 33px;
    font-weight: bold;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 60px;
}
.home-pro-list{
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}
.home-pro-li{
    width: calc((100% - 24px)/3);
    background: #f7f7f7;
    transition: all 0.5s;
}
.home-pro-li-img{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 240px;
}
.home-pro-li-con{
    padding: 0 24px 24px;
}
.home-pro-li-tit{
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    margin-bottom: 8px;
}
.home-pro-li-desc{
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
}
.home-pro-li:hover{
    background: #e6e6e6;
}
.home-pro-more{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.home-pro-more a{
    width: 186px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    background: #0ca554;
    border-radius: 50px;
    transition: all 0.5s;
}
.home-pro-more a:hover{
    background: #666666;
}

.details-content-el{
    display: flex;
    align-items: center;
}
.details-content-el-img{
    display: flex;
    align-items: center;
    width: 250px;
    margin-right: 60px;
}
.details-content-el-img img{
    width: 100%;
}
.details-content-el-con{
    width: 890px;
    max-width: 100%;
}
.details-content-el-desc{
    font-size: 24px;
    line-height: 1.5;
    color: #505050;
}
.details-content-el-line{
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #505050, #ffffff);
    margin: 50px 0;
}
.details-content-full{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.details-content-full-item{
    width: calc((100% - 200px)/3);
}
.details-content-full-img{
    display: flex;
    align-items: center;
    margin-bottom: 46px;
}
.details-content-full-img img{
    max-width: 100%;
}
.details-content-full-line{
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #505050, #ffffff);
}
.details-content-full-desc{
    min-height: 200px;
    font-size: 22px;
    line-height: 1.5;
    color: #505050;
    margin: 25px 0;
}
.details-content-text{
    font-size: 16px;
    line-height: 1.5;
    color: #646464;
    margin-bottom: 50px;
}
.details-content-complex{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px 40px;
}
.details-content-complex-img{
    display: flex;
    align-items: center;
}
.details-content-complex-img img{
    width: 100%;
}
.details-content-complex-tit{
    font-size: 20px;
    line-height: 1.2;
    color: #646464;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #e7e7e7;
    text-align: center;
}
.footer-info-tel-btn{
    margin-left: 24px;
}
.footer-info-tel-btn a{
    width: 150px;
    height: 25px;
    display: flex;
    align-items: center;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    border: 1px solid #999999;
    border-radius: 40px;
    transition: all 0.5s;
}
.footer-info-tel-btn a:hover{
    background: #0ca554;
}
.footer-info-time{
    margin-top: 25px;
}
.footer-info-time .footer-info-tit{
    margin-bottom: 5px;
}
.footer-info-time .footer-info-tit img{
    width: 15px;
}
.footer-info-time-desc{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 26px;
    color: #ffffff;
    line-height: 1;
    font-size: 12px;
}
.footer-info-time-desc span:last-child{
    font-weight: bold;
    font-size: 14px;
    margin-top: 5px;
}

/* top */
.top{
    width: 70px;
    height: 70px;
    position: fixed;
    z-index: 98;
    right: 40px;
    bottom: -70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s;
}
.top img{
    width: 100%;
    height: 100%;
}
.top-active{
    bottom: 200px;
}

