/* 公共样式 */

* {
    transition: all 0.2s;
}


/* 分页样式 */

.pagination {
    display: flex;
    justify-content: center;
    margin: 20px auto 20px;
}

.pagination li {
    width: 30px;
    height: 30px;
    margin: 10px 10px;
    border: 1px solid #efefef;
    text-align: center;
    line-height: 30px;
}

.pagination .disabled {
    opacity: 0.5;
}

.pagination .active {
    background: rgb(35, 70, 110);
    color: #fff;
}

.container .titledemo {
    padding: 30px 0 30px 0;
    animation-name: fadeInUp;
    visibility: visible;
}

.container .titledemo .entitle {
    font-size: 48px;
    font-weight: 600;
    color: #242e53;
    text-align: center;
}

.container .titledemo .cntitle {
    font-size: 36px;
    color: #000;
    font-weight: 400;
    text-align: center;
    margin: 0 0 30px 0;
}

.empty {
    height: 90px;
    background: #fff;
}

.container {
    width: 1500px;
    margin: 0 auto;
    /* overflow: hidden; */
}

@font-face {
    font-family: 'IMPACT';
    src: url('../fonts/IMPACT.TTF');
}

@font-face {
    font-family: 'arialb';
    src: url('../fonts/ARLRDBD.TTF');
}


/* banner */

.banner .swiper-slide img {
    width: 100%;
}

.banner .swiper-pagination-bullet {
    background: #fff;
}

.banner .swiper-pagination-bullet-active {
    background: #242e53;
}

.banner .swiper-pagination {
    bottom: 50px;
}


/* 头部样式 */

header {
    height: 90px;
    z-index: 99;
    position: fixed;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

header .container .wrapper {
    display: flex;
    justify-content: space-between;
    /* animation-name: fadeInDown;
    visibility: visible; */
    width: 100%;
}

header .logobox {
    overflow: hidden;
    flex-grow: 1;
}

header .logobox img {
    margin: 31px 0 0 0;
    width: 477px;
    height: 28px;
    outline: none;
}

header nav {
    height: 90px;
    line-height: 90px;
    flex-grow: 1;
    padding: 0 60px 0 0;
}

header nav .mainnav {
    display: flex;
    justify-content: flex-end;
}

header .subnav-wrapper {
    width: 100%;
    height: 640px;
    background: #fff;
    position: absolute;
    top: -640px;
    left: 0;
    z-index: 100;
}

header .subnav-wrapper .container {
    width: 1500px;
    margin: 0 auto;
    padding: 70px 0 0 0;
    background: #fff;
}

header .subnav-wrapper .container .title {
    font-size: 30px;
    font-weight: bold;
}

header .subnav-wrapper .container .wrapper .leftside {
    width: 375px;
    padding: 30px 0 30px 0;
    border-top: 1px dashed #e8e8e8;
    margin: 30px 0 0 0;
}

header .subnav-wrapper .container .wrapper .leftside ul .sub-item {
    padding: 14px 28px;
    position: relative;
}

header .subnav-wrapper .container .wrapper .leftside ul .sub-item:hover {
    background: #f4f4f4;
}

header .subnav-wrapper .container .wrapper .leftside ul .sub-item:hover a {
    font-weight: bold;
    color: #2070b2;
}

header .subnav-wrapper .container .wrapper .leftside ul .active {
    background: #f4f4f4;
}

header .subnav-wrapper .container .wrapper .leftside ul .sub-item a {
    font-size: 16px;
    color: #000;
    letter-spacing: 1px;
}

header .subnav-wrapper .container .wrapper .leftside ul .active a::after {
    content: '';
    width: 7px;
    height: 13px;
    background: url(../images/active-icon.png)no-repeat center;
    position: absolute;
    right: 24px;
    top: 21px;
    font-size: 18px;
}

header .subnav-wrapper .container .wrapper .leftside ul .active a {
    font-weight: bold;
    color: #2070b2;
}

header .subnav-wrapper .container .wrapper .rightside {
    width: 1040px;
}

header .subnav-wrapper .container .wrapper .rightside .itemlist {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    background: #fff;
}

header .subnav-wrapper .container .wrapper .rightside .itemlist .item {
    margin: 10px 10px;
    display: none;
}

header .subnav-wrapper .container .wrapper .rightside .itemlist .item:nth-child(-n+8) {
    display: block;
}

header .subnav-wrapper .container .wrapper .rightside .itemlist .item .picbox {
    width: 237px;
    height: 177px;
    overflow: hidden;
}

header .subnav-wrapper .container .wrapper .rightside .itemlist .item .picbox img {
    width: 100%;
    height: 100%;
}

header .subnav-wrapper .container .wrapper .rightside .itemlist .item p {
    text-align: center;
    margin: 4px 0;
    color: #000;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 230px;
}

header nav .mainnav li {
    height: 97px;
    position: relative;
}

header nav .mainnav li:hover>a {
    color: #2864be;
    font-weight: 500;
}

header nav .mainnav li a {
    font-size: 16px;
    color: #000;
    padding: 0 15px;
}

header nav .mainnav li a:hover {
    text-decoration: none;
}

header nav .mainnav .active a {
    color: #2864be;
}

header .container .phonebox {
    position: relative;
    line-height: 90px;
    padding: 0 60px 0 0;
}

header .container .phonebox::before {
    content: '';
    width: 34px;
    height: 34px;
    background: url(../images/phoneicon.png)no-repeat center;
    position: absolute;
    left: -33px;
    top: 27px;
}

header .container .phonebox p {
    font-size: 16px;
    color: #333;
    line-height: 25px;
    padding: 20px 0 0 6px;
    font-weight: bolder;
}

.proadv {
    position: relative;
    max-width: 1850px;
    overflow: hidden;
    margin: 0 auto;
}

.proadv .advpic {
    display: block;
    margin: 0 auto;
}

.proadv .wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    max-width: 1905px;
}

