@charset "utf-8";

/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;300;400;500&display=swap');
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #333;
    background: #fff;
    font-family: 'Microsoft YaHei', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    position: relative;
}

ul,
li,
ol,
dl,
dt,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    list-style: none;
    padding: 0;
    margin: 0;
}

input,
textarea {
    outline: none;
}

::-webkit-input-placeholder {
    color: #999999;
}

::-moz-placeholder {
    color: #999999;
}

:-ms-input-placeholder {
    color: #999999;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #a77f4c;
}

.clearfix:after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both
}

.clearfix {
    zoom: 1;
}

.clear {
    clear: both
}


/*图片放大*/

.imgZoom img {
    transition: all .4s;
    -webkit-transition: all .4s;
}

.imgZoom img:hover {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}


/*图片旋转*/

.imgRotate img {
    -webkit-transition: -webkit-transform 2s ease-out;
    -moz-transition: -moz-transform 2s ease-out;
    -o-transition: -o-transform 2s ease-out;
    -ms-transition: -ms-transform 2s ease-out;
}

.imgRotate img:hover {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}


/*按钮鼠标经过变暗*/

.wlp-button:hover {
    filter: alpha(opacity=90);
    background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1))!important;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1))!important;
    -webkit-filter: alpha(opacity=90);
}


/*鼠标经过有阴影*/

.wlp-shadow:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3)!important;
}


/*鼠标经过上浮并加阴影*/

.wlp-flow-shadow {
    -webkit-transition: all .5s;
    transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.wlp-flow-shadow:hover {
    transform: translate3d(0, -5px, 0);
    -webkit-transform: translate3d(0, -5px, 0);
    -webkit-box-shadow: 0 0px 10px #e9e9e9;
    box-shadow: 0 0px 10px #e9e9e9;
    -moz-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    -o-transform: translate3d(0, -5px, 0);
}


/*图片经过遮罩*/

.wlp-filter:hover img {
    filter: alpha(opacity=70);
    -moz-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
}

img {
    border: none;
}

.img {
    max-width: 100%;
    height: auto;
    display: block
}

.wrap {
    width: 1180px;
    margin: 0 auto;
}


/*display*/

.display_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.display_flex>* {
    display: block;
}

.display_inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
}

.display_inline-flex>* {
    display: block;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
}


/*伸缩流方向*/

.flex-direction_column {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}


/*主轴对齐*/

.justify-content_flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.justify-content_flex-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.justify-content_flex-justify {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex-pack-around {
    -webkit-box-pack: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: center;
    justify-content: space-around;
}


/*侧轴对齐*/

.align-items_flex-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.align-items_flex-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.align-items_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.align-items_baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}


/*伸缩性*/

.flex_auto {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    -webkit-flex: auto;
    flex: auto;
}

.flex_1 {
    width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}


/*显示顺序*/

.order_2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
}

.order_3 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
}

.ellipsis1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

.ellipsis2 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}


.fl {
    float: left;
}

.fr {
    float: right;
}

.center-box {
    width: 1300px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}


