header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9;
	width: 100%;
    height: 73px;
    background: #fff;
}

header .logo {
    float: left;
    z-index: 200;
    line-height: 63px;
}

header .logo img {
  margin-left: 2rem;
  width: 20rem;
}

header .navbar {
    height: 73px;
    padding-left: 30%;
}

header .navbar li {
    float: left;
    text-align: center;
}

header .navbar a {
    vertical-align: middle;
    line-height: 73px;
    color: #1b1b1b;
    font-family: Arial;
    text-decoration: none;
    font-size: 1.7rem;
}
header .navbar li:last-child {
  margin-left: 2rem;
 flex: 1.8;
}
header .navbar li:last-child p {
  background-color: #FFD905;
  color: #664D20;
  white-space: nowrap;
  line-height: 3rem;
  border-radius: 1.5rem;
  font-weight: bold;
}
header .navbar li:last-child p img {
  margin-right: 2px;
  width: 1.6rem;
}
header .navbar .drop-l {
    background: url(/statics/images/drop-l.png) no-repeat center;
    background-position-x: 5px;
    width: 120px;
    padding-right: 15px;
}
#gotop {
    position: fixed;
    right: 10px;
    bottom: 18%;
    z-index: 9999;
    display: none;
    width: 46px;
    height: 46px;
    background: url(../images/gotop.png) top left no-repeat;
    background-size: 100% auto;
}
#gotop:hover {
	background: url(../images/gotop.png) bottom left no-repeat;
    background-size: 100% auto;
	}
.pc-show {
    display: block;
}

.phone-show {
    display: none;
}

.logo {
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
}

.logo:before {
    content: "";
    position: absolute;
    left: -665px;
    top: -460px;
    width: 200px;
    height: 15px;
    background-color: rgba(255,255,255,.5);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: searchLights 4s ease-in 0s infinite;
    -o-animation: searchLights 4s ease-in 0s infinite;
    animation: searchLights 4s ease-in 0s infinite;
}

@-webkit-keyframes searchLights {
    0,75% {
        left: -100px;
        top: 0;
    }

    100% {
        left: 120px;
        top: 100px;
    }
}

@-o-keyframes searchLights {
    0,75% {
        left: -100px;
        top: 0;
    }

    100% {
        left: 120px;
        top: 100px;
    }
}

@-moz-keyframes searchLights {
    0,75% {
        left: -100px;
        top: 0;
    }

    100% {
        left: 120px;
        top: 100px;
    }
}

@keyframes searchLights {
    0,75% {
        left: -100px;
        top: 0;
    }

    100% {
        left: 120px;
        top: 100px;
    }
}

/*phone-menu*/
.menu_box {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    padding: 7rem 2rem 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
}

.menu_box ul li {
    margin: 3rem auto;
    padding: 1px;
    width: 69%;
    text-align: center;
    border: 2px solid #fff;
}