.proadv .wrapper .container {
    padding: 280px 0 0 0;
    position: relative;
}

.proadv .advpic {
    width: 100%;
    max-width: 101%;
    animation: changesize;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation: changesize;
    -webkit-animation-duration: 4s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -moz-animation: changesize;
    -moz-animation-duration: 4s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    -moz-animation-direction: alternate;
}

@keyframes changesize {
    from {
        transform: scale(1)
    }
    to {
        transform: scale(0.98);
    }
}

@-webkit-keyframes changesize {
    from {
        transform: scale(1)
    }
    to {
        transform: scale(0.98);
    }
}

@-moz-keyframes changesize {
    from {
        transform: scale(1)
    }
    to {
        transform: scale(0.98);
    }
}

@-o-keyframes changesize {
    from {
        transform: scale(1)
    }
    to {
        transform: scale(0.98);
    }
}

.proadv .container .title1 {
    font-size: 16px;
    color: #fff;
    display: block;
    margin: 0 0 34px 0;
    animation-name: slideInLeft;
    visibility: visible;
}

.proadv .container .title2 {
    font-size: 35px;
    font-weight: bold;
    color: #fff;
    line-height: 44px;
    animation-name: slideInLeft;
    visibility: visible;
}

.proadv .wrapper .container .more {
    position: absolute;
    right: 0;
    top: 80%;
    line-height: 66px;
    color: #fff;
    font-size: 16px;
    width: 190px;
    display: flex;
    justify-content: space-between;
}

.proadv .wrapper .container .more img:hover {
    animation-name: pulse;
    visibility: visible;
}


/* 首页产品中心 */

.index-pro {
    background: #e6ebf1;
    padding: 0 0 30px 0;
    overflow-x: hidden;
    max-width: 1905px;
}

.index-pro .container .protitle {
    padding: 60px 0 0 0;
    position: relative;
    animation-name: slideInLeft;
    visibility: visible;
}

.index-pro .container .protitle .enname {
    font-size: 46px;
    color: #242e53;
    font-weight: bold;
}

.index-pro .container .protitle .name {
    font-size: 34px;
    color: #000;
}

.index-pro .container .protitle .intro {
    position: absolute;
    right: 0;
    bottom: 0;
}

.index-pro .container .protitle .intro span {
    display: block;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
}

.index-pro .container .pro-list {
    padding: 50px 0 50px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation-name: fadeInUp;
    visibility: visible;
}

.index-pro .container .pro-list .pro-item {
    width: 32%;
    margin: 0.5% 0.5%;
}

.index-pro .container .pro-list .pro-item .picbox {
    width: 100%;
    overflow: hidden;
}

.index-pro .container .pro-list .pro-item .picbox img {
    width: 100%;
    height: 100%;
}

.index-pro .container .pro-list .pro-item .picbox:hover img {
    transform: scale(1.04);
}

.index-pro .container .pro-list .pro-item .name {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin: 8px 0 0 0;
}


/* 创意led灯 */

.gift .container .title-wrapper {
    padding: 67px 0 20px 0;
    position: relative;
    animation-name: slideInLeft;
    visibility: visible;
}

.gift .container .title-wrapper .entitle {
    font-size: 46px;
    color: #242e53;
    font-weight: bold;
}

.gift .container .title-wrapper .cntitle {
    font-size: 34px;
    color: #000;
    margin: 8px 0;
}

.gift .container .title-wrapper .intro {
    font-size: 16px;
    color: #000;
    display: block;
    width: 530px;
}

.gift .container .title-wrapper .more {
    position: absolute;
    right: 0;
    top: 50%;
}

.gift .container .title-wrapper .more p {
    color: #637195;
    font-size: 16px;
    position: relative;
    padding: 0 40px 0 0;
}

.gift .container .title-wrapper .more p::after {
    content: '';
    width: 27px;
    height: 11px;
    background: url(../images/picture/gift/arrow.png)no-repeat center;
    position: absolute;
    right: 0;
    top: 8px;
}

.gift .container .ledlist {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation-name: slideInUp;
    visibility: visible;
}

.gift .container .ledlist .leditem {
    width: 32%;
    text-align: center;
    margin: 2% 0.5rem;
}

.gift .container .ledlist .leditem .picbox {
    width: 100%;
    height: 280px;
}

.gift .container .ledlist .leditem .picbox img {
    width: 100%;
    height: 100%;
}

.gift .container .ledlist .leditem:hover .picbox img {
    animation-name: bounce;
    visibility: visible;
}

.gift .container .ledlist .leditem .name {
    font-size: 26px;
    color: #000;
    text-align: center;
    margin: 16px 0 6px 0;
    font-weight: bolder;
}

.gift .container .ledlist .leditem .more {
    font-size: 12px;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
}

.gift .container .ledlist .leditem .more::after {
    content: '';
    width: 16px;
    height: 8px;
    background: url(../images/picture/gift/xs-arrow.png)no-repeat center;
    position: absolute;
    top: 4px;
    right: -20px;
}


/* 照明板块 */

.lightstyle {
    padding: 40px 0 90px 0;
}