.center-box1 {
    width: 1336px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.center-box2 {
    width: 1320px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.center-box3 {
    width: 1348px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.center-box4 {
    width: 1342px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.center-box5 {
    width: 1330px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
/*搜索框*/

.search_box {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
}

.search_box dl {
    max-width: 900px;
    margin: 200px auto 0;
    border-bottom: #fff solid 1px;
    overflow: hidden;
    padding-top: 200px;
    position: relative;
}

.search_box dl input[type='text'] {
    width: 80%;
    height: 50px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    float: left;
}

.search_box dl input[type='submit'] {
    width: 50px;
    height: 50px;
    float: right;
    background: url(../images/04.png) no-repeat center;
    font-size: 0;
    border: none;
    cursor: pointer;
}

.search_box dl .search_off {
    width: 30px;
    height: 30px;
    background: url(../images/05.png) no-repeat;
    position: absolute;
    top: 0px;
    right: 0;
    cursor: pointer;
}

.bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}


/* 顶部导航 */

.header {
    width: 100%;
    height: 86px;
    background-color: #ffffff;
}

.header .logo {
    padding-top: 17px;
    width: 125px;
    height: 100%;
}

.header .head_right {
    height: 100%;
    width: 748px;
}

.header .nav {
    float: left;
    height: 86px;
    position: absolute;
    bottom: 0%;
}

.header .nav ul {
    height: auto;
}

.header .nav ul li {
    float: left;
    height: 100%;
    line-height: 86px;
    position: relative;
}

.header .nav ul li a {
    display: block;
    height: 100%;
    font-size: 16px;
    color: #262626;
    padding: 0 33px;
}

.header .nav ul li a:hover,
.header .nav ul li.focus a {
    color: #ffffff;
}

.header .nav ul li:hover {
    background-color: #f7952a;
}

.focus {
    color: #ffffff!important;
    background-color: #f7952a;
}

.header .nav ul li .secondary {
    position: absolute;
    z-index: 30;
    width: 130px;
    background-color: #f7952a;
    color: #ffffff;
    top: 85px;
    padding-top: 28px;
    display: none;
}

.header .nav ul li .secondary li {
display:block;
    height: 30px;
    line-height: 1em;
}

.header .nav ul li .secondary li a {
    display: block;
    font-size: 16px;
    color: #ffffff;
    padding: 0 33px;
}

.header .nav ul li .xia {
    position: absolute;
    top: 42px;
    right: 20px;
    width: 9px;
    height: 5px;
    background-image: url('./../images/xia.png');
    background-repeat: no-repeat;
}

.header .nav ul li .secondary li:hover li a {
    color: #ffffff!important;
}

.header .nav ul .selected:hover .secondary {
    display: block;
}

.header .head_right .menu-toggle {
    width: 86px;
    height: 86px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    display: none;
}

.header .menu-toggle {
    width: 86px;
    height: 86px;
    position: absolute;
    right: 0px;
    top: 0px;
    float: right;
    z-index: 99999;
    display: block;
    border-left: 1px solid #eee;
}

.header .menu-toggle span {
    width: 30px;
    height: 2px;
    background: #3574b7;
    display: block;
    position: relative;
    opacity: 1;
    transition: all 300ms;
    margin: 42px 0 0 12px;
}

.header .menu-toggle span:before {
    content: "";
    width: 30px;
    height: 2px;
    background: #3574b7;
    display: block;
    position: absolute;
    left: 0;
    top: -10px;
    transition: all 300ms;
}

.header .menu-toggle span:after {
    content: "";
    width: 30px;
    height: 2px;
    background: #3574b7;
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
    transition: all 300ms;
}

.header .menu-toggle.cur span {
    background-color: transparent;
}

.header .menu-toggle.cur span:before {
    transform: rotate(45deg);
    top: 0px;
}

.header .menu-toggle.cur span:after {
    transform: rotate(-45deg);
    top: 0px;
}

.fixed-header {
    position: fixed;
    top: 0;
    z-index: 100;
}


/* 首页banner图 */

.banner {
    width: 100%;
   height:608px;
}
.banner .swiper-container .swiper-slide a{
display:block;
   width:100%;
  height:100%;
    cursor: pointer;
}

.banner .swiper-container {
    overflow: hidden;
    width: 100%;
  height:100%;
}

.banner .swiper-container .swiper-slide {
    width: 100%;
  height:100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.banner .pagination {
    position: absolute;
    z-index: 20;
    bottom: 39px;
    width: 100%;
    text-align: center;
}

.banner .swiper-pagination-switch {
    display: inline-block;
    width: 23px;
    height: 10px;
    border-radius: 10px;
    background: #fff;
    margin: 0 5px;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.banner .swiper-active-switch {
    background: #f7952a;
    width: 54px;
    height: 10px;
}


/* 首页主体-公司简介 */

.introduce {
    width: 100%;
   padding-bottom:70px;
   min-height:600px
}

.introduce .center-box {
    padding-top: 70px;
}

.introduce .fl {
    width: 730px;
}

.line {
    width: 50px;
    height: 3px;
    background-color: #f29b76;
}

.introduce .fl h2 {
    font-size: 30px;
    color: #000;
    margin-top: 13px;
    margin-bottom: 25px;
    font-weight: 400;
}

.introduce .fl .field {
    text-indent: 2em;
    font-size: 16px;
    color: #5e5e5e;
}

.introduce .fl .more {
    margin-top: 25px;
    outline: none;
    cursor: pointer;
    border: 0px;
    width: 160px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    color: #ffffff;
    background-color: #8d624b;
}

.introduce .fl .more:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}


/* 合作品牌 */

.cooperation {
    width: 100%;
    padding-top:150px;
    border-bottom: 1px solid #d0d0d0;
    background-image: url("./../images/backimg1.jpg");
    background-repeat: no-repeat;
    background-size: 100% 404px;
    position: relative;
}

.cooperation h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom:66px
}

.cooperation h2 span {
    font-size: 30px;
    display: block;
    font-weight: 400;
}

.cooperation h2 i {
    display: block;
    margin: 12px auto 0px;
    width: 50px;
    height: 3px;
    background-color: #ffffff;
}

.cooperation ul {
    width: 100%;
font-size:0px;
margin-bottom:60px;
}

.cooperation ul li {
    width: 25%;
    display:inline-block;
margin-bottom:25px;
    border: 0px;
    cursor: pointer;
    transition: all 600ms;
    -webkit-transition: all 600ms;
    -moz-transition: all 600ms;
    -ms-transition: all 600ms;
    -o-transition: all 600ms;
}

.cooperation ul li:hover {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    /*兼容-webkit-引擎浏览器*/
    -moz-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}

.cooperation ul li:hover .cooperation-img {
    border: 3px solid #f7952a;
}

.cooperation ul li:hover p {
    color: #f7952a;
}

.cooperation ul li .cooper {
    padding: 0 9px;
}

.cooperation ul li .cooperation-img {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #c8aea0;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.cooperation ul li .cooperation-img img{
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.cooperation ul li p {
    color: #333333;
    font-size: 16px;
    text-align: center;
    margin-top: 11px;
}


/* 新闻资讯 */

.news {
    width: 100%;
    height: 630px;
    position: relative;
}

.news .center-box {
    padding-top: 80px;
    padding-bottom: 105px;
}

.news .center-box h2 {
    font-size: 30px;
    color: #000;
    margin-top: 13px;
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
}

.news .center-box span {
    position: absolute;
	display: block;
    color: #333333;
    font-size: 16px;
    font-weight: normal;
    right: 0px;
    top: 122px;
    z-index: 30;
    cursor: pointer;
}

.news {
    width: 100%;
    height: 630px;
    position: relative;
}

.news .prev {
    position: absolute;
    z-index: 30;
    width: 17px;
    height: 40px;
    top: 300px;
    left: -22px;
    cursor: pointer;
    background-image: url('./../images/icon1.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.news .next {
    position: absolute;
    z-index: 30;
    width: 17px;
    height: 40px;
    top: 300px;
    right: -22px;
    cursor: pointer;
    background-image: url('./../images/icon2.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.news .honor-main {
    position: absolute;
    top: -83px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: rgba(235, 235, 235, 1) 0px 10px 20px;
    padding-top: 35px;
}

.news .news-play {
    width: 1300px;
    height: 360px;
    overflow: hidden;
}

.news .swiper-slide {
    width: 206px;
}

.play-ul li {
    margin: 0 18px;
}

.play-main {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.play-main:hover .play-bot .play-title {
    color: #f7952a;
    font-weight: 700;
}

.play-main:hover .play-bot .play-content {
    color: #f7952a;
}

.play-main .play-top {
    height: 247px;
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.play-main .play-top img {
    height: 247px;
    width: 100%;
}

.play-main .play-bot {
    margin-top: 12px;
    height: 70px;
    width: 100%;
}

.play-main .play-bot .play-title {
    color: #000000;
    font-size: 18px;
}
.play-main .play-bot .play-time {
    font-size: 15px;
    color: #f29b76;
}

.play-main .play-bot .play-content {
    color: #999999;
    font-size: 16px;
    line-height: 1em;
    margin-top: 8px;
}

.play-main .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./../images/icon9.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(101, 101, 101, 0.4);
    color: #ffffff;
    opacity: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.play-main .mask img {
    width: 58px;
    height: 58px;
}

.play-main:hover .mask {
    opacity: 1;
}


/* 友情链接 */

.link {
    width: 100%;
    height: 128px;
    background-color: #eaeaea;
    line-height: 128px;
}

.link span {
    color: #4d4d4d;
    font-size: 16px;
}

.link span:hover {
    color: #999999;
}

.text-unline {
    margin-right: 20px;
    cursor: pointer;
}


/* 底部导航栏 */

.footer {
    width: 100%;
    height: 70px;
    background-color: #333333;
}

.footer span {
    font-size: 16px;
    color: #7a7a7a;
    line-height: 70px;
}

.footer span:hover {
    color: #cccccc;
}


/* 公司简介 */

.introduces {
    width: 100%;
    height: 507px;
}

.introduces .center-box {
    padding-top: 68px;
}

.introduces .fl {
    width: 730px;
}

.line {
    width: 50px;
    height: 3px;
    background-color: #f29b76;
}

.introduces .fl h1 {
    font-size: 30px;
    color: #000;
    margin-top: 13px;
    margin-bottom: 25px;
    font-weight: 400;
}

.introduces .fl span {
    font-size: 16px;
    color: #5e5e5e;
	line-height:22px;
    margin-bottom: 2em;
}

.lines {
    width: 100%;
    height: 1px;
    background-color: #d0d0d0;
}


/* 办公厂区 */

.factory {
    width: 100%;
}

.factory .center-box {
    padding-top: 40px;
    height:auto
}

.factory h3 {
    font-size: 30px;
    color: #000;
    margin-top: 13px;
    margin-bottom: 25px;
    font-weight: 400;
}
.factory .factory-main{
    padding-bottom:30px
}

.factory .factory-main ul {
    width: 100%;
    height: 100%;
}

.factory .factory-main ul li {
    padding:0 18px;
    cursor: pointer;
    width: 33.33%;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.factory .factory-main ul li .mask {
    position: absolute;
    top: 0;
    left: 18px;
    width: calc(100% - 35px);
    height: 100%;
    background-image: url('./../images/icon10.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(247, 149, 42, 0.6);
    color: #ffffff;
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.factory .factory-main ul li img {
    width: auto;
    height: auto;
    max-width:100%;
    max-height:100%;
   display:block
}

.factory .factory-main ul li:hover .mask {
    opacity: 1;
}


/* 其他页面展示图 */

.banners {
    width: 100%;
    height: 380px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banners .tags {
    width: 100%;
    height: 58px;
    line-height: 58px;
    font-size: 18px;
    color: #ffffff;
    position: absolute;
    bottom: 0px;
    filter: alpha(opacity=70);
    /*IE*/
    -moz-opacity: 1;
    /*老版Mozilla*/
    -khtml-opacity: 1;
    /*老版Safari*/
    opacity: 1;
    /*支持opacity的浏览器*/
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(47, 134, 4, 0.7)), color-stop(100%, rgba(233, 151, 44, 0.7)));
    /*兼容Safari4-5,chrome1-9*/
    background: -moz-linear-gradient(right, rgba(47, 134, 4, 0.7) 0%, rgba(233, 151, 44, 0.7) 100%);
    /*firefox*/
    background: -webkit-linear-gradient(left, rgba(47, 134, 4, 0.7) 0%, rgba(233, 151, 44, 0.7) 100%);
    /*chrome*/
    background: -o-linear-gradient(right, rgba(47, 134, 4, 0.7) 0%, rgba(233, 151, 44, 0.7) 100%);
    /*opera*/
    background: -ms-linear-gradient(right, rgba(47, 134, 4, 0.7) 0%, rgba(233, 151, 44, 0.7) 100%);
    /*ie*/
    background: linear-gradient(to right, rgba(47, 134, 4, 0.7), rgba(233, 151, 44, 0.7));
    /*firefox*/
}
.banners .tags a{
 color:#ffffff;
}

/* 荣誉主体 */

.honor-main {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 70px;
}

.honor-main h1 {
    font-size: 30px;
    color: #000;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 500;
}

.honor-main .line1 {
    width: 50px;
    height: 3px;
    margin: 0 auto;
    background-color: #f29b76;
}

.honor-main .honors {
    margin-top: 40px;
    margin-bottom: 70px;
}

.honor-main .honors li {
    padding:0 21px;
    width: 25%;
    margin-bottom: 15px;
    cursor: pointer;
}
.honor-main .honors li img{
  
   width:auto;
   height:auto;
  max-height:100%;
  max-width:100%
}
.honor-main .honors li:hover img {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.honor-main .honors li:hover p {
    color: #f7952a;
}

.honor-main .honors li img {
    border: 0;
}

.honor-main .honors li p {
    font-size: 18px;
    text-align: center;
    color: #666666;
}

.honor-main .paginations {
    height: 45px;
    margin: 0 auto
}

.honor-main .paginations .prev {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    text-align: center;
    background-color: #e2e2e2;
    display: inline-block;
    line-height: 45px;
    font-size: 20px;
    border: 1px solid #e2e2e2;
    cursor: pointer;
}

.honor-main .paginations .nums {
    vertical-align: top;
    width: 45px;
    height: 45px;
    margin-right: 12px;
    background-color: #e2e2e2;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    border: 1px solid #e2e2e2;
    color: #000;
    cursor: pointer;
    font-size: 20px;
}

.honor-main .paginations .next {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    text-align: center;
    background-color: #e2e2e2;
    display: inline-block;
    line-height: 45px;
    font-size: 20px;
    border: 1px solid #e2e2e2;
    cursor: pointer;
}


/*===/分页=============================*/
.fengye{ padding: 30px 0; text-align: center; font-size:18px;}
.off{  padding:8px 17px; background:#e7e7e7; color:#000; margin:0 8px;}
a.off:hover{ background:#f7952a; color:#fff; }
.fengye a{ line-height:1;color:#000; padding:8px 17px; margin-right:8px;background:#e7e7e7;}
.fengye a:hover{color:#fff;background:#f7952a; }
.fengye a.fenyeon{ line-height:1; background:#f7952a; color:#FFF;}

/* 组织结构 */

.structure-main {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 30px;
}

.structure-main h1 {
    font-size: 30px;
    color: #000;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 500;
}

.structure-main .line1 {
    width: 50px;
    height: 3px;
    margin: 0 auto;
    background-color: #f29b76;
}

.structure-main .content {
    width: 100%;
    margin-top: 55px;
}
.structure-main .content img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* 合作品牌 */

.brand-main {
    width: 100%;
    padding-bottom:90px;
    padding-top: 40px;
}

.brand-main h1 {
    font-size: 30px;
    color: #000;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 500;
}

.brand-main .line1 {
    width: 50px;
    height: 3px;
    margin: 0 auto;
    background-color: #f29b76;
}

.brand-main .content {
    width: 100%;
    margin-top: 35px;
}

.brand-main .content ul {
    width: 100%;
}

.brand-main .content ul a {
    width: 20%;
    padding:0 10px
}

.brand-main .content ul li {
    margin-bottom: 25px;
    width: 100%;
    cursor: pointer;
}

.brand-main .content ul li:hover .brand-img {
    border: 3px solid #f7952a;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.brand-main .content ul li:hover p {
    color: #f7952a;
}

.brand-main .content ul li .brand-img {
    width: 100%;
    border: 1px solid #c8aea0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.brand-main .content ul li .brand-img img{
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
   max-width:100%;
  max-height:100%;
width:auto;
height:auto;
display:block;
}
.brand-main .content ul li p {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
    color: #666666;
}


/* 合作品牌 */

.message-main {
    width: 100%;
    padding-top: 53px;
    padding-bottom: 127px;
}

.message-main h1 {
    font-size: 30px;
    color: #000;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 500;
}

.message-main .line1 {
    width: 50px;
    height: 3px;
    margin: 0 auto;
    background-color: #f29b76;
}

.message-main .content {
    width: 100%;
    margin-top: 60px;
}

.message-main .content .content1 {
    width: 100%;
    height: 50px;
}

.message-main .content .content1 .input-item {
    position: relative;
}

.message-main .content .content1 label {
    position: absolute;
    left: 20px;
    top: 10px;
    font-size: 16px;
}

.message-main .content .content1 input {
    outline: none;
    border: 1px solid #d4d4d4;
    width: 630px;
    padding-left: 100px;
    font-size: 16px;
    height: 48px;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #e7e8e8), color-stop(100%, #ffffff));
    /*兼容Safari4-5,chrome1-9*/
    background: -moz-linear-gradient(top, #e7e8e8 0%, #ffffff 100%);
    /*firefox*/
    background: -webkit-linear-gradient(left, #e7e8e8 0%, #ffffff 100%);
    /*chrome*/
    background: -o-linear-gradient(top, #e7e8e8 0%, #ffffff 100%);
    /*opera*/
    background: -ms-linear-gradient(top, #e7e8e8 0%, #ffffff 100%);
    /*ie*/
    background: linear-gradient(to top, #e7e8e8, #ffffff);
    /*firefox*/
}

.message-main .content .content2 {
    width: 100%;
    height: 50px;
    margin-top: 20px;
}

.message-main .content .content2 .input-item {
    position: relative;
}

.message-main .content .content2 label {
    position: absolute;
    left: 20px;
    top: 10px;
    font-size: 16px;
}

.message-main .content .content2 input {
    outline: none;
    border: 1px solid #d4d4d4;
    width: 630px;
    padding-left: 100px;
    font-size: 16px;
    height: 48px;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #e7e8e8), color-stop(100%, #ffffff));
    /*兼容Safari4-5,chrome1-9*/
    background: -moz-linear-gradient(top, #e7e8e8 0%, #ffffff 100%);
    /*firefox*/
    background: -webkit-linear-gradient(left, #e7e8e8 0%, #ffffff 100%);
    /*chrome*/
    background: -o-linear-gradient(top, #e7e8e8 0%, #ffffff 100%);
    /*opera*/
    background: -ms-linear-gradient(top, #e7e8e8 0%, #ffffff 100%);
    /*ie*/
    background: linear-gradient(to top, #e7e8e8, #ffffff);
    /*firefox*/
}

.message-main .content textarea {
    margin-top: 20px;
    outline: none;
    border: 1px solid #d4d4d4;
    color: #666666;
    width: 100%;
    padding: 18px;
    font-size: 16px;
    height: 215px;
    overflow: hidden;
    resize: none;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #e7e8e8), color-stop(100%, #ffffff));
    /*兼容Safari4-5,chrome1-9*/
    background: -moz-linear-gradient(top, #e7e8e8 0%, #ffffff 100%);
    /*firefox*/
    background: -webkit-linear-gradient(left, #e7e8e8 0%, #ffffff 100%);
    /*chrome*/
    background: -o-linear-gradient(top, #e7e8e8 0%, #ffffff 100%);
    /*opera*/
    background: -ms-linear-gradient(top, #e7e8e8 0%, #ffffff 100%);
    /*ie*/
    background: linear-gradient(to top, #e7e8e8, #ffffff);
    /*firefox*/
}

.message-main .content button {
    margin-top: 20px;
    width: 280px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    outline: none;
    background-color: #f7952a;
    border: none;
    color: #ffffff;
}


/* 联系我们 */

.contact-main {
    width: 100%;
    padding-top: 53px;
}
.contact-main2 {
    padding-top: 30px;
}
.contact-main h1 {
    font-size: 30px;
    color: #000;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-main .line1 {
    width: 50px;
    height: 3px;
    margin: 0 auto;
    background-color: #f29b76;
}

.contact-main .tabs {
    margin-top: 35px;
    margin-bottom: 10px;
}

.contact-main .tabs ul {
    width: 100%;
}

.contact-main .tabs ul li {
    width: 33.33%;
    height: 173px;
    margin-bottom: 15px;
    cursor: pointer;
    text-align: center;
    padding:0 24px
}

.contact-main .tabs ul li div{
   width:100%;
    height:100%;
    border: 2px dashed #cecece;
   display:block
}
.contact-main .tabs ul li div:hover {
    border: 2px dashed #f7952a;
}

.contact-main .tabs ul li img {
    display: inline;
    margin-top: 38px;
}

.contact-main .tabs ul li .label {
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    color: #000000;
}

.contact-main .tabs ul li .value {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
}


.contact-main .tabs2 {
    margin-bottom: 90px;
    padding:0 24px;
}

.contact-main .tabs2 p {
    line-height: 41px;
}

.contact-main .tabs2 p img {
    margin-right:50px;
    max-width:100%;
    max-height:100%;
    height:auto;
    width:auto
}


/* 地图 */

.map {
    width: 100%;
    height: 755px;
    background-color: #f7952a;
    position: relative;
}

.map h4 {
    color: #ffffff;
    position: absolute;
    text-align: center;
    top: 60px;
    left: calc(50% - 60px);
}

.map h4 span {
    font-size: 30px;
    display: block;
    font-weight: 400;
}

.map h4 i {
    display: block;
    margin: 12px auto 0px;
    width: 50px;
    height: 3px;
    background-color: #ffffff;
}

.map .maps {
    height: 520px;
    width: 100%;
    position: absolute;
    z-index: 30;
    top: 150px;
    left: 0px;
    border: 10px solid #ffffff;
}


/* 新闻中心 */

.news-main {
    width: 100%;
    padding-top: 43px;
    padding-bottom:60px
}

.news-main h1 {
    font-size: 30px;
    color: #000;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 500;
}

.news-main .line1 {
    width: 50px;
    height: 3px;
    margin: 0 auto;
    background-color: #f29b76;
}

.news-main ul {
    width: 100%;
    margin-top: 32px;
    margin-bottom: 40px;
}
.news-main ul a{
width:33.33%;
 padding:0 18px;
    margin-bottom: 50px;
}
.news-main ul li {
    position: relative;
    cursor: pointer;
}
.news-main ul li .top{
    position: relative;
margin-bottom:5px
}
.news-main ul li .top img{
    max-height:100%;max-width:100%;height:auto;width:auto;display:block
}
.news-main ul li .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background-image: url(../images/icon9.png);
background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(101, 101, 101, 0.4);
    color: #ffffff;
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}


.news-main ul li:hover .mask {
    opacity: 1;
}

.news-main ul li:hover h5,
.news-main ul li:hover .time,
.news-main ul li:hover .value {
    color: #f7952a;
}

.news-main ul li h5 {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.news-main ul li .time {
    font-size: 15px;
    color: #f29b76;
    margin-bottom: 8px;
}

.news-main ul li .value {
    font-size: 16px;
    color: #999999;
}

.news-main .paginations {
    height: 45px;
    margin: 0 auto
}

.news-main .paginations .prev {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    text-align: center;
    background-color: #e2e2e2;
    display: inline-block;
    line-height: 45px;
    font-size: 20px;
    border: 1px solid #e2e2e2;
    cursor: pointer;
}

.news-main .paginations .nums {
    vertical-align: top;
    width: 45px;
    height: 45px;
    margin-right: 12px;
    background-color: #e2e2e2;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    border: 1px solid #e2e2e2;
    color: #000;
    cursor: pointer;
    font-size: 20px;
}

.news-main .paginations .next {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    text-align: center;
    background-color: #e2e2e2;
    display: inline-block;
    line-height: 45px;
    font-size: 20px;
    border: 1px solid #e2e2e2;
    cursor: pointer;
}


/* 新闻中心详情 */

.news-view-main {
    width: 100%;
    padding-bottom: 100px;
    padding-top: 43px;
}

.news-view-main h1 {
    font-size: 30px;
    color: #000;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 500;
}

.news-view-main .line1 {
    width: 50px;
    height: 3px;
    margin: 0 auto;
    background-color: #f29b76;
}

.news-view-main .attr {
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
    color: #999999;
}

.news-view-main .attr span {
    margin-right: 10px;
}

.news-view-main .content {
    margin-top: 45px;
	line-height: 2.2;
}
.news-view-main .content p{
    text-indent: 2em; 
	margin: 10px 0;
}

/* 相关新闻 */

.related {
    width: 100%;
    background-color: #f3f3f3;
    padding-top: 40px;
}

.related h3 {
    font-size: 30px;
    color: #000;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 500;
}

.related .line1 {
    width: 50px;
    height: 3px;
    margin: 0 auto;
    background-color: #f29b76;
}

.related ul {
    width: 100%;
    margin-top: 50px;
}

.related ul li {
    width: 25%;
   padding:0 15px;
    cursor: pointer;
    position: relative;
  margin-bottom:75px;
}

.related ul h5 {
    font-size: 18px;
    color: #000;
    font-weight: normal;
    margin-top: 15px;
}

.related ul .time {
    font-size: 15px;
    color: #f29b76;
}

.related ul .value {
    line-height: 1em;
    font-size: 16px;
    color: #999999;
}
.related ul li .top{
    position: relative;
    margin-bottom: 5px;
}
.related ul li .mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background-image: url(../images/icon9.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(101, 101, 101, 0.4);
    color: #ffffff;
    opacity: 0;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.related ul li img {
    width: auto;
    height:  auto;
max-width: 100%;
    max-height:  100%;
   display:block
}

.related ul li:hover .mask {
    opacity: 1;
}

.related ul li:hover h5 {
    color: #f7952a;
    font-weight: 600;
}

.related ul li:hover .time {
    color: #f7952a;
}

.related ul li:hover .value {
    color: #f7952a;
}


/* 品牌产品 */

.brand-view-main {
    min-height: 350px;
    width: 100%;
    padding-top: 65px;
    padding-bottom: 20px;
    background-color: #ffffff;
}

.brand-view-main .brand-top {
    width: 100%;
    position: relative;
}

.brand-view-main .brand-top div{
   line-height:1.5em
}

.brand-view-main .brand-top .icon {
    float:left;
    background-size: cover;
    margin-right:55px;
    height: 230px;
    width: 310px;
    border: 2px solid #c8aea0;
    
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}



.brand-view-main .brand-top h1 {	
    font-size: 30px;
    color: #000;
    font-weight: normal;
}
.brand-view-main .brand-top .lines{
  width:50px;height:3px;background-color:#f29b76;margin-bottom:15px;display:inline-block
}

.brand-view-main .brand-top p {
    display:inline-block;	
    font-size: 18px;
    color: #000;
    margin-top: 25px;
}

.brand-view-main .brand-bot {
    width: 100%;
    height: 230px;
}

.brand-view-main .brand-bot p {
    font-size: 18px;
    color: #000;
    margin-top: 25px;
}

.product {
    width: 100%;
    padding-top: 40px;
    background-color: #eaeaea;
}

.product h3 {
    font-size: 30px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 500;
}

.product .line1 {
    width: 50px;
    height: 3px;
    background-color: #f29b76;
}

.product ul {
    margin-top: 37px;  
    padding-bottom:48px;
}

.product ul li {
   padding:0 18px;
    width: 25%;
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
}
.product ul li .bgs{
    position: relative;
}
.product ul li a .mask {
    position: absolute;
    height:100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(247, 149, 42, 0.5);
    color: #ffffff;
    opacity: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.product ul li:hover a .mask {
    opacity: 1;
}

.product ul li img {
    width:auto;
    height:auto;
    max-height:100%;
    max-width:100%;
   display:block
}
.product ul li p {
    font-size: 18px;
    line-height: 54px;
    height:54px;
    color: #000;
    text-align: center;
    background-color: #ffffff;
}


.product ul li:hover p {
    color: #ffffff;
    font-weight: 600;
    background-color: #f7952a
}

.paging {
    width: 100%;
    height: 115px;
    background-color: #ffffff;
    padding-top: 35px;
}

.paging .paginations {
    height: 45px;
    margin: 0 auto
}

.paging .paginations .prev {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    text-align: center;
    background-color: #e2e2e2;
    display: inline-block;
    line-height: 45px;
    font-size: 20px;
    border: 1px solid #e2e2e2;
    cursor: pointer;
}

.paging .paginations .nums {
    vertical-align: top;
    width: 45px;
    height: 45px;
    margin-right: 12px;
    background-color: #e2e2e2;
    display: inline-block;
    text-align: center;
    line-height: 45px;
    border: 1px solid #e2e2e2;
    color: #000;
    cursor: pointer;
    font-size: 20px;
}

.paging .paginations .next {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    text-align: center;
    background-color: #e2e2e2;
    display: inline-block;
    line-height: 45px;
    font-size: 20px;
    border: 1px solid #e2e2e2;
    cursor: pointer;
}


/* 图片展示遮幕层  */

.dialog {
    display: none;
    padding: 10px;
    width: 50%;
    border-radius: 3px;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.175);
    background: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    left: 0;
    right:0px;
   top: 60px;
    margin:auto;
    position:fixed;
    opacity: 1;
     z-index: 214748012;
}

.dialog_container {
    overflow: hidden;
    position: relative;
    text-align: center !important;
    z-index: 300000000;
    background: #fff;
}

.dialog_container img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;

}

.dialog a {
    cursor: pointer;
    height: 40px;
    line-height: 36px;
    position: absolute;
    right: -50px;
    text-align: center;
    top: -50px;
    width: 40px;
}

.dialog a i {
    display: block;
    width: 42px;
    height: 42px;
    background-image: url('./../images/icon11.png');
    background-repeat: no-repeat;
}

.spice_blank_opacity {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: black;
    z-index: 214748010;
    opacity: 0.2 !important;
}


/* 适配 */

@media screen and (max-width:930px) {
    .header {
        height: 80px;
        border-bottom: #ddd solid 1px;
    }
    .header .logo {
        padding-top: 12px;
    }
    .header .head_right {
        width: 0;
    }
    /* .header .logo img {
        width: 75px;
        height: 75px;
    }  */
    .header .nav {
        display: none;
    }
    .header .nav {
        width: 100%;
        height: 100vh;
        background: #fff;
        position: fixed;
        left: 0;
        top: 80px;
        z-index: 99998;
        display: none;
        margin: 0;
        border-top: #ddd solid 1px;
    }
    .header .nav ul li {
        float: none;
        height: 47px;
        border-bottom: #ddd solid 1px;
        margin-right: 0;
        margin-left: 0;
        padding: 0;
    }
    .header .nav ul li .xia {
        top: 23px;
    }
    .header .nav ul li .secondary {
        display: none;
        z-index: 50;
        width: 100%;
        top: 46px;
        padding-top: 0px;
    }
    .header .nav ul li .secondary li {
        height: 43px;
    }
    .header .nav ul li .secondary li a {
        text-align: left;
    }
    .header .nav ul li a {
        font-weight: normal;
        font-size: 16px;
        color: #666;
        line-height: 46px;
        padding: 0;
        min-width: 100%;
        text-align: left;
        text-indent: 25px;
        display: block;
    }
    .header .nav ul li a:hover,
    .header .nav ul li.focus a {
        background: #e68937;
        color: #fff;
        border-bottom: none;
        padding-bottom: 0;
        border-radius: 0;
    }
    .header .menu-toggle {
        width: 80px!important;
        height: 80px!important;
        position: absolute;
        right: 0px;
        top: 0px;
        float: right;
        z-index: 99999;
        display: block;
        border-left: 1px solid #eee;
    }
    .header .menu-toggle span {
        width: 30px;
        height: 2px;
        background: #3574b7;
        display: block;
        position: relative;
        opacity: 1;
        transition: all 300ms;
        margin: 38px 0 0 25px;
    }
    .header .menu-toggle span:before {
        content: "";
        width: 30px;
        height: 2px;
        background: #3574b7;
        display: block;
        position: absolute;
        left: 0;
        top: -10px;
        transition: all 300ms;
    }
    .header .menu-toggle span:after {
        content: "";
        width: 30px;
        height: 2px;
        background: #3574b7;
        display: block;
        position: absolute;
        left: 0;
        top: 10px;
        transition: all 300ms;
    }
    .header .menu-toggle.cur span {
        background-color: transparent;
    }
    .header .menu-toggle.cur span:before {
        transform: rotate(45deg);
        top: 0px;
    }
    .header .menu-toggle.cur span:after {
        transform: rotate(-45deg);
        top: 0px;
    }
}

@media screen and (max-width:1300px) {
    .center-box {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        position: relative;
        padding: 0 20px;
    }
.center-box1 {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        position: relative;
    }
.center-box2 {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        position: relative;
    }
.center-box3 {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        position: relative;
    }
.center-box4 {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        position: relative;
    }
.center-box5 {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        position: relative;
    }
    .introduce .fl {
        width: calc(100% - 535px);
    }
    .brand-main {
        height: auto;
    }
    .news-main {
        height: auto;
    }
    .news-main ul a {
        width: 33.33%;
        padding: 0 18px
    }

    .news-main ul a li img {
        width: auto;
        height:  auto;
        max-width: 100%;
        max-height: 100%;
	
    }
    .news-main .paginations {
        margin-bottom: 20px;
    }
    .message-main .content .content1 {
        width: 100%;
        height: 65px;
        display: block;
    }
    .message-main .content .content1 .input-item1 {
        width: 49%;
        float: left;
        margin-top: 15px;
    }
    .message-main .content .content1 .input-item2 {
        width: 49%;
        float: right;
        margin-top: 15px;
    }
    .message-main .content .content1 input {
        width: 100%;
        display: block;
    }
    .message-main .content .content2 {
        width: 100%;
        height: 65px;
        display: block;
    }
    .message-main .content .content2 .input-item1 {
        width: 49%;
        float: left;
        margin-top: 15px;
    }
    .message-main .content .content2 .input-item2 {
        width: 49%;
        float: right;
        margin-top: 15px;
    }
    .message-main .content .content2 input {
        width: 100%;
        display: block;
    }
    .contact-main {
        height: auto;
padding-top:20px;
    }
    .contact-main .tabs ul li {
        width: 49%;
    }
    .product {
        height: auto;
    }
    .product ul li {
        width: 25%;
        margin-bottom: 30px;
    }
    .related {
        height: auto;
    }
    .related ul li {
        width: 33.33%;
        margin-bottom: 20px;
    }
    .cooperation ul li {
        display:inline-block;
        width: 50%;
    }
    .cooperation ul li .cooper {
        /* padding: 0 10px!important; */
        margin-top: 20px;
    }
    .honor-main {
        height: auto;
    }
    .honor-main .honors li {
        width: 25%;
    }
    .honor-main .paginations {
        margin-bottom: 20px;
    }
    .news .news-play {
        width: 100%
    }
    .news .center-box h6 {
        right: 20px;
    }
    .news .next,
    .news .prev {
        display: none;
    }
    .introduces {
        height: auto;
       padding-bottom:30px
    }
    .introduces .fl {
        width: 100%;
       float:none
    }
    .introduces .fr {
        display: none;
    }
    .factory {
        height: auto;
    }
    .factory-main {
        height: auto!important;
    }
    .factory .factory-main ul li {
        width: 33.33%;
        background-size: 100% 100%;
    }
}

@media screen and (max-width:1150px) {
.brand-main .content ul a {
    width: 33.33%;
    padding: 0 10px;
}
}

@media screen and (max-width:1100px) {
 .banners {
        height: 280px;
    }
    .introduce .fl {
        width: 100%;
       float:none
    }
.introduce .fr {
        display:none
    }
    .brand-view-main .brand-top .icon {
        display: none;
    }
    .brand-view-main {
        height: auto;
    }
    .banner{
	 height:480px;
    }
.related ul h5{
font-size:16px
}
.related ul .time{
font-size:15px
}
.related ul .value{
font-size:14px
}
}

@media screen and (max-width:1000px) {
.footer {
        width: 100%;
        height: 130px;
    }
    .footer .center-box {
        display: block;
    }
    .footer span {
        text-align: center;
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-all;
    }
    .footer a {
        text-align: center;
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-all;
    }
}
@media screen and (max-width:768px) {
.news-view-main .content img{
 max-width:100%;
 max-height:100%;
 height:auto;
 width:auto;
}
.cooperation h2{
   margin-bottom:25px;
}
.cooperation h2 span{
  color:#000000
}
.cooperation h2 i{
  background-color:#f29b76
}
    .introduce {
        height: auto;
    }
    .introduce .center-box {
        padding-top: 30px;
        height: auto;
    }
    .introduce .fl {
        width: 100%;
        min-height: 372px;
        height: auto;
    }
    .introduce .fr {
        display: none;
    }
    .cooperation {
        background-size: cover;

        padding-top:0px;
background-image:none;
    }
.cooperation ul li{
width:50%;
}
    .cooperation ul li .cooper {
        /* padding: 0 10px!important; */
        margin-top: 20px;
    }
    .cooperation ul li:hover {
        transform: translateY(-0);
        -webkit-transform: translateY(-0);
        /*兼容-webkit-引擎浏览器*/
        -moz-transform: translateY(-0px);
        -ms-transform: translateY(-0);
        -o-transform: translateY(-0);
        -moz-transform: translateY(-0);
    }
    .news {
        display: none;
    }
    .link {
        width: 100%;
        height: auto;
        min-height: 48px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .link .center-box {
        display: block;
    }
    .link .center-box span {
        display: block;
        text-align: center;
        width: 100%;
        height: 20px;
        line-height: 20px;
        font-size: 14px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-all;
    }
    .footer {
        width: 100%;
        height: 130px;
    }
    .footer .center-box {
        display: block;
    }
    .footer span {
        text-align: center;
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-all;
    }
    .footer a {
        text-align: center;
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-all;
    }


.map {
    background-color: #ffffff;
}


.map h4 span {
    color: #000000;
}

.map h4 i {
    background-color: #f29b76;
}
.contact-main .tabs{
 margin-bottom:0px;
}

    .brand-main {
        height: auto;
    }
    .brand-main .content ul a {
        width: 50%;
        padding:0 10px
    }
    .news-main {
        height: auto;
        padding-bottom:0px
    }
    .news-main ul a {
        width: 50%;
        margin-bottom:20px
    }
    .news-main ul a li {
        width: 100%;
    }
    .news-main ul a li .tu {
        width: 100%;
    }
.news-main ul li h5{
font-size:16px
}
.news-main ul li .time{
font-size:15px
}
.news-main ul li .value{
font-size:14px
}
    .news-main .paginations {
        margin-bottom: 30px;
    }
    .contact-main {
        height: auto;
       padding-top:0px;
    }
    .contact-main .tabs ul li {
        width: 100%;
    }
.contact-main .tabs2 p img{
width:100%;
margin-right:unset;
}
.contact-main .tabs2{
 margin-bottom:0px;
}
    .message-main {
        height: auto;
    padding-bottom:20px
    }
    .message-main .content .content1 {
        width: 100%;
        height: 120px;
        display: block;
    }
    .message-main .content .content1 .input-item {
        width: 100%;
        margin-top: 15px;
    }
    .message-main .content .content1 input {
        width: 100%;
        display: block;
    }
    .message-main .content .content2 {
        width: 100%;
        height: 120px;
        display: block;
        margin-top:0px;
    }
    .message-main .content .content2 .input-item {
        width: 100%;
        margin-top: 15px;
    }
    .message-main .content .content2 input {
        width: 100%;
        display: block;
    }
    .message-main .content button {
        margin-bottom: 20px;
        width:100%
    }
    .honor-main .honors li {
        width: 50%;
    }
    .honor-main .paginations {
        margin-bottom: 30px;
    }
    .introduces {
        height: auto;
    }
    .introduces .fl {
        width: 100%;
    }
    .introduces .fr {
        display: none;
    }
    .factory {
        height: auto;
    }
    .factory-main {
        height: auto!important;
    }
    .factory .factory-main ul li {
        width: 50%;
        background-size: 100% 100%;
    }
    .banners {
        height: 240px;
        background-size: : cover;
    }
    .banners .tags {
        font-size: 16px;
    }
    .map h4 {
        left: calc(50% - 60px);
    }
    .banner{
	 height:280px;
    }
    .banner .swiper-active-switch {
        width: 25px!important;
    }
    .banner .swiper-pagination-switch {
        width: 12px;
    }
    .banner .pagination {
        bottom: 15px;
    }
    .related {
        height: auto;
    }
    .brand-view-main {
        height: auto;
    }
    .product {
        height: auto;
    }
    .product ul li {
        width: 50%;
        margin-bottom: 15px;
    }
    .brand-view-main .brand-top .icon {
        display: none;
    }


    .related ul li {
        width:50%;
        margin-bottom: 20px;
    }
    .dialog {
        width: 80%;
        top:150px;
    }
    .dialog a {
        width: 30px;
        height: 30px;
        right: -30px;
        top: -35px;
    }
    .dialog a i {
        width: 30px;
        height: 30px;
        background-size: contain;
    }
}