* {
    padding:0;
    margin:0;
    box-sizing: border-box;
    list-style: none;
    text-decoration:none;
}
.layout {
    width: 1300px;
    margin: 0 auto;
}
.header {
    background: #fff;
}
.header-page {
    display: flex;
    justify-content: space-between;
}
.logo {
    height: 80px;
    padding: 10px 0;
}
.logo img {
    max-height: 100%;
    display: block;
}
.navlist {
    width: 700px;
}
.w-nav {
    display: flex;
    align-items: center;
}
.w-nav>li {
    width: calc(100% / 5);
    position: relative;
}
.w-nav .active::after {
    content: "";
    width: 100%;
    height: 3px;
    background: rgb(101, 164, 201);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1);
}
.w-nav .active>a {
    color: rgb(101, 164, 201);
}
.w-nav>li>a {
    font-size: 14px;
    color: rgb(44, 51, 59);
    line-height: 80px;
    text-align: center;
    display: block;
}
.w-nav>li::after  {
    content: "";
    width: 100%;
    height: 3px;
    background: rgb(101, 164, 201);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transition: all .3s;
}
.w-nav>li:hover::after {
    transform: scale(1);
}
.w-nav>li:hover>a {
    color: rgb(101, 164, 201);
}
.header-contact {
    font-size: 14px;
    line-height: 80px;
    color: #2c333b;
    font-weight: bold;
}
.er-nav {
    position: absolute;
    top: 100%;
    left: -29px;
    background: #fff;
    width: 200px;
    box-shadow: 0 0 3px rgba(0,0,0,.2);
    display: none;
    z-index: 10;
}
.er-nav li {
    border-bottom: 1px solid #e6e6e6 ;
}
.er-nav li a {
    font-size: 14px;
    line-height: 40px;
    display: block;
    text-align: center;
    color: rgb(129, 140, 151);
    transition: all .5s;
}
.er-nav li:hover  {
    background: rgb(244, 247, 250);
}
.er-nav li:hover a {
    transform: translateX(15px);
}
@media (max-width:1350px) {
    .layout {
        width: 95%;
    }
    .navlist {
        width: 600px;
    }
}

.footer {
    background:rgb(36, 44, 52) ;
}
.footer-nav {
    padding: 45px 0 30px;
    border-bottom: 1px solid rgb(86, 93, 100);
}
.footer-navlist {
    display: flex;
    width: 700px;
    margin: 0 auto;
}
.footer-navlist li {
    width: calc(700px / 5);
}
.footer-navlist li a {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    text-align: center;
    display: block;
}
.footer-logo {
    height: 180px;
    padding: 50px 0;
}
.footer-logo img {
    max-height: 100%;
    display: block;
    margin: 0 auto;
}
.copyright {
    background: #1e252d;
}
.copyright a {
    font-size: 14px;
    display: block;
    line-height: 40px;
    text-align: center;
    color: rgb(129, 140, 151);
}
.banner {
    position: relative;
}
.banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.banner-title h3 {
    font-size: 36px ;
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
    font-weight: 500;
}
.banner-title p {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.76);
}
.public-nav  {
    border-bottom: 1px solid rgb(242, 242, 242);
}
.public-nav a {
    font-size: 12px;
    color: #333;
    line-height: 50px;
}
.brand-topcont {
    padding: 50px 0;
}
.brand-topcont .center {
    width: 1500px;
    margin: 0 auto;
}
.brand-topcont h3 {
    font-size: 30px;
    color: rgb(44, 51, 59);
    line-height: 60px;
    position: relative;
    text-align: center;
    font-weight: 500;
}
.brand-topcont h3::after {
    content: "";
    width: 50px;
    height: 5px;
    background: rgb(101, 164, 201);
    display: block;
    margin: 0 auto;
}
.brand-topcont div {
    font-size: 14px;
    line-height: 25px;
    color: rgb(129, 140, 151);
    text-align: center;
}
.brand-topcont div p {
    margin-top: 20px;
}
.brand-topcont div p:last-child {
    color: rgb(101, 164, 201);
    margin-top: 40px;
}
.brand-botcont {
    background: rgb(246, 246, 245);
    padding: 50px 0;
}
.brand-botlist {
    overflow: hidden;
    margin: 0 -20px;
}
.brand-botlist li {
    float: left;
    width: 33.33333%;
    padding: 0 20px;
}
.brand-botlist li:hover img {
    transform: scale(1.1);
}
.brand-botlistimg {
    width: 100%;
    overflow: hidden;
}
.brand-botlistimg img {
    width: 100%;
    display: block;
    transition: all .5s;
}
.brand-botlistcont {
    background: #fff;
    padding: 15px;
}
.brand-botlistcont h4 {
    font-size: 22px;
    color: rgb(44, 51, 59);
    line-height: 44px;
    font-weight: 500;
    padding: 10px 0;
}
.brand-botlistcont p {
    font-size: 14px;
    line-height: 23px;
    color: rgb(129, 140, 151);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    height: calc(23px * 5);
}
.brand-botlistcont span {
    font-size: 12px;
    line-height: 30px;
    color: rgb(101, 164, 201);
    margin-top: 20px;
    display: block;
}
.banner img {
    width: 100%;
    display: block;
}
.news-cont {
    padding:0 0 30px;
}
.newslist {
    overflow: hidden;
    margin: 0 -15px;
}
.newslist li {
    float: left;
    width: 33.3333%;
    padding: 0 15px;
}
.newslist li a {
    display: block;
    width: 100%;
}
.newslistimg {
    width: 100%;
    overflow: hidden;
    height: 280px;
}
.newslistimg img {
    width: 100%;
    display: block;
    transition: all .5s;
}
.newslistcont {
    padding-top: 20px;
}
.newslistcont h4 {
    font-size: 18px;
    color: rgb(44, 51, 59);
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}
.newslistcont span {
    font-size: 13px;
    color: rgb(129, 140, 151);
    line-height: 25px;
    position: relative;
    display: block;
    border-bottom: 1px solid rgb(242, 242, 242);
    padding: 5px 0;
}
.newslistcont span::after {
    content: "";
    width: 0;
    height: 1px ;
    background: rgb(101, 164, 201);
    transition: all .5s;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}
.newslistcont p {
    font-size: 14px;
    color: rgb(129, 140, 151);
    line-height: 23px;
    height: calc(23px * 2);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 5px;
}
.newslist li:hover img {
    transform: scale(1.1);
}
.newslist li:hover h4 {
    color:rgb(101, 164, 201) ;
}
.newslist li:hover span::after {
    width: 100%;
}
.newslist li {
    margin: 20px 0;
}
.support {
    background: rgb(246, 246, 245);
}
.support-cont {
    padding: 30px 0;
}
.support-cont .center {
    width: 1365px;
    margin: 0 auto;
}
.suppcontent {
    width: 100%;
    background: #fff;
    padding: 50px 70px;
}
.support-conttitle {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.support-conttitle h3 {
    font-size: 28px;
    color: rgb(44, 51, 59);
    line-height: 45px;
}
.support-conttitle p {
    font-size: 16px;
    line-height: 25px;
    color: rgb(86, 93, 100);
}
.support-conts h4 {
    font-size: 16px;
    color: rgb(44, 51, 59);
    font-weight: bold;
    line-height: 30px;
    margin-top: 30px;
}

.support-conts ul {
    padding-left: 30px;
    margin-top: 10px;
}
.support-conts ul li {
    font-size: 14px;
    line-height: 40px;
    color: rgb(86, 93, 100);
    list-style-type: disc;
}
.products-cont {
    padding: 50px 0;
}
.products-cont .center {
    width: 1365px;
    margin: 0 auto;
}
.products-leftclassify {
    width: 290px;
}
.products-leftclassify h3 {
    font-size: 16px;
    color: #fff;
    background: rgb(101, 164, 201);
    line-height: 60px;
    text-align: center;
    font-weight: 500;
}
.products-classify-list li a {
    display: block;
    font-size: 14px;
    color: rgb(129, 140, 151);
    line-height: 45px;
    padding-left: 45px;
    border: 1px solid #e5e5e5;
    border-top: none;
    position: relative;
}
.products-classify-list li:hover a {
    background: rgb(244, 247, 250);
}
.products-classify-list li:hover a::before {
    content: "";
    width: 4px;
    height: 14px;
    background: rgb(101, 164, 201);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.products-classify-list .active a {
    background: rgb(244, 247, 250);
}
.products-classify-list .active a::before {
    content: "";
    width: 4px;
    height: 14px;
    background: rgb(101, 164, 201);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.products-pack {
    display: flex;
}
.products-right-list {
    width: calc(100% - 290px);
    padding-left: 40px;
}
.searchs {
    display: flex;
}
.search-input {
    width: 958px;
    height: 45px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    padding:0 10px;
}
.search-input i {
    width: 16px;
    height: 16px;
    background: url(../images/search.png) no-repeat center/100% 100%;
    display: block;
}
.search-input input {
    width: calc(100% - 16px);
    padding:0 10px;
    height: 100%;
    border: none;
    outline: none;
}
.search-btn {
    width: 65px;
    height: 45px;
    background: rgb(101, 164, 201);
    color: #fff;
    font-size: 12px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
}
.products-listnav {
    display: flex;
}
.products-listnav li {
    padding: 0 15px;
}
.products-listnav li a {
    font-size: 12px;
    color: rgb(129, 140, 151);
    line-height: 40px;
}
.products-listnav li:hover a {
    color: rgb(101, 164, 201);
}
.products-list ul {
    padding: 15px;
    overflow: hidden;
    margin: 0 -15px;
}
.products-list ul li {
    float: left;
    width: 33.333333%;
    padding: 0 15px;
    margin: 0 0 30px;
}
.products-list ul li a {
    display: block;
    transition: all .5s;
}
.products-listimg {
    width: 100%;
    overflow: hidden;
}
.products-listimg img {
    width: 100%;
    height:315px;
    object-fit:cover;
    display: block;
    transition: all .5s;
}
.products-listcont {
    padding: 15px;
}
.products-listcont h4 {
    font-size: 16px;
    color: rgb(44, 51, 59);
    line-height: 25px;
    font-weight: 500;
    text-align: center;
}
.products-listcont p {
    font-size: 14px;
    line-height: 30px;
    color: rgb(129, 140, 151);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.products-list ul li:hover a {
    box-shadow: 0 0 15px rgba(0,0,0,.2);
}
.products-list ul li:hover img {
    transform: scale(1.1);
}
.products-list ul li:hover h4 {
    color: rgb(101, 164, 201);
}
@media (max-width:1450px) {
    .center {
        width: 95% !important;
    }
}
.products-btn {
    margin: 60px auto;
    width: 300px;
    border: 1px solid rgb(101, 164, 201);
    font-size: 16px;
    color: #666;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    transition: all .5s;
}
.products-btn:hover {
    color: #fff;
    background: rgb(101, 164, 201);
}
.productsDetail {
    background: rgb(249, 249, 249);
}
.productsDetail-pack {
    padding: 50px 70px;
    background: #fff;
}
.productsDetail .center  {
    width: 1365px;
    margin: 0 auto;
}
.productsDetail-swiper {
    width: 80%;
    overflow: hidden;
    position: relative;
    margin: 10px auto 0;
}
.big-img {
    width: 100%;
    height: 477px;
    border: 1px solid #eee;
}
.big-img img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}
.productsDetail-topleftimg {
    width: 477px;
}
.productsDetail-swiper .swiper-slide {
    border: 1px solid rgb(101, 164, 201);
    height: 85px;

}
.productsDetail-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.btn-left,.btn-right {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.btn-left {
    background: url(../images/arrow-left.png) no-repeat center/100% 100%;
    left: 0;
}
.btn-right {
    background: url(../images/arrow-right.png) no-repeat center/100% 100%;
    right: 0;
}
.productsDetail-topcont {
    display: flex;
}
.productsDetail-toprightcont {
    width: calc(100% - 477px);
    padding-left: 60px;
}
.productsDetail-toprightcont h4 {
    font-size: 24px;
    color: rgb(44, 51, 59);
    line-height: 40px;
}
.productsDetail-toprightcont p {
    font-size: 16px;
    color: rgb(129, 140, 151);
    line-height: 30px;
    margin-top: 20px;
}
.productsDetail-botcont {
    margin-top: 30px;
}
.productsDetail-botcont-title {
    border-bottom: 1px solid #dbdbdb ;
}
.productsDetail-botcont-title h4 {
    position: relative;
    font-size: 16px;
    color: rgb(86, 93, 100);
    padding: 10px 20px;
}
.productsDetail-botcont-title h4::after {
    content: "";
    width: 102px;
    height: 3px ;
    background-color: rgb(101, 164, 201);
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner-swiper {
    width: 100%;
    overflow: hidden;
}
.banner-swiper a {
    display: block;
    position: relative;
}
.banner-swiper .banner-title {
    left: 30%;
}
.banner-swiper .banner-title h3 {
    text-align: left;
    font-size: 40px;
    color: rgb(242, 242, 242);
    line-height: 60px;
}
.banner-swiper .banner-title p {
    font-size: 16px;
    line-height: 30px;
    color: rgb(242, 242, 242);
    margin-top: 20px;
}
.banner-swiper .banner-title span {
    width: 170px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 14px;
    color: #fff;
    display: block;
    margin-top: 50px;
    background: rgb(101, 164, 201);
}
.banner-swiper .banner-title span:hover {
    opacity: .8;
}
.banner-swiper .swiper-pagination-bullet {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,.4);
    opacity: 1;
}
.banner-swiper .swiper-pagination-bullet-active {
    background: #fff;
}
.center {
    width: 1365px;
    margin: 0 auto;
}
.home-about-pack {
    display: flex;
    align-items: center;
}
.home-about-img {
    width: 631px;
    overflow: hidden;
}
.home-about-img:hover img {
    transform: scale(1.1);
}
.home-about-img img {
    width: 100%;
    display: block;
    transition: all .5s;
}
.home-about-cont {
    width: calc(100% - 631px);
    padding-left: 60px;
    text-align: center;
}
.home-about-cont h5 {
    font-size: 16px;
    color: rgb(101, 164, 201);
    line-height: 30px;
    font-weight: 500;
}
.home-about-cont h3 {
    font-size: 40px;
    color: rgb(44, 51, 59);
    line-height: 60px;
    position: relative;
    margin: 10px 0;
}
.home-about-cont h3::after {
    content: "";
    width: 77px;
    height: 5px;
    background: rgb(101, 164, 201);
    display: block;
    margin: 20px auto;
}
.home-about-cont p {
    font-size: 14px;
    color: rgb(86, 93, 100);
    line-height: 25px;
    text-align: center;
}
.home-about-cont a {
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: rgb(101, 164, 201);
    border: 1px solid rgb(101, 164, 201);
    display: block;
    margin:50px auto 0;
    transition: all .5s;
}
.home-about-cont a:hover {
    color: #fff;
    background: rgb(101, 164, 201);
}
.home-combine {
    display: flex;
}
.home-combine>div {
    width: 50%;
}
.combine-left>div {
    background: #eee;
}
.combine-left .home-about-cont {
    width: 100%;
    padding: 0;
    padding: 60px 0;
}
.combine-left .home-about-cont p {
    width: 75%;
    margin: 0 auto;
}
.combine-left>div>p {
    width: 300px;
    font-size: 14px;
    height: 41px;
    line-height: 41px;
    background: rgb(101, 164, 201);
    color: #fff;
    text-align: center;
    margin: 0 auto;
}
.combine-right video {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}
.home-combine-list {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    padding: 120px 0;
    background:#eee;
}
.home-products-pack {
    display:flex;
}
@media (max-width:1900px) {
    .home-combine-list {
        padding: 80px 0;
    } 
}
@media (max-width:1650px) {
    .home-combine-list {
        padding: 60px 0;
    } 
}
@media (max-width:1500px) {
    .home-combine-list {
        padding: 50px 0;
    } 
}
.home-combine-list li {
    width: 25%;
    border-right: 1px solid rgba(101, 164, 201, 0.25);
}
.home-combine-list li  h4 {
    display: flex;
    justify-content: center;
}
.home-combine-list li  h4 {
    font-size: 50px;
    line-height: 60px;
    color: #333;
}
.home-combine-list li  h4  span {
    font-size: 14px;
    line-height: 20px;
    color: #333;
    display: block;
    margin-top: 10px;
    margin-left: 5px;
}
.home-combine-list li p {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    text-align: center;
}
.home-products-left-cont {
    width: 360px;
    padding-left: 120px;
    background: rgb(30, 37, 45);
}
.home-products-classify li a {
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    margin-top: 20px;
    display: block;
}
.home-products-classify li:hover a {
    font-size: 30px;
    font-weight: bold;
    color: rgb(101, 164, 201);
}

.home-products-left-cont>a {
    width: 180px;
    height: 50px;
    border: 1px solid #fff;
    color: #fff;
    line-height: 48px;
    text-align: center;
    margin-top: 200px;
    display: block;
    margin-bottom: 80px;
    transition: all .5s;
}
.home-products-left-cont>a:hover {
    background: rgb(101, 164, 201);
    border-color: rgb(101, 164, 201);
}
.home-products-right-cont {
    width: calc(100% - 360px);
    padding: 50px;
    background: rgb(44, 51, 59);
}
.home-products-right-cont h4 {
    font-size: 22px;
    color: #fff;
    line-height: 30px;
    font-weight: 500;
}
.home-products-right-cont h4 a {
    color: #fff;
}
.home-products-list {
    padding:20px 0 0 0;
    overflow: hidden;
    margin: 0 -10px;
    display:none;
}
.home-products-list li {
    float: left;
    width: 33.3333%;
    padding: 0 10px;

}
.home-products-list li a {
    display: block;
    width: 100%;
    background: #fff;
    padding: 40px 0;
}
.home-products-classify .active a {
    font-size: 30px;
    font-weight: bold;
    color: rgb(101, 164, 201);
}
.home-products-list-img {
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
}
.home-products-list li a img {
    width: 100%;
    display: block;
    transition: all .5s;
}
.home-products-list-cont  {
    padding:20px 10px 0;
}
.home-products-list-cont h4 {
    font-size: 18px;
    line-height: 25px;
    color: rgb(44, 51, 59);
    text-align: center;
    font-weight: 500;
    transition: all .5s;
}
.home-products-list-cont p {
    font-size: 14px;
    line-height: 20px;
    color: rgb(86, 93, 100);
    text-align: center;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.home-products-list-cont span {
    display: block;
    width: 138px;
    height: 40px;
    border: 1px solid #dddee1;
    color: rgb(86, 93, 100);
    font-size: 14px;
    text-align: center;
    line-height: 38px;
    margin:  20px auto 0;
    transition: all .5s;
}
.home-products-list li:hover img {
    transform: scale(1.1);
}
.home-products-list li:hover h4 {
    color: rgb(101, 164, 201);
}
.home-products-list li:hover span {
    background: rgb(101, 164, 201);
    color: #fff;
}
.home-news {
    padding:  60px 0;
}
.home-news-title p {
    font-size: 18px;
    color: rgb(101, 164, 201);
    line-height: 30px;
    text-align: center;
}
.home-news-title h3 {
    font-size: 40px;
    color: rgb(44, 51, 59);
    line-height: 50px;
    text-align: center;
}
.home-news-title h3::after {
    content: "";
    width: 70px;
    height: 5px;
    background: rgb(139, 181, 230);
    display: block;
    margin: 20px auto 0;
}
.homenews-swiper {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}
.homenews-swiper a {
    display: flex;
    padding: 30px;
    background: rgb(246, 246, 245);
    align-items: center;
}
.homenews-swiper a  .home-news-cont {
    width: calc(100% - 515px);
    padding-right: 100px;
}
.home-news-cont h4 {
    font-size: 26px;
    line-height: 26pt;
    color:rgb(44, 51, 59);
    font-weight: 500;
    margin-bottom: 10px;
}
.home-news-img {
    width: 515px;
}
.home-news-img img {
    width: 100%;
    display: block;
}
.home-news-cont time {
    font-size: 16px;
    margin: 20px 0;
    color: rgb(129, 140, 151);
    line-height: 30px;
}
.home-news-cont p {
    font-size: 15px;
    line-height: 28px;
    color: rgb(129, 140, 151);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: calc(28px * 4);
    margin: 10px 0 30px;
}
.home-news-cont span {
    width: 268px;
    height: 40px;
    display: block;
    border: 1px solid rgb(101, 164, 201);
    text-align: center;
    line-height: 38px;
    font-size: 12px;
    color: rgb(101, 164, 201);
}
.homenews-swiper a:hover h4 {
    color: rgb(101, 164, 201);
}
.homenews-swiper a:hover span {
    background: rgb(101, 164, 201);
    color: #fff;
}
.home-bot-cont {
    width: 100%;
    background: url(../images/home-bot-back.jpg) no-repeat center/cover;
    background-Attachment: fixed;
    padding: 100px 0;
}
.home-bot-cont h3 {
    font-size: 40px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    font-weight: 500;
}
.home-bot-cont h3::after {
    content: "";
    width: 70px;
    height: 5px;
    background: rgb(101, 164, 201);
    margin: 20px auto 0;
    display: block;
}
.home-bot-cont p {
    font-size: 14px;
    line-height: 23px;
    color: #fff;
    width: 800px;
    margin: 20px auto 0;
    text-align: center;
}
.home-bot-cont a {
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    display: block;
    margin: 60px auto 0;

}
@media(max-width:1000px) {
    .center {
        width:100% !important;
    }
    .layout {
        width:100%;
    }
    .home-products-pack {
        display:block;
    }
    .header {
        position: relative;
        padding: 0 10px;
    }
    .navlist {
       width:100%;
       position:absolute;
       top:100%;
       left:0;
       padding:10px;
       background:#fff;
       z-index:999999;
       display:none;
    }
    .navlist .w-nav {
        display:block;
    }
        .navlist .w-nav li {
            width:100%;
        }
        .navlist .w-nav a {
            text-align: center;
            display: block;
        }
    .w-nav .active::after {
        display:none;
    }
    .w-nav > li > a{
        line-height:50px;
    }
    .er-nav {
        display:none !important;
    }
    .logo {
        height:60px;
        padding:10px 0;
    }
    .header {
        background:#eee;
    }
    .iconfont {
        position:absolute;
        right:10px;
        top:50%;
        transform:translateY(-50%);
        width:40px;
        height:40px;
    }
    .iconfont i {
        position:absolute;
        width:100%;
        height:100%;
    }
    .iconfont .cha {
        background:url(../images/cha.png) no-repeat center/100% 100%;
        display:none;
    }
    .iconfont .nav {
        background:url(../images/nav.png) no-repeat center/100% 100%;
    }
    .brand-topcont {
        padding:25px 10px;
    }
    .public-nav{
        padding:0 10px;
    }
    .brand-topcont h3{
        font-size:20px;
    }
    .brand-topcont div{
        font-size:13px;
    }
    .brand-botcont{
        padding:25px 10px;
    }
    .brand-botlist {
        margin:0;
    }
    .brand-botlist li {
        width: 100%;
        padding:0;
        margin-bottom: 20px;
    }
    .footer-nav {
        display:none;
    }
    .footer-logo {
        height:130px;
        padding:25px 10px;
    }
    .copyright a {
        font-size:13px;
    }
    .brand-botlistcont h4 {
        font-size:16px;
        padding:0;
    }
    .brand-botlistcont p {
        font-size:13px;
    }
    .news-cont {
        padding:25px 10px;
    }
    .newslist {
        margin:0;
    }
        .newslist li{
            width:50%;
            padding:0 5px;
            margin:0 0 20px;
        }
    .newslistimg {
        height:auto;
    }
    .newslistcont h4{
        font-size:15px;
    }
    .newslistcont{
        padding-top:10px;
    }
        .newslistcont p{
            font-size:13px;
        }
    .support-cont {
        padding:25px 10px;
    }
    .suppcontent {
        padding:10px;
    }
    .support-conttitle h3{
        font-size:18px;
    }
    .support-conttitle p{
        font-size:13px;
    }
    .support-conts h4{
        font-size:15px;
        margin-top:20px;
    }
    .support-conts ul li{
        font-size:13px;
        line-height:26px;
    }
    .support-conts ul {
        margin-top:0;
    }
    .banner-title h3{
        font-size:20px;
        line-height:30px;
    }
    .banner-title p {
        font-size: 20px;
        line-height: 30px;
    }
    .products-cont {
        padding:25px 10px;
    }
    .products-pack {
        display:block;
    }
    .products-leftclassify{
        width:100%;
    }
        .products-leftclassify h3{
            line-height:40px;
        }
    .products-classify-list li a{
        font-size:13px;
        line-height:35px;
    }
    .products-right-list{
        width:100%;
        margin-top:20px;
        padding:0;
    }
    .search-input {
        width:80%;
    }
    .search-btn{
        width:20%;
    }
    .products-list ul {
        padding:15px 0;
        margin:0;
    }
    .products-list ul li {
        width:100%;
    }
    .products-listcont h4 {
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }
    .banner-swiper .banner-title h3{
        font-size:20px;
        line-height:40px;
    }
    .banner-swiper .banner-title p {
        font-size:13px;
        margin-top:0;
    }
    .banner-swiper .banner-title span{
        display:none;
    }
    .banner-swiper .banner-title {
        left:40%;
    }
    .home-about-pack {
        display:block;
    }
    .home-about {
        padding:25px 10px;
    }
    .home-about-img {
        width:100%;
    }
    .home-about-cont {
        padding:0;
        width:100%;
        margin-top:20px;
    }
        .home-about-cont h5 {
            font-size:13px;
            line-height:25px;
        }
        .home-about-cont h3 {
            font-size:20px;
            line-height:40px;
            margin:0;
        }
            .home-about-cont h3::after{
                margin:10px auto 0;
            }
        .home-about-cont p {
            margin-top:20px;
            font-size:13px;
        }
        .home-about-cont a{
            height:40px;
            line-height:38px;
        }
    .home-combine{
        display:block;
    }
        .home-combine > div{
            width:100%;
        }
    .combine-left > div > p{
        font-size:13px;
    }
    .combine-left .home-about-cont {
        padding:20px 0;
    }
    .home-combine-list li h4{
        font-size:30px;
    }
    .home-products-classify li a {
        margin: 0;
        font-size:14px;
    }
    .home-products-left-cont {
        width: 100%;
        padding-left: 20px;
    }
        .home-products-left-cont > a {
            display:none;
        }
    .home-products-right-cont{
        width:100%;
    }
    .home-products-right-cont{
        padding:10px;
    }
    .home-products-list li{
        width:100%;
        margin-bottom:20px;
    }
    .home-products-classify .active a{
        font-size:20px;
    }
    .home-products-list-cont h4{
        font-size:16px;
    }
    .home-products-right-cont h4{
        font-size:18px;
    }
    .home-bot-cont p{
        width:100%;
    }
    .home-news {
        padding:25px 10px;
    }
    .home-news-title p {
        font-size:13px;
    }
    .home-news-title h3{
        font-size:20px;
        line-height:40px;
    }
        .home-news-title h3::after{
            margin-top:0;
        }
    .homenews-swiper{
        margin-top:20px;
    }
        .homenews-swiper a{
            padding:10px;
            display:block;
        }
            .homenews-swiper a .home-news-cont{
                width:100%;
                padding:0;
            }
    .home-news-cont h4{
        font-size:16px;
        line-height:32px;
        margin-bottom:0;
    }
    .home-news-cont time{
        font-size:13px;

    }
    .home-news-cont p{
        font-size:13px;
        line-height:26px;
        height:calc(26px * 4);
    }
    .home-news-img{
        width:100%;
        margin-top:20px;
    }
    .home-bot-cont{
        padding:25px 10px;
    }
        .home-bot-cont h3{
            font-size:20px;
            line-height:40px;
        }
            .home-bot-cont h3::after {
                margin-top:0;
            }
        .home-bot-cont p{
            font-size:13px;
        }
        .home-bot-cont a{
            height:40px;
            line-height:38px;
        }
    .productsDetail {
        padding:25px 10px;
    }
    .productsDetail-pack{
        padding:10px;
    }
    .productsDetail-topcont{
        display:block;
    }
    .productsDetail-topleftimg{
        width:100%;
    }
    .productsDetail-toprightcont {
        width:100%;
        margin-top:20px;
        padding:0;
    }
        .productsDetail-toprightcont p {
            font-size:14px;
            margin-top:10px;
        }
    .productsDetail-botcont-title h4{
        font-size:14px;
    }
    .big-img{
        height:auto;
    }
}