.lightstyle .container {
    width: 100%;
    max-width: 1850px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    animation-name: fadeInDown;
    visibility: visible;
}

.lightstyle .container .module {
    flex-grow: 1;
    height: 488px;
    padding: 100px 0 0 0;
}

.lightstyle .container .module_1 {
    background: url(../images/business-bg.jpg)no-repeat center;
    background-size: cover;
}

.lightstyle .container .module_2 {
    background: url(../images/edu-bg.jpg)no-repeat center;
    background-size: cover;
}

.lightstyle .container .module .picbox {
    width: 450px;
    height: 260px;
    margin: 0 auto;
    animation-name: bounceIn; 
    visibility: visible;
}

.lightstyle .container .module .picbox img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.lightstyle .container .module .title {
    font-size: 32px;
    color: #fff;
    font-weight: bolder;
    text-align: center;
    margin: 16px 0 10px;
    animation-name: slideInUp;
    visibility: visible;
}

.lightstyle .container .module .subtitle {
    font-size: 22px;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 300;
    animation-name: slideInUp;
    visibility: visible;
}

.lightstyle .container .module .more {
    width: 170px;
    height: 56px;
    line-height: 56px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
    margin: 20px auto;
    animation-name: slideInUp;
    visibility: visible;
}

.aboutus {
    background: url(../images/picture/about/factory-bg.jpg)no-repeat center;
    height: 906px;
    padding: 20px 0;
}

.aboutus .wrapper {
    height: 750px;
    width: 1850px;
    background: #f6fafe;
    margin: 0 auto;
    padding: 100px 0 0 0;
    animation-name: bounceInDown;
    visibility: visible;
}

.aboutus .wrapper .container {
    position: relative;
}

.aboutus .wrapper .container .entitle {
    color: #0287e4;
    font-size: 36px;
    font-weight: bolder;
    position: relative;
}

.aboutus .wrapper .container .entitle span {
    color: #000;
    display: inline-block;
    position: relative;
}

.aboutus .wrapper .container .entitle span::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #222;
    position: absolute;
    left: -40px;
    top: 28px;
}

.aboutus .wrapper .container .entitle::before {
    content: '';
    width: 15px;
    height: 13px;
    position: absolute;
    left: -70px;
    top: 23px;
    background: url(../images/point.jpg)no-repeat center;
}

.aboutus .wrapper .container .cntitle {
    font-size: 36px;
    color: #000;
    font-weight: 600;
    margin: 16px 0;
}

.aboutus .wrapper .container .subtitle {
    font-size: 22px;
    color: #000;
    font-weight: 500;
    margin: 0 0 76px 0;
    display: block;
}

.aboutus .wrapper .container .intro {
    width: 710px;
    font-size: 18px;
    line-height: 34px;
}

.aboutus .wrapper .container .aboutpic {
    position: absolute;
    top: -158px;
    right: 138px;
    width: 427px;
    height: 549px;
    overflow: hidden;
    animation-name: fadeInLeftBig;
    visibility: visible;
}

.aboutus .wrapper .container .aboutpic img {
    width: 100%;
    height: 100%;
}

.aboutus .wrapper .container .aboutpic:hover img {
    transform: scale(1.02);
}

.aboutus .wrapper .container .aboutpic2 {
    position: absolute;
    top: 150px;
    right: 0;
    animation-name: fadeInRightBig;
    visibility: visible;
}

.aboutus .wrapper .container .aboutpic2 .picbox {
    width: 220px;
    height: 255px;
    overflow: hidden;
}

.aboutus .wrapper .container .aboutpic2 .picbox img {
    width: 100%;
    height: 100%;
}

.aboutus .wrapper .container .aboutpic2 .picbox:hover img {
    transform: scale(1.03);
}

.aboutus .wrapper .container .aboutpic2 .more {
    width: 220px;
    height: 100px;
    line-height: 100px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    background: #0287e4;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.aboutus .wrapper .container .aboutpic2 .more span {
    margin: 0 10px 0 0;
}

.aboutus .wrapper .container .aboutpic2 .more:hover img {
    padding: 0 0 0 10px;
}


/* Bounce To Right */

.hvr-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #242e53;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: white;
}

.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.aboutus .wrapper .container .numlist {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 1200px;
    margin: 120px 0 0 0;
}

.aboutus .wrapper .container .numlist .numitem {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.aboutus .wrapper .container .numlist .numitem .num {
    font-size: 100px;
    color: #242e53;
    font-family: 'IMPACT';
}

.aboutus .wrapper .container .numlist .numitem span {
    display: inline-block;
}

.aboutus .wrapper .container .numlist .numitem .text {
    font-size: 18px;
    color: #000;
    width: 134px;
    margin: 0 0 0 10px;
}

.aboutus .wrapper .container .numlist .numitem #num1 {
    width: 110px;
}

.aboutus .wrapper .container .numlist .numitem #num2 {
    width: 285px;
}

.aboutus .wrapper .container .numlist .numitem #num3 {
    width: 170px;
}


/* 合作伙伴 */

.partner {
    height: 801px;
    background: url(../images/picture/brand/brandbg.jpg)no-repeat center;
}

.partner .container {
    position: relative;
}

.partner .container .brandlist {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1070px;
    animation-name: bounceInLeft;
    visibility: visible;
}

.partner .container .brandlist .branditem {
    width: 250px;
    height: 107px;
    background: #fff;
    margin: 6px 3px;
    overflow: hidden;
}

.partner .container .brandlist .branditem:hover img {
    transform: scale(1.03);
}

.partner .container .text {
    position: absolute;
    right: 0;
    top: 10px;
    animation-name: bounceInRight;
    visibility: visible;
}

.partner .container .text .entitle {
    font-size: 48px;
    color: #242e53;
    font-weight: 600;
    line-height: 56px;
    text-align: right;
}

.partner .container .text .cntitle {
    font-size: 32px;
    color: #000;
    text-align: right;
    margin: 16px 0 12px;
}

.partner .container .text .subtitle {
    font-size: 16px;
    color: #000;
    text-align: right;
}


/* 优势 */

.adv {
    background: url(../images/picture/adv/advbg.jpg)no-repeat center;
    height: 935px;
    background-attachment: fixed;
}

.adv .container .wrapper {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    padding: 120px 0 0 0;
}

.adv .cotnainer .wrapper .leftside {
    flex-wrap: 1;
    width: 670px;
}

.adv .container .wrapper .leftside .entitle {
    font-size: 48px;
    font-weight: bolder;
    line-height: 52px;
    color: #fff;
    margin: -60px 0 20px 0;
    animation-name: fadeInDownBig;
    visibility: visible;
}

.adv .container .wrapper .leftside .cntitle {
    font-size: 32px;
    font-weight: 500;
    margin: 16px 0 12px;
    color: #fff;
    animation-name: fadeInDownBig;
    visibility: visible;
}

.adv .container .wrapper .leftside .subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    animation-name: fadeInDownBig;
    visibility: visible;
    display: block;
}

.adv .container .wrapper .leftside .picbox {
    width: 670px;
    height: 456px;
    margin: 100px 0 0 0;
    overflow: hidden;
    animation-name: bounceInLeft;
    visibility: visible;
}

.adv .container .wrapper .leftside .picbox img {
    width: 100%;
    height: 100%;
}

.adv .container .wrapper .leftside .picbox:hover img {
    transform: scale(1.05);
}

.adv .container .wrapper .rightside {
    background: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    animation-name: bounceInRight;
    visibility: visible;
}

.adv .container .wrapper .rightside .top .adv-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 64px 0 0 0;
}

.adv .container .wrapper .rightside .top .adv-list .adv-item {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 6px 0;
    display: none;
}

.adv .container .wrapper .rightside .top .adv-list .adv-item:nth-child(-n+3) {
    display: flex;
}

.adv .container .wrapper .rightside .top .adv-list .adv-item .txt {
    width: 65%;
}

.adv .container .wrapper .rightside .top .adv-list .adv-item .txt .name {
    font-size: 26px;
    color: #242e53;
    font-weight: bold;
    padding: 12px 0 0 80px;
    width: 420px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.adv .container .wrapper .rightside .top .adv-list .adv-item .txt .cont {
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    color: #000;
    line-height: 28px;
    padding: 10px 0 0 80px;
}

.adv .container .wrapper .rightside .top .adv-list .adv-item .picbox {
    width: 208px;
    height: 132px;
}

.adv .container .wrapper .rightside .top .adv-list .adv-item .picbox img {
    width: 100%;
    height: 100%;
}


/* .adv .container .wrapper .rightside .top .adv-list .adv-item:hover {
    background: #242e53;
}

.adv .container .wrapper .rightside .top .adv-list .adv-item:hover .txt .name {
    color: #fff;
}

.adv .container .wrapper .rightside .top .adv-list .adv-item:hover .txt .cont {
    color: #fff;
} */

.adv .container .wrapper .rightside .bottom {
    background: #242e53;
    height: 110px;
    padding: 20px 0;
}

.adv .container .wrapper .rightside .bottom p {
    font-size: 16px;
    color: #fff;
    margin: 10px;
    padding: 7px 0 0 80px;
    line-height: 30px;
}

.adv .container .wrapper .rightside .swiper-slide .img {
    width: 273px;
    height: 374px;
}


/* 认证证书 */

.certifi {
    background: #f4f4f4;
}

.certifi .swiper-slide img {
    width: 273px;
    height: 374px;
}

.certifi .container {
    padding: 130px 0 70px 0;
    display: flex;
}

.certifi .container .leftside {
    width: 340px;
    animation-name: slideInLeft;
    visibility: visible;
}

.certifi .container .leftside .entitle {
    font-size: 48px;
    font-weight: bolder;
    line-height: 52px;
    color: #242e53;
}

.certifi .container .leftside .cntitle {
    font-size: 32px;
    color: #000;
    font-weight: 500;
    margin: 16px 0 12px;
}

.certifi .container .leftside .subtitle {
    font-size: 16px;
    color: #000;
    font-weight: 300;
}

.certifi .container .leftside .line {
    display: block;
    width: 83px;
    height: 1px;
    background: #717f94;
    margin: 56px 0 0 0;
}

.certifi .container .rightside {
    width: 1160px;
    overflow: hidden;
    position: relative;
    animation-name: slideInRight;
    visibility: visible;
}

.certifi .container .rightside .swiper-wrapper {
    padding: 0 0 40px 0;
}


/* 首页新闻中心 */

.news .container {
    padding: 100px 0 60px 0;
    position: relative;
}

.news .container .newslist {
    display: flex;
    flex-direction: column;
    width: 1100px;
    overflow: hidden;
    animation-name: slideInLeft;
    visibility: visible;
}

.news .container .newslist .newsitem {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0 0 30px 0;
}

.news .container .newslist .newsitem:hover {
    background: #242e53;
}

.news .container .newslist .newsitem:hover .txtbox .date {
    color: #fff;
}

.news .container .newslist .newsitem:hover .txtbox .title {
    color: #fff;
}

.news .container .newslist .newsitem:hover .txtbox .cont {
    color: #fff;
}

.news .container .newslist .newsitem .picbox {
    width: 321px;
    height: 189px;
    overflow: hidden;
}

.news .container .newslist .newsitem .picbox img {
    width: 100%;
    height: 100%;
}

.news .container .newslist .newsitem .picbox:hover img {
    transform: scale(1.02);
}

.news .container .newslist .newsitem .txtbox {
    width: 780px;
}

.news .container .newslist .newsitem .txtbox .date {
    padding: 24px 0 0 60px;
    font-size: 15px;
    color: #000;
}

.news .container .newslist .newsitem .txtbox .title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin: 4px 0 16px 0;
    padding: 0 0 0 60px;
}

