@font-face{
    font-family: 'DIN_Medium';
    src:url('/static/index/css/DIN_Medium.ttf');
}
@font-face {
    font-family: "pingfang";
    src: url('/static/index/css/PingFang_Medium.ttf');
}
@font-face {
    font-family: "pingfang-bold";
    src: url('/static/index/css/pingfangbold.ttf');
}
.ky {
    visibility:hidden;
}
.nicescroll-cursors {
   opacity:0;
}
.aling-center1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.aling-center2 {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.aling-center3 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.text-hidden1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cover-style {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}
.cover-style .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
* {
  margin: 0;
  padding: 0;
  outline: none;
}
html,
body {
  color: #333;
  font-family: 'pingfang';
  font-size: 20px !important;
  /* 根元素默认字体大小为20px*/
  min-height: 100%;
  -webkit-touch-callout: none;
  /* 禁止链接长按的时候弹出选项 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /*禁止链接高亮显示 */
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: bottom;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
}
.afterClear:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
.clear {
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
:focus {
  outline: none;
}
::-moz-focus-inner {
  border-color: transparent;
}
input:focus {
  outline: none;
}
input,
button,
select,
textarea {
  outline: none;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
input[type=button],
input[type=submit],
input[type=file],
input[type=reset],
button {
  cursor: pointer;
  -webkit-appearance: none;
}
.layout {
  height: 100%;
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.layout:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
.item-wrap:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
@media screen and (min-width: 375px) {
  html,
  body {
    font-size: 20px !important;
  }
}
/* Iphone6/7/8 Plus */
@media screen and (min-width: 414px) {
  html,
  body {
    /* 414*20/375=22.08 */
    font-size: 22.08px !important;
  }
}
@media screen and (min-width: 480px) {
  html,
  body {
    /* 480*20/375=25.6 */
    font-size: 25.6px !important;
  }
}
/* ipad */
@media screen and (min-width: 768px) {
  html,
  body {
    /* 768*20/375=40.96 */
    font-size: 40.96px !important;
  }
}
@media screen and (min-width: 1024px) {
  html,
  body {
    font-size: 54.613px !important;
  }
}
.gotop {
  display: none;
  width: 68px;
  height: 110px;
  border-radius: 35px;
  border: 1px solid #e5e1e1;
  background: #fff url('../images/gotop.png') no-repeat center center;
  position: fixed;
  right: 3%;
  bottom: 310px;
  z-index: 999;
  cursor: pointer;
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
}
header.move-header {
  display: none;
  box-sizing: border-box;
  height: 3rem;
}
header.move-header .logo {
  display: inline-block;
  height: 1.4rem;
}
header.move-header .logo img {
  height: 100%;
}
header.move-header .bar {
  width: 1.2rem;
  height: 1rem;
  position: absolute;
  top: 0.8rem;
  right: 4%;
}
header.move-header .bar span {
  width: 100%;
  display: block;
  height: 3px;
  background-color: #cd0111;
  position: absolute;
  left: 0;
  border-radius: 2px;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
header.move-header .bar span:nth-child(1) {
  top: 0;
}
header.move-header .bar span:nth-child(2) {
  top: 50%;
  margin-top: -1.5px;
}
header.move-header .bar span:nth-child(3) {
  bottom: 0;
}
header.move-header .bar.on span:nth-child(1) {
  transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-top: 0.4rem;
}
header.move-header .bar.on span:nth-child(2) {
  opacity: 0;
}
header.move-header .bar.on span:nth-child(3) {
  margin-bottom: 0.45rem;
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
header.move-header .top {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  padding: 0.8rem 4%;
  position: relative;
  z-index: 2;
}
header.move-header nav {
  display: none;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 4% 0;
  height: 100vh;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  overflow-y: auto;
}
header.move-header .item {
  overflow: hidden;
  border-bottom: 1px solid #ebebeb;
  transition: height 0.3s 0s ease;
  -o-transition: height 0.3s 0s ease;
  -ms-transition: height 0.3s 0s ease;
  -moz-transition: height 0.3s 0s ease;
  -webkit-transition: height 0.3s 0s ease;
  height: 3rem;
}
header.move-header .item a {
  display: block;
}
header.move-header .item .title {
  padding-left: 0.2rem;
  font-size: 0.9rem;
  line-height: 3rem;
  border-bottom: 1px solid #fff;
  background: url('../images/right-1.png') no-repeat 98% center;
  background-size: 0.4rem auto;
}
header.move-header .item li {
  font-size: 0.7rem;
  line-height: 2.2rem;
  background-color: #fcfcfc;
  padding-left: 1rem;
}
header.move-header .item.open .title {
  color: #cd0111;
  border-color: #cd0111;
}
header.move-header .item.open .title a {
  color: #cd0111;
}
header.common-header {
  position: relative;
}
header.common-header .logo {
  float: left;
  width: 135px;
  margin-top: 33px;
}
header.common-header .logo img {
  width: 100%;
}
header.common-header nav {
  float: right;
  line-height: 130px;
  font-size: 18px;
}
header.common-header nav:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
header.common-header nav a {
  display: block;
}
header.common-header nav .item {
  float: left;
  margin-left: 40px;
  position: relative;
}
header.common-header nav .item:first-child {
  margin-left: 0;
}
header.common-header nav .search {
  height: 24px;
  border-radius: 18px;
  border: 1px solid #9f9f9f;
  padding: 6px 14px;
  line-height: 0;
  width: 150px;
  margin-top: 46px;
}
header.common-header nav .search input {
  padding: 4px 0;
  border: 0;
  width: 120px;
  font-size: 14px;
}
header.common-header nav .search button {
  border: 0;
  float: right;
  height: 24px;
  width: 24px;
  background: url('../images/search1.png') no-repeat center center;
}
header.common-header .subnav {
  display: none;
  opacity: 0;
  position: absolute;
  top: 120%;
  padding-bottom: 20px;
  left: -52px;
  background-color: #fff;
  font-size: 16px;
  width: 250px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  z-index: 200;
}
header.common-header .subnav li {
  line-height: 58px;
    background-position: 110% center;
    background-image: none;
    transition: all 0.3s 0s ease;
    -o-transition: all 0.3s 0s ease;
    -ms-transition: all 0.3s 0s ease;
    -moz-transition: all 0.3s 0s ease;
    -webkit-transition: all 0.3s 0s ease;
}
header.common-header .subnav li:hover {
  background: #f5f5f5 url('../images/right-3.png') no-repeat 88% center;
}
header.common-header .subnav a {
  display: block;
  padding-left: 52px;
}
header.in {
  animation: fadeInDown 0.48s ease-out 0s 1 normal both;
  -webkit-animation: fadeInDown 0.48s ease-out 0s 1 normal both;
}
footer.pc-footer {
  margin-top: 90px;
  background-color: #f5f5f5;
}
footer.pc-footer .top {
  padding: 30px 0 28px;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 34px;
}
footer.pc-footer .left {
  float: left;
}
footer.pc-footer .left span {
    letter-spacing: -2px;
  font-size: 32px;
  margin-left: 12px;
  color: #c39c61;
}
footer.pc-footer .left p:first-child {
  margin: 10px 0;
}
footer.pc-footer .right {
  float: right;
}
footer.pc-footer p {
  font-size: 16px;
  color: #666;
}
footer.pc-footer a {
  color: #666;
}
footer.pc-footer .logo {
  display: block;
  width: 310px;
  line-height: 0;
}
footer.pc-footer .logo img {
  width: 100%;
}
footer.pc-footer .qr {
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 64px;
}
footer.pc-footer .qr:first-child {
  margin-left: 0;
}
footer.pc-footer .qr .icon {
  width: 56px;
  height: 56px;
  cursor: pointer;
  background: #eee no-repeat center center;
  background-size: 30px auto;
  margin: 0 auto 10px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
footer.pc-footer .qr .icon span {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
  background: #c39c61 no-repeat center center;
  border-radius: 50%;
  background-size: 30px auto;
}
footer.pc-footer .qr .icon:hover {
  background-image: none;
}
footer.pc-footer .qr .icon:hover span {
  transform: scale(1);
}
footer.pc-footer .qr .icon:hover ~ .qr-img {
  filter: alpha(opacity=1);
  opacity: 1;
  top: -130px;
}
footer.pc-footer .qr .qr-img {
  filter: alpha(opacity=0);
  opacity: 0;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
  position: absolute;
  top: -160px;
  left: -200px;
  right: -200px;
  margin: 0 auto;
  width: 130px;
  height: 136px;
  background: url('../images/qr-bg.png') no-repeat center center;
  background-size: auto 100%;
}
footer.pc-footer .qr .qr-img img {
  width: 84px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
footer.pc-footer .qr.wx .icon {
  background-image: url('../images/icon-wx1.png');
}
footer.pc-footer .qr.wx .icon span {
  background-image: url('../images/icon-wx2.png');
}
footer.pc-footer .qr.tm .icon {
  background-image: url('../images/icon-tm1.png');
}
footer.pc-footer .qr.tm .icon span {
  background-image: url('../images/icon-tm2.png');
}
footer.pc-footer .qr.wb .icon {
  background-image: url('../images/icon-wb1.png');
}
footer.pc-footer .qr.wb .icon span {
  background-image: url('../images/icon-wb2.png');
}
footer.pc-footer .copy {
  margin-top: 60px;
  font-size: 14px;
  color: #fff;
  background-color: #cd0111;
  line-height: 64px;
}
footer.pc-footer .copy a {
  color: #fff;
}
footer.move-footer {
  display: none;
  background-color: #f5f5f5;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1.6rem;
  font-size: 0.7rem;
}
footer.move-footer .qr img {
  width: 4.5rem;
}
footer.move-footer .qr p {
  margin: 0.4rem 0 1rem;
}
footer.move-footer .tel {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
footer.move-footer .copy {
  color: #fff;
  background-color: #cd0111;
  margin-top: 2rem;
  padding: 0.5rem;
  line-height: 1.2rem;
  font-size: 0.6rem;
}
footer.move-footer .copy a {
  color: #fff;
}
.common-top-wrap {
  overflow: hidden;
  height: 120px;
}
.common-top {
  height: 120px;
  background: url('../images/top-bg.png?v=2') no-repeat top center;
  line-height: 120px;
  font-size: 34px;
  color: #fff;
}
.common-top img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
}
.page-title {
  padding: 90px 0 90px;
}
.page-title p {
  font-size: 62px;
  color: #f1eff1;
  line-height: 64px;
    letter-spacing: -2px;
}
.page-title h3 {
  font-size: 26px;
}
.video-btn-group {
  padding: 14px;
  background-color: #f5f5f5;
  height: 38px;
  border-radius: 35px;
  position: absolute;
  top: 0;
  right: 0;
}
.video-btn-group:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
.video-btn-group .btn {
  float: left;
  margin-right: 6px;
  height: 38px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  line-height: 38px;
  width: 110px;
  border-radius: 19px;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.video-btn-group .btn a {
  display: block;
}
.video-btn-group .btn.on,
.video-btn-group .btn:hover {
  background-color: #cd0111;
  color: #fff;
}
.video-btn-group .btn.on a,
.video-btn-group .btn:hover a {
  color: #fff;
}
.videoList {
  margin-bottom: 80px;
}
.videoList:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
.videoList .item {
  position: relative;
  height: 378px;
  background-color: #f5f5f5;
  margin-top: 108px;
}
.videoList .item:first-child {
  margin-top: 0;
}
.videoList .item:first-child .line {
  display: none;
}
.videoList .line {
  height: 1px;
  width: 100%;
  top: -54px;
  position: absolute;
  left: 0;
  background-color: #eeeeee;
}
.videoList .img {
  overflow: hidden;
  position: relative;
  width: 672px;
  height: 100%;
  display: inline-block;
}
.videoList .img a {
  display: block;
  height: 100%;
  z-index: 2;
  position: relative;
}
.videoList .img img {
  height: 100%;
  position: absolute;
  top: 0;
  left: -200px;
  right: -200px;
  margin: auto;
}
.videoList .img:hover .cover .mask {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
.videoList .img:hover .cover img {
  top: 0;
}
.videoList .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.videoList .cover .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  filter: alpha(opacity=70);
  opacity: 0;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.videoList .cover img {
  height: 74px;
  position: absolute;
  top: 150%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: top 0.5s 0s ease;
  -o-transition: top 0.5s 0s ease;
  -ms-transition: top 0.5s 0s ease;
  -moz-transition: top 0.5s 0s ease;
  -webkit-transition: top 0.5s 0s ease;
}
.videoList .text {
  float: right;
  width: 456px;
  padding-top: 64px;
}
.videoList .column-name {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 20px;
}
.videoList .title {
  font-size: 24px;
  line-height: 32px;
  width: 380px;
  max-height: 64px;
  font-weight: bold;
  color: #c39c61;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 16px;
}
.videoList .time {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 16px;
  color: #666;
}
.videoList .time span {
  margin-left: 16px;
}
.videoList .source {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 46px;
  color: #666;
}
.videoList .source span {
  margin-left: 12px;
}
.videoList .more {
  background-color: #cd0111;
  overflow: hidden;
  position: relative;
  display: inline-block;
  border-radius: 24px;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
}
.videoList .more a {
  color: #fff;
  display: block;
  height: 100%;
  padding: 0 34px 0 60px;
  transition: padding 0.3s 0s ease;
  -o-transition: padding 0.3s 0s ease;
  -ms-transition: padding 0.3s 0s ease;
  -moz-transition: padding 0.3s 0s ease;
  -webkit-transition: padding 0.3s 0s ease;
}
.videoList .more img {
  height: 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto;
  transition: transform 0.5s 0s ease;
  -o-transition: -o-transform 0.5s 0s ease;
  -ms-transition: -ms-transform 0.5s 0s ease;
  -moz-transition: -moz-transform 0.5s 0s ease;
  -webkit-transition: -webkit-transform 0.5s 0s ease;
}
.videoList .more:hover a {
  padding: 0 44px 0 70px;
}
.videoList .more:hover img {
  transform: rotate(116deg);
}
.pc-pagination {
  font-size: 0;
  text-align: center;
  margin: 40px 0;
}
.pc-pagination a,
.pc-pagination span {
  font-size: 14px;
  height: 46px;
  width: 46px;
  display: inline-block;
  margin: 0 5px;
  border-radius: 4px;
  line-height: 46px;
  vertical-align: middle;
}
.pc-pagination a {
  background-color: #f5f5f5;
}
.pc-pagination a:hover,
.pc-pagination span {
  background-color: #cd0111;
  color: #fff;
}
.pc-pagination .prev,
.pc-pagination .next {
  background-position: center center;
  background-repeat: no-repeat;
}
.pc-pagination .prev {
  background-image: url('../images/left-1.png');
}
.pc-pagination .prev:hover {
  background-image: url('../images/left-2.png');
}
.pc-pagination .next {
  background-image: url('../images/right-1.png');
}
.pc-pagination .next:hover {
  background-image: url('../images/right-2.png');
}
.move-pagination {
  display: none;
  width: 76%;
  margin: 2rem auto;
  font-size: 0.7rem;
  border: 1px solid #cd0111;
  text-align: center;
  height: 1.6rem;
  line-height: 1.6rem;
  color: #a6a6a6;
}
.move-pagination a {
  display: inline-block;
  height: 100%;
  text-align: center;
  background-color: #cd0111;
  color: #fff;
  width: 3.4rem;
}
.move-pagination a:active {
  background-color: #fff;
  color: #cd0111;
}
.move-pagination .prev {
  float: left;
  border-right: 1px solid #cd0111;
}
.move-pagination .next {
  float: right;
  border-left: 1px solid #cd0111;
}
.crumb {
  position: relative;
  height: 78px;
  line-height: 78px;
  background-color: #fafafa;
}
.crumb .part {
  background-color: #e0e0df;
  width: 360px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.crumb .left {
  font-size: 14px;
  float: left;
  padding-right: 120px;
  background: #e0e0df url('../images/right-1.png') no-repeat 90% center;
  background-size: 6px auto;
}
.crumb .left a:hover {
  color: #cd0111;
}
.crumb .right {
  float: right;
}
.crumb .item {
  float: left;
  margin-left: 100px;
  position: relative;
  font-size: 16px;
}
.crumb .item:first-child {
  margin-left: 0;
}
.crumb .item a {
  display: block;
  color: #666;
}
.crumb .item span {
  height: 3px;
  display: block;
  position: absolute;
  background-color: #cd0111;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 0;
  transition: width 0.3s 0s ease;
  -o-transition: width 0.3s 0s ease;
  -ms-transition: width 0.3s 0s ease;
  -moz-transition: width 0.3s 0s ease;
  -webkit-transition: width 0.3s 0s ease;
}
.crumb .item.on span,
.crumb .item:hover span,
.crumb .item:active span {
  width: 100%;
}
.crumb .item.on a,
.crumb .item:hover a,
.crumb .item:active a {
  color: #333;
}
.talentConcept .item {
  float: left;
  background-color: #f5f5f5;
  padding: 0 36px;
}
.talentConcept .item .title {
  font-size: 26px;
  margin-bottom: 36px;
}
.talentConcept .item p {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 40px;
  text-align: justify;
}
.talentConcept .row {
  margin-bottom: 60px;
}
.talentConcept .row .item:first-child {
  margin-left: 0;
}
.talentConcept .row:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
.talentConcept .row1 .item {
  width: 500px;
  height: 570px;
  margin-left: 56px;
  padding-top: 64px;
}
.talentConcept .row2 .item {
  background-position: 290px 30px;
  background-repeat: no-repeat;
  padding-top: 50px;
  width: 310px;
  margin-left: 27px;
  height: 170px;
}
.talentConcept .row2 .item:hover,
.talentConcept .row2 .item:active {
  background-color: #cd0111;
  color: #fff;
}
.talentConcept .row2 .col1 {
  background-image: url('../images/icon05-1.png');
}
.talentConcept .row2 .col1:hover,
.talentConcept .row2 .col1:active {
  background-image: url('../images/icon05-2.png');
}
.talentConcept .row2 .col2 {
  background-image: url('../images/icon06-1.png');
}
.talentConcept .row2 .col2:hover,
.talentConcept .row2 .col2:active {
  background-image: url('../images/icon06-2.png');
}
.talentConcept .row2 .col3 {
  background-image: url('../images/icon07-1.png');
}
.talentConcept .row2 .col3:hover,
.talentConcept .row2 .col3:active {
  background-image: url('../images/icon07-2.png');
}
.talentConcept .telent-banner {
  width: 100%;
}
.product-tag {
  padding: 100px 0 80px;
}
.product-tag .item {
  text-align: center;
  background: url('../images/c1-bg1.png') no-repeat center center;
  background-size: 100% auto;
  width: 230px;
  height: 230px;
  float: left;
  margin-left: 93.333px;
  position: relative;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.product-tag .item a {
  display: block;
  height: 100%;
  overflow: hidden;
}
.product-tag .item:first-child {
  margin-left: 0;
}
.product-tag .item .icon {
  position: absolute;
  top: 45px;
  width: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.product-tag .item strong {
  font-size: 20px;
  display: block;
  line-height: 42px;
  margin-top: 120px;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.product-tag .item span {
  display: block;
  font-size: 16px;
  color: #e2e2e2;
}
.product-tag .item .symbol {
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  margin: 0 auto;
  height: 116px;
  filter: alpha(opacity=0);
  opacity: 0;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.product-tag .item.on,
.product-tag .item:hover,
.product-tag .item:active {
  background-image: url('../images/c1-bg3.png?v=2');
}
.product-tag .item.on strong,
.product-tag .item:hover strong,
.product-tag .item:active strong {
  color: #fff;
  font-size: 24px;
  margin-top: 18%;
}
.product-tag .item.on .icon,
.product-tag .item:hover .icon,
.product-tag .item:active .icon {
  filter: alpha(opacity=0);
  opacity: 0;
}
.product-tag .item.on span,
.product-tag .item:hover span,
.product-tag .item:active span {
  display: none;
}
.product-tag .item.on .symbol,
.product-tag .item:hover .symbol,
.product-tag .item:active .symbol {
  filter: alpha(opacity=100);
  opacity: 1;
}
.product-scroll {
  overflow: hidden;
}
.product-scroll img {
  width: 100%;
}
.product-pagination {
  margin: 10px 0 70px;
  line-height: 0;
  text-align: center;
}
.product-pagination span {
  display: inline-block;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background-color: #ccc;
  margin: 0 10px;
  cursor: pointer;
}
.product-pagination .swiper-active-switch {
  background-color: #cd0111;
}
.product-list {
  margin-bottom: 60px;
}
.product-list .item {
  width: 25%;
  float: left;
  transition: box-shadow 0.3s 0s ease;
  -o-transition: box-shadow 0.3s 0s ease;
  -ms-transition: box-shadow 0.3s 0s ease;
  -moz-transition: box-shadow 0.3s 0s ease;
  -webkit-transition: box-shadow 0.3s 0s ease;
  text-align: center;
  cursor: pointer;
}
.product-list .item > div {
  padding: 34px 30px 0;
  height: 370px;
  border-top: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
}
.product-list .item > div.left {
  border-left: 1px solid #f3f3f3;
}
.product-list .item > div.bottom {
  border-bottom: 1px solid #f3f3f3;
}
.product-list .item .img {
  width: 240px;
  height: 240px;
  position: relative;
  margin: 0 auto 34px;
  overflow: hidden;
}
.product-list .item .img img {
  height: 100%;
  position: absolute;
  left: -200px;
  right: -200px;
  top: 0;
  margin: 0 auto;
}
.product-list .item .title,
.product-list .item p {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-list .item p {
  color: #999;
  margin-top: 16px;
}
.product-list .item:hover,
.product-list .item:active {
  box-shadow: 0 0 10px 10px #eee;
}
.product-list .item:hover > div,
.product-list .item:active > div {
  border-color: #fff;
}
.product-cover {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}
.product-cover .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.product-cover .product-cover-swiper {
  width: 1020px;
  height: 570px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.product-cover .swiper-slide {
  width: 100%;
  height: 570px;
  border-radius: 285px;
  background-color: #cd0111;
}
.product-cover .swiper-slide .img {
  margin: 50px 0 0 50px;
  width: 470px;
  height: 470px;
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.product-cover .swiper-slide .img img {
  height: 80%;
  position: absolute;
  left: -200px;
  right: -200px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.product-cover .swiper-slide .text {
  width: 320px;
  color: #fff;
  float: right;
  margin: 130px 115px 0 0;
}
.product-cover .swiper-slide .text .title {
  line-height: 54px;
  font-size: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #fff;
  margin-bottom: 24px;
}
.product-cover .swiper-slide .text p {
  line-height: 40px;
  font-size: 18px;
}
.product-cover .swiper-slide .text p span {
  display: inline-block;
  width: 80px;
  color: #ddd;
}
.product-cover .swiper-slide .text a {
  display: inline-block;
  margin-top: 60px;
  height: 52px;
  color: #fff;
  border-radius: 27px;
  border: 1px solid #fff;
  font-size: 16px;
  padding: 0 42px 0 66px;
  line-height: 52px;
  background: #cd0111 url('../images/cart.png') no-repeat 30px center;
}
.product-cover .product-cover-prev,
.product-cover .product-cover-next {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
  cursor: pointer;
}
.product-cover .product-cover-prev {
  background-image: url('../images/left2-1.png');
  left: 15%;
}
.product-cover .product-cover-prev:hover {
  background-image: url('../images/left2-2.png');
}
.product-cover .product-cover-next {
  background-image: url('../images/right2-1.png');
  right: 15%;
}
.product-cover .product-cover-next:hover {
  background-image: url('../images/right2-2.png');
}
.content-map-wrap {
  position: relative;
  overflow: hidden;
  height: 27.7777vw;
}
#contact-map {
  width: 100%;
  margin-bottom: 20px;
}
.BMap_cpyCtrl,
.anchorBL {
  display: none;
}
.base {
  padding: 5px 8px;
}
.base p {
  font-size: 16px;
}
.base .address {
  font-size: 14px;
  padding-top: 10px;
}
.base .tel {
  padding-top: 4px;
  font-size: 14px;
  color: #cd0111;
}
.contact .page-title{
    overflow: hidden;
}
.contact .page-title p {
  font-size: 52px;
  line-height: 52px;

}
.contact .page-title h3 {
  margin-top: 4px;
}
.contact .left,
.contact .right {
  width: 500px;
  padding: 60px 0;
}
.contact .left {
  overflow: hidden;
  display: inline-block;
}
.contact .right {
  float: right;
}
.contact .row1 .left,
.contact .row2 .left,
.contact .row1 .right,
.contact .row2 .right {
  border-bottom: 1px solid #e6e6e6;
}
.contact .btn-group {
  padding-bottom: 31px;
}
.contact .btn-group:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
.contact .btn-group div {
  cursor: pointer;
  float: left;
  font-size: 16px;
  margin-left: 38.66666px;
  margin-bottom: 20px;
  width: 96px;
  height: 40px;
  line-height: 40px;
  color: #cd0111;
  font-weight: bold;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.contact .btn-group div:hover {
  transform: translateY(-8px);
}
.contact .btn-group div:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  vertical-align: middle;
  margin: 0 14px;
  border-radius: 50%;
  background-color: #cd0111;
}
.contact .btn-group div.on {
  background-color: #cd0111;
  color: #fff;
  box-shadow: none;
}
.contact .btn-group div.on:before {
  background-color: #fff;
}
.contact .welcome div {
  width: 300px;
  font-size: 42px;
  color: #666;
  line-height: 50px;
}
.contact .welcome p {
  color: #999;
  font-size: 22px;
  margin-top: 24px;
}
.contact .qr-wrap {
  font-size: 0;
  padding-bottom: 58px;
}
.contact .qr-wrap .qr {
  display: inline-block;
  text-align: center;
  width: 33.3333%;
}
.contact .qr-wrap .qr img {
  width: 120px;
}
.contact .qr-wrap .qr p {
  font-size: 16px;
  margin-top: 14px;
}
.contact .way p {
  font-size: 18px;
  color: #666;
  margin-bottom: 18px;
}
.contact .way p span,
.contact .way p a {
  color: #cd0111;
}
.contact .way .tel span {
  font-size: 36px;
    letter-spacing: -2px;
}
.contact .way .email span {
  font-size: 26px;
}
.contact .way .more {
  font-size: 16px;
  text-align: center;
  display: block;
  margin-top: 46px;
  width: 266px;
  height: 68px;
  line-height: 68px;
  border-radius: 35px;
  border: 1px solid #e6e2e2;
  background: url('../images/right-1.png') no-repeat 18% center;
  background-size: auto 14px;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.contact .way .more:hover {
  background-color: #cd0111;
  background-position: 110% center;
  font-size: 20px;
  color: #fff;
}
.contact .count div {
  font-size: 24px;
  color: #cd0111;
}
.contact .count span {
  color: #333;
  display: inline-block;
  vertical-align: bottom;
}
.contact .count span:first-child {
  color: #cd0111;
  font-size: 96px;
  line-height: 84px;
    letter-spacing: -6px;
}
.contact .count p {
  font-size: 16px;
  line-height: 30px;
  margin-top: 50px;
}
.store-search {
  font-size: 0;
  margin-bottom: 50px;
}
.store-search select {
  border: 1px solid #edecec;
  font-size: 16px;
  height: 55px;
  padding-left: 20px;
  width: 220px;
  margin-right: 12px;
}
.store-search input {
  font-size: 16px;
  border: 1px solid #cdcdcd;
  height: 53px;
  padding: 0 22px;
  margin: 0 12px 0 20px;
  width: 310px;
}
.store-search button {
  height: 55px;
  text-align: center;
  border: 0;
  color: #fff;
  font-size: 16px;
  width: 116px;
  padding-left: 24px;
  background: #cd0111 url('../images/search3.png') no-repeat 24px center;
  vertical-align: bottom;
}
.stores-count {
  font-size: 18px;
  margin-bottom: 14px;
}
.stores-count span {
  color: #cd0111;
}
.stores .item {
  width: 50%;
  float: left;
}
.stores .item > div {
  border-bottom: 2px solid #f5f5f5;
  padding: 40px 0;
  height: 190px;
}
.stores .item:nth-child(1) > div,
.stores .item:nth-child(2) > div {
  border-top: 2px solid #f5f5f5;
}
.stores .item:nth-child(2n) > div {
  padding-left: 40px;
  border-left: 1px solid #f5f5f5;
}
.stores .item:nth-child(2n-1) > div {
  padding-right: 40px;
  border-right: 1px solid #f5f5f5;
}
.stores .item .img {
  height: 100%;
  width: 254px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.stores .item .img img {
  height: 100%;
  position: absolute;
  top: 0;
  left: -100px;
  right: -100px;
  margin: 0 auto;
}
.stores .item .text {
  width: 265px;
  text-align: justify;
  float: right;
}
.stores .item .text div {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.stores .item .text .title {
  height: 52px;
  margin-bottom: 20px;
  padding-top: 22px;
  font-size: 20px;
  line-height: 26px;
  font-weight: bold;
}
.stores .item .text .tel {
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  word-wrap: break-word;
  line-height: 22px;
  height: 44px;
  margin-bottom: 10px;
}
.stores .item .text .tel span {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}
.stores .item .text .addr {
  cursor: pointer;
  font-size: 16px;
  padding-left: 40px;
  background: url('../images/addr.png') no-repeat left 4px;
}
.stores .down-loading {
  margin: 110px auto;
  font-size: 14px;
  width: 150px;
  text-indent: 40px;
  line-height: 50px;
  border-radius: 25px;
  background: #f5f5f5 url('../images/down.png') no-repeat 107px center;
  cursor: pointer;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.stores .down-loading:hover,
.stores .down-loading:active {
  background-color: #cd0111;
  color: #fff;
  width: 150px;
  background-position-x: 140%;
  font-size: 18px;
}
.stores-addr-cover {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}
.stores-addr-cover .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.stores-addr-cover .map-container {
  width: 770px;
  height: 540px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.stores-addr-cover #stores-addr {
  border-radius: 50px;
  background-color: #fff;
  width: 100%;
  height: 100%;
}
.stores-addr-cover .stores-info {
  width: 100%;
  background-color: #cd0111;
  color: #fff;
  height: 90px;
  border-radius: 45px;
  position: absolute;
  bottom: 0;
  line-height: 90px;
}
.stores-addr-cover .stores-info span {
  font-size: 24px;
  display: inline-block;
  margin: 0 40px 0 44px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 310px;
}
.stores-addr-cover .stores-info em {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  width: 320px;
  vertical-align: top;
  font-style: normal;
  font-size: 16px;
}
.stores-addr-cover .cover-clear {
  top: 12%;
  right: 24%;
}
.cover-clear {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  background: url('../images/clear.png') no-repeat center center;
  background-size: 101% auto;
  position: absolute;
  cursor: pointer;
}
.stores-title {
  display: none;
}
.stores-top {
  padding-top: 50px;
}
.stores-top .layout {
  padding-top: 55px;
  border-top: 4px solid #f5f5f5;
}
.about1 {
  position: relative;
  background-color: #fafafa;
}
.about1 img {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.about1 .text {
  width: 520px;
  height: 392px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.about1 .top {
  font-size: 20px;
  line-height: 20px;
  height: 20px;
  color: #cd0111;
  margin-bottom: 78px;
}
.about1 .top i {
  display: inline-block;
  margin: 0 14px;
  height: 100%;
  vertical-align: bottom;
  width: 1px;
  background-color: #cd0111;
}
.about1 h3 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
}
.about1 p {
  text-align: justify;
  font-size: 16px;
  line-height: 32px;
}
.about1 .bottom {
  height: 2px;
  background-color: #efe4e4;
  width: 104px;
  margin-top: 100px;
}
.about1 .bottom span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #cd0111;
}
.about2 {
  text-align: center;
  margin-top: 100px;
}
.about2 p {
  font-size: 36px;
  margin-bottom: 12px;
}
.about2 h3 {
  font-size: 42px;
  color: #cd0111;
  margin-bottom: 30px;
}
.about2 .bottom {
  width: 124px;
  height: 2px;
  background-color: #efe4e4;
  margin: 0 auto;
}
.about2 .bottom span {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 2px;
  background-color: #cd0111;
}
.about2 .item-wrap {
  margin-top: 40px;
}
.about2 .item {
    width: 24.333%;
    float: left;
    margin-top: -20px;
    position: relative;
    height: 388px;
    background: url('../images/about-tag1.png') no-repeat center center;
    transition: all 0.6s 0s ease;
    -o-transition: all 0.6s 0s ease;
    -ms-transition: all 0.6s 0s ease;
    -moz-transition: all 0.6s 0s ease;
    -webkit-transition: all 0.6s 0s ease;
}
.about2 .item .num {
    width: 136px;
    height: 136px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: top 0.3s 0s ease;
    -o-transition: top 0.3s 0s ease;
    -ms-transition: top 0.3s 0s ease;
    -moz-transition: top 0.3s 0s ease;
    -webkit-transition: top 0.3s 0s ease;
}
.about2 .item img {
    width: 100%;
    transition: opacity 0.6s 0s ease;
    -o-transition: opacity 0.6s 0s ease;
    -ms-transition: opacity 0.6s 0s ease;
    -moz-transition: opacity 0.6s 0s ease;
    -webkit-transition: opacity 0.6s 0s ease;
}
.about2 .item .img2 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.about2 .item .text {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 26%;
    color: #fff;
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    transition: transform 0.4s 0s ease;
    -o-transition: -o-transform 0.4s 0s ease;
    -ms-transition: -ms-transform 0.4s 0s ease;
    -moz-transition: -moz-transform 0.4s 0s ease;
    -webkit-transition: -webkit-transform 0.4s 0s ease;
}
.about2 .item .t1 {
    font-size: 24px;
    margin-bottom: 2px;
    font-family: 'pingfang-bold';
}
.about2 .item .t2 {
    font-family: 'pingfang';
    font-size: 18px;
}
.about2 .item:hover {
    background-image: url('../images/about-tag2.png');
}
.about2 .item:hover .num {
    top: -60px;
}
.about2 .item:hover .img1 {
    opacity: 0;
}
.about2 .item:hover .img2 {
    opacity: 1;
}
.about2 .item:hover .text {
    transform: scale(.95);
    -webkit-transform: scale(.95);

}
.about3 {
  padding: 140px 0 150px;
  background: url('../images/about-bg.jpg') center center;
  background-size: 100% 100%;
  color: #fff;
}
.about3 .left {
  width: 542px;
  float: left;
  position: relative;
}
.about3 .left .title1 {
  font-size: 40px;
  line-height: 40px;
}
.about3 .left .title2 {
  margin: 14px 0;
  font-size: 42px;
  line-height: 42px;
  font-family: 'DIN_Medium';
  font-weight: bold;
}
.about3 .left .title3 {
  font-size: 26px;
  line-height: 26px;
}
.about3 .left p {
  text-align: justify;
  font-size: 16px;
  line-height: 32px;
  margin: 28px 0 46px;
}
.about3 .left img {
  width: 100%;
  margin-bottom: 36px;
}
.about3 .left .bottom-text {
  font-size: 20px;
}
.about3 .left .bottom-text span {
  color: #d2aa57;
}
.about3 .right {
  float: right;
  width: 508px;
}
.about3 .right .title {
  font-size: 16px;
  margin: 54px 0 48px;
  color: #d2aa57;
}
.about3 .right .title span {
  font-size: 36px;
  margin-right: 18px;
  font-weight: bold;
  font-family: 'DIN_Medium';
}
.about3 .right p {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 46px;
}
.about3 .img-wrap img {
  width: 132px;
  margin-left: 28px;
}
.about3 .img-wrap img:first-child {
  margin-left: 0;
}
.about3 .list {
  line-height: 32px;
  font-size: 16px;
  padding-left: 32px;
  width: 320px;
  background: url('../images/about14.png') no-repeat left 9px;
}
.about3 .line {
  position: absolute;
  left: 52%;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #d2aa57;
}
.about3 .icon {
  position: absolute;
  right: -30px;
  top: 468px;
}


.about4 {
  background-color: #fafafa;
}
.about4 .layout {
  padding: 80px 0 200px;
  background: url('../images/about-bg2.png?v=2') no-repeat right 92%;
  background-size: 850px auto;
}
.about4 div {
  font-size: 28px;
  margin-bottom: 40px;
}
.about4 p {
  font-size: 16px;
  line-height: 32px;
  text-align: justify;
  margin-bottom: 40px;
}
.about4 .b1 {
  margin-bottom: 70px;
}
.about4 .b2 {
  width: 700px;
}
.about5 {
  padding: 40px 0 0;
}
.about5 .title1 {
  font-size: 60px;
  color: #edecec;
}
.about5 .title2 {
  font-size: 24px;
  margin-bottom: 46px;
}
.about5 .item {
  float: left;
  width: 300px;
  height: 144px;
  padding: 36px;
  margin-left: 42px;
  box-shadow: 0 0 30px 10px #f9f9f9;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.about5 .item .top {
  margin-bottom: 20px;
  height: 50px;
  position: relative;
  font-size: 24px;
}
.about5 .item .top img {
  height: 44px;
  float: right;
}
.about5 .item .top span {
  height: 3px;
  width: 50px;
  background-color: #cd0111;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about5 .item p {
  font-size: 14px;
  line-height: 26px;
}
.about5 .item.m0 {
  margin-left: 0;
}
.about5 .item .cover {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  background-color: #cd0111;
  color: #fff;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.about5 .item .cover .top span {
  background-color: #fff;
}
.about5 .item .wrap {
  position: absolute;
  width: 300px;
  height: 144px;
  padding: 36px;
}
.about5 .item:hover .cover {
  height: 100%;
  width: 100%;
}
.about5 .item.in .cover {
  top: 0;
  left: 0;
}
.about5 .item.in .cover .wrap {
  top: 0;
  left: 0;
}
.about5 .item.out .cover {
  bottom: 0;
  right: 0;
}
.about5 .item.out .cover .wrap {
  bottom: 0;
  right: 0;
}
.advertise-select .layout {
  background-color: #fafafa;
  margin: 60px auto 30px;
  padding: 22px 0 40px;
  text-align: center;
  font-size: 0pt;
}
.advertise-select div {
  font-size: 24px;
  padding-left: 30px;
  margin-bottom: 30px;
  text-align: left;
}
.advertise-select select {
  border: 1px solid #edecec;
  background-color: #fff;
  height: 50px;
  padding-left: 20px;
  margin: 0 14px;
  width: 356px;
}
.advertise-content .item {
  background-color: #fafafa;
  margin-bottom: 30px;
  overflow: hidden;
  height: 110px;
  transition: all 0.9s 0s ease;
  -o-transition: all 0.9s 0s ease;
  -ms-transition: all 0.9s 0s ease;
  -moz-transition: all 0.9s 0s ease;
  -webkit-transition: all 0.9s 0s ease;
}
.advertise-content .item.open .top {
  background-image: url('../images/icon-up.png');
}
.advertise-content .top {
  padding: 0 42px;
  line-height: 110px;
  font-size: 0;
  cursor: pointer;
  background: url('../images/icon-down.png') no-repeat 1128px 48%;
}
.advertise-content .top span {
  display: inline-block;
  font-size: 18px;
}
.advertise-content .top .span1 {
  width: 36%;
}
.advertise-content .top .span2 {
  width: 30%;
}
.advertise-content .item-content {
  border-top: 1px solid #edecec;
  padding: 48px 42px 70px;
  position: relative;
  font-size: 16px;
}
.advertise-content .item-content .content-top {
  margin-bottom: 34px;
  font-size: 0;
}
.advertise-content .item-content .content-top span {
  line-height: 18px;
  display: inline-block;
  font-size: 16px;
  padding: 0 30px;
  border-left: 1px solid #edecec;
}
.advertise-content .item-content .content-top span:first-child {
  padding-left: 0;
  border: 0;
}
.advertise-content .item-content .btn {
  cursor: pointer;
  width: 148px;
  line-height: 48px;
  font-size: 14px;
  text-indent: 24px;
  border-radius: 24px;
  color: #fff;
  background: #cd0111 url('../images/icon-enter2.png') no-repeat 112px center;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
  float: right;
}
.advertise-content .item-content .btn:hover {
  background-position-x: 120%;
  font-size: 18px;
  text-indent: 20px;
}
.advertise-content .item-content p {
  line-height: 28px;
  min-height: 28px;
  width: 64%;
}
.advertise-content .item-content .qr {
  position: absolute;
  bottom: 70px;
  right: 42px;
  text-align: right;
}
.advertise-content .item-content .qr div {
  margin-bottom: 24px;
  font-size: 14px;
}
.advertise-content .item-content .qr div:first-child {
  margin-bottom: 6px;
  font-size: 18px;
}
.advertise-content .item-content .qr img {
  width: 150px;
}
.advertise-cover {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}
.advertise-cover .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.advertise-cover .form {
  width: 620px;
  height: 260px;
  padding: 74px 70px 60px;
  background-color: #fafafa;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.advertise-cover .cover-clear {
  right: 24%;
  top: 16%;
}
.advertise-cover .title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 44px;
}
.advertise-cover .left {
  float: left;
  width: 285px;
}
.advertise-cover .right {
  width: 285px;
  float: right;
}
.advertise-cover .input {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 36px;
  height: 36px;
}
.advertise-cover .input span {
  display: inline-block;
  width: 84px;
}
.advertise-cover .input span:before {
  content: '*';
  color: #cd0111;
  margin-right: 8px;
}
.advertise-cover .input input {
  height: 34px;
  border: 1px solid #f0eeee;
  padding: 0 12px;
  font-size: 14px;
  width: 170px;
  vertical-align: middle;
}
.advertise-cover .input label {
  margin-right: 10px;
}
.advertise-cover .input .file {
  line-height: 34px;
  background-color: #fff;
  width: 264px;
}
.advertise-cover .radio input {
  width: auto;
}
.advertise-cover button {
  float: right;
  height: 36px;
  line-height: 36px;
  background-color: #cd0111;
  color: #fff;
  font-size: 14px;
  text-align: center;
  width: 215px;
  border: 0;
  margin-top: 1px;
}
.honor .item {
  cursor: pointer;
  float: left;
  width: 25%;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.honor .item > div {
  border-right: 1px solid #f1eff1;
  border-bottom: 1px solid #f1eff1;
  height: 214px;
  overflow: hidden;
}
.honor .item:nth-child(1) > div,
.honor .item:nth-child(2) > div,
.honor .item:nth-child(3) > div,
.honor .item:nth-child(4) > div {
  border-top: 1px solid #f1eff1;
}
.honor .item:nth-child(4n-3) > div {
  border-left: 1px solid #f1eff1;
}
.honor .item .year {
  border: 4px solid #edecec;
  background-color: #cd0111;
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  width: 80px;
  border-radius: 20px;
  margin: 46px auto 30px;
}
.honor .item .title1 {
  font-size: 22px;
  padding: 0 16px;
  margin-bottom: 12px;
}
.honor .item .title2 {
  font-size: 14px;
}
.honor .item .cover {
  transition: top 0.3s 0s ease;
  -o-transition: top 0.3s 0s ease;
  -ms-transition: top 0.3s 0s ease;
  -moz-transition: top 0.3s 0s ease;
  -webkit-transition: top 0.3s 0s ease;
  background-color: #f1eff1;
  position: absolute;
  top: -110%;
  left: 0;
  width: 94%;
  height: 94%;
  padding: 3%;
}
.honor .item .cover .img {
  width: 100%;
  height: 100%;
  position: relative;
}
.honor .item .cover .img img {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: -50px;
  bottom: -50px;
  left: 0;
  margin: auto 0;
}
.honor .item:hover .cover,
.honor .item:active .cover {
  top: 0;
}
.newsDetail {
  padding-top: 80px;
}
.newsDetail .info {
  position: relative;
  padding-bottom: 50px;
  border-bottom: 1px solid #e2e2e2;
}
.newsDetail .info h1 {
  font-size: 32px;
  width: 820px;
  margin-bottom: 20px;
}
.newsDetail .info p {
  font-size: 0;
  color: #ccc;
}
.newsDetail .info p span {
  margin-right: 30px;
  font-size: 16px;
}
.newsDetail .info .qr {
  width: 154px;
  padding-right: 20px;
  line-height: 56px;
  text-align: center;
  border-radius: 30px;
  border: 1px solid #e2e2e2;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  background: url('../images/down.png') no-repeat 86% 52%;
  cursor: pointer;
}
.newsDetail .info .qr div {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100px;
  overflow: hidden;
  height: 0;
  transition: height 0.3s 0s ease;
  -o-transition: height 0.3s 0s ease;
  -ms-transition: height 0.3s 0s ease;
  -moz-transition: height 0.3s 0s ease;
  -webkit-transition: height 0.3s 0s ease;
}
.newsDetail .info .qr div img {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}
.newsDetail .info .qr:hover div {
  height: 110px;
}
.newsDetail .content {
  padding: 50px 0 70px;
}
.newsDetail .content p {
  color: #666;
  text-align: justify;
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 34px;
}
.newsDetail .content img {
  width: 100%;
  margin-bottom: 34px;
}
.newsDetail .more-news .title {
  font-size: 32px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f5f5f5;
}
.newsDetail .more-news .title span {
  font-size: 28px;
  color: #edecec;
  margin-left: 18px;
}
.newsDetail .item {
  width: 340px;
  float: left;
  margin-left: 90px;
}
.newsDetail .item:first-child {
  margin-left: 0;
}
.news-img-item {
  position: relative;
  width: 340px;
}
.news-img-item .img {
  width: 100%;
  height: 192px;
  position: relative;
  overflow: hidden;
}
.news-img-item .img img {
  position: absolute;
  height: 100%;
  top: 0;
  left: -300px;
  right: -300px;
  margin: 0 auto;
}
.news-img-item .name {
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 18px 0 16px;
}
.news-img-item .text:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
.news-img-item:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
.news-img-item .ct {
  font-size: 14px;
  line-height: 28px;
  height: 56px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: justify;
  margin-top: 16px;
}
.news-img-item .more {
  float: right;
}
.news-img-item .time {
  font-size: 16px;
  color: #cd0111;
}
.news-img-item .link-cover {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.news-img-item .move-time {
  display: none;
  font-size: 0.7rem;
  color: #cd0111;
}
.news-img-item:hover .name {
  color: #cd0111;
}
.news-year-select {
  position: absolute;
  bottom: 4px;
  right: 0;
  font-size: 16px;
  height: 46px;
  width: 184px;
}
.news-year-select div {
  cursor: pointer;
  padding-left: 30px;
  line-height: 46px;
  background-color: #fafafa;
}
.news-year-select div span {
  float: right;
  width: 46px;
  height: 46px;
  background: #cd0111 url('../images/down2.png') no-repeat center center;
  background-size: 16px auto;
}
.news-year-select ul {
  display: none;
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0;
  width: 182px;
  background-color: #fff;
  border: 1px solid #eee;
  border-top: 0;
  padding: 10px 0 15px;
}
.news-year-select li {
  line-height: 34px;
}
.news-year-select li a {
  padding: 0 10px;
  display: block;
}
.news-year-select li:hover {
  background-color: #cd0111;
}
.news-year-select li:hover a {
  color: #fff;
}
.news-scroll {
  padding: 40px;
  background-color: #fafafa;
  margin-bottom: 90px;
  position: relative;
}
.news-scroll .news-swiper {
  overflow: hidden;
  height: 284px;
}
.news-scroll .news-swiper .img {
  position: relative;
  width: 500px;
  display: inline-block;
  height: 100%;
  overflow: hidden;
}
.news-scroll .news-swiper .img img {
  height: 100%;
  position: absolute;
  left: -300px;
  right: -300px;
  top: 0;
  margin: 0 auto;
}
.news-scroll .news-swiper .text {
  float: right;
  width: 560px;
  padding-top: 30px;
}
.news-scroll .news-swiper .text h3 {
  font-size: 22px;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news-scroll .news-swiper .text p {
  color: #999;
  font-size: 16px;
  line-height: 32px;
  height: 64px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news-scroll .news-swiper .text a {
  margin-top: 40px;
  display: block;
  width: 140px;
  line-height: 46px;
  font-size: 14px;
  border-radius: 24px;
  text-indent: 30px;
  color: #cd0111;
  background: #edecec url('../images/icon-enter3.png') no-repeat 98px center;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.news-scroll .news-swiper .text a:hover {
  font-size: 18px;
  background-position-x: 140px;
  text-indent: 32px;
}
.news-scroll .news-btn-wrap {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.news-scroll .news-btn-wrap:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  float: none;
  clear: both;
}
.news-scroll .news-btn-wrap div {
  float: left;
}
.news-scroll .news-btn-wrap .count {
  color: #999999;
  font-size: 16px;
  float: left;
}
.news-scroll .news-btn-wrap .count span {
  color: #cd0111;
  font-size: 32px;
  margin-right: 10px;
  display: inline-block;
  line-height: 28px;
  vertical-align: bottom;
}
.news-scroll .news-btn-wrap .prev,
.news-scroll .news-btn-wrap .next {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
  background: no-repeat center center;
  background-size: 8px auto;
}
.news-scroll .news-btn-wrap .prev {
  margin-right: 24px;
  background-image: url('../images/left-1.png');
}
.news-scroll .news-btn-wrap .next {
  margin-left: 24px;
  background-image: url('../images/right-1.png');
}
.newsImgList {
  margin-bottom: 110px;
}
.newsImgList .news-img-item .link-cover {
  display: none;
}
.newsImgList .news-img-item .more {
  margin-top: 26px;
  width: 136px;
  line-height: 46px;
  border-radius: 23px;
  text-align: center;
  font-size: 14px;
  background-color: #f5f5f5;
  display: block;
}
.newsImgList .news-img-item .more:hover {
  background-color: #cd0111;
  color: #fff;
}
.newsImgList .item {
  float: left;
  padding-top: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid #f5f5f5;
}
.newsImgList .item:nth-child(1),
.newsImgList .item:nth-child(2),
.newsImgList .item:nth-child(3) {
  border-top: 1px solid #f5f5f5;
}
.newsImgList .col1 {
  padding-right: 45px;
}
.newsImgList .col2 {
  border-left: 1px solid #f5f5f5;
  border-right: 1px solid #f5f5f5;
  padding-left: 44px;
  padding-right: 44px;
}
.newsImgList .col3 {
  padding-left: 45px;
}
.newsList {
  border-top: 2px solid #f5f5f5;
  padding-top: 20px;
  margin-bottom: 50px;
}
.newsList .item {
  padding: 50px 0;
  border-bottom: 1px solid #f5f5f5;
}
.newsList .item .time {
  text-align: center;
  width: 100px;
  height: 100px;
  display: inline-block;
  font-size: 30px;
  color: #fff;
  background: url('../images/news-tag2.png') no-repeat center center;
  background-size: 100% 100%;
  font-family: 'DIN_Medium';
  letter-spacing: -1px;
}
.newsList .item .time span {
  letter-spacing: 0;
  display: inline-block;
  width: 64px;
  text-align: left;
  color: #dfc790;
  font-size: 20px;
  line-height: 30px;
  margin-top: 12px;
  border-bottom: 1px solid #b50311;
}
.newsList .item .content {
  float: right;
  width: 750px;
}
.newsList .item .content a {
  display: block;
}
.newsList .item .content strong {
  line-height: 22px;
  display: block;
  font-size: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 22px;
}
.newsList .item .content span {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #999;
  font-size: 16px;
  line-height: 32px;
}
.newsList .item .content:hover strong {
  color: #cd0111;
}
.newsList .item .download {
  float: right;
  margin-left: 60px;
  padding-left: 60px;
  border-left: 1px solid #f5f5f5;
  height: 100px;
}
.newsList .item .download a {
  display: inline-block;
  line-height: 0;
  margin-top: 24px;
  transition: opacity 0.3s 0s ease;
  -o-transition: opacity 0.3s 0s ease;
  -ms-transition: opacity 0.3s 0s ease;
  -moz-transition: opacity 0.3s 0s ease;
  -webkit-transition: opacity 0.3s 0s ease;
}
.newsList .item .download a:hover {
  opacity: 0.8;
}
.newsList .item .download img {
  width: 100%;
}
.history {
  background: #cd0111 url('../images/history-bg.png') no-repeat left bottom;
  background-size: 100% auto;
  padding: 80px 0 100px;
  overflow: hidden;
  color: #fff;
}
.history .top {
  position: relative;
  width: 1000px;
  margin: 0 auto 90px;
}
.history .top h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.history .top p {
  font-size: 18px;
}
.history .btn-group {
  width: 105px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 0;
}
.history .btn-group div {
  width: 30px;
  height: 30px;
  background: no-repeat center center;
  background-size: 100% 100%;
  cursor: pointer;
}
.history .btn-group .prev {
  float: left;
  background-image: url('../images/left3-1.png');
}
.history .btn-group .next {
  float: right;
  background-image: url('../images/right3-1.png');
}
.history .content {
  width: 1200px;
  position: relative;
  margin: 0 auto;
  height: 770px;
}
.history .content .item {
  float: left;
  margin-left: 60px;
  width: 410px;
}
.history .content .item .record-wrap {
  width: 100%;
  overflow: hidden;
  background-color: #c39c61;
}
.history .content .item .year {
  font-size: 32px;
  margin-bottom: 26px;
}
.history .nicescroll-cursors {
  opacity: 0;
}
.history .content .item .record {
  padding: 50px 40px;
  min-height: 84px;
  max-height: 540px;
  overflow: hidden;
  width: 330px;
}
.history .content .item .record p {
  font-size: 16px;
  line-height: 32px;
}
.history .content .item .record strong {
  font-size: 18px;
}
.history .history-scroll {
  position: absolute;
  left: 0;
  top: 0;
  width: 1000%;
  transition: left 0.5s 0s ease;
  -o-transition: left 0.5s 0s ease;
  -ms-transition: left 0.5s 0s ease;
  -moz-transition: left 0.5s 0s ease;
  -webkit-transition: left 0.5s 0s ease;
}
.history .coordinatometer {
  position: relative;
  height: 19px;
  margin-bottom: 18px;
  background: #cd0111 url('../images/coordinatometer2.png?v=2') 117px top;
  background-size: 470px 100%;
}
.history .coordinatometer div {
  height: 100%;
  width: 117px;
  background: #cd0111 url('../images/coordinatometer1.png?v=2') no-repeat;
  background-size: 100% 100%;
}
.history .coordinatometer span {
  display: block;
  position: absolute;
  background-color: #cd0111;
  top: 0;
  right: 0;
  height: 100%;
  width: 368px;
}
.history .item-wrap {
  padding-left: 15px;
}
.history .move-content {
  display: none;
  width: 92%;
  margin: 0 auto;
}
.history .move-content .item {
  margin-bottom: 1.6rem;
}
.history .move-content .item .year {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  border-left: 0.2rem solid #c39c61;
  padding-left: 0.8rem;
  line-height: 1.1rem;
}
.history .move-content .item .record {
  background-color: #c39c61;
  padding: 1.2rem 0.8rem 1.5rem;
}
.history .move-content .item .record p {
  font-size: 0.7rem;
  line-height: 1.1rem;
}
.history .move-content .item .record strong {
  font-size: 0.8rem;
}
.contact .page-title a {
  font-size: 16px;
  vertical-align: bottom;
  margin-left: 50px;
  color: #cd0111;
  padding-right: 50px;
  background: url('../images/right-3.png') no-repeat 90% center;
  transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
  -ms-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
}
.contact .page-title a:hover {
  background-position: 100% center;
}
.quality .item {
  position: relative;
  margin-bottom: 40px;
  font-family: "pingfang";
  overflow: hidden;
}
.quality .item img {
  width: 100%;
  transition: transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
}
.quality .item .text {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #f4f4f4;
  padding: 0 56px;
  width: 486px;
  transition: right 0.4s;
  -webkit-transition: right 0.4s;
}
.quality .item .title {
  font-size: 22px;
  color: #cd0111;
  margin: 72px 0 12px;
}
.quality .item .p1 {
  font-size: 18px;
  margin-bottom: 36px;
}
.quality .item .p2 {
  font-size: 16px;
  color: #666;
  line-height: 28px;
  text-align: justify;
}
.quality .item .hover-text {
  text-align: center;
  position: absolute;
  top: 130%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 54px;
  transition: top 0.6s;
  -webkit-transition: top 0.6s;
}
.quality .item .hover-text div {
  font-size: 22px;
  margin-bottom: 4px;
  color: #fff;
}
.quality .item .hover-text p {
  font-size: 14px;
  color: #c39c61;
  font-family: 'DIN_Medium';
}
.quality .item.in .hover-text {
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  top: 0;
}
.quality .item.in .text {
  right: -600px;
}
.quality .item.out .hover-text {
  top: 130%;
}
.quality .item.out .text {
  right: 0;
}
.quality .item:not(.on) .text {
  transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
}
.quality .item:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.technology {
  font-family: 'pingfang';
}
.technology .title {
  font-size: 36px;
}
.technology p {
  font-size: 16px;
  line-height: 32px;
  text-align: justify;
}
.technology1 {
  background-color: #2c4f80;
  color: #fff;
}
.technology1 .p1 {
  font-size: 18px;
  margin: 12px 0 46px;
}
.technology1 .layout {
  padding: 64px 0 80px;
}
.technology1 p {
  width: 670px;
}
.technology1 .technology1-img {
  position: absolute;
  right: -40px;
  bottom: 0;
}
.technology2 {
  background-color: #fafafa;
  padding: 60px 0;
}
.technology2 p {
  margin-bottom: 42px;
}
.technology2 .title {
  margin-bottom: 26px;
}
.technology2 .icon-wrap {
  margin-top: 64px;
}
.technology2 .icon {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  color: #c39c61;
  margin-right: 90px;
}
.technology2 .icon img {
  width: 110px;
}
.technology2 .icon div {
  margin-top: 14px;
}
.technology2 .icon:first-child {
  color: #cd0111;
}
.technology3 {
  padding: 60px 0 40px;
  background-color: #f3f3f3;
}
.technology3 p {
  margin-bottom: 42px;
}
.technology3 .title {
  margin-bottom: 16px;
}
.technology4 {
  background-color: #c39c61;
  padding: 90px 0 80px;
  color: #fff;
  font-size: 0;
}
.technology4 .text {
  width: 550px;
  display: inline-block;
}
.technology4 .img {
  margin-left: 60px;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.technology4 .img div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 32px;
  left: 32px;
  background-color: #ceaf80;
  z-index: 1;
}
.technology4 .img img {
  position: relative;
  z-index: 2;
}
.technology4 p {
  margin-bottom: 40px;
}
.technology4 .year {
  font-size: 72px;
  line-height: 72px;
  font-family: 'DIN_Medium';
  letter-spacing: -5px;
}
.technology4 .title {
  margin: 10px 0 44px;
}


.crumb .item.on a,
.crumb .item:hover a,
.crumb .item:active a {
  color: #cd0111;
}

.material {
  font-size: 0;
  margin-bottom: 150px;
}
.material p {
  text-align: justify;
  font-size: 16px;
  line-height: 32px;
}
.material > div {
  margin-bottom: 26px;
}
.material .top {
  background-color: #fafafa;
  padding: 80px 50px 46px;
}
.material .top p {
  margin-bottom: 42px;
}
.material .top .text {
  display: inline-block;
  width: 920px;
}
.material .primary-title {
  font-size: 24px;
  color: #cd0111;
  margin-bottom: 38px;
}
.material .medal {
  float: right;
  margin-top: -16px;
  margin-right: -10px;
}
.material .item {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.material .item img {
  width: 100%;
}
.material .item .cover {
  background-color: #cd0111;
  width: 100%;
  height: 60px;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: height 0.5s 0s ease;
  -o-transition: height 0.5s 0s ease;
  -ms-transition: height 0.5s 0s ease;
  -moz-transition: height 0.5s 0s ease;
  -webkit-transition: height 0.5s 0s ease;
}
.material .item .text-wrap {
  height: 60px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  max-height: 100%;
  transition: height 0.3s 0.18s ease;
  -o-transition: height 0.3s 0.18s ease;
  -ms-transition: height 0.3s 0.18s ease;
  -moz-transition: height 0.3s 0.18s ease;
  -webkit-transition: height 0.3s 0.18s ease;
}
.material .item .text-wrap p {
  padding: 0 30px;
  opacity: 0;
  transition: opacity 0.5s 0.4s ease;
  -o-transition: opacity 0.5s 0.4s ease;
  -ms-transition: opacity 0.5s 0.4s ease;
  -moz-transition: opacity 0.5s 0.4s ease;
  -webkit-transition: opacity 0.5s 0.4s ease;
}
.material .item:hover .cover {
  height: 100%;
}
.material .item:hover .text-wrap p {
  opacity: 1;
}
.material .item.col1 {
  margin-left: 0;
}
.material .title {
  font-size: 20px;
  padding: 0 30px;
  line-height: 60px;
  margin-bottom: 16px;
}
.material .title span {
  color: #dc4e59;
  font-size: 18px;
  margin-left: 10px;
  font-family: 'DIN_Medium';
}
.material .item-type1 {
  width: 587px;
  margin-left: 26px;
}
.material .item-type1:hover .text-wrap {
  height: 230px;
}
.material .item-type2 {
  width: 382px;
  margin-left: 27px;
}
.material .item-type2:hover .text-wrap {
  height: 376px;
}
header.common-header nav .item.on .link a{color:#e60113;}
.chairman .info {
  background-color: #cd0111;
  padding: 50px 56px 40px;
  color: #fff;
}
.chairman .info div {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 24px;
}
.chairman .info span {
  font-size: 16px;
  padding-left: 10px;
  display: inline-block;
  line-height: 16px;
  margin-left: 12px;
  border-left: 1px solid #fff;
  vertical-align: bottom;
}
.chairman .experience {
  background-color: #fafafa;
  padding-right: 70px;
}
.chairman .img {
  display: inline-block;
  width: 510px;
}
.chairman .img img {
  width: 100%;
}
.chairman .text {
  float: right;
  width: 520px;
  padding-top: 90px;
}
.chairman .item {
  position: relative;
  height: 66px;
  padding-left: 36px;
}
.chairman .item p:first-child {
  color: #d6b77b;
  line-height: 16px;
  letter-spacing: -1px;
}
.chairman .item:before {
  content: '';
  display: block;
  background-color: #d6b77b;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 2px;
}
.chairman .item:after {
  content: '';
  display: block;
  background-color: #d6b77b;
  width: 2px;
  height: 50px;
  position: absolute;
  bottom: 66px;
  left: 5px;
}
.chairman .item:first-child:after {
  content: none;
}
.chairman p {
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
}
.chairman .title {
  margin: 80px 0 40px;
  font-size: 34px;
}
.chairman-title {
  padding: 40px 0 90px;
}
.newsList.download-none .item .content {
  width: 1020px;
}
.newsList.download-none .item .download {
  display: none;
}
.newsList.poetry .time img {
  width: 100%;
}
.newsList.downloadList .item .content strong {
  margin-bottom: 0;
  display: table-cell;
  vertical-align: middle;
}
.newsList.downloadList .item .content a {
  display: table;
  height: 100px;
}

@media screen and (max-width: 1600px) {
    .product-cover .product-cover-next{
        right: 5%;
    }
    .product-cover .product-cover-prev{
        left: 5%;
    }
}

@media screen and (max-width: 1440px) {
  .gotop {
    width: 40px;
    height: 82px;
    bottom: 210px;
  }
  footer.pc-footer {
    margin-top: 50px;
  }
  footer.pc-footer .top {
    padding: 24px 20px;
    margin-bottom: 22px;
  }
  footer.pc-footer p {
    font-size: 14px;
  }
  footer.pc-footer .left span {
    font-size: 28px;
  }
  footer.pc-footer .logo {
    width: 250px;
  }
  footer.pc-footer .qr {
    width: 96px;
  }
  footer.pc-footer .qr p {
    margin-top: 8px;
    font-size: 12px;
  }
  footer.pc-footer .qr .icon {
    width: 50px;
    height: 50px;
    background-size: 26px auto;
    margin-bottom: 4px;
  }
  footer.pc-footer .copy {
    font-size: 12px;
    line-height: 44px;
    margin-top: 30px;
  }
  header.common-header .logo {
    width: 112px;
    margin-top: 8px;
  }
  header.common-header nav {
    font-size: 16px;
    line-height: 90px;
  }
  header.common-header nav .item {
    margin-left: 34px;
  }
  header.common-header nav .search {
    margin-top: 26px;
  }
  header.common-header nav .subnav {
    width: 220px;
    left: -38px;
    font-size: 14px;
    padding-bottom: 12px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }
  header.common-header nav .subnav a {
    padding-left: 38px;
  }
  header.common-header nav .subnav li {
    line-height: 48px;
  }
  .common-top-wrap {
    height: 90px;
  }
  .common-top {
    height: 90px;
    line-height: 90px;
    background-size: 100% 100%;
    font-size: 30px;
  }
  .page-title {
    padding: 70px 0 50px;
  }
  .page-title p {
    font-size: 48px;
    line-height: 48px;
  }
  .page-title h3 {
    font-size: 24px;
    text-indent: 8px;
  }
  .video-btn-group {
    padding: 12px;
    height: 32px;
  }
  .video-btn-group .btn {
    font-size: 14px;
    width: 96px;
    height: 32px;
    line-height: 32px;
  }
  .video-btn-group .search {
    padding: 4px 16px;
    width: 150px;
  }
  .video-btn-group .search input {
    padding: 5px 0;
    font-size: 12px;
    width: 112px;
  }
  .videoList {
    margin-bottom: 60px;
  }
  .videoList .item {
    margin-top: 80px;
  }
  .videoList .line {
    top: -40px;
  }
  .crumb {
    height: 64px;
    line-height: 64px;
  }
  .talentConcept .row {
    margin-bottom: 40px;
  }
  .talentConcept .item .title {
    font-size: 22px;
  }
  .talentConcept .item p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 24px;
  }
  .talentConcept .row1 .item {
    padding-top: 36px;
    height: 440px;
  }
  .product-tag {
    padding: 60px 0 50px;
  }
  .product-pagination {
    margin-bottom: 50px;
  }
  .product-list .item .title,
  .product-list .item p {
    font-size: 16px;
  }
  .product-list .item p {
    margin-top: 8px;
  }
  .product-list .item .img {
    margin-bottom: 20px;
  }
  .product-list .item > div {
    height: 340px;
  }
  .contact .left,
  .contact .right {
    padding: 40px 0;
  }
  .contact .page-title p {
    font-size: 42px;
    line-height: 48px;
  }
  .contact .btn-group {
    padding-bottom: 23px;
  }
  .contact .btn-group div {
    font-size: 14px;
    line-height: 34px;
    height: 34px;
    margin-bottom: 16px;
  }
  .contact .btn-group div:before {
    width: 5px;
    height: 5px;
    margin: 0 16px;
  }
  .contact .welcome div {
    font-size: 36px;
    width: 260px;
    line-height: 44px;
  }
  .contact .welcome p {
    font-size: 20px;
    margin-top: 20px;
  }
  .contact .qr-wrap .qr img {
    width: 100px;
  }
  .contact .qr-wrap .qr p {
    margin-top: 13px;
  }
  .contact .way p {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .contact .way .tel span {
    font-size: 30px;
  }
  .contact .way .email span {
    font-size: 24px;
  }
  .contact .way .more {
    font-size: 14px;
    margin-top: 30px;
    width: 200px;
    height: 48px;
    line-height: 48px;
    border-radius: 25px;
    background-position: 13% center;
  }
  .contact .way .more:hover {
    font-size: 16px;
  }
  .contact .count div {
    font-size: 22px;
  }
  .contact .count span:first-child {
    font-size: 72px;
    line-height: 62px;
  }
  .contact .count p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 28px;
  }
  .store-search {
    margin-bottom: 30px;
  }
  .store-search select,
  .store-search button {
    font-size: 14px;
    height: 40px;
  }
  .store-search input {
    height: 38px;
    font-size: 14px;
  }
  .store-search button {
    background-size: 22px auto;
  }
  .stores-count {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .stores .item > div {
    padding: 28px 0;
  }
  .stores .down-loading {
    margin: 60px auto;
  }
  .stores-addr-cover .cover-clear {
    right: 14%;
  }
  .stores-top {
    padding-top: 30px;
  }
  .stores-top .layout {
    padding-top: 32px;
  }
  .about1 .top {
    font-size: 18px;
    line-height: 18px;
    height: 18px;
    margin-bottom: 54px;
  }
  .about1 h3 {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .about1 p {
    font-size: 14px;
    line-height: 28px;
  }
  .about1 .bottom {
    margin-top: 70px;
  }
  .about1 .text {
    height: 284px;
  }
  .about2 {
    margin-top: 60px;
  }
  .about2 p {
    font-size: 30px;
    margin-bottom: 8px;
  }
  .about2 h3 {
    font-size: 38px;
    margin-bottom: 20px;
  }
  .about2 .item {
    margin-top: -30px;
  }
  .about3 {
    padding: 78px 0 84px;
  }
  .about3 .left .title1 {
    font-size: 32px;
    line-height: 32px;
  }
  .about3 .left .title2 {
    margin: 10px 0;
    font-size: 36px;
    line-height: 36px;
  }
  .about3 .left .title3 {
    font-size: 24px;
    line-height: 24px;
  }
  .about3 .left p {
    font-size: 14px;
    line-height: 28px;
    margin: 18px 0 26px;
  }
  .about3 .left img {
    margin-bottom: 20px;
  }
  .about3 .left .bottom-text {
    font-size: 18px;
  }
  .about3 .right .title {
    font-size: 14px;
    margin: 34px 0 28px;
  }
  .about3 .right .title span {
    font-size: 32px;
    margin-right: 12px;
  }
  .about3 .right p {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 34px;
  }
  .about3 .list {
    line-height: 28px;
    font-size: 14px;
    padding-left: 28px;
    width: 290px;
    background-position: left 7px;
  }
  .about3 .icon {
    position: absolute;
    right: -18px;
    top: 390px;
    width: 90px;
  }
  .about4 div {
    font-size: 24px;
    margin-bottom: 26px;
  }
  .about4 p {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 26px;
  }
  .about4 .b1 {
    margin-bottom: 48px;
  }
  .about4 .b2 {
    width: 580px;
  }
  .about4 .layout {
    padding: 50px 0 130px;
    background-size: 700px auto;
  }
  .about5 {
    padding-top: 20px;
  }
  .about5 .title1 {
    font-size: 48px;
    line-height: 50px;
  }
  .about5 .title2 {
    font-size: 22px;
  }
  .about5 .item {
    margin-bottom: 28px;
    height: 126px;
  }
  .about5 .item .wrap {
    width: 280px;
    padding: 20px;
  }
  .about5 .item .top {
    margin-bottom: 14px;
    height: 44px;
    font-size: 22px;
  }
  .about5 .item .top img {
    height: 36px;
  }
  .about5 .item p {
    line-height: 22px;
  }
  .about5 .item .wrap {
    height: 126px;
  }
  .advertise-select .layout {
    margin: 40px auto 20px;
    padding: 14px 0 24px;
  }
  .advertise-select div {
    font-size: 22px;
    padding-left: 22px;
    margin-bottom: 20px;
  }
  .advertise-select select {
    height: 40px;
    padding-left: 14px;
  }
  .advertise-content .item {
    height: 84px;
    margin-bottom: 20px;
  }
  .advertise-content .top {
    padding: 0 28px;
    line-height: 84px;
  }
  .advertise-content .item-content {
    padding: 38px 28px 50px;
  }
  .advertise-content .item-content .qr {
    bottom: 50px;
  }
  .advertise-content .item-content .qr img {
    width: 120px;
  }
  .honor .item .title1 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .honor .item .title2 {
    font-size: 12px;
  }
  .newsDetail {
    padding-top: 50px;
  }
  .newsDetail .info {
    padding-bottom: 30px;
  }
  .newsDetail .info h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .newsDetail .info p span {
    margin-right: 24px;
    font-size: 14px;
  }
  .newsDetail .info .qr {
    width: 126px;
    line-height: 46px;
    font-size: 14px;
  }
  .newsDetail .content {
    padding: 30px 0 50px;
  }
  .newsDetail .content p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .newsDetail .content img {
    margin-bottom: 20px;
  }
  .newsDetail .more-news .title {
    font-size: 28px;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .newsDetail .more-news .title span {
    font-size: 24px;
    margin-left: 12px;
  }
  .newsImgList {
    margin-bottom: 70px;
  }
  .news-img-item .name {
    font-size: 18px;
    margin: 14px 0 10px;
  }
  .news-img-item .time {
    font-size: 14px;
    line-height: 14px;
  }
  .news-img-item .ct {
    line-height: 24px;
    height: 48px;
    margin-top: 10px;
  }
  .newsList {
    padding-top: 10px;
  }
  .newsList .item {
    padding: 30px 0;
  }
  .newsList .item .content span {
    font-size: 14px;
    line-height: 24px;
  }
  .newsList .item .content strong {
    font-size: 20px;
    line-height: 20px;
  }
  .newsList .item .time {
    width: 90px;
    height: 90px;
    font-size: 26px;
  }
  .newsList .item .time span {
    font-size: 18px;
    line-height: 26px;
    width: 58px;
    margin-top: 1;
  }
  .newsList .item .download {
    height: 90px;
  }
  .newsList .item .download a {
    margin-top: 20px;
  }
  .history {
    padding: 50px 0 70px;
  }
  .history .top {
    margin-bottom: 60px;
  }
  .history .content {
    width: 1000px;
  }
  .history .content .item .year {
    font-size: 28px;
    margin-bottom: 18px;
  }
  .history .content .item .record {
    padding: 34px 40px;
    min-height: 48px;
    max-height: 480px;
  }
  .history .content .item .record p {
    font-size: 14px;
    line-height: 28px;
  }
  .history .content .item .record strong {
    font-size: 16px;
  }
  .history .coordinatometer {
    margin-bottom: 10px;
  }
  .technology .title {
    font-size: 32px;
  }
  .technology p {
    font-size: 14px;
    line-height: 26px;
  }
  .technology1 .technology1-img {
    width: 470px;
    right: -20px;
  }
  .technology1 .p1 {
    margin: 8px 0 32px;
  }
  .technology2 {
    padding: 40px 0;
  }
  .technology2 .title {
    margin-bottom: 14px;
  }
  .technology2 p {
    margin-bottom: 24px;
  }
  .technology2 .icon-wrap {
    margin-top: 42px;
  }
  .technology2 .icon {
    font-size: 16px;
  }
  .technology3 {
    padding: 40px 0 18px;
  }
  .technology3 p {
    margin-bottom: 24px;
  }
  .technology3 .title {
    margin-bottom: 8px;
  }
  .technology4 {
    padding: 50px 0 40px;
  }
  .technology4 .year {
    font-size: 58px;
    line-height: 58px;
    letter-spacing: -3px;
  }
  .technology4 .title {
    margin: 0px 0 28px;
  }
  .technology4 p {
    margin-bottom: 22px;
  }
  .technology4 .text {
    width: 720px;
  }
  .technology4 .img {
    margin-left: 80px;
  }
  .technology4 .img div {
    top: 24px;
    left: 24px;
  }
  .technology4 img {
    width: 376px;
  }
  .material {
    margin-bottom: 90px;
  }
  .material .top {
    padding: 46px 40px 26px;
  }
  .material .top p {
    margin-bottom: 24px;
  }
  .material .title {
    font-size: 18px;
  }
  .material .title span {
    font-size: 16px;
  }
  .material .medal {
    margin-top: -8px;
    margin-right: -8px;
  }
  .material .medal img {
    width: 94px;
  }
  .material .primary-title {
    margin-bottom: 22px;
    font-size: 22px;
  }
  .material p {
    font-size: 14px;
    line-height: 26px;
  }
  .chairman .info {
    padding: 36px 40px 30px;
  }
  .chairman .info div {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 18px;
  }
  .chairman .info span {
    font-size: 14px;
    line-height: 14px;
  }
  .chairman p {
    font-size: 14px;
    line-height: 26px;
  }
  .chairman .title {
    margin: 50px 0 24px;
    font-size: 30px;
  }
  .chairman .item p:first-child {
    letter-spacing: 0;
  }
  .chairman-title {
    padding: 28px 0 50px;
  }
  .newsList.downloadList .item .content a {
    height: 90px;
  }


}
@media screen and (max-width: 1365px) {
  .layout {
    width: 1000px;
  }
  header.common-header nav {
    font-size: 16px;
    line-height: 90px;
  }
  header.common-header nav .item {
    margin-left: 24px;
  }
  header.common-header nav .search {
    margin-top: 26px;
  }
    .videoList {
    margin-bottom: 48px;
  }
  .videoList .item {
    height: 298px;
  }
  .videoList .img {
    width: 530px;
  }
  .videoList .text {
    width: 412px;
    padding-top: 38px;
  }
  .videoList .column-name {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 16px;
  }
  .videoList .title {
    font-size: 20px;
    line-height: 26px;
    width: 310px;
    max-height: 52px;
  }
  .videoList .time {
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 12px;
  }
  .videoList .time span {
    margin-left: 12px;
  }
  .videoList .source {
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 38px;
  }
  .videoList .source span {
    margin-left: 10px;
  }
  .videoList .more {
    height: 34px;
    line-height: 34px;
    font-size: 12px;
  }
  .videoList .more img {
    height: 26px;
    left: 4px;
  }
  .videoList .more a {
    padding: 0 24px 0 44px;
  }
  .videoList .more:hover a {
    padding: 0 32px 0 54px;
  }
  .talentConcept .row1 .item {
    width: 410px;
    margin-left: 36px;
  }
  .talentConcept .row2 .item {
    background-position: 230px 30px;
    width: 242px;
    margin-left: 29px;
  }
  .product-list .item .title,
  .product-list .item p {
    font-size: 16px;
  }
  .product-list .item p {
    margin-top: 8px;
  }
  .product-list .item .img {
    width: 208px;
    height: 208px;
  }
  .product-list .item > div {
    padding: 22px 20px 0;
    height: 300px;
  }
  .product-tag .item {
    width: 200px;
    height: 200px;
    margin-left: 66.666px;
  }
  .product-tag .item .icon {
    top: 40px;
    width: 62px;
  }
  .product-tag .item strong {
    font-size: 18px;
    line-height: 32px;
  }
  .product-tag .item span {
    font-size: 14px;
  }
  .product-tag .item .symbol {
    height: 98px;
  }
  .product-tag .item:hover strong {
    font-size: 20px;
  }
  .contact .left,
  .contact .right {
    width: 460px;
  }
  .contact .btn-group div {
    width: 84px;
    margin-left: 41.3333px;
  }
  .contact .btn-group div:before {
    margin: 0 14px;
  }
  .store-search select {
    width: 200px;
  }
  .store-search input {
    margin-left: 0;
    width: 190px;
  }
  .stores .item > div {
    height: 150px;
  }
  .stores .item:nth-child(2n) > div,
  .stores .item:nth-child(2n-1) > div {
    padding-left: 26px;
  }
  .stores .item .img {
    width: 201px;
  }
  .stores .item .text {
    width: 202px;
  }
  .stores .item .text .title {
    height: 44px;
    margin-bottom: 18px;
    padding-top: 22px;
    font-size: 18px;
    line-height: 22px;
    padding-top: 10px;
  }
  .stores .item .text .tel,
  .stores .item .text .addr {
    padding-left: 36px;
    font-size: 14px;
    line-height: 18px;
  }
  .stores .item .text .tel {
    height: 36px;
    margin-bottom: 6px;
  }
  .stores .item .text .addr {
    background-size: 20px auto;
  }
  .about1 .text {
    width: 440px;
  }
    .about2 .item {
        background-size: 100% auto;
    }
    .about2 .item .num {
        width: 116px;
        height: 116px;
    }
  .about3 {
    padding: 54px 0 62px;
  }
  .about3 .left {
    width: 460px;
  }
  .about3 .left p {
    margin: 14px 0 18px;
  }
  .about3 .left img {
    margin-bottom: 16px;
  }
  .about3 .right {
    width: 440px;
  }
  .about3 .line {
    left: 51%;
  }
  .about3 .img-wrap img {
    width: 120px;
    margin-left: 12px;
  }

  .about5 .item {
    width: 280px;
    padding: 20px;
    margin-left: 20px;
  }
  .advertise-select select {
    margin: 0 8px;
    width: 302px;
  }
  .advertise-content .top {
    background-position-x: 942px;
  }
  .honor .item > div {
    height: 174px;
  }
  .honor .item .year {
    margin: 36px auto 22px;
  }
  .newsDetail .item {
    width: 286px;
    margin-left: 71px;
  }
  .news-img-item {
    width: 286px;
  }
  .news-img-item .img {
    height: 162px;
  }
  .news-scroll .news-swiper {
    height: 232px;
  }
  .news-scroll .news-swiper .img {
    width: 410px;
  }
  .news-scroll .news-swiper .text {
    width: 480px;
    padding-top: 14px;
  }
  .news-scroll .news-swiper .text h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .news-scroll .news-swiper .text p {
    font-size: 14px;
    line-height: 26px;
    height: 52px;
  }
  .newsImgList {
    margin-bottom: 2rem;
  }
  .newsImgList .news-img-item .more {
    margin-top: 16px;
    width: 114px;
    line-height: 38px;
  }
  .newsImgList .item {
    padding: 35px 0;
  }
  .newsImgList .col1 {
    padding-right: 35px;
  }
  .newsImgList .col2 {
    padding-left: 35px;
    padding-right: 35px;
  }
  .newsImgList .col3 {
    padding-left: 35px;
  }
  .newsList .item .content {
    width: 646px;
  }
  .newsList .item .download {
    width: 130px;
    margin-left: 40px;
    padding-left: 40px;
  }
  .newsList .item .download a {
    margin-top: 23px;
  }
  .quality .item {
    margin-bottom: 30px;
  }
  .quality .item .text {
    width: 450px;
    padding: 0 34px;
  }
  .quality .item .title {
    margin: 52px 0 8px;
    font-size: 20px;
  }
  .quality .item .p1 {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .quality .item .p2 {
    font-size: 14px;
    line-height: 26px;
  }
  .technology1 .layout {
    padding: 38px 0 44px;
  }
  .technology1 .technology1-img {
    width: 390px;
    right: 0;
  }
  .technology1 p {
    width: 550px;
  }
  .technology2 .icon {
    margin-right: 74px;
  }
  .technology4 .text {
    width: 550px;
  }
  .technology4 .img {
    margin-left: 50px;
  }
  .material .top .text {
    display: inline-block;
    width: 790px;
  }
  .material .item-type1 {
    width: 486px;
    margin-left: 28px;
  }
  .material .item-type1:hover .text-wrap {
    height: 190px;
  }
  .material .item-type2 {
    width: 316px;
    margin-left: 26px;
  }
  .material .item-type2:hover .text-wrap {
    height: 330px;
  }
  .material .item .cover {
    height: 52px;
  }
  .material .item .text-wrap {
    height: 52px;
  }
  .material .title {
    line-height: 52px;
  }
  .chairman .img {
    width: 400px;
  }
  .chairman .experience {
    padding-right: 40px;
  }
  .chairman .text {
    width: 510px;
    padding-top: 54px;
  }
  .chairman .item {
    height: 56px;
  }
  .chairman .item:before {
    width: 10px;
    height: 10px;
    top: 3px;
  }
  .chairman .item:after {
    height: 42px;
    bottom: 55px;
    left: 4px;
  }
    .newsList.download-none .item .content {
        width: 850px;
    }

}
@media screen and (max-width: 1024px) {
  .item-wrap:after {
    content: none;
  }
  .layout {
    width: 92%;
  }
  body,
  html {
    overflow-x: hidden;
  }
  body {
    padding-top: 3rem;
  }
  .gotop {
    width: 2.3rem;
    height: 2.3rem;
    background-image: url('../images/gotop2.png');
    background-position-y: 46%;
    background-size: 1rem auto;
  }
  header.pc-header {
    display: none;
  }
  header.move-header {
    display: block;
  }
  footer.pc-footer {
    display: none;
  }
  footer.move-footer {
    display: block;
  }
  .common-top-wrap {
    height: 3.8rem;
  }
  .common-top {
    height: 3.8rem;
    line-height: 3.8rem;
    font-size: 1.1rem;
  }
  .page-title {
    display: none;
  }
  .page-title h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  .video-top {
    display: block;
    padding: 1.5rem 0 1rem;
  }
  .video-top p {
    display: none;
  }
  .video-btn-group {
    position: static;
    padding: 0.4rem;
    display: flex;
    justify-content: space-around;
    align-content: space-between;
  }
  .video-btn-group:after {
    content: none;
  }
  .video-btn-group .btn {
    font-size: 0.6rem;
    width: 3.9rem;
    height: 1.6rem;
    line-height: 1.6rem;
    border-radius: 0.8rem;
  }
  .video-btn-group .search {
    border-radius: 0.8rem;
    padding: 0.2rem 0.6rem;
    height: 1.2rem;
    width: 6rem;
  }
  .video-btn-group .search input {
    font-size: 0.6rem;
    width: 4.5rem;
    padding: 0.25rem 0;
  }
  .video-btn-group .search button {
    width: 1.2rem;
    height: 1.2rem;
    background-size: 0.8rem auto;
  }
  .videoList {
    margin-bottom: 2rem;
  }
  .videoList .item {
    margin-top: 2rem;
    height: auto;
  }
  .videoList .line {
    top: -1rem;
  }
  .videoList .img {
    width: 100%;
    height: 51.8vw;
  }
  .videoList .text {
    width: auto;
    float: none;
    padding: 1rem 1rem 1.5rem;
  }
  .videoList .column-name {
    font-size: 0.8rem;
    line-height: 0.8rem;
    margin-bottom: 0.6rem;
    display: none;
  }
  .videoList .title {
    font-size: 1.1rem;
    width: 100%;
    max-height: 2.8rem;
    line-height: 1.4rem;
    margin-bottom: 0.8rem;
  }
  .videoList .time {
    margin-bottom: 0.7rem;
    font-size: 0.6rem;
    line-height: 0.6rem;
  }
  .videoList .time span {
    margin-left: 0.5rem;
  }
  .videoList .source {
    margin-bottom: 1.2rem;
    font-size: 0.6rem;
    line-height: 0.6rem;
  }
  .videoList .source span {
    margin-left: 0.4rem;
  }
  .videoList .cover {
    display: none;
  }
  .videoList .more {
    display: block;
    height: 1.7rem;
    line-height: 1.7rem;
    font-size: 0.6rem;
  }
  .videoList .more img {
    height: 1.3rem;
    position: static;
    margin-right: 0.4rem;
    vertical-align: top;
    margin-top: 0.2rem;
  }
  .videoList .more a {
    padding: 0;
    text-align: center;
  }
  .videoList .more:hover a {
    padding: 0;
  }
  .pc-pagination {
    display: none;
  }
  .move-pagination {
    display: block;
  }
  .crumb {
    height: auto;
    margin-bottom: 2rem;
  }
  .crumb .part {
    display: none;
  }
  .crumb .left {
    background: none;
    padding: 0;
    font-size: 0.6rem;
    float: none;
    line-height: 1.6rem;
    width: 100%;
    border-bottom: 1px solid;
  }
  .crumb .right {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    float: none;
  }
  .crumb .right .item {
    text-align: center;
    width: auto;
    font-size: 0.8rem;
    float: none;
    margin: 0;
    line-height: 2.6rem;
  }
  .talentConcept .row {
    margin-bottom: 0;
  }
  .talentConcept .row .item {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    height: auto;
    margin-bottom: 1.5rem;
    padding: 1.4rem;
  }
  .talentConcept .item .title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .talentConcept .item p {
    font-size: 0.7rem;
    line-height: 1rem;
    margin-bottom: 0.8rem;
  }
  .talentConcept .row2 .item {
    background-position: 90% 1.4rem;
    background-size: 2.2rem auto;
  }
  .product-tag {
    padding: 2rem 0 1.5rem;
  }
  .product-tag .layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .product-tag .layout:after {
    content: none;
  }
  .product-tag .item {
    float: none;
    margin-left: 0;
    width: 7.5rem;
    height: 7.5rem;
    margin-bottom: 1rem;
  }
  .product-tag .item .icon {
    top: 1.2rem;
    width: 2.7rem;
  }
  .product-tag .item strong {
    font-size: 0.8rem;
    margin-top: 3.9rem;
  }
  .product-tag .item span {
    font-size: 0.7rem;
  }
  .product-tag .item .symbol {
    height: 3.7rem;
  }
  .product-tag .item.on strong,
  .product-tag .item:hover strong,
  .product-tag .item:active strong {
    font-size: 1rem;
    margin-top: 16%;
  }
  .product-list {
    margin-bottom: 2.5rem;
  }
  .product-list .item {
    width: 50%;
  }
  .product-list .item .img {
    width: 5.7rem;
    height: 5.7rem;
    margin-bottom: 1rem;
  }
  .product-list .item > div {
    padding: 1rem 1rem 0;
    height: 9.8rem;
  }
  .product-list .item .title,
  .product-list .item p {
    font-size: 0.7rem;
  }
  .product-list .item p {
    margin-top: 0.4rem;
  }
  .product-pagination {
    margin: 0.5rem 0 2rem;
  }
  .product-pagination span {
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 0.5rem;
  }
  .product-cover .product-cover-swiper {
    width: 90%;
    height: 22.2rem;
    top: -14%;
  }
  .product-cover .swiper-slide {
    height: 22.2rem;
    border-radius: 0;
  }
  .product-cover .swiper-slide .img {
    margin: 1rem auto;
    display: block;
    width: 10rem;
    height: 10rem;
  }
  .product-cover .swiper-slide .text {
    width: 15rem;
    float: none;
    margin: 0 auto;
    text-align: center;
  }
  .product-cover .swiper-slide .text .title {
    font-size: 1rem;
    line-height: 1rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.7rem;
  }
  .product-cover .swiper-slide .text p {
    font-size: 0.8rem;
    line-height: 1.2rem;
    position: relative;
    padding-left: 1rem;
  }
  .product-cover .swiper-slide .text p span {
    width: 4rem;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    text-align-last: left;
  }
  .product-cover .swiper-slide .text a {
    display: inline-block;
    margin-top: 1rem;
    height: 1.9rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    padding: 0 1rem 0 2.6rem;
    line-height: 1.9rem;
    background-size: 1rem auto;
    background-position: 1rem center;
  }
  .product-cover .product-cover-prev,
  .product-cover .product-cover-next {
    width: 2.5rem;
    height: 2.5rem;
    bottom: -70%;
  }
  .base {
    padding: 0;
  }
  .base p {
    font-size: 0.7rem;
  }
  .base .address {
    font-size: 0.6rem;
    padding-top: 0.4rem;
  }
  .base .tel {
    padding-top: 0.15rem;
    font-size: 0.6rem;
  }
  .content-map-wrap {
    height: 12rem;
  }
  #contact-map {
    height: 12rem;
  }
  .contact .left,
  .contact .right {
    width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 0;
    float: none;
  }
  .contact .page-title {
    display: none;
  }
  .contact .btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contact .btn-group:after {
    content: none;
  }
  .contact .btn-group div {
    font-size: 0.7rem;
    line-height: 1.7rem;
    height: 1.7rem;
    margin-bottom: 0.8rem;
    margin-left: 0;
    width: 3.5rem;
    float: none;
    text-align: center;
  }
  .contact .btn-group div:before {
    content: none;
  }
  .contact .welcome {
    text-align: center;
  }
  .contact .welcome div {
    margin: 0 auto;
    font-size: 1.4rem;
    width: 10.5rem;
    line-height: 1.7rem;
  }
  .contact .welcome p {
    font-size: 0.9rem;
    margin-top: 0.8rem;
  }
  .contact .qr-wrap .qr img {
    width: 4.5rem;
  }
  .contact .qr-wrap .qr p {
    font-size: 0.7rem;
    margin-top: 0.4rem;
  }
  .contact .way {
    text-align: center;
  }
  .contact .way p {
    font-size: 0.8rem;
  }
  .contact .way p span,
  .contact .way p a {
    font-size: 0.8rem !important;
    color: #666;
  }
  .contact .way .more {
    background-image: none;
    font-size: 0.7rem;
    width: 8.2rem;
    height: 2.2rem;
    line-height: 2.2rem;
    margin: 1.3rem auto 0;
  }
  .contact .way .more:active,
  .contact .way .more:hover {
    background-color: #cd0111;
    font-size: 0.8rem;
    color: #fff;
  }
  .contact .count {
    display: none;
  }
  .stores-title {
    display: block;
    margin-bottom: 1.5rem;
  }
  .store-search {
    margin-bottom: 1.5rem;
  }
  .store-search select {
    width: 33.333%;
    padding-left: 0.2rem;
    margin-right: 0;
    margin-bottom: 0.7rem;
    height: 2rem;
    font-size: 0.7rem;
  }
  .store-search input {
    height: 2rem;
    font-size: 0.7rem;
    margin: 0;
    box-sizing: border-box;
    width: 70%;
    padding: 0 0.7rem;
    border-right: 0;
  }
  .store-search button {
    height: 2rem;
    font-size: 0.7rem;
    width: 30%;
    background-size: 1rem auto;
    padding-left: 1.1rem;
    background-position: 1.1rem center;
  }
  .stores-count {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f5f5f5;
  }
  .stores .item {
    width: 100%;
    float: none;
  }
  .stores .item > div {
    padding: 0.8rem 0.5rem !important;
    height: 5.5rem;
  }
  .stores .item .img {
    width: 7.3rem;
  }
  .stores .item .text {
    width: 8rem;
  }
  .stores .item .text .title {
    padding-top: 0;
    font-size: 0.7rem;
    line-height: 0.8rem;
    height: 1.6rem;
    margin-bottom: 0.7rem;
  }
  .stores .item .text .tel,
  .stores .item .text .addr {
    font-size: 0.6rem;
    line-height: 0.7rem;
    padding-left: 1.5rem;
    height: 1.4rem;
  }
  .stores .item .text .addr {
    background-size: 0.7rem;
    background-position-y: center;
  }
  .stores .item .text .tel {
    margin-bottom: 0.3rem;
  }
  .stores .down-loading {
    margin: 2rem auto 1rem;
    font-size: 0.7rem;
    width: 7.5rem;
    text-indent: 2rem;
    line-height: 2.5rem;
    border-radius: 1.3rem;
    background-position-x: 5.4rem;
  }
  .stores-addr-cover .map-container {
    width: 92%;
    height: 18rem;
  }
  .stores-addr-cover .stores-info {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    height: 3.5rem;
    line-height: 1.3rem;
    text-align: center;
  }
  .stores-addr-cover .stores-info span {
    display: block;
    margin: 0.4rem auto 0.1rem;
    width: 80%;
    font-size: 0.9rem;
  }
  .stores-addr-cover .stores-info em {
    display: block;
    font-size: 0.7rem;
    width: 86%;
    margin: 0 auto;
  }
  .cover-clear {
    width: 2.4rem;
    height: 2.4rem;
  }
  .about1 img {
    position: static;
    width: 100%;
    height: auto;
    margin-top: -6vw;
  }
  .about1 .text {
    position: static;
    width: 100%;
    height: 11.2rem;
  }
  .about1 .text .top {
    font-size: 0.7rem;
    line-height: 0.7rem;
    height: 0.7rem;
    margin: 1rem 0;
  }
  .about1 .text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .about1 .text p {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  .about1 .text .bottom {
    display: none;
  }
  .about2 {
    margin: 1.5rem 0 1rem;
  }
  .about2 p {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  .about2 h3 {
    font-size: 1.3rem;
    width: 15.9rem;
    margin: 0 auto;
  }
  .about2 .bottom {
    display: none;
  }
    .about2 .item {
        width: 50%;
        height: 46vw;
        margin-top: 0;
    }
    .about2 .item .num {
        width: 44%;
        height: 44%;
        top: -20%;
    }
    .about2 .item .text {
        color: #2e2828;
        transform: scale(1);
        -webkit-transform: scale(1);
        bottom: 17%;
    }
    .about2 .item .t1 {
        font-size: 0.8rem;
    }
    .about2 .item .t2 {
        font-size: 0.6rem;
    }
    .about2 .item:hover {
        background-image: url('../images/about-tag1.png');
    }
    .about2 .item:hover .num {
        top: -20%;
    }
    .about2 .item:hover .img1 {
        opacity: 1;
    }
    .about2 .item:hover .img2 {
        opacity: 0;
    }
    .about2 .item:hover .text {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
  .about2 .item-wrap {
    margin-top: 1rem;
  }
  .about3 {
    padding: 2.5rem 0 3rem;
  }
  .about3 .left {
    margin-bottom: 2.5rem;
    float: none;
    width: 100%;
  }
  .about3 .left img {
    margin-bottom: 0.8rem;
  }
  .about3 .left .title1 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  .about3 .left .title2 {
    margin: 0.4rem 0;
    font-size: 1.7rem;
    line-height: 1.7rem;
  }
  .about3 .left .title3 {
    line-height: 1.2rem;
    font-size: 1.2rem;
  }
  .about3 .left p {
    font-size: 0.7rem;
    line-height: 1.4rem;
    margin: 0.9rem 0 1.1rem;
  }
  .about3 .right {
    float: none;
    width: 100%;
  }
  .about3 .right .title {
    margin: 0.7rem 0 1rem;
    font-size: 0.7rem;
  }
  .about3 .right .title span {
    font-size: 1.5rem;
    margin-right: 0.5rem;
  }
  .about3 .right p {
    font-size: 0.7rem;
    line-height: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .about3 .line {
    display: none;
  }
  .about3 .icon {
    display: none;
  }
  .about3 .img-wrap {
    display: flex;
    justify-content: space-between;
  }
  .about3 .img-wrap img {
    margin: 0;
    width: 5rem;
  }
  .about3 .list {
    font-size: 0.7rem;
    line-height: 1.4rem;
    padding-left: 1.4rem;
    background-position: left 0.35rem;
    background-size: 0.7rem auto;
  }

  .about4 .layout {
    padding: 2.5rem 0 7rem;
    background-size: 100% auto;
    background-position: center 97%;
  }
  .about4 div {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  .about4 p {
    margin-bottom: 0.8rem;
    font-size: 0.7rem;
    line-height: 1.1rem;
  }
  .about4 .b1 {
    margin-bottom: 2rem;
  }
  .about4 .b2 {
    width: 100%;
  }
  .about5 .title1 {
    text-align: center;
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
  .about5 .title2 {
    text-align: center;
    font-size: 1.1rem;
  }
  .about5 .item {
    margin-left: 0;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 0.8rem;
    height: auto;
    padding: 1.3rem;
  }
  .about5 .item div {
    margin-bottom: 0.7rem;
    height: 2.2rem;
    font-size: 1.1rem;
  }
  .about5 .item div img {
    height: 1.8rem;
  }
  .about5 .item div span {
    height: 0.15rem;
    width: 2.5rem;
  }
  .about5 .item p {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  .about5 .item .cover {
    display: none;
  }
  .advertise-select .layout {
    padding: 0.7rem 0 1.2rem;
    margin: 2rem auto 1.5rem;
  }
  .advertise-select div {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .advertise-select select {
    width: 32%;
    margin: 0 0.5%;
    padding-left: 0.2rem;
  }
  .advertise-content .item {
    margin-bottom: 0.7rem;
    height: 3.5rem;
  }
  .advertise-content .top {
    padding: 0 0.8rem;
    line-height: 3.5rem;
    background-position: 96% 47%;
    background-size: 1.2rem;
  }
  .advertise-content .top span {
    font-size: 0.8rem;
  }
  .advertise-content .top .span2 {
    width: 25%;
  }
  .advertise-content .item-content {
    font-size: 0.7rem;
    padding: 1rem 0.8rem 1.5rem;
  }
  .advertise-content .item-content .btn {
    display: none;
  }
  .advertise-content .item-content .content-top {
    margin-bottom: 1rem;
  }
  .advertise-content .item-content .content-top span {
    display: block;
    padding: 0;
    border: 0;
    font-size: 0.7rem;
    line-height: 1.1rem;
  }
  .advertise-content .item-content p {
    line-height: 1.1rem;
    min-height: 1.1rem;
    width: 100%;
  }
  .advertise-content .item-content .qr {
    text-align: center;
    margin-top: 1.5rem;
    position: static;
  }
  .advertise-content .item-content .qr div {
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
  }
  .advertise-content .item-content .qr div:first-child {
    margin-bottom: 0px;
    font-size: 0.8rem;
  }
  .advertise-content .item-content .qr img {
    width: 5rem;
  }
  .honor {
    margin-top: 1.5rem;
  }
  .honor .item {
    width: 100%;
  }
  .honor .item > div {
    border: 1px solid #f1eff1;
    border-top: 0;
    height: 64vw;
  }
  .honor .item > div:first-child {
    border-top: 1px solid #f1eff1;
  }
  .honor .item .year {
    border-width: 0.2rem;
    border-radius: 1rem;
    width: 4rem;
    line-height: 1.4rem;
    font-size: 0.7rem;
    margin: 3rem auto 1.2rem;
  }
  .honor .item .title1 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  .honor .item .title2 {
    font-size: 0.7rem;
  }
  .newsDetail .info {
    padding-bottom: 1rem;
  }
  .newsDetail .info h1 {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }
  .newsDetail .info p {
    line-height: 1.1rem;
    position: relative;
  }
  .newsDetail .info p span {
    display: block;
    font-size: 0.7rem;
    margin-right: 0;
  }
  .newsDetail .info p span:last-child {
    position: absolute;
    top: 0;
    right: 0;
  }
  .newsDetail .info .qr {
    display: none;
  }
  .newsDetail .content {
    padding: 1.5rem 0 2rem;
  }
  .newsDetail .content p {
    font-size: 0.7rem;
    line-height: 1.1rem;
    margin-bottom: 1rem;
  }
  .newsDetail .content img {
    margin-bottom: 1rem;
  }
  .newsDetail .more-news .title {
    font-size: 1.2rem;
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
  }
  .newsDetail .more-news .title span {
    font-size: 0.9rem;
    margin-left: 0.4rem;
    vertical-align: bottom;
  }
  .newsDetail .more-news .item {
    margin-left: 0;
    width: 100%;
    display: none;
    border: 0;
  }
  .newsDetail .more-news .item:nth-child(1) {
    display: block;
  }
  .news-img-item {
    width: 100%;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 0.1rem solid #edecec;
  }
  .news-img-item .img {
    height: 52vw;
  }
  .news-img-item .name {
    font-size: 0.9rem;
    margin: 0.7rem 0 0.5rem;
  }
  .news-img-item .time {
    display: none;
  }
  .news-img-item .ct {
    width: 100% !important;
    font-size: 0.7rem;
    line-height: 1.1rem;
  }
  .news-img-item .move-time {
    display: block;
  }
  .newsImgList .item {
    float: none;
    padding: 0 !important;
    border: 0 !important;
  }
  .newsImgList .item .more {
    display: none;
  }
  .newsImgList .news-img-item .link-cover {
    display: block;
  }
  .news-scroll {
    display: none;
  }
  .newsImgList {
    padding-top: 2rem;
  }
  .newsList {
    padding-top: 1rem;
    margin-top: 1rem;
  }
  .newsList .item {
    padding: 1.8rem 0;
    position: relative;
  }
  .newsList .item .time {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.2rem;
  }
  .newsList .item .time span {
    font-size: 0.8rem;
    line-height: 1.3rem;
    margin-top: 0.2rem;
    width: 2.6rem;
  }

  .newsList .item .content {
    width: 12.5rem;
  }
  .newsList .item .content strong {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  .newsList .item .content span {
    font-size: 0.7rem;
    line-height: 1rem;
    display: none;
  }
  .newsList .item .download {
    padding: 0;
    margin: 0;
    border: 0;
    position: absolute;
    width: 5.5rem;
    height: auto;
    top: 3.4rem;
    left: 4.9rem;
  }
  .newsList .item .download a {
    margin-top: 0;
  }
  .history .top {
    padding: 0;
    width: 92%;
    margin: 0 auto 2rem;
  }
  .history .top h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  .history .top p {
    font-size: 0.9rem;
  }
  .history .btn-group {
    display: none;
  }
  .history .content {
    display: none;
  }
  .history .move-content {
    display: block;
  }
    .advertise-content .item {
        height: 3.6rem;
    }
    .advertise-content .top {
        line-height: 1.8rem;
        height: 3.6rem;
    }
    .advertise-content .top .span1 {
        display: block;
        width: 100%;
    }
    .advertise-content .top .span2 {
        width: 42%;
    }
    .advertise-content .top .span3 {
        width: 40%;
    }
    .advertise-content .top span {
        display: inline-block;
        height: 1.8rem;
    }
  .quality .item {
    margin-bottom: 1.5rem;
  }
  .quality .item .text {
    box-sizing: border-box;
    width: 100%;
    position: static;
    height: auto;
    padding: 1rem 0.7rem 1.5rem;
  }
  .quality .item .title {
    font-size: 1.1rem;
    margin: 0 0 0.4rem;
  }
  .quality .item .p1 {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .quality .item .p2 {
    font-size: 0.7rem;
    line-height: 1.1rem;
  }
  .quality .item .hover-text {
    display: none;
  }
  .quality .item:hover img {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  .technology .title {
    font-size: 1.4rem;
  }
  .technology p {
    font-size: 0.7rem;
    line-height: 1.3rem;
  }
  .technology1 .layout {
    padding: 2rem 0;
  }
  .technology1 .technology1-img {
    display: none;
  }
  .technology1 p {
    width: 100%;
  }
  .technology1 .p1 {
    margin: 0.4rem 0 1.2rem;
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
  .technology2 {
    padding: 2rem 0;
  }
  .technology2 .icon {
    margin-right: 0;
    margin-bottom: 0.8rem;
    width: 33.333%;
  }
  .technology2 .icon img {
    width: 80%;
  }
  .technology2 .icon div {
    font-size: 0.7rem;
    margin-top: 0.6rem;
  }
  .technology2 .icon-wrap {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .technology2 .title {
    margin-bottom: 0.5rem;
  }
  .technology2 p {
    margin-bottom: 0.8rem;
  }
  .technology3 {
    padding: 2rem 0 0.9rem;
  }
  .technology3 .title {
    margin-bottom: 0.3rem;
  }
  .technology3 p {
    margin-bottom: 0.8rem;
  }
  .technology4 {
    position: relative;
    padding: 2rem 0 1.8rem;
  }
  .technology4 .layout {
    position: static;
  }
  .technology4 .year {
    font-size: 2.6rem;
    line-height: 2.6rem;
    letter-spacing: -0.15rem;
  }
  .technology4 .text {
    width: 100%;
  }
  .technology4 .title {
    margin-bottom: 1rem;
  }
  .technology4 p {
    margin-bottom: 0.9rem;
  }
  .technology4 .img {
    width: 88%;
    display: block;
    margin: 0.8rem auto;
  }
  .technology4 .img img {
    width: 100%;
  }
  .technology4 .img div {
    display: none;
  }
  .move-mb0 {
    margin-bottom: 0;
  }
  .material {
    margin-bottom: 3rem;
  }
  .material > div {
    margin-bottom: 1rem;
  }
  .material p {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  .material .material .primary-title {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
  }
  .material .top {
    padding: 1.8rem 0.6rem;
  }
  .material .top .text {
    width: 100%;
  }
  .material .top p {
    margin-bottom: 0.6rem;
  }
  .material .medal {
    float: none;
    margin: 1rem auto 0.4rem;
  }
  .material .medal img {
    width: 24%;
  }
  .material .item {
    margin-left: 0;
    width: 100%;
  }
  .material .item .cover {
    position: static;
    height: auto;
    background-color: #fafafa;
    color: #333;
  }
  .material .item .text-wrap {
    height: auto;
    position: static;
    padding-bottom: 1rem;
  }
  .material .item .text-wrap p {
    opacity: 1;
    padding: 0 0.8rem;
  }
  .material .item:hover .text-wrap,
  .material .item:hover .cover {
    height: auto;
  }
  .material .item-type2 .img {
    height: 54.7vw;
    overflow: hidden;
    position: relative;
  }
  .material .item-type2 .img img {
    position: absolute;
    top: -20rem;
    bottom: -20rem;
    margin: auto;
  }
  .material .title {
    font-size: 0.9rem;
    padding: 0 0.8rem;
    line-height: 3rem;
    margin-bottom: 0;
    color: #cd0111;
  }
  .material .title span {
    color: #cd0111;
    font-size: 0.8rem;
  }
  .chairman {
    margin-top: 1rem;
  }
  .chairman .info {
    padding: 1.5rem 0.5rem 1rem;
  }
  .chairman .info div {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
  .chairman .info span {
    font-size: 0.7rem;
    line-height: 0.7rem;
  }
  .chairman .info p {
    line-height: 1.2rem;
  }
  .chairman .img {
    display: block;
    width: 100%;
    margin: 0 auto 1rem;
  }
  .chairman .experience {
    padding-right: 0;
  }
  .chairman .text {
    float: none;
    width: 100%;
    padding: 0 1rem 1.5rem;
    box-sizing: border-box;
  }
  .chairman p {
    font-size: 0.7rem;
    line-height: 1.2rem;
  }
  .chairman .item {
    height: 3.5rem;
  }
  .chairman .item p {
    line-height: 1rem;
  }
  .chairman .item p:first-child {
    line-height: 0.8rem;
  }
  .chairman .item:before {
    width: 0.5rem;
    height: 0.5rem;
    top: 0.15rem;
  }
  .chairman .item:after {
    height: 2.8rem;
    bottom: 3.45rem;
    left: 0.2rem;
    width: 0.1rem;
  }
  .chairman .title {
    margin: 1.8rem 0 0.9rem;
    font-size: 1.4rem;
  }
    .newsList.download-none .item .content {
        width: 12.5rem;
    }
    .newsList.download-none .item .content strong {
        margin-bottom: 0.6rem;
    }
    .newsList.download-none .item .content span {
        display: -webkit-box;
    }
  .newsList.downloadList .item .content a {
    display: block;
    height: auto;
  }
  .newsList.downloadList .item .content strong {
    display: block;
  }

}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .product-cover .product-cover-swiper {
    height: 19rem;
  }
  .product-cover .swiper-slide {
    height: 19rem;
  }
  .product-cover .swiper-slide .img {
    display: block;
    width: 8rem;
    height: 8rem;
  }
  .product-cover .swiper-slide .text .title {
    margin-bottom: 0.5rem;
  }
  .product-cover .swiper-slide .text p {
    font-size: 0.7rem;
    line-height: 1rem;
  }
  .product-cover .product-cover-prev,
  .product-cover .product-cover-next {
    width: 2rem;
    height: 2rem;
    bottom: -80%;
  }
  .stores-addr-cover .cover-clear {
    top: 5%;
    right: 12%;
  }
}