.menu_box ul li a {
    display: block;
    padding: 5px;
    font-size: 1.6rem;
    border: 1px solid #fff;
    color: #fff;
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceInLeft {
    0%,100%,60%,75%,90% {
        -webkit-transition-timing-function: cubic-bezier(0.215,.61,.355,1);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px,0,0);
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px,0,0);
        transform: translate3d(25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(5px,0,0);
        transform: translate3d(5px,0,0)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {
    0%,100%,60%,75%,90% {
        -webkit-transition-timing-function: cubic-bezier(0.215,.61,.355,1);
        transition-timing-function: cubic-bezier(0.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px,0,0);
        -ms-transform: translate3d(-3000px,0,0);
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px,0,0);
        -ms-transform: translate3d(25px,0,0);
        transform: translate3d(25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(-10px,0,0);
        -ms-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(5px,0,0);
        -ms-transform: translate3d(5px,0,0);
        transform: translate3d(5px,0,0)
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

h2 {
    font-size: 2.8rem;
    text-align: center;
}

h6 {
    font-size: 3.2rem;
    text-align: center;
    color: #323232;
    font-weight: lighter;
    margin: 0.5rem auto 3rem auto;
}

/*menu*/
.menu * {
    box-sizing: border-box;
}

.menu .center {
    width: 1200px;
}

.menu .ul-list > li {
    flex: 1;
    position: relative;
}

.menu .ul-list > li:last-child {
    border-right: none;
}

.menu .ul-list > li > span {
    color: #fff;
    font-size: 1.4rem;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
}

.menu .ul-list > li:hover .ol-list {
    display: block;
}

.menu .ol-list {
    display: none;
    position: absolute;
    left: 0;
    z-index: 999;
    background: #f4f4f4;
    width: 130px;
    overflow: hidden;
}
.menu .ol-list > li {
    width:100%;
}
.menu .ol-list > li a {
    line-height: 50px;
}

.menu .ol-list > li:hover {
    line-height: 50px;
    background: #cccccc5e;
}

main {
	padding-top: 73px;
    overflow: hidden;
}
.banner-index {
    position:relative;
    width: 100%;
    max-height: 1200px;
    overflow:hidden;
}
.banner-index .wrap {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 2;
    margin-left: -600px;
    height: 100%;
}
.banner-index .tempWrap {
    margin: 0 auto;
    width: 100% !important;
    max-width: 1920px;
}
.banner-index .banner-cell li {
    position: relative; 
    overflow: hidden;
    max-width: 1920px;
}
.banner-index .banner-cell li img {
    margin: 0 auto;
}
.banner-index .banner_pre,
.banner-index .banner_next {
    position:absolute;
    top:50%;
    z-index:2;
    margin-top: -30px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    color: #eee;
    font-size: 30px;
    text-align: center;
}
.banner-index .banner_pre {
    left: 0;
    background: url(../images/banner-btn.svg) center no-repeat;
    background-size: auto 100%;
}
.banner-index .banner_next {
    right: 0;
    background: url(../images/banner-btn.svg) center no-repeat;
    background-size: auto 100%;
    transform: rotate(180deg);
}
.banner-index .banner_pre:hover {
  background-position: 30% center;
}
.banner-index .banner_next:hover {
  background-position: 30% center;
}
.banner-index .hd {
  position: absolute;
  z-index: 3;
  width: 100%;
  bottom: 5rem;
  text-align: center;
}
.banner-index .hd li {
  margin: 0 .8rem;
  width: 10px;
  height: 10px;
  border-radius: 60%;
  background-color: #606060;
  cursor: pointer;
  text-indent: 999em;
}
.banner-index .hd li.on {
  background-color: #fff;
}
.sec01, .sec02, .sec03, .sec04, .sec05, .sec06, .sec06, .sec07, .sec08, .sec09 {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
}
.sec01 {
    padding: 6rem 0;
    /* border-bottom: solid 1px #cccccc57; */
}
.sec01 .wrap {
    width: 1172px;
}
.sec01 .index-about {
  
}
.sec01 .index-about img {
  margin-right: 3%;
  width: 50%;
}
.sec01 .index-about > div {
  width: 47%;
}
.sec01 .index-about strong {
  position: relative;
  display: block;
  line-height: 5rem;
  font-size: 3rem;
  font-weight: normal;
}
.sec01 .index-about strong::after {
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 12rem;
  height: 4px;
  background-color: #FFA505;
  content: "";
}
.sec01 .index-about p {
  margin: 4rem 0 3rem;
  font-size: 2.1rem;
  line-height: 3.4rem;
}
.sec01 .index-about a {
  padding-left: 1.9rem;
  display: block;
  width: 15rem;
  line-height: 3rem;
  color: #FFA505;
  border: 1px solid #FFA505;
  white-space: nowrap;
  border-radius: 1.5rem;
  font-size: 2rem;
}
.sec01 .index-about a img {
  margin-left: 2px;
  width: 2.8rem;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}
.sec01 .index-about a:hover img {
  margin-left: 5px;
}
.sec01 .special ul li {
    text-align: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .15);
}

.sec01 .special ul li .big-pic {
    /*height: 29.3rem;*/
    overflow: hidden;
    display: block;
    margin: 0 auto;
}
.sec01 .special ul li .big-pic img {
    transition-duration: 1s;
    width: 100%;
}
.sec01 .special ul li:hover img {
    transform: scale(1.1);
}

.sec01 .special ul li h6 {
    margin-bottom: 1rem;
}

.sec01 .special ul li {
    position: relative;
    margin: 0 1% 2%;
    width: 31.33333%;
    display: inline-block;
    overflow: hidden;
}
.sec01 .special ul li p {
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    z-index: 2;
    width: 100%;
    line-height: 5rem;
    background: url(../images/sec01-title-bg.png) center no-repeat;
    color: #fff;
    opacity: 1;
    font-size: 18px;
}
/* .sec01 .special ul li:hover p {
    left: 0;
    opacity: 1;
} */
/*.sec01 .special .devide-33:hover {
    box-shadow: 0px 5px 10px #e0e0e0;
}

.sec01 .special .devide-33:after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
}

.sec01 .special .devide-33:hover:after {
    width: 100%;
    background: #fecb22;
}*/

.sec01 .special ul li h6 a {
    text-decoration: none;
    font-size: 1.7rem;
    color: #323232;
}

.sec01 .special ul li h6 {
    margin: 2rem auto 2rem auto;
    text-align: left;
    padding-left: 1rem;
}
.title {
    margin-bottom: 2rem;
    line-height: 3.1rem;
    color: #AB6F1B;
    background: url(../images/title-bg.png) center no-repeat;
}
.sec01 .title,
.sec05 .title {
    margin-bottom: 4rem;
}
.subtitle {
    font-weight: lighter;
    font-size: 1.6rem;
    color: #606060;
}
.more {
  position: relative;
  text-align: center;
}
.more::before {
  position: absolute;
  left: 0;
  top: 1.75rem;
  width: 100%;
  height: 1px;
  background-color: #ECECEC;
  content: "";
}
.more a {
  position: relative;
  display: inline-block;
  width: 16rem;
  line-height: 3.5rem;
  background-color: #ECECEC;
  font-size: 1.7rem;
  border-radius: 5rem;
  z-index: 2;
}

.more2 {
    position: relative;
    margin-top: 3rem;
    text-align: center;
    overflow: hidden;
}
.more2::after {
    content:"";
    position: absolute;
    left: 0;
    width: 100%;
    top: 2rem;
    height: 1px;
    background: #f2f2f2;
}
.more2 a {
    position: relative;
    display: inline-block;
    width: 18rem;
    height: 4rem;
    background: #f2f2f2;
    font-size: 2rem;
    line-height: 4rem;
    border-radius: 5rem;
    z-index: 2;
    font-weight: lighter;
}

.sec02 {
    position: relative;
    padding: 5rem 0;
    background: #f2f2f2;
    text-align: center;
}
.sec02 .sec02-ico {
    position: absolute;
    left: 50%;
    margin-left: -20px;
    top: -30px;
}
.sec02 .strategy {
    position: relative;
    height: 700px;
}

.sec02 .strategy li {
    height: 620px;
    background: #fff;
    box-shadow: 0 0 20px 1px #ccc;
}

.sec02 .strategy li .service-shadow h6 {
    color: #ffa50c;
    margin: 20px auto 30px auto;
    font-size: 2.2rem;
}

.sec02 .strategy li .service-shadow .description {
    font-size: 1.7rem;
    padding: 0 50px;
    line-height: 28px;
}

.sec02 .strategy li .service-shadow .more {
    width: 80px;
    height: 30px;
    border: solid 1px #ccc;
    border-radius: 30px;
    text-align: center;
    margin: 0 auto;
    margin-top: 3%;
}

/*轮播*/
.slide {
    width: 100%;
    min-height: 180px;
    overflow: hidden;
    position: relative;
    height: :750px !important;
}

.slide .img {
    overflow: hidden;
    position: absolute;
    transition: width 0.4s,height 0.4s,top 0.4s,left 0.4s,z-index 0.4s;
}

.slide .img1 {
    width: 30%;
    height: 30%;
    top: 30%;
    left: -50%;
    z-index: 1;
}

.sec02 .strategy .slide .img2 {
    width: 40%;
    height: 40%;
    top: 7%;
    left: 1%;
    z-index: 2;
    height: 535px;
}

.slide .img3 {
    width: 50%;
    height: 50%;
    top: 0%;
    left: 25%;
    z-index: 3;
}

.sec02 .strategy .slide .img4 {
    width: 40%;
    height: 40%;
    top: 7%;
    left: 59%;
    z-index: 2;
    height: 535px;
}

.slide .img5 {
    width: 30%;
    height: 30%;
    top: 30%;
    left: 110%;
    z-index: 1;
}

.slide-bt {
    position: absolute;
    left: 50%;
    bottom: 13%;
    z-index: 10;
}

.slide-bt span {
    width: 24px;
    height: 8px;
    background: #c9caca;
    float: left;
    margin: 5px;
    border-radius: 4px;
}

.slide .slide-bt .on {
    background: #ffd200;
}

button {
    width: 50px;
    margin: 20px;
}

.sec03 {
    background: #f2f2f2;
    padding: 3rem 0;
    position: relative;
}

.sec03 .enterprise .bigbox li {
    height: 360px;
    padding: 0 20px;
    float: none;
    display: inline-block;
    width: 365px;
}

.sec03 .content_1 {
    text-align: center;
}

.sec03 .enterprise .menu-name {
    float: none;
    display: inline-block;
}

.sec03 .enterprise .service-shadow-1 {
    background: url(/statics/images/index-04.png) no-repeat center;
    height: 380px;
    padding: 0;
    padding-top: 190px;
}

.sec03 .enterprise .service-shadow-2 {
    background: url(/statics/images/index-05.png) no-repeat center;
    height: 380px;
    padding: 0;
    padding-top: 190px;
}

.sec03 .enterprise .service-shadow-3 {
    background: url(/statics/images/index-06.png) no-repeat center;
    height: 380px;
    padding: 0;
    padding-top: 190px;
}

.sec03 .enterprise .devide-33 {
    position: relative;
}

.sec03 .more {
    margin-top: 3rem;
}

/*slide-middle*/
.control-box {
    width: 1170px;
    height: auto;
    background-image: url(../images/hots_bg.png);
    background-size: 1055px;
    background-repeat: no-repeat;
    background-position: 60px 165px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
}

.control-box ul {
    list-style: none;
    position: relative;
    display: initial;
}

.control-box ul li {
    cursor: pointer;
}

.control-box .prev {
    left: 0;
    top: 150px;
}

.control-box .next {
    right: 0;
    top: 150px;
}

.control-box .bigbox {
    overflow: hidden;
    width: 1200px;
    height: 380px;
}

#switcher {
    height: 360px;
    left: 0px;
}

.control-box .content_1.content_2 {
    width: 100%;
    float: left;
}

.control-box .box {
    transition: all .7s ease 0s;
    width: 270px;
    height: 360px;
    float: left;
}

.control-box .box:hover {
    opacity: 0.5;
}

.control-box .shadow {
    width: 260px;
    height: 360px;
    /* opacity: 1; */
    background-color: rgba(0, 0, 0, 0.45);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000,endColorstr=#66000000);
    color: white;
    font-size: 1.4rem;
}

.control-box .shadow a {
    display: inline-block;
    width: 225px;
    height: 360px;
    color: white;
    text-decoration: none;
    margin-left: 18px;
    margin-top: 10px;
}

.sec05 {
    position: relative;
}

.sec01 h2, .sec05 h2 {
    margin-top: 50px;
}

.sec05 h6, .sec01 h6 {
    margin-bottom: 2rem;
}

.sec05 .news li {
    height: 170px;
}

.sec05 .news .devide-30 img {
    float: right;
    box-shadow: 0 0 10px 2px #ccc;
}

.sec05 .news .devide-30 img:hover {
    box-shadow: 0 0 15px 5px #ccc;
    border: 1px solid #ccc;
}

.sec05 .news .devide-70 a {
    color: #ffa505;
    font-size: 2rem;
    font-weight: bolder;
}

.sec05 .news .devide-70 .description {
    margin-right: 10rem;
    margin-top: 1.2rem;
}

.sec05 .news .devide-70 h6 {
    margin: 0 auto 0.5rem 20px;
    line-height: 2rem;
    text-align: left;
}

.sec05 .news .devide-70 p {
    margin-left: 20px;
}

.sec05 .more {
    margin-bottom: 3rem;
}

footer {
    height: 415px;
    background: #26211e;
    padding-top: 1.5rem;
}

footer p, footer a, footer h6, footer ul li, footer ul a {
    color: #fff;
}

footer h6 {
    font-size: 2.2rem;
    font-weight: bolder;
    margin-bottom: 1rem;
}
footer .devide-66 {
    padding-top: 4rem;
    padding-bottom: 3rem;
}
footer .top-left {
  margin-left: 2%;
}
footer .top-left .footer-logo {
  margin: 2.4rem 0;
  width: 24rem;
}
footer .top-left .footer-nav a {
  padding: 0 2rem;
  border-right: 1px solid #fff;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
footer .top-left .footer-nav a:first-child {
  padding-left: 0;
}
footer .top-left .footer-nav a:last-child {
  border-right: none;
}
footer .top-left .contact {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 3.6rem;
}
footer .top-left .contact img {
  margin-right: 2px;
  width: 2rem;
}
footer .top-right {
  margin-right: 8%;
  padding-top: 2rem;
  width: 15rem;
}
footer .top-right p {
  text-align: center;
}

footer .flink {
    text-align: center;
    margin: 1rem auto;
}

footer .links {
    text-align: left;
    margin: 0 2rem;
    color: #fff;
}

footer .copyright, footer .copyright a {
    color: #888888;
}

/*brand*/
.brand h1 {
    font-size: 3rem;
    color: #020202;
    text-align: center;
    margin: 2rem auto 1rem;
}

.meishi-wrap {
  padding-top: 5rem;
    width: 940px;
}

.tab-box {
    padding-bottom: 5rem;
    width: 100%;
}
.tab-box .scroll-show-m li {
    margin-right: 1.33333%;
    margin-bottom: 1.33333%;
    padding: 0 !important;
    /*padding: 30px 10px 0 !important;*/
    width: 24%;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    text-align: center;
}
.tab-box .scroll-show-m li:nth-of-type(4n) {
    margin-right: 0;
}
.tab-box .scroll-show-m li:hover {
    background: #f2f2f2;
}
.tab-box .scroll-show-m li p {
    padding-bottom: 0 !important;
}
.tab-box .scroll-show-m li .guige {
    display: none;
    opacity: 0;
    padding-bottom: 1.5rem;
    font-size: 12px;
    color: rgb(150,175,90);
    line-height: 12px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.tab-box .scroll-show-m li:hover .guige {
    opacity: 1;
}
.sub-nav {
    padding: 3rem 0 2rem;
}

.sub-nav .devide-33 {
    text-align: center;
}

.sub-nav button {
    margin-top: 1.5rem;
    width: 120px;
    color: #656565;
    font-size: 1.4rem;
}

.sub-nav button.active, .sub-nav button:hover {
    color: #ee7700;
}

.btn:active, .btn.active {
    background-image: none;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    outline: unset !important;
    font-weight: bolder;
    color: #ee7700;
}

.brand .content {
    padding: 0 85px;
}

.brand .content p {
    line-height: 3rem;
    text-indent: 3rem;
}

.brand .content img {
    margin: 1rem auto;
}
.flex {
    display: -webkit-flex;
    display: flex;
}
.flex-start {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.flex-align-center {
    -webkit-align-items: center;
    align-items: center;
}
.flex-align-end {
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.flex-around {
    -webkit-justify-content: space-around;
    justify-content: space-around;
}
.flex-center {
    -webkit-justify-content: center;
    justify-content: center;
}
.flex-right {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.flex-between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-reverse {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.flex-container-column {
    -webkit-flex-direction: column;
    flex-direction: column;
}
.clear {
    clear:both;
    }
.f_l {
    float:left;
    }
.f_r {
    float:right;
    }
.m-show{
    display:none;
}
.about-banner-txt {
    position: absolute;
    left: 50%;
    top: 25vh;
    margin-left: -550px;
    width: 1100px;
    text-align: left;
}
.about-banner-txt img {
    margin-bottom: 40px;
    width: 250px;
}
.about-banner-txt p {
    color: #fff;
    text-indent: 2em;
    font-size: 1.82rem;
    line-height: 4rem;
}
.brand .title {
    margin-bottom: 10px;
    color: rgb(177,111,27);
}
.brand .subtitle {
    color: rgb(218,167,85);
    text-transform: Uppercase;
    font-size: 1.3rem;
    font-weight: bold;
}
.about1 {
  padding: 4rem 0;
}
.about1 .text-box {
  padding: 3rem 0 2rem;
}
.about1 .text-box img {
  margin-right: 2.5%;
  width: 42%;
}
.about1 .text-box > div {
  width: 55.5%;
}
.about1 .text-box p {
  text-indent: 2em;
  font-size: 1.7rem;
  line-height: 3.4rem;
}
.zhcy1 {
  padding-bottom: 4rem;
}
.zhcy1 .zhcy1-tit {
    margin-bottom: 30px;
    padding: 30px 0;
}
.zhcy1 .subtitle {
    margin-bottom: 0;
}
.zhcy1 .text,
.zhcy1 .img {
    margin-bottom: 15px;
    width: 49.5%;
    border: none;
}
.zhcy1 .text {
    padding: 0 5.5%;
}
.zhcy1 .text h3 {
    font-size: 26px;
    line-height: 36px;
    color: rgb(218,167,85);
    text-align: center;
}
.zhcy1 .text p {
    margin: 40px 0 0;
    font-size: 1.7rem;
    line-height: 3.5rem;
}
.about2 {
    padding: 50px 0;
    background: #EFEFF1;
    text-align: center;
}
.about2 .wrap {
  position: relative;
}
.about2 .about2-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  margin-top: -5.5rem;
  display: block;
  width: 6rem;
  height: 6rem;
}
.about2 .about2_pre {
    left: 0;
    background: url(../images/arrow-gay.svg) center no-repeat;
    background-size: auto 100%;
}
.about2 .about2_next {
    right: 0;
    background: url(../images/arrow-gay.svg) center no-repeat;
    background-size: auto 100%;
    transform: rotate(180deg);
}
.about2 .about2_pre:hover {
  background-position: 30% center;
}
.about2 .about2_next:hover {
  background-position: 30% center;
}
.about2 .about2-cell {
  margin: 0 auto;
  padding: 5rem 0 10rem;
  width: 86%;
  background: url(../images/about2-bg.jpg) center bottom no-repeat;
  background-size: 90% auto;
}
.about2 ul li {
  width: 25%;
}
.about2 ul li img {
  max-width: 94%;
}
.about3 {
    padding: 50px 0;
    text-align: center;
}
.about3 .subtitle {
    margin-bottom: 0;
}
.stuckMessage {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: -110px;
    background: rgba(0,0,0,0.7);
    height: 110px;
    z-index: 99;
    opacity: 0;
    transition: all 0.5s ease-out 0s;
}
.stuckMessage.see {
    bottom: 0px;
    opacity: 1;
}
.stuckMessage .wrap,
.stuckMessage form {
    height: 100%;
}
.stuckMessage .form-tel img {
    margin-right: 10px;
    width: 40px;
}
.stuckMessage .form-tel p {
    color: #fff;
    font-size: 2.5rem;
}
.stuckMessage .form-tel p span {
    display: block;
    line-height: 2rem;
}
.stuckMessage form {
    width: 70%;
}
.stuckMessage form input,
.stuckMessage form select,
.stuckMessage form button {
    margin-right: 20px;
    padding: 0 20px;
    width: 30%;
    border-radius: 50px;
    background: #fff;
    height: 40px;
    line-height: 40px;
    font-weight: normal;
}
.stuckMessage form select {
    cursor: pointer;
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
}
.stuckMessage form button {
    margin: 0;
    width: 25%;
    background-image: linear-gradient(rgb(206,158,0) , rgb(255,217,1));
}
.stuckMessage form button img {
    margin-right: 5px;
    width: 18px;
}
@media (max-width:768px){
    body {
        padding-bottom: 0;
    }
    .stuckMessage {
        display: none;
    }
    .pc-show {
        display: none;
    }
    .m-show {
        display:block;
    }
    .banner-index .wrap {
        padding: 0 15px;
        left: 0;
        margin-left: 0;
    }
    .banner1 .wrap {
        top: 15vh;
    }
    .banner-index strong {
        margin-bottom: 15px;
        font-size: 40px;
        line-height: 40px;
    }
    .banner-index b {
        margin-bottom: 15px;
        font-size: 18px;
        line-height: 30px;
    }
    .banner1 .more-btn {
        display: block;
        position: static;
        margin-top: 30px;
        width: 80px;
    }
    .banner-index p {
        width: 86%;
        font-size: 18px;
        line-height: 30px;
    }
    .banner-index .hd {
      bottom: 1rem;
    }
    .sec01 {
      padding: 2rem 0;
    }
    .sec01 .index-about {
      padding: 0 15px;
    }
    .sec01 .index-about strong {
        font-size: 2rem;
        line-height: 3.1rem;
    }
    .sec01 .index-about strong::after {
        width: 8rem;
    }
    .sec01 .index-about img,
    .sec01 .index-about > div{
      width: 100%;
    }
    .sec01 .index-about p {
        margin:  2rem 0;
        font-size: 1.5rem;
        line-height: 2.8rem;
    }
    .sec01 .index-about > img {
        margin-right: 0;
        margin-top: 2rem;
    }
    .sec01 .special ul li p {
        line-height: 2.4rem;
        background-size: auto 100%;
        font-size: 1.2rem;
    }
    .sec01 .index-about a {
        width: 12rem;
        font-size: 1.4rem;
    }
    .sec02 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .about1 {
      padding: 2rem 0 0;
    }
    .about1 .text-box {
        padding:  1rem 0;
    }
    .about1 .text-box img {
      margin: 0;
      width: 100%;
    }
    .about1 .text-box p {
        margin-top: 15px;
        font-size: 1.5rem;
        line-height: 2.8rem;
    }
    .about1 .text-box > div {
      padding: 0 15px;
      width: 100%;
    }
    .zhcy1 {
      padding-bottom: 1rem;
    }
    .zhcy1 .zhcy1-tit {
        margin-bottom: 2rem;
        padding:  2rem 0 0;
    }
    .zhcy1 .text,
    .zhcy1 .img {
        width: 100%;
        border: none;
    }
    .zhcy1 .img {
        margin-bottom: 0;
    }
    .zhcy1 .text {
        padding: 15px;
        height: auto !important;
    }
    .zhcy1 .text h3 {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
    .zhcy1 .text p {
        margin: 20px 0 0;
        font-size: 1.5rem;
        line-height: 2.6rem;
    }
    .about2 {
      padding: 3rem 0;
    }
    .about2 .about2-cell {
      padding: 2rem 15px 5rem;
      width: 100%;
    }
    .about2 ul li {
      width: 50%;
    }
}
article {
    padding-bottom: 5rem;
}

article .tab {
    display: none;
    margin-top: 1rem;
}

article .show {
    display: block;
}

article .content .devide-20 {
    padding: 10px;
}

article .content h3 {
    font-size: 2rem;
    background: #3e96f9;
    color: #fff;
    width: 10rem;
    text-align: center;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 3rem auto 1rem auto;
}

article .honor section {
    padding: 5rem 0;
    border-bottom: 0.5px solid #9e9d9dd9;
}

article .honor h3 {
    text-align: center;
    font-size: 3.6rem;
    margin-bottom: 1rem;
}

article .honor .des {
    padding: 0 10%;
    text-align: center;
}

.brand .honor-list img {
    width: 95%;
    display: block;
    margin: auto;
    height: 185px;
    border: solid 1px #ccc;
}

.brand .honor-list {
    margin-bottom: 2rem;
}

.brand .honor-list li {
    margin: 1rem 0;
}

/*meishi*/
.meishi .sub-nav li {
    margin: 0 1% 1% 0;
    padding: 0;
    width: 15.8%;
    background-color: #DDDDDD;
    line-height: 40px;
    text-align: left;
    border-radius: 0;
    font-weight: lighter;
    font-size: 18px;
    text-align: center;
}
.meishi .sub-nav li:nth-of-type(6n) {
  margin-right: 0;
}
/* .meishi .sub-nav li:nth-of-type(1){
    background: url(../images/jiaozi1.svg) 19px center no-repeat;
    background-size: auto 16px;
}
.meishi .sub-nav li:nth-of-type(1):hover,
.meishi .sub-nav li:nth-of-type(1).active {
    background: #537756 url(../images/jiaozi.svg) 19px center no-repeat;
    background-size: auto 16px;
}
.meishi .sub-nav li:nth-of-type(2){
    background: url(../images/jiaozi1.svg) 19px center no-repeat;
    background-size: auto 16px;
}
.meishi .sub-nav li:nth-of-type(2):hover,
.meishi .sub-nav li:nth-of-type(2).active {
    background: #537756 url(../images/jiaozi.svg) 19px center no-repeat;
    background-size: auto 16px;
}
.meishi .sub-nav li:nth-of-type(3){
    background: url(../images/huntun1.svg) 22px center no-repeat;
    background-size: auto 20px;
}
.meishi .sub-nav li:nth-of-type(3):hover,
.meishi .sub-nav li:nth-of-type(3).active {
    background: #537756 url(../images/huntun.svg) 22px center no-repeat;
    background-size: auto 20px;
}
.meishi .sub-nav li:nth-of-type(4){
    background: url(../images/tangyuan1.svg) 23px center no-repeat;
    background-size: auto 20px;
}
.meishi .sub-nav li:nth-of-type(4):hover,
.meishi .sub-nav li:nth-of-type(4).active {
    background: #537756 url(../images/tangyuan.svg) 23px center no-repeat;
    background-size: auto 20px;
}
.meishi .sub-nav li:nth-of-type(5){
    background: url(../images/sushi1.svg) 20px center no-repeat;
    background-size: auto 16px;
}
.meishi .sub-nav li:nth-of-type(5):hover,
.meishi .sub-nav li:nth-of-type(5).active {
    background: #537756 url(../images/sushi.svg) 20px center no-repeat;
    background-size: auto 16px;
}
.meishi .sub-nav li:nth-of-type(6){
    background: url(../images/sushi1.svg) 20px center no-repeat;
    background-size: auto 16px;
}
.meishi .sub-nav li:nth-of-type(6):hover,
.meishi .sub-nav li:nth-of-type(6).active {
    background: #537756 url(../images/sushi.svg) 20px center no-repeat;
    background-size: auto 16px;
}
.meishi .sub-nav li:nth-of-type(7){
    background: url(../images/danbai1.svg) 24px center no-repeat;
    background-size: auto 20px;
}
.meishi .sub-nav li:nth-of-type(7):hover,
.meishi .sub-nav li:nth-of-type(7).active {
    background: #537756 url(../images/danbai.svg) 24px center no-repeat;
    background-size: auto 20px;
}
.meishi .sub-nav li:nth-of-type(8){
    background: url(../images/tiaoliao1.svg) 28px center no-repeat;
    background-size: auto 18px;
}
.meishi .sub-nav li:nth-of-type(8):hover,
.meishi .sub-nav li:nth-of-type(8).active {
    background: #537756 url(../images/tiaoliao.svg) 28px center no-repeat;
    background-size: auto 18px;
} */
.meishi .sub-nav li:hover,
.meishi .sub-nav li.active {
  background-color: #FFC905;
  color: #664D20;
}

.meishi .sub-nav li .btn {
    font-size: 1.4rem;
}


article h1 {
    font-size: 3rem;
    color: #020202;
    text-align: center;
    margin: 2rem auto;
}

.hovereffect {
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}

.hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0,0,0,0.5);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.hovereffect img {
    margin: 0 auto;
    display: block;
    max-height: 100%;
    position: relative;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}

.hovereffect h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: relative;
    font-size: 1.7rem;
    background: rgba(0,0,0,0.6);
    -webkit-transform: translatey(-100px);
    -ms-transform: translatey(-100px);
    transform: translatey(-100px);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    padding: 1.2rem;
    margin-top: 6rem;
}

.hovereffect a.info {
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin: 50px 0 0;
    padding: 7px 14px;
}

.hovereffect a.info:hover {
    box-shadow: 0 0 5px #fff;
}

.tab-box .scroll-show-m li:hover .hovereffect img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.hovereffect:hover .overlay {
    opacity: 0;
    filter: alpha(opacity=0);
}

.hovereffect:hover h2,.hovereffect:hover a.info {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: translatey(0);
    -webkit-transform: translatey(0);
    transform: translatey(0);
}

.hovereffect:hover a.info {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.meishi article .devide-33 {
    font-size: 1.7rem;
    text-align: center;
    padding: 1rem 0;
}

.meishi article .devide-33 p {
    font-size: 1.7rem;
    line-height: 3.8rem;
}

.meishi article .devide-33 .big-img {
    width: 100%;
    overflow: hidden;
}

.meishi .sub-nav .wrapper {
    width: 1200px;
    margin: 0 auto;
}

/*news*/
.news .content {
    background: #f2f2f2;
    padding: 1rem 0;
}

.news article.devide-70 {
    width: 100%;
}

.news article, .news aside {
    background: #fff;
    padding: 1%;
}

.news article li {
    margin: 1rem;
    padding: 1rem;
    cursor: pointer;
    border: solid 1px #cccccc6b;
    box-shadow: 0 0 2px 0px #ccc;
}

.news article li .devide-70 {
    padding: 2rem 0;
    width: 69.5%;
}

.news article li .big-img {
    overflow: hidden;
}

.news article li img {
    transition: ease all 0.5s;
}

.news article li img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
}

.news aside .search {
    margin-bottom: 3rem;
}

.news article li h6 {
    text-align: left;
    margin: 0rem auto 0.5rem 2rem;
    line-height: 2.2rem;
}

.news article li h6 a {
    font-size: 2rem;
    color: #1b1b1b;
    text-decoration: none;
}

.news article li p {
    margin-left: 2rem;
    color: #666666;
}

.news article li .details {
    font-size: 1.4rem;
    color: #666666;
    margin: 1rem auto 0.5rem 2rem;
}

.news aside {
    border-left: 1rem solid #f2f2f2;
    padding: 1rem;
    min-height: 350px;
}

.news aside form {
    position: relative;
    text-align: center;
    margin-top: 2rem;
}

.news aside form .text {
    border: solid 1px #ccc;
    border-radius: 34px;
    font-size: 1.6rem;
    line-height: 2.6rem;
    width: 90%;
    padding-left: 10px;
}

.news aside form .button {
    position: absolute;
    right: 2.4rem;
    top: 3px;
    line-height: 2.6rem;
    background: url(/statics/images/search-ico.png) no-repeat;
    width: 2rem;
}

.news aside .category {
    padding: 1rem 0;
}

.news aside .category li {
    text-align: center;
}

.news aside .category li a {
    font-size: 2rem;
}

.news aside h5 {
    font-size: 2rem;
    color: #1b1b1b;
    border-left: 5px solid #666;
    padding-left: 5px;
    margin-bottom: 1rem;
}

.news aside .recommend li {
    padding: 5px 0;
}

.news aside .recommend li span {
    float: right;
}

/*show*/
.news-content .desp {
    text-align: center;
    font-size: 1.4rem;
}

.news-content .news-show p, .news-content .news-show div {
    font-size: 1.6rem;
    line-height: 3rem;
}

.news-content article {
    width: 960px;
    display: block;
    margin: 0 auto;
}

.news-content article img {
    max-width: 640px;
    margin: 1rem auto;
}

.news-content .f14 {
    margin: 1rem 0;
}

.news-content .recommend h5 {
    font-size: 2rem;
    color: #1b1b1b;
    border-left: 5px solid #666;
    padding-left: 5px;
    margin-bottom: 1rem;
}

/*contact*/
.contact article {
    padding-top: 4rem;
    padding-bottom: 8rem;
}

.contact .bd-map {
    margin-bottom: 4rem;
    position: relative;
}

.contact .bd-map .devide-70 {
    width: 100%;
}

.contact .bd-map .devide-30 {
    background: #fefdfdd1;
    padding: 1rem;
    height: 120px;
    width: 1000px;
    color: #fff;
}

.contact .bd-map .devide-30 img {
    margin: auto;
    display: block;
    margin-top: 1rem;
    width: 60%;
}

.contact .bd-map .devide-30 h2 {
    text-align: left;
    padding-left: 3rem;
    color: #595656;
}

.contact .bd-map .devide-30 p {
    line-height: 2.8rem;
    margin-top: 1rem;
    padding-left: 3rem;
    color: #595656;
    background: url(/statics/images/ico-tel.png) no-repeat left;
    background-size: inherit;
    background-position-y: 3px;
}

.contact #allmap {
    min-height: 420px;
}
.contact .left-box {
  margin-right: 2%;
  width: 53%;
}
.contact .contact-weixin {
  margin-right: 2rem;
  text-align: center;
}
.contact .contact-weixin img {
  border: 1px solid #CCCCCC;
}
.contact .contact-weixin p {
  background-color: #737373;
  color: #fff;
  font-size: 1.3rem;
}
.contact .address {
  padding-left: 3rem;
  background: url(../images/address-ico.svg) left .5rem no-repeat;
  background-size: 2rem auto;
  line-height: 2.8rem;
}
.contact form {
    margin: 0;
    background: none;
    width: 45%;
    height: 275px;
    background-size: contain;
    position: relative;
    padding-left: 0;
    padding-top: 5px;
}
.contact form table {
  width: 100%;
}
.contact form input.intxt {
    background: url(/statics/images/contact-dotbg.png) no-repeat;
    background-position: right;
}

.contact form .input01 {
    margin: 0;
    display: inline-block;
    width: 96%;
    font-size: 1.6rem;
    line-height: 3rem;
    padding-left: 10px;
    border: solid 1px #ccc;
}

.contact form .input02 {
    display: inline-block;
    width: 100%;
    font-size: 1.6rem;
    line-height: 3rem;
    padding-left: 10px;
    z-index: 100;
    border: solid 1px #ccc;
}

.contact form .input03 {
    width: 100%;
    font-size: 1.6rem;
    line-height: 3rem;
    padding-left: 10px;
    border: solid 1px #ccc;
    position: absolute;
    top: 6rem;
}

.contact form #message {
    width: 100%;
    height: 120px;
    font-size: 1.8rem;
    font-family: 'Alibaba-PuHuiTi';
    margin-left: 0;
    background: #fff;
    border: solid 1px #ccc;
    padding-left: 10px;
    position: absolute;
    top: 11.5rem;
    left: 0;
}

.contact form .coolbg {
    position: absolute;
    width: 42%;
    left: 0;
    bottom: -35px;
    background: #fb7f03;
    padding: 10px;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

.contact form .coolbg-2 {
    right: 0;
    left: auto;
    background: #fbdb03;
    color: #666;
}

form input::-webkit-input-placeholder {
    color: #666;
}

form input::-moz-input-placeholder {
    color: #666;
}

form input::-ms-input-placeholder {
    color: #666;
}

/*kefu*/
.floating_ck {
    position: fixed;
    right: 0px;
    top: 15%;
    z-index: 100;
}

.floating_ck dl dd {
    position: relative;
    width: 55px;
    height: 60px;
    background-color: #646577;
    border-bottom: solid 1px #9898a6;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center 20%;
    cursor: pointer;
}

.floating_ck dl dd:hover {
    background-color: #34353e;
}

.floating_ck dl dd:hover .floating_left {
    display: block;
}

.consult,.words {
    background-image: url(/statics/images/icon0701/zxicon.png);
    background-size: 50%;
}

.alibaba {
    background-image: url(/statics/images/icon0701/alibaba.png);
    background-size: 50%;
}

.taobao {
    background-image: url(/statics/images/icon0701/taobao.png);
    background-size: 50%;
}

.quote {
    background-image: url(/statics/images/icon0701/kficon.png);
    background-size: 50%;
}

.qrcord {
    background-image: url(/statics/images/icon0701/erweima.png);
    background-size: 50%;
}
.doucord {
    background-image: url(/statics/images/icon0701/dou.png);
    background-size: 50%;
}

.return {
    background-image: url(/statics/images/icon0701/fanhui.png);
    background-size: 50%;
}

.floating_ck dd span {
    color: #fff;
    display: block;
    padding-top: 39px;
    font-size: 1.2rem;
    line-height: 2rem;
}

.floating_left {
    position: absolute;
    left: -160px;
    top: 0px;
    width: 160px;
    height: 60px;
    background-color: #34353e;
    ; display: none;
}

.floating_left a {
    color: #fff;
    line-height: 60px;
}

.floating_ewm {
    height: 260px;
    top: -180px;
}

.floating_ewm i {
    background-image: url(/statics/images/erweima.jpg);
    background-size: contain;
    display: block;
    width: 145px;
    height: 145px;
    margin: auto;
    margin-top: 7px;
}

.doucord i {
    background-image: url(/statics/images/dou.jpg);
    background-size: contain;
    display: block;
    width: 145px;
    height: 145px;
    margin: auto;
    margin-top: 7px;
}

.floating_ewm p {
    color: #fff;
    margin-top: 5px;
}

.floating_ewm .qrcord_p01 {
    font-size: 12px;
    line-height: 20px;
}

.floating_ewm .qrcord_p02 {
    font-size: 18px;
}

/* oem */
.oem .devide-25, .oem .devide-33, .oem .devide-50 {
        text-align: center;
}
.contact .bd-map .devide-50{
    text-align: left;
}
.contact .bd-map .devide-50 p{
    text-align: left;
    margin: 0;
}
.oem .sec02 {
    background: #f2f2f2;
    padding: 5rem 0;
}

.oem .sec03 {
    background: unset;
}

.oem .sec04 {
    padding: 5rem 0;
}

.oem h2 {
    margin-bottom: 2rem;
}

.oem p {
    text-align: center;
    width: 60%;
    display: block;
    margin: 1rem auto;
    margin-bottom: 2rem;
}

.oem .sec04 .partner {
    width: 1000px;
    display: block;
    margin: 0 auto;
}

.oem .sec04 li {
    margin: 1rem 0;
    text-align: center;
}

.oem .devide-25 img {
    transition: ease all 0.5s;
}

.oem .devide-25:hover img {
    transform: scale(1.05);
}
.contact form .input04 {
    width: 100%;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 3rem;
    padding-left: 10px;
    border: solid 1px #ccc;
    position: absolute;
    top: -2rem;
}
.oem article form .input03 {
    top: 7rem;
}

/* chain */
.chain .devide-25, .chain .devide-33, .chain .devide-50 {
        text-align: center;
    }
.chain .devide-33 {
    text-align: center;
    margin: 1rem 0;
}

.chain h6 {
    font-size: 1.6rem;
    margin: 1rem auto;
}

.chain .devide-33 img {
    width: 95%;
    transition: ease all 0.5s;
}

.chain .devide-33:hover img {
    transform: scale(1.05);
}

.chain .devide-33 .big-pic {
    overflow: hidden;
}

.chain .devide-25 img {
    transition: ease all 0.5s;
}

.chain .devide-25:hover img {
    transform: scale(1.05);
}

.pages a{
    display: inline-block;
    min-width: 2rem;
    height: 3rem;
    padding: 0 10px;
    text-align: center;
    color: #666;
    border: solid 1px #ccc;
}

@media (max-width: 1400px) {
    h2 {
        font-size: 3.3rem;
    }

    h6 {
        font-size: 2rem;
    }

    .sec03 .enterprise .service-shadow-1 {
        padding-top: 205px;
    }

    .sec03 .enterprise .service-shadow-1 h6, .sec03 .enterprise .service-shadow-2 h6, .sec03 .enterprise .service-shadow-3 h6 {
        font-weight: 400;
    }

    .sec03 .enterprise .service-shadow-2 {
        padding-top: 205px;
    }

    .sec03 .enterprise .service-shadow-3 {
        padding-top: 205px;
    }
}

@media (max-width: 800px) {
    .wrap,
    .sec01 .wrap {
        width: 100%;
    }

    .pc-show {
        display: none;
    }

    .phone-show {
        display: block;
    }

    article h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    article p {
        font-size: 1.6rem;
    }

    article .honor h3, .brand h1 {
        font-size: 2.2rem;
    }

    h6 {
        font-size: 2rem;
    }
    main {
        padding-top: 60px;
    }
    header {
        height: 60px;
    }
    header .tel-btn {
        position: absolute;
        padding-top: 1.5rem;
        padding-left: 0.5rem;
    }
    header .tel-btn a{
        display: block;
        width: 3.5rem;
        height: 3.5rem;
    }
    header .logo {
        float: unset;
        width: 70%;
        text-align: center;
        line-height: 60px;
        margin: 0 auto;
    }
    header .logo img {
        margin-left: 0;
        height: 30px;
    }
    header .phone_nav {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1rem;
        width: 3.5rem;
        height: 3.5rem;
        background: url(../images/menu.png) center no-repeat;
        background-size: 100% 100%;
        text-align: center;
        z-index: 100;
    }

    header .phone_nav p {
        display: none;
        position: absolute;
        top: calc(60px - 1.5rem);
        right: 0;
        padding: 1rem 0rem;
        width: 12rem;
        padding-right: 0;
        background: #000;
    }

    header .phone_nav p a {
        display: block;
        font-size: 1.6rem;
        line-height: 3.3rem;
        color: #fff;
    }

    header .phone_nav p a.cur {
        background: #fff;
        color: #000;
    }
    .pages {
        text-align: center;
    }
    .pages a {
        padding: 0 8px;
    }
    .sec01 h2, .sec05 h2 {
        margin-top: 2rem;
    }

    .sec01 .special ul li {
        text-align: center;
        width: 48%;
        height: 160px;
        padding: 5px;
        overflow: hidden;
    }

    .sec01 .special ul li .big-pic {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .sec01 .special ul li h6 {
        margin: 0;
        margin-top: 1rem;
    }

    .sec01 .special ul li h6 a {
        font-size: 1.6rem;
    }

    .sec02 {
        padding-top: 1.5rem;
        height: 305px;
        overflow: hidden;
    }
    .sec02 .strategy li .service-shadow h6 {
        font-size: 1.6rem;
    }
    .sec02 .strategy .slide .img4, .sec02 .strategy .slide .img2 {
        height: 172px;
    }
    .sec02 .strategy li {
        height: 200px;
    }
    .sec02 .strategy li .service-shadow .description {
        display: none;
    }

    .sec03 {
        display: block;
    }
    .control-box{
        width: 100%;
    }
    .sec03 .enterprise .bigbox li {
        padding: 0 1%;
        float: left;
        width: 33%;
    }
    .sec03 .enterprise .service-shadow-1, .sec03 .enterprise .service-shadow-2, .sec03 .enterprise .service-shadow-3 {
        padding-top: 105px;
        background-size: 150%;
        background-position-y: inherit;
    }
    .sec03 .enterprise .menu-name{
        display: none;
    }
    #switcher {
        height: 150px;
        left: 0px;
        overflow: hidden;
    }

    .sec05 .news li {
        height: 90px;
        padding: 1%;
    }

    .sec05 .news li .devide-30 img {
        width: 100%;
        height: auto;
    }

    .sec05 .news .devide-70 a {
        color: #ffa505;
        font-size: 1.6rem;
        font-weight: bolder;
    }

    .sec05 .news .devide-70 p {
        font-size: 1.4rem;
    }

    .sec05 .news .devide-70 .description {
        display: none;
    }

    /*brand*/
    .sub-nav button {
        margin-top: 1.5rem;
        width: auto;
    }

    .btn {
        padding: 6px 0;
    }

    .brand .content {
        padding: 0 1%;
    }

    .brand article .content .devide-20 {
        width: 33%;
    }

    article .honor section {
        padding: 1rem 0;
    }

    .brand .honor-list .devide-25 {
        width: 50%;
    }

    .brand .honor-list img {
        width: 95%;
        display: block;
        margin: auto;
        height: 10rem;
        border: solid 1px #ccc;
    }

    /*meishi*/
    .meishi .sub-nav {
        padding: 0;
        height: auto;
    }

    .meishi .sub-nav li {
        width: 31.3333%;
        float: left;
        text-align: center;
        margin: 1%;
        font-size: 1.6rem;
    }

    .meishi article .devide-33 {
        font-size: 1.7rem;
        text-align: center;
        margin: 0 1% 1%;
        padding: 1rem 2%;
        width: 48%;
        overflow: hidden;
    }

    .hovereffect:hover .overlay {
        display: none;
    }

    .meishi .sub-nav .wrapper {
        position: relative;
        height: 5rem;
        width: 100%;
        overflow: hidden;
        margin: 0 auto;
    }

    .meishi .sub-nav .wrapper {
        position: relative;
        height: 5rem;
        width: 81%;
        overflow: hidden;
        margin: 0 auto;
    }

    .meishi .sub-nav .scroller {
        position: absolute;
        height: 5rem;
        text-align: left;
    }

    .meishi article .tab .tips {
        text-align: center;
        font-size: 1.4rem;
        color: #1dac3a;
    }

    .meishi-wrap {
        padding-top: 2rem;
    }
    /*.scroll-show-m {
        width: 100%;
        white-space: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-backface-visibility: hidden;
        -webkit-perspective: 1000;
        -webkit-overflow-scrolling: touch;
        text-align: justify;
        padding: 0px 5px;
        box-sizing: border-box;
    }*/

    .scroll-show-m::-webkit-scrollbar {
        display: none;
    }

    .meishi article .hovereffect img {
        width: 100%;
        height: 100%;
    }
    .meishi .tab-box {
        padding-bottom: 2rem;
    }
    .meishi article .devide-33 p {
        font-size: 1.4rem;
    }

    /*news*/
    .news article.devide-70 {
        width: 100%;
    }
    .news-content article {
        width: 100%;
        display: block;
        margin: 0 auto;
        padding: 0 1%;
    }
    .news-content article img {
        max-width: 100% !important;
        height: auto !important;
    }
    .news article li .devide-30 {
        padding: 0;
        width: 39.5%;
    }

    .news article li .devide-70 {
        padding: 0;
        width: 59.5%;
    }

    .news article li .big-img {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .news article.devide-70 .devide-40 img {
        width: 100%;
    }

    .news article li h6 {
        margin: 0rem auto 0.5rem 1rem;
        height: 5rem;
        overflow: hidden;
    }

    .news article li h6 a {
        font-size: 1.6rem;
        line-height: 2.5rem;
        color: #1b1b1b;
        text-decoration: none;
    }

    .news article li p {
        display: none;
    }

    .news article li .details {
        display: block;
        margin: 0rem auto 0.5rem 1rem;
    }

    .news article li .details span {
        display: none;
    }

    .news aside {
        display: none;
    }

    /*contact*/
    .contact article .wrap {
        padding: 1rem;
    }

    .contact .bd-map {
        display: none;
    }

    .contact .devide-50 {
        width: 100%;
        padding: 1%;
    }

    .oem form .input04 {
        width: 99.2%;
    }
    .contact form .coolbg {
      width: 50%;
    }

    /* oem */
    .oem .sec04 {
        padding: 0;
    }
    
    .oem p {
        width: 90%;
    }
    .oem .sec02 {
        padding: 2rem 0;
        height: auto;
    }
    .oem .sec04 .partner {
        width: 100%;
    }
    .oem .sec04 li.devide-25 {
        width: 33%;
    }
    /* chain */
    .chain .devide li.devide-33{
        width: 50%;
    }
    .chain .sec03 {
        display: block;
    }
    .contact article {
        padding-top: 2rem;
    }
    .contact .left-box {
        margin-right: 0;
        margin-bottom: 2rem;
        width: 100%;
    }
    .contact .contact-weixin {
        margin-right: 1rem;
        white-space: nowrap;
    }
    .contact .contact-weixin p {
        padding: 0 5px;
    }
    .contact .address {
        padding-left: 0;
        background: none;
    }
    .contact form {
        width: 100%;
    }
    /*footer*/
    footer {
        height: auto;
        padding: 1.5rem 15px 3rem;
    }
    footer .top-left {
      margin: 0;
      width: 100%;
    }
    footer .top-left .footer-logo {
        margin:  1.5rem 0;
      display: block;
      width: 50%;
    }
    footer .top-left .contact {
        font-size: 1.4rem;
        line-height: 2.6rem;
    }
    footer .footer-nav {
      display: none;
    }
    footer .top-right {
      display: none;
    }
    footer hr {
        display: none;
    }

    footer .tel {
        font-size: 1.6rem;
    }

    footer .devide .devide-66 {
        display: none;
    }

    footer .devide .devide-33 {
        width: 100%;
    }

    footer .links, footer .flink {
        display: none;
    }

    /*kefu*/
    .floating_ck {
        display: none;
    }
}
@media (max-width: 360px) {
    .sec05 .news .devide-70 a {
        font-size: 1.4rem;
    }
    .meishi .sub-nav li {
        font-size: 1.4rem;
    }
}