.news .container .newslist .newsitem .txtbox .cont {
    font-size: 15px;
    color: #000;
    line-height: 26px;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 90%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding: 0 0 0 60px;
}

.news .container .titlebox {
    position: absolute;
    top: 108px;
    right: 0;
    animation-name: slideInRight;
    visibility: visible;
}

.news .container .titlebox .entitle {
    font-size: 38px;
    color: #242e53;
    font-weight: 600;
    text-align: right;
}

.news .container .titlebox .cntitle {
    font-size: 38px;
    color: #000;
    text-align: right;
}


/* 内页关于旺来 */


/* 面包屑 */

.crumbs {
    animation-name: slideInUp;
    visibility: visible;
}

.crumbs .container {
    /* padding: 25px 0; */
    border-bottom: 1px dashed #ededed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 70px;
    line-height: 70px;
}

.crumbs .container .wrapper {
    padding: 0 0 0 40px;
    position: relative;
}

.crumbs .container .wrapper a {
    font-size: 16px;
    color: #000;
}

.crumbs .container .newscate a {
    font-size: 16px;
    color: #080808;
    display: inline-block;
    margin: 0 10px;
    height: 100%;
}

.crumbs .container .newscate .active {
    border-bottom: 2px solid #23466e;
}

.crumbs .container .wrapper::before {
    content: '';
    width: 17px;
    height: 17px;
    background: url(../images/crumbs-icon.png)no-repeat center;
    position: absolute;
    left: 12px;
    top: 26px;
}

.about .container .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 50px 0;
}

.about .container .wrapper .picbox {
    width: 597px;
    height: 549px;
    overflow: hidden;
    animation-name: slideInLeft;
    visibility: visible;
}

.about .container .wrapper .picbox img {
    width: 100%;
    height: 100%;
}

.about .container .wrapper .txtbox {
    width: 890px;
    animation-name: slideInRight;
    visibility: visible;
}

.about .container .wrapper .txtbox .entitle {
    font-size: 36px;
    color: #242e53;
    font-weight: 600;
    padding: 0 50px;
}

.about .container .wrapper .txtbox .cntitle {
    font-size: 36px;
    color: #000;
    font-weight: 700;
    padding: 0 50px;
}

.about .container .wrapper .txtbox .cont {
    font-size: 17px;
    margin: 30px 50px;
    text-indent: 34px;
    line-height: 30px;
}

.numcount .container {
    background: #242e53;
}

.numcount .container .numlist {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 1200px;
    margin: 50px auto;
}

.numcount .container .numlist .numitem {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.numcount .container .numlist .numitem .num {
    font-size: 100px;
    color: #fff;
    font-family: 'IMPACT';
}

.numcount .container .numlist .numitem span {
    display: inline-block;
    font-size: #fff;
}

.numcount .container .numlist .numitem .text {
    font-size: 18px;
    color: #fff;
    width: 134px;
    margin: 0 0 0 10px;
}

.numcount .container .numlist .numitem #num1 {
    width: 110px;
}

.numcount .container .numlist .numitem #num2 {
    width: 285px;
}

.numcount .container .numlist .numitem #num3 {
    width: 170px;
}

.factory .swiper-slide {
    overflow: hidden;
}

.factory .swiper-wrapper {
    padding: 0 0 50px 0;
}

.factory .container .piclist {
    animation-name: fadeInUp;
    visibility: visible;
}

.about-partner {
    background: #f4f4f4;
    padding: 100px 0 0 0;
    height: 670px;
}


/* 产品中心 */

#pro-bg {
    background: url(../images/picture/pro/banner.jpg)no-repeat center;
    background-position-y: 91px;
}

#pro-bg .container .pro-main-title {
    font-size: 38px;
    color: #fff;
    line-height: 73px;
    margin: 503px 0 0 0;
    padding: 0 0 0 28px;
}

#pro-bg .container .pro-wrapper {
    background: #fff;
}

#pro-bg .container .pro-wrapper .pro-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 20px 30px;
}

#pro-bg .container .pro-wrapper .pro-container .catebox {
    width: 18%;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem {
    min-height: 85px;
    line-height: 85px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    background: #f8f8f8;
    position: relative;
    border-bottom: 1px solid #dcdcdc;
    user-select: none;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem span {
    padding: 0 0 0 30px;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem::after {
    content: '';
    width: 9px;
    height: 10px;
    background: url(../images/icon3.png)no-repeat center;
    position: absolute;
    top: 38px;
    right: 32px;
    opacity: 0.3;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav {
    height: 0;
    background: #f4f4f4;
    border-top: 0px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .current .subnav {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav .subitem {
    line-height: normal;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav .subitem:hover {
    background: #23466e;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav .subitem a {
    padding: 25px 0 25px 60px;
    display: block;
    font-size: 18px;
    color: #000;
    font-weight: 400;
    position: relative;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav .subitem:hover a {
    color: #fff;
    transition: all 0.1s;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav .subitem:hover a::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../images/icon4.png)no-repeat center;
    position: absolute;
    left: 40px;
    top: 32px;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav .subitem:hover a::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../images/icon2.png)no-repeat center;
    position: absolute;
    right: 40px;
    top: 32px;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav .subitem a::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../images/icon5.png)no-repeat center;
    position: absolute;
    left: 40px;
    top: 32px;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav .active a::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../images/icon4.png)no-repeat center;
    position: absolute;
    left: 40px;
    top: 32px;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav .active a::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../images/icon2.png)no-repeat center;
    position: absolute;
    right: 40px;
    top: 32px;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav .active {
    background: #23466e;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .cateitem .subnav .active a {
    color: #fff;
}

#pro-bg .container .pro-wrapper .pro-container .catebox .catelist .current::after {
    content: '';
    width: 9px;
    height: 10px;
    background: url(../images/icon1.png)no-repeat center;
    position: absolute;
    top: 38px;
    right: 32px;
    opacity: 1;
}

#pro-bg .container .pro-wrapper .pro-container .pro-box {
    width: 80%;
}

#pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list .pro-item {
    width: 32%;
    margin: 0 0.5% 1%;
    overflow: hidden;
}

#pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list .pro-item .picbox {
    position: relative;
    overflow: hidden;
}

#pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list .pro-item .picbox .propic {
    width: 100%;
    max-height: 443px;
}

#pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list .pro-item .picbox .hover-more {
    width: 100%;
    height: 100%;
    background: rgba(36, 46, 83, 0.1);
    position: absolute;
    top: 0;
    left: 0;
}

#pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list .pro-item .picbox .hover-more img {
    position: absolute;
    left: 50%;
    margin: 0 0 0 -16.5px;
    bottom: -20%;
}

#pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list .pro-item .picbox .hover-more .name1 {
    font-size: 14px;
    color: #fff;
    text-align: center;
    position: absolute;
    width: 180px;
    left: 50%;
    margin: 0 0 0 -90px;
    bottom: -20%;
}

#pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list .pro-item .picbox .hover-more:hover {
    background: rgba(36, 46, 83, 0.8);
}

#pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list .pro-item .picbox .hover-more:hover img {
    bottom: 48%
}

#pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list .pro-item .picbox .hover-more:hover .name1 {
    bottom: 30%
}

#pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list .pro-item .name {
    margin: 6px 0;
    font-size: 16px;
    text-align: center;
    color: #000;
}

.detailcontent {
    padding: 45px 28px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    border-bottom: 8px solid #111;
}

.detailcontent .picbox {
    width: 667px;
    margin: 0 60px 0 0;
    height: 750px;
    overflow: hidden;
}

.detailcontent .txtbox .title {
    font-size: 36px;
    color: #000;
    font-weight: bold;
    margin: 50px 0 21px 0;
}

.detailcontent .txtbox .subtitle {
    font-size: 16px;
    color: #da0000;
    font-weight: 400;
}

.detailcontent .txtbox .advtitle {
    font-size: 24px;
    color: #000;
    margin: 130px 0 21px 0;
}

.detailcontent .txtbox .content {
    font-size: 18px;
    color: #000;
    line-height: 32px;
}

.prodetail .goback {
    display: block;
    position: absolute;
    width: 127px;
    height: 72px;
    background: #23466e;
    line-height: 72px;
    text-align: center;
    color: #fff;
    right: 0;
    top: 0;
    z-index: 150;
    font-size: 16px;
}

.prodetail .goback span {
    position: relative;
    padding: 0 0 0 24px;
}

.prodetail .goback span:before {
    content: '';
    width: 13px;
    height: 13px;
    background: url(../images/close.png)no-repeat center;
    top: 5px;
    left: 5px;
    position: absolute;
}

.prodetail .relat {
    padding: 0 0 50px 0;
}

.prodetail .relat .title {
    font-size: 36px;
    color: #000;
    text-align: center;
    margin: 83px 0 20px;
}

.prodetail .relat .entitle {
    font-size: 21px;
    color: #626262;
    text-align: center;
    margin: 0 0 47px 0;
}

.prodetail .relat .piclist {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.prodetail .relat .piclist .picitem {
    width: 98%;
    margin: 0 0.5%;
}

.prodetail .relat .piclist .picitem .picbox {
    overflow: hidden;
    width: 100%;
    max-height: 429px;
}

.prodetail .relat .piclist .picitem .picbox img {
    width: 100%;
    height: 100%;
}

.prodetail .relat .piclist .picitem .name {
    font-size: 16px;
    color: #000;
    text-align: center;
    margin: 6px 0;
}


/* oem */

.oemcontent .base .title {
    font-size: 42px;
    color: #242e53;
    text-align: center;
    padding: 142px 0 10px 0;
    position: relative;
}

.oemcontent .base .title::before {
    content: '';
    width: 469px;
    height: 85px;
    background: url(../images/picture/oem/top.png)no-repeat center;
    top: 115px;
    left: 50%;
    position: absolute;
    margin-left: -234px;
}

.oemcontent .base .title span {
    font-size: 62px;
    font-weight: bolder;
    display: inline;
    letter-spacing: -13px;
}

.oemcontent .base .subtitle {
    font-size: 22px;
    color: #000;
    text-align: center;
    width: 654px;
    margin: 0 auto;
    position: relative;
}

.oemcontent .base .subtitle::after {
    content: '';
    width: 469px;
    height: 43px;
    background: url(../images/picture/oem/bottom.png)no-repeat center;
    position: absolute;
    bottom: -60px;
    left: 50%;
    margin-left: -234px;
}

.oemcontent .base .piclist {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 127px 0 0 0;
}

.oemcontent .base .piclist .baseitem {
    overflow: hidden;
    margin: 0 1%;
}

.oemcontent .base .piclist .baseitem .picbox {
    width: 762px;
    height: 424px;
    overflow: hidden;
}

.oemcontent .base .piclist .baseitem .picbox img {
    width: 100%;
    height: 100%;
}

.oemcontent .base .piclist .baseitem .name {
    width: 246px;
    height: 67px;
    background: url(../images/titlebg.png)no-repeat center;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 67px;
    margin: 20px auto;
}

.oemcontent .base .piclist .baseitem .name span {
    width: 60%;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0px 0 0 66px;
}

.oemcontent .coop .title {
    font-size: 46px;
    color: #000;
    text-align: center;
    padding: 100px 0 50px;
}

.oemcontent .coop .title span {
    font-weight: bolder;
}

.oemcontent .coop img {
    display: block;
    margin: 0 auto;
}

.oemcontent {
    padding: 0 0 50px 0;
}

.oemcontent .oemadv {
    background: url(../images/picture/adv/adv-bg.jpg)no-repeat center;
    height: 837px;
}

.oemcontent .oemadv .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    width: 1558px;
    margin: 0 auto;
    padding: 150px 0 0 0;
}

.oemcontent .oemadv .wrapper .advitem {
    width: 49%;
    margin: 1%;
    overflow: hidden;
}

.oemcontent .oemadv .wrapper .advitem .title {
    font-size: 38px;
    font-weight: bold;
    color: #fff;
}

.oemcontent .oemadv .wrapper .advitem .subtitle {
    font-size: 16px;
    margin: 20px 0;
    color: #fff;
    height: 96px;
}

.oemcontent .proadv1 .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 83px 0 116px 0;
    width: 1570px;
    margin: 0 auto;
}

.oemcontent .proadv1 .wrapper .proadvitem .title {
    font-size: 36px;
    color: #242e53;
}

.oemcontent .proadv1 .wrapper .proadvitem .cont {
    font-size: 16px;
    color: #666;
    margin: 20px 0;
}

.oemcontent .proadv1 .wrapper .proadvitem .leftcont {
    max-width: 604px;
}

.pro-wrapper .hotline {
    position: absolute;
    top: -345px;
    left: 0;
}


/* 新闻中心 */

.newscenter .container .newslist {
    margin: 30px 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.newscenter .container .newslist .newsitem {
    width: 32%;
    margin: 1% 0.5%;
}

.newscenter .container .newslist .newsitem .picbox {
    width: 100%;
    height: 300px;
}

.newscenter .container .newslist .newsitem .picbox img {
    height: 100%;
    width: 100%;
}

.newscenter .container .newslist .newsitem .name {
    font-size: 20px;
    color: #000;
    margin-top: 20px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newscenter .container .newslist .newsitem .time {
    font-size: 16px;
    margin: 6px;
}

.contact .container .wrapper {
    display: flex;
    flex-direction: row;
}

.contact .container .wrapper .titlebox {
    width: 424px;
    height: 655px;
    border-right: 1px solid #efefef;
    padding: 84px 0 0 0;
    width: 30%;
    flex-grow: 1;
}

.contact .container .wrapper .titlebox .entitle {
    font-size: 54px;
    font-weight: 600;
    color: #242e53;
    margin: 10px 0;
}

.contact .container .wrapper .titlebox .cntitle {
    font-size: 26px;
    color: #000;
}

.contact .container .wrapper .infobox {
    padding: 0 0 0 112px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 70%;
    flex-grow: 1;
}

.contact .container .wrapper .infobox .com {
    padding: 80px 0 80px 0;
    border-bottom: 1px dotted #efefef;
}

.contact .container .wrapper .infobox .com:last-child {
    border: 0;
}

.contact .container .wrapper .infobox .com .name {
    font-size: 27.5px;
    color: #242e53;
    margin: 0 0 15px 0;
}

.contact .container .wrapper .infobox .com .cont {
    font-size: 18px;
    color: #000;
    line-height: 32px;
}

.contact .map {
    width: 100%;
    height: 600px;
}


/* 详情页 */

.detail-show .container .detailtitle {
    font-size: 36px;
    color: #333;
    font-weight: 600;
    text-align: center;
    padding: 50px 30px 0 0;
}

.detail-show .container .time {
    font-size: 16px;
    font-weight: 400px;
    color: #333333;
    display: block;
    text-align: center;
    margin: 15px 0;
}

.detail-show .container .detail-content {
    padding: 0 30px 50px;
}

.detail-show .container .detail-content img {
    max-width: 100%;
    display: block;
    margin: 10px auto;
}

.detail-show .container .detail-content p {
    font-size: 16px;
    color: #666666;
    font-weight: 300;
    text-indent: 32px;
}

.container .prevnext {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-top: 1px solid #efefef;
    padding: 10px 0 0 0;
}

.container .prevnext .prev,
.next {
    font-size: 16px;
    color: #333;
    padding: 20px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 48%;
}

.container .prevnext .next {
    text-align: right;
}


/* 底部 */

footer .backtotop {
    position: fixed;
    right: 5%;
    bottom: 10%;
    z-index: 10;
    cursor: pointer;
}

footer .btmcate {
    height: 100px;
    line-height: 100px;
    background: #242e53;
    text-align: center;
    animation-name: fadeInUp;
    visibility: visible;
}

footer .btmcate .container {
    position: relative;
}

footer .btmcate .container ul li {
    display: inline-block;
    margin: 0 20px;
}

footer .btmcate .container ul li a {
    font-size: 16px;
    color: #fff;
}

footer .btmcate .container .btmphone {
    position: absolute;
    right: 0;
    top: 0;
}

footer .btmcate .container .btmphone span {
    font-size: 20px;
    font-weight: bolder;
    color: #fff;
    position: relative;
    line-height: 29px;
    display: block;
    margin: 30px 0;
}

footer .btmcate .container .btmphone span::before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../images/phoneicon1.png)no-repeat center;
    position: absolute;
    left: -36px;
    top: 8px;
}

footer .wrapper {
    min-height: 210px;
    background: url(../images/fbg.jpg)no-repeat center;
    background-size: cover;
    animation-name: fadeInUp;
    visibility: visible;
}

footer .wrapper .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

footer .wrapper .container {
    padding: 60px 0 0 0;
}

footer .wrapper .container .btmlogo img {
    display: block;
}

footer .wrapper .container .btminfo .name {
    font-weight: bold;
    font-size: 23px;
    color: #fff;
    letter-spacing: 1px;
}

footer .wrapper .container .btminfo .infolist {
    margin: 15px 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

footer .wrapper .container .btminfo .infolist .infoitem {
    flex-grow: 1;
    margin: 0 40px 0 0;
    text-align: left;
}

footer .wrapper .container .btminfo .infolist .infoitem span {
    font-size: 14px;
    color: #fff;
    display: block;
    margin: 6px 0;
}

footer .infobar {
    width: 100%;
    height: 50px;
    background: #242424;
    text-align: center;
    line-height: 50px;
}

footer .infobar span {
    font-size: 14px;
    color: #fff;
}

footer .infobar a {
    font-size: 14px;
    color: #fff;
}

footer .qrcode {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

footer .qrcode img {
    width: 150px;
    height: 150px;
    margin: 0 10px 20px 0;
}


/* ------------------------------------------媒介查询---------------------------------------------- */

@media screen and (max-width: 1550px) {
    .oemcontent .proadv1 .wrapper {
        width: 1220px;
    }
    .container {
        width: 1390px;
    }
    .proadvitem img {
        width: 80%;
    }
    .oemcontent .coop img {
        width: 100%;
    }
    .oemcontent .oemadv .wrapper {
        width: 1450px;
    }
    .oemcontent .oemadv .wrapper .advitem {
        width: 45%;
    }
    .aboutus .wrapper {
        width: 1600px;
    }
    #banner img {
        width: 100%;
    }
    footer .wrapper .container .btmlogo img {
        width: 80%;
    }
}

@media screen and (max-width: 1366px) {
    #pro-bg .container .pro-wrapper .pro-container .pro-box .pro-list .pro-item .picbox .propic {
        height: 270px;
    }
    .container {
        width: 1280px;
    }
    header .logobox img {
        width: 380px;
    }
    header nav .mainnav li a {
        font-size: 14px;
    }
    .banner .swiper-pagination {
        bottom: 16%;
    }
    .aboutus .wrapper {
        width: 1280px;
    }
    .aboutus .wrapper .container {
        padding: 0 100px;
    }
    .aboutus .wrapper .container .intro {
        width: 530px;
        font-size: 14px;
        line-height: 34px;
    }
    .aboutus .wrapper .container .aboutpic {
        right: 338px;
    }
    .aboutus .wrapper .container .aboutpic2 {
        right: 258px;
    }
    .partner .container .brandlist {
        width: 850px;
    }
    .partner .container .brandlist .branditem {
        width: 204px;
        height: 87px;
    }
    .partner .container .brandlist .branditem img {
        width: 100%;
    }
    .adv .container .wrapper .leftside .picbox {
        width: 560px;
        height: 380px;
    }
    .adv .container .wrapper .rightside .bottom {
        height: 93px;
    }
    .adv .container .wrapper .rightside .top .adv-list {
        padding: 38px 0 0 0;
    }
    .certifi .swiper-slide img {
        width: 100%;
    }
    .news .container .newslist {
        width: 1000px;
    }
    header .subnav-wrapper .container .wrapper .leftside {
        width: 265px;
    }
    header .subnav-wrapper .container {
        width: 1280px;
    }
    header .subnav-wrapper .container .wrapper .rightside {
        width: 988px;
    }
    header .subnav-wrapper .container .wrapper .rightside .itemlist .item .picbox {
        width: 218px;
        height: 163px;
    }
    header .subnav-wrapper .container {
        padding: 30px 0 0 0;
    }
}

@media screen and (max-width: 1280px) {
    .banner .swiper-pagination {
        bottom: 0%;
    }
    .container {
        width: 1220px;
    }
    .adv .container .wrapper .rightside .top .adv-list .adv-item .txt .name {
        padding: 12px 0 0 40px;
        width: 380px;
    }
    .adv .container .wrapper .rightside .top .adv-list .adv-item .txt .cont {
        padding: 10px 0 0 40px
    }
    .oemcontent .oemadv .wrapper {
        width: 1298px;
    }
    .about .container .wrapper .txtbox .cont {
        font-size: 14px;
    }
}