﻿@charset "UTF-8";
/* reset */
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

button {
  border: 0;
  background-color: transparent;
  outline: none;
  -webkit-appearance: none;
}

select {
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

input,
textarea {
  outline: none;
  border: none;
}

textarea {
  resize: none;
  overflow: auto;
}

i,
em {
  font-weight: normal;
  font-style: normal;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input {
  -moz-appearance: textfield;
}

@font-face {
  font-family: "nuncio";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/nuncio.ttf");
}
/* body h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
font-family: "微软雅黑", "Microsoft YaHei", "SimSun", "宋体"; } */
html body {
  margin: 0px auto;
  max-width: 1920px;
  min-width: 320px;
  font-size: 16px;
  font-family: "微软雅黑", "Microsoft YaHei", "SimSun", "宋体";
  background-color: #e1e1e1;
}

/* body:after {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: gray;
  content: "";
  z-index: 99999999;
} */

/* 单行文本溢出隐藏 */
/* 多行文本溢出隐藏 */
/* flex 布局 */
　
.class1, 　
.class2 {
  border: 1px solid #ddd;
}

.class2 {
  font-size: 120%;
}

div127 {
  float: left;
  margin-left: 10px;
}

.div1 {
  float: left;
  margin-left: 20px;
}

.wrap {
  width: 1400px;
  margin: 0 auto;
}

.header-box {
  height: 126px;
}

.index .header-box {
  height: 0;
}

.header {
  /* height: 120px; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  transition: all .3s;
  padding: 30px 0;
}

.header .wrap {
  /* height: 90px; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  transition: all .3s;
  position: relative;
  /* padding-right: -150px; */
  /* margin-right: -140px; */
}

.hd-logo .img2 {
  display: none;
}

.hd-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hd-nav li> a {
  font-size: 16px;
  line-height: 1;
  color: #000;
  margin: 0 25px;
  transition:.4s all;
  position: relative;
  z-index: 9;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
 -webkit-line-clamp: 1;	
 -webkit-box-orient: vertical;
}
.hd-nav a:hover {
  color: #a0141a;
}
.hd-nav .on > a{color:#a0141a !important;}

.hd-nav li{
  position: relative;
}

.hd-nav li::after{
  content: '';
  display: block;
  width: calc(100% - 50px);
  height: 3px;
  background-color: #015177;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -54px;
  display: none;
}
.hd-nav li.on::after{
  display: block;
}
.hd-nav li:hover dl{
  opacity: 1;
  pointer-events: auto;
}

.hd-nav li:hover > a{
  color: #a0141a;
}

.hd-nav dl{
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 6px;
  padding: 0 8px;
  padding-top: 55px;
  padding-bottom: 20px;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: .4s all;
  border:1px solid #888;
}

.hd-nav dl dd{
  border-bottom: 1px solid #e3e3e3;
  transition: .4s all;
}

.hd-nav dl:after{
  content:'';
  display:block;
  position: absolute;
  top:55px;
  left:50%;
  transform:translateX(-50%);
  width:70%;
  height:2px;
  background-color:#a0141a;
}

.hd-nav dl dd a{
  display: block;
  text-align: center;
  height: 54px;
  font-size:14px;
  line-height: 54px;
  color: #777;
  font-size: 15px;
  transition: .4s all;
  margin:0;
}

.hd-nav dl dd:hover a{
  color:#a0141a;
}

.hd-nav dl dd:hover{
  border-bottom-color:#a0141a;
}

.hd-btn {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hd-btn a {
  width: 30px;
  height: 25px;
  margin-left: 15px;
  background: url(../images/search-ico01.png) no-repeat top center;
  transition-duration: .3s;
}
.hd-btn a.tel-btn {
  background-image: url(../images/tel-ico01.png);
}
.hd-btn a.wx-btn {
  background-image: url(../images/wx-ico01.png);
}
.hd-btn a:hover {
  opacity: .6;
}

.header-box.active .header {
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
}
.header-box.active .hd-logo .img2 {
  display: block;
}
.header-box.active .hd-logo .img1 {
  display: none;
}
.header-box.active .hd-nav li >a {
  color: #545454;
}
.header-box.active .hd-nav a:hover {
  color: #a0141a;
}
.header-box.active .hd-btn a {
  background-position: bottom center;
}



.header-box .hd-nav .item {
  position: fixed;
  top: 126px;
  left: 0;
  right: 0;
  background-color: #f9f9f9;
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transition-duration: .3s;
}

.header-box .hd-nav li .item.active{
  opacity: 1;
  visibility: visible;
}

.header-box .hd-nav .item .tit{
  width: 27%;
}
.header-box .hd-nav .item .tit h3{
 white-space: pre-wrap;

}
.header-box .hd-nav .item  .wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-box .hd-nav .item .box-swiper{
  width: 73%;
  position: relative;
  padding: 0 60px;
}

.header-box .hd-nav .item .box-swiper .swiper-slide{
  width: 180px;

}
.header-box .hd-nav .item .box-swiper .swiper-slide img{
  width: 100%;
  height: 120px;
  object-fit: cover;

}

.header-box .hd-nav .item .box-swiper .swiper-slide h4{
  font-size: 16px;
  color: #606060;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 10px;

}
.header-box .hd-nav .item .box-swiper .swiper-slide:hover h4{
  color: #015177;

}


.header-box .hd-nav .item .box-swiper .swiper-button-prev{
  background: url(../images/nav-left-02.png) no-repeat center;
  margin-top: -50px;
  opacity: 1;
}
.header-box .hd-nav .item .box-swiper .swiper-button-next{
  background: url(../images/nav-right-02.png) no-repeat center;
  margin-top: -50px;
  opacity: 1;
}

.header-box .hd-nav .item .box-swiper .swiper-button-prev:hover{
  background: url(../images/nav-left-01.png) no-repeat center;
  
}
.header-box .hd-nav .item .box-swiper .swiper-button-next:hover{
  background: url(../images/nav-right-01.png) no-repeat center;
  
}

.m_search {
  display: none;
}

.m-nav {
  display: none;
}

.banner {
  width: 100%;
  padding-bottom: 47.9%;
  position: relative;
  margin-top: 125px;
}
.banner .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  background-color: #fff;
  border-radius: initial;
  opacity: 1;
  margin: 0 5px;
}
.banner .swiper-pagination-bullet-active {
  background-color: #a0141a;
}

.banner .mobile {
  display: none;
}

.banner .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about {
  padding: 140px 0;
  cursor: pointer;
}

.about .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.about .wrap .txt {
  width: 50%;
}
.about .wrap .txt .slogen {
  margin-top: 50px;
  border-top: 1px solid #ebebeb;
  padding-top: 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 75px;
}
.about .wrap .txt .slogen div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-right: 40px;
}
.about .wrap .txt .slogen div img {
  width: 65px;
  height: 65px;
  object-fit: scale-down;
}
.about .wrap .txt .slogen div h3 {
  font-size: 14px;
  line-height: 1.2;
  color: #767676;
  margin-top: 15px;
}
.about .wrap .item {
  width: 38.21%;
}
.about .wrap .item .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 150%;
}
.about .wrap .item .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.com-more1 {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  padding: 18px 66px 18px 60px;
  border-radius: 60px;
  font-family: Arial, Helvetica, sans-serif;
  background: url(../images/more-bg01.png) no-repeat;
  background-size: 100% 100%;
  transition-duration: .3s;
}
.com-more1:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px #999;
  color: #fff;
}

.com-tit1 h3 {
  font-size: 36px;
  line-height: 40px;
  color: #010101;
  margin-bottom: 5px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0 10px;
}
.com-tit1 h5 {
  font-size: 30px;
  line-height: 45px;
  color: #010101;
  font-weight: bold;
  padding: 0 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.com-tit1 h3 p {
  font-size: 36px;
  line-height: 40px;
  color: #010101;
  margin-bottom: 5px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0 10px;
  margin-top:0;
}
.com-tit1 h5 p{
  font-size: 30px;
  line-height: 45px;
  color: #010101;
  font-weight: bold;
  padding: 0 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top:0;
}
.com-tit1 h5::after {
  content: '';
  display: block;
  width: 100%;
  height: 12px;
  background-color: #a0141a;
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: -1;
}

.com-tit1 p {
  font-size: 16px;
  line-height: 30px;
  color: #585757;
  margin-top: 50px;
}

.antique {
  background-repeat: no-repeat;
  background-position: center;
  height: 700px;
  position: relative;
  cursor: pointer;
}
.antique .txt {
  width: 770px;
  height: 360px;
  background: url(../images/antique-bg02.png) no-repeat;
  position: absolute;
  left: 50%;
  margin-left: -960px;
  bottom: 0;
  padding-left: 260px;
}
.antique .txt h3 {
  font-family: nuncio, Arial, Helvetica, sans-serif;
  font-size: 100px;
  line-height: 1;
  color: #fff;
  margin-top: 35px;
}
.antique .txt hr {
  border: none;
  width: 42px;
  height: 3px;
  background-color: #fff;
  margin-top: 25px;
  margin-bottom: 30px;
}
.antique .txt h5 {
  font-size: 24px;
  line-height: 1;
  color: #fff;
  margin-bottom: 7px;
}
.antique .txt p {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  margin-bottom: 55px;
}

.com-more2 {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: #000000;
  padding-bottom: 8px;
  font-weight: bold;
  border-bottom: 2px solid #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.marble {
  padding: 140px 0;
  background: url(../images/marble-bg01.jpg) no-repeat;
}
.marble .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
.marble .left {
  width: 36.42%;
}
.marble .left .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 106%;
  margin-bottom: 45px;
}
.marble .left .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.marble .right {
  width: 42.14%;
  margin-right: 100px;
}
.marble .right .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 125%;
}
.marble .right .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.marble .right .txt {
  margin-bottom: 49px;
}
.marble .txt {
  display:block;
  position: relative;
}
.marble .txt h3 {
  font-size: 100px;
  line-height: 1;
  color: #282828;
  font-family: nuncio, Arial, Helvetica, sans-serif;
  padding: 0 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.marble .txt h3::after {
  content: '';
  display: block;
  width: 100%;
  height: 12px;
  background-color: #a0141a;
  position: absolute;
  left: 0;
  bottom: 19px;
  z-index: -1;
}
.marble .txt hr {
  width: 42px;
  height: 3px;
  background-color: #dedede;
  border: none;
  margin-top: 33px;
  margin-bottom: 30px;
}
.marble .txt h5 {
  font-size: 24px;
  line-height: 1;
  color: #505050;
  margin-bottom: 10px;
}
.marble .txt p {
  font-size: 16px;
  line-height: 1;
  color: #6e6e6e;
}
.marble .txt .com-more2 {
  color: #222222;
  border-color: #222222;
  position: absolute;
  right: 0;
  bottom: 0;
}
.marble .txt .com-more2:hover {
  color: #666;
}

.case {
  background: url(../images/case-bg01.jpg) no-repeat center;
  background-size: cover;
  padding: 225px 0 230px;
  cursor: pointer;
}
.case .tit > * {
  color: #fff;
}
.case .tit p {
  margin-bottom: 70px;
  width: 48%;
}

.news {
  padding: 135px 0 140px;
}
.news .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.news .tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.news .tabs a {
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  padding: 16px 48px;
  background-color: #3a3737;
  border-left: 4px solid #a0141a;
  margin-left: 20px;
  transition-duration: .3s;
}
.news .tabs a:hover {
  background-color: #a0141a;
}
.news .swiper-box {
  width: 100%;
  padding: 0 80px;
  margin-top: 50px;
  position: relative;
}
.news .swiper-box .swiper-button-prev {
  width: 40px;
  height: 50px;
  background: url(../images/left-ico01.png) no-repeat center;
}
.news .swiper-box .swiper-button-next {
  width: 40px;
  height: 50px;
  background: url(../images/right-ico01.png) no-repeat center;
}
.news .swiper-box .swiper-slide {
  width: 415px;
  padding: 24px;
  border-bottom: 4px solid transparent;
  transition-duration: .3s;
}
.news .swiper-box .swiper-slide .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 74.72%;
}
.news .swiper-box .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.news .swiper-box .swiper-slide .txt {
  overflow: hidden;
}
.news .swiper-box .swiper-slide .txt h3 {
  font-size: 12px;
  line-height: 1;
  color: #282828;
  margin-top: 35px;
  margin-bottom: 14px;
  font-weight:bold;
}
.news .swiper-box .swiper-slide .txt p {
  font-size: 16px;
  line-height: 30px;
  color: #6e6e6e;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 60px;
  margin-bottom: 35px;
}
.news .swiper-box .swiper-slide:hover {
  background-color: #f2f2f2;
  border-color: #a0141a;
}

.contact {
  background: url(../images/contact-bg01.jpg) no-repeat;
  padding: 100px 0 110px;
  background-size: cover;
}
.contact .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.contact .add {
  font-size: 16px;
  line-height: 30px;
  color: #6e6e6e;
}
.contact .add img {
  margin-right: 12px;
}
.contact .add p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 35px;
}
.contact .add span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  display: inline-flex;
  margin-right: 40px;
}
.contact .form {
  width: 100%;
  margin-top: 80px;
}
.contact .form form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.contact .form form .ind {
  width: 360px;
  border: 1px solid #e3e3e3;
  border-right-color: transparent;
  padding: 20px;
  height: 60px;
  font-size: 14px;
  line-height: 1;
  color: #878787;
}
.contact .form form .ind:nth-child(3) {
  width: 560px;
  border-right-color: #e3e3e3;
}
.contact .form form .ind:hover {
  box-shadow: 0 3px 5px rgba(43, 59, 120, 0.6);
}
.contact .form form .sub {
  width: 119px;
  height: 60px;
  background: url(../images/contact-ico05.png) no-repeat center;
  background-color: #a0141a;
  cursor: pointer;
  transition-duration: .3s;
}
.contact .form form .sub:hover {
  background-color: #3a3737;
}

.footer {
  background-color: #1a1a1a;
}
.footer > .wrap {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
.footer > .wrap .nav {
  width: 68%;
  border-right: 1px solid #636363;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer > .wrap .nav dl {
  width: 135px;
}
.footer > .wrap .nav dl dt a {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 60px;
  font-weight: bold;
  position: relative;
}
.footer > .wrap .nav dl dt a::after {
  content: '';
  display: block;
  width: 100%;
  border-bottom: 2px solid #a0141a;
  position: absolute;
  left: 0;
  bottom: -30px;
}
.footer > .wrap .nav dl dt a:hover {
  color: #999;
}
.footer > .wrap .nav dl dd a {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  color: #b9b9b9;
  margin-bottom: 15px;
}
.footer > .wrap .nav dl dd a:hover {
  color: #fff;
}
.footer > .wrap .item {
  width: 32%;
  padding-left: 200px;
}
.footer > .wrap .item h3 {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  margin-bottom: 25px;
  font-weight: bold;
}
.footer > .wrap .item .tel {
  display: block;
  font-size: 26px;
  line-height: 1;
  color: #a0141a;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}
.footerZD{transition:.4s all;}
.footerZD:hover{color:#a0141a;}
.footer > .wrap .item p {
  font-size: 14px;
  line-height: 1;
  color: #b9b9b9;
  margin-bottom: 70px;
  font-weight: bold;
}
.footer > .wrap .item .link {
  cursor: pointer;
  position: relative;
  border: 1px solid #636363;
  background: url(../images/link-ico01.png) no-repeat right 10px center;
}
.footer > .wrap .item .link h5 {
  font-size: 14px;
  line-height: 1;
  color: #b7b7b7;
  font-weight: bold;
  padding: 17px 20px;
  margin-right: 40px;
  border-right: 1px solid #636363;
}
.footer > .wrap .item .link > div {
  opacity: 0;
  visibility: hidden;
  transition-duration: .3s;
  position: absolute;
  width: 100%;
  bottom: 100%;
  left: 0;
  border: 1px solid #636363;
  background-color: #333;
}
.footer > .wrap .item .link > div a {
  display: block;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 1;
  color: #b7b7b7;
  font-weight: bold;
}
.footer > .wrap .item .link > div a:hover {
  color: #fff;
}
.footer > .wrap .item .link:hover div {
  opacity: 1;
  visibility: visible;
}
.footer .copy {
  padding: 35px 0;
  background-color: #212121;
  font-size: 14px;
  line-height: 1.2;
  color: #a9aaa9;
}
.footer .copy .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.formError {
  max-width: 280px;
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 10001;
  background-color: #f6f6f6;
  padding: 15px 30px;
  border-radius: 5px;
  opacity: 0;
  transition: .4s all;
  box-shadow: 0 5px 10px rgba(67, 65, 68, 0.9);
}

.formError.active {
  opacity: 1;
}

.formError h6 {
  font-size: 16px;
  color: #434144;
}

.online {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.online .main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 850px;
  width: 96%;
  padding: 30px;
  background-color: #fff;
}

.online .main .tit {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.online .main .tit h3 {
  text-align: center;
  font-size: 24px;
  color: #434144;
  font-weight: bold;
}

.online .main .tit span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  margin-top: 5px;
  text-align: center;
  font-family: "Arial";
  color: #787878;
  font-weight: bold;
}

.online .main .tit span b {
  color: #436eb2;
}

.online .main .tit span:before {
  content: '';
  opacity: 1;
  display: block;
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
  width: 65px;
  height: 1px;
  background-color: #434144;
}

.online .main .tit span:after {
  content: '';
  opacity: 1;
  display: block;
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  width: 65px;
  height: 1px;
  background-color: #434144;
}

.online .main form {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  align-items: unset;
}

.online .main form figure {
  display: block;
  width: 45%;
  position: relative;
  padding: 20% 0;
}

.online .main form figure img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.online .main form ul {
  width: 52%;
}

.online .main form ul li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  height: 40px;
}

.online .main form ul li + li {
  margin-top: 15px;
}

.online .main form ul li .ind {
  width: 48%;
  height: 100%;
  border: 1px solid #bebebe;
  padding: 0 10px;
  background-color: transparent;
  color: #979797;
  font-size: 14px;
  transition: .2s all;
}

.online .main form ul li .ind.active {
  box-shadow: 0 5px 10px rgba(43, 59, 120, 0.6);
}

.online .main form ul li .ind:hover {
  box-shadow: 0 5px 10px rgba(43, 59, 120, 0.6);
}

.online .main form ul li .ind::-webkit-input-placeholder {
  color: #979797;
  font-size: 14px;
}

.online .main form ul li select {
  background: url(../images/ico-002.png) #fff 95% center no-repeat;
}

.online .main form ul li.phone input {
  width: 100%;
}

.online .main form ul li.textarea {
  height: 180px;
}

.online .main form ul li.textarea textarea {
  width: 100%;
  padding: 10px;
}

.online .main form ul li button {
  width: 100%;
  height: 100%;
  line-height: 40px;
  text-align: center;
  background-color: #a0141a;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: .4s all;
  border: 1px solid transparent;
}

.online .main form ul li button:hover {
  background-color: transparent;
  border-color: #999;
  border-radius: 5px;
  color: #666;
}

.online .close {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/close.png) no-repeat center center #a0141a;
  background-size: 60%;
  cursor: pointer;
}

.slide-nav {
  position: fixed;
  right: 20px;
  top: 30%;
  z-index: 98;
}

.slide-nav .item {
  margin: 10px 0;
  width: 68px;
  height: 68px;
  border: 1px solid #bebebe;
  background-color: #fff;
  position: relative;
  transition: .4s all;
}

.slide-nav .item:hover {
  background-color: #a0141a;
}

.slide-nav .item:hover .icon {
  background-position: center bottom;
}

.slide-nav .item:hover h4 {
  color: #fff;
}

.slide-nav .goTop {
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.slide-nav .goTop.active {
  opacity: 1;
  visibility: visible;
}

.slide-nav .icon {
  margin: 6px auto 3px;
  display: block;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 35px auto;
}

.slide-nav h4 {
  font-size: 12px;
  color: #4e4e4e;
  font-weight: 400;
  text-align: center;
}

.slide-nav .mask {
  margin-top: -1px;
  position: absolute;
  right: 100%;
  top: 0;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  opacity: 0;
  white-space: nowrap;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.slide-nav .tel {
  padding: 0 30px;
  height: 68px;
  line-height: 68px;
  font-size: 14px;
  color: #4e4e4e;
  border: 1px solid #999;
  border-right: none;
  background-color: #fff;
}

.slide-nav .qr {
  margin-right: 2px;
  width: 140px;
  height: 140px;
  border: 1px solid #f2f2f2;
  overflow: hidden;
}

.slide-nav .qr img {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-nav .item:hover {
  border-color: #215644;
}

.slide-nav .item:hover .mask {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
}

.m_search {
  width: 100%;
  background-color: #434144;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 101;
  overflow-y: scroll !important;
  display: none;
}

.m_search figure {
  width: 100%;
  height: 100%;
}

.m_search .title,
.m_search figure {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.m_search .title {
  margin: 0 auto;
}

.m_search .title img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.m_search .title h3 {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
  line-height: 36px;
}

.m_search .main {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.m_search .main {
  width: 100%;
  padding: 6% 15% 0;
}

.m_search .search_close {
  margin: 6% auto 0;
  cursor: pointer;
}

.m_search .search_close span {
  margin: 0 auto;
  width: 50px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
}

.m_search .search_close span,
.m_search .search_close span::before {
  display: block;
  height: 5px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background-color: #fff;
}

.m_search .main .m_header_submit {
  width: 100%;
  margin-top: 30px;
  padding: 15px 0;
  background-color: #fff;
  color: #434144;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
}

.m_search .search_close h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-top: 30%;
}

.m_search .search_close span::before {
  content: "";
  opacity: 1;
  width: 100%;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.m_search .main input {
  border: none;
  outline: 0;
  -webkit-appearance: none;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f8f8f8;
  font-size: 24px;
  color: #cfcfcf;
  background-color: transparent;
}

.menu-btn {
  display: none;
}

.search_btn {
  display: none;
}

.product_view {
  padding: 70px;
}
.product_view ul {
  margin-bottom: -60px;
}
.product_view ul li {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 235px 0;
  position: relative;
  margin-bottom: 60px;
}
.product_view ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.product_view ul li .wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.product_view ul li h3 {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}
.product_view ul li h5 {
  font-size: 30px;
  line-height: 1;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 35px;
}
.product_view ul li h6 {
  font-size: 18px;
  line-height: 35px;
  color: #ffffff;
  font-weight: bold;
  padding: 0 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.product_view ul li h6::after {
  content: '';
  display: block;
  width: 100%;
  height: 12px;
  background-color: #a0141a;
  position: absolute;
  left: 0;
  bottom: 1px;
  z-index: -1;
}
.product_view ul li p {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 75px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 25px;
  text-align: center;
}
.product_view ul li .links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: -20px;
}
.product_view ul li .links a {
  font-size: 16px;
  line-height: 1;
  color: #585757;
  padding: 10px 20px;
  background-color: #fff;
  transition-duration: .3s;
  margin: 0 15px;
  border-radius: 40px;
  margin-bottom: 20px;

}
.product_view ul li .links a:hover {
  background-color: #a0141a;
  color: #fff;
}

.crumbs {
  background-color: #fff;
  border-bottom: 1px solid #dadada;
}

.crumbs nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
}

.crumbs nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  height: 70px;
}

.crumbs nav ul li {
  font-size: 14px;
  line-height: 1;
  color: #333333;
  font-weight: bold;
}

.crumbs nav ul li a {
  font-size: 14px;
  color: #565656;
  transition: .4s all;
  font-weight: bold;
}

.crumbs nav ul li a:hover {
  color: #333333;
}

.crumbs li:nth-of-type(n+3) {
  padding-left: 22px;
  position: relative;
  margin-left: 0;
}

.crumbs li:nth-of-type(n+3)::before {
  content: '';
  opacity: 1;
  display: block;
  position: absolute;
  top: 52%;
  left: 8px;
  transform: translateY(-50%);
  width: 8px;
  height: 7px;
  background: url("../images/jt.png") no-repeat;
  background-size: contain;
}

.crumbs .tit {
  display: flex;
  flex-wrap: wrap;
  margin-left: -40px;
}

.crumbs .tit a {
  width: auto;
  height: 70px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #828282;
  margin-left: 40px;
  position: relative;
  z-index: 1;
  
}



.crumbs .tit a::after {
  content: '';
  display: block;
  width: calc(100% + 18px);
  height: 30px;
  background-color: #a0141a;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition-duration: .3s;
  z-index: -1;
  border-radius: 5px;
}

.crumbs .tit a.on,
.crumbs .tit a:hover {
  color: #fff;
}
.crumbs .tit a.on::after,
.crumbs .tit a:hover::after {
  opacity: 1;
  visibility: visible;
}

.product-list_view {
  padding-top: 70px;
}
.product-list_view .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-left: -1.7%;
  margin-bottom: -30px;
}
.product-list_view .list .active .code {
  opacity: 1;
  visibility: visible;
}
.product-list_view .list li {
  width: 23.5%;
  margin-left: 1.5%;
  margin-bottom: 30px;
}
.product-list_view .list li .pic {
  width: 100%;
  position: relative;
  padding: 5% 0;
  align-items: center;
  display: flex;
}
.product-list_view .list li .pic > img {
  width: 100%;
  height: auto;
  display: inline-block;
  position: ;
  object-fit: cover;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition-duration: .5s;
}



.product-list_view .list li .pic .code {
  
  width: 0;
  height: 0;
  display: inline-block;
  position: absolute;
  object-fit: cover;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition-duration: .3s;
  z-index: 9;
  
}
.product-list_view .list li .pic .code img{
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  object-fit: cover;
  left: 0;
  top: 0;
}
.product-list_view .list li.active .pic .code{

  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;

}



.product-list_view .list li .pic .img1 {
  opacity: 1;
  visibility: visible;
}
.product-list_view .list li .pic:hover .img2 {
  opacity: 1;
  visibility: visible;
}
.product-list_view .list li .txt {
  padding-right: 30px;
  position: relative;
}
.product-list_view .list li .txt h3 {
  font-size: 16px;
  line-height: 1.2;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list_view .list li .txt h5 {
  font-size: 16px;
  line-height: 1.2;
  color: #828282;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list_view .list li .txt .code_btn {
  width: 30px;
  height: 30px;
  background: url(../images/code-btn.png) no-repeat center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.product-list_view .list li .txt .code_btn:hover {
  box-shadow: 0 2px 3px #999;
}

.m-pages {
  text-align: center;
  font-size: 14px;
  padding-top: 60px;
  padding-bottom: 80px;
  /* background-color: #192028; */
}

.m-pages ul {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  margin-right: 25px;
}

.m-pages li {
  float: left;
  margin: 0 3px;
}

.m-pages li a {
  display: block;
  width: 37px;
  text-align: center;
  color: #fff;
  /* background-color: #ccc; */
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 3px;
  height: 35px;
  line-height: 33px;
  transition: .4s all;
  font-size: 16px;
  background-color: #cccccc;
}

.m-pages select {
  width: 55px;
  height: 36px;
  line-height: 33px;
  color: #000;
  color: #3f3837;
  padding-left: 10px;
  background: url(../images/qwy-i4.png) #fff center right 10px no-repeat;
  /* background-size: auto;
  background-size: 8px; */
  font-size: 16px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #c8c8c8;
  vertical-align: bottom;
}

.m-pages select option {
  width: 100%;
  height: 36px;
  font-size: 14px;
}

.m-pages li.active a,
.m-pages li a:hover {
  background-color: #a0141a;
  /* color: #fff; */
}

.m-pages li {
  font-size: 16px;
  color: #3f3837;
  letter-spacing: 2px;
  line-height: 34px;
  font-family: SourceHanSerifCN;
}

/* .m-pages li:last-child {
  margin-left: 15px;
} */

.navbar {
  /* background-color: #192028; */
  padding-top: 60px;
  padding-bottom: 60px;
}

.navbar div {
  border: 1px solid #e2e2e2;
  width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  padding: 0 0 0 15px;
  background-color: #fff;
}

.navbar div p {
  font-size: 16px;
  line-height: 60px;
  color: #626262;
  padding-left: 30px;
  position: relative;
}

  /* .navbar ul {
	border-top: 1px solid #e2e2e2;
	width: 1400px;
	padding: 0 30px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #fff;
	justify-content: flex-start;
  }
  
  .navbar ul li {
	position: relative;
	transition: .4s all;
  } */
.navbar div p::before {
  content: '';
  opacity: 1;
  display: block;
  width: 14px;
  height: 14px;
  background: url("../images/all.png") no-repeat;
  background-size: auto;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.navbar div p::before {
  content: '';
  opacity: 1;
  display: block;
  width: 18px;
  height: 18px;
  background: url("../images/all.png") no-repeat;
  background-size: auto;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.navbar div ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.navbar div ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.navbar div ol li {
  position: relative;
  transition: .4s all;
  border-radius: 15px;
}

.navbar div ol li {
  position: relative;
  transition: .4s all;
  border-radius: 15px;
}

.navbar div ol li.active {
  background-color: #ddae60;
}

.navbar div ol li a {
  display: block;
  font-size: 16px;
  color: #131313;
  transition: .4s all;
  /* padding: 6px 15px; */
  height: 60px;
  line-height: 60px;
  padding: 0 18px;
  min-width: 85px;
  text-align: center;
}

.navbar .js-more {
  display: none;
}

.navbar > div {
  padding: 0 20px;
  width: 100%;
  display: block;
  position: relative;
}

.navbar div .js-more {
  display: block;
  /* font-size: 14px;
  line-height: 30px; */
  position: relative;
  line-height: 44px;
  font-size: 16px;
  color: #626262;
  cursor: pointer;
  text-align: center;
}

.navbar div p {
  display: none;
  /* font-size: 14px;
  line-height: 30px; */
}

.navbar {
  padding: 15px;
  /* margin-top: 20px; */
}

.navbar .js-more::before {
  content: '';
  display: block;
  width: 11px;
  height: 7px;
  background: url(../images/qwy-i3.png) center no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3px;
  transition: all .3s;
}

.navbar > div::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e2e2e2;
  position: absolute;
  top: 45px;
  right: 0;
}

.navbar div ol {
  display: none;
  padding: 8px 0;
}

.navbar .js-more.active::before {
  transform: rotate(180deg);
}

.navbar div ol li a {
  text-align: center;
  font-size: 14px;
  padding: 6px 15px;
  height: auto;
  line-height: 1.2;
  color: #666;
}

.navbar > div {
  padding: 0 20px;
}

.navbar div ol li.on a, .navbar div ol li a:hover {
  /* color: #2b3b78; */
}

.navbar {
  display: none;
}

.product-info_view {
  background-color: #f6f6f6;
  padding: 70px 0 55px;
}

.product-info_view .above {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 70px;
}

.product-info_view .above .img-box {
  width: 54.3%;
  display: flex;
  height: 650px;
}

.product-info_view .above .img-box .img-swiper {
  border: 1px solid #999;
  width: 645px;
  height: 100%;
}

.product-info_view .above .img-box .img-swiper .swiper-slide {
  height: 100%;
}

.product-info_view .above .img-box .img-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info_view .above .img-box img {
  user-select: none;
}

.product-info_view .above .img-box .img-tabs {
  width: 110px;
  height: 100%;
  padding: 35px 20px;
  position: relative;
  overflow: hidden;
}
.product-info_view .above .img-box .img-tabs .swiper-container{
  width: 100%;
  height: 100%;
}
.product-info_view .above .img-box .img-tabs .swiper-slide {
  width: 70px;
  height: 70px;
}

.product-info_view .above .img-box .img-tabs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info_view .above .img-box .img-tabs .swiper-button-prev {
  width: 100%;
  height: 25px;
  opacity: .5;
  left: 0;
  top: 0;
  margin-top: 0;
  background: url(../images/product-ico03.png) no-repeat center;
}

.product-info_view .above .img-box .img-tabs .swiper-button-prev:hover {
  background-image: url(../images/product-ico01.png);
  opacity: 1;
}

.product-info_view .above .img-box .img-tabs .swiper-button-next {
  width: 100%;
  height: 25px;
  opacity: .5;
  right: 0;
  top: initial;
  bottom: 0;
  margin-top: 0;
  background: url(../images/product-ico04.png) no-repeat center;
}

.product-info_view .above .img-box .img-tabs .swiper-button-next:hover {
  background-image: url(../images/product-ico02.png);
  opacity: 1;
}

.product-info_view .above .txt {
  width: 45.7%;
  padding: 60px 60px 0;
  background-color: #fff;
  position: relative;
}

.product-info_view .above .txt h1 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #000000;
}

.product-info_view .above .txt > p {
  font-size: 16px;
  line-height: 35px;
  height: 310px;
  margin-bottom: 30px;
  color: #828282;
  overflow: hidden;
  text-overflow: ellipsis;
  
}

.product-info_view .above .txt .tel {
  display: none;
  padding-left: 30px;
  font-size: 16px;
  line-height: 30px;
  height: 30px;
  color: #3c3c3c;
  font-weight: bold;
  margin-bottom: 35px;
  background: url(../images/pro-ico001.png) no-repeat left center;
}

.product-info_view .above .txt .box-share {
  padding-top: 25px;
  margin-bottom: 30px;
  border-top: 1px solid #d8d8d8;
}

.product-info_view .above .txt .box-share .social-share {
  display: inline-block;
}

.product-info_view .above .txt .box-share span {
  font-size: 14px;
  color: #717171;
}

.product-info_view .above .txt .link a {
  width: 132px;
  height: 42px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  color: #6d6d6d;
  margin-right: 12px;
}

.product-info_view .above .txt .link a:hover {
  background-color: #a0141a;
  color: #fff;
}
.product-info_view .effect{
  background-color: #fff;
  padding-top: 68px;
}
.product-info_view .effect .tit {
  text-align: center;
  /* margin-top: 115px; */
  margin-bottom: 60px;
}
/* .product-info_view .effect .con img {
  width: 100%;
} */

.product-info_view .effect .content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 660px;
padding-bottom: 40px;
}
.product-info_view .effect .content .img-swiper{
 width: 83%;
  height: 100%;
  margin: 0;
}
.product-info_view .effect .content .img-swiper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
 }
 .product-info_view .effect .content .img-tabs{
  width: 15.7%;
   height: 100%;
 }
.product-info_view .effect  .txt{
  
  white-space: pre-wrap;
  padding-bottom: 60px;
  font-size: 16px;
  line-height: 1.7;
  color: #626262;
 }
 .product-info_view .effect .content .img-tabs .swiper-slide{
   width: 100%;
   height: 158px;
   border: 1px solid #cccccc;
 }
 .product-info_view .effect .content .img-tabs .swiper-slide-active{
  
  border: 3px solid #a0141a;
}
 .product-info_view .effect .content .img-tabs .swiper-container{
   width: 100%;
   height: 100%;
 }
 .product-info_view .effect .content .img-tabs img{
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 .product-info_view .effect .content .img-swiper .swiper-button-prev{
  width: 30px;
  height: 25px;
  background: url(../images/process-ico03.png) no-repeat center;
  background-size: contain;
  left: 30px;
 }

 .product-info_view .effect .content .img-swiper .swiper-button-next{
  width: 30px;
  height: 25px;
  background: url(../images/process-ico04.png) no-repeat center;
  background-size: contain;
  right: 30px;
 }
 .product-info_view .other .content-swiper {
  padding-top: 85px;
  width: 100%;
}
.product-info_view .other .content-swiper .box-button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.product-info_view .other .content-swiper .box-button div {
  display: inline-block;
  position: initial;
}
.product-info_view .other.content-swiper .box-button .swiper-pagination {
  margin: 0 45px;
  height: 45px;
  line-height: 45px;
}
.product-info_view .other .content-swiper .box-button .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #215644;
  border-radius: 100%;
  margin: 0 5px;
}
.product-info_view .other .content-swiper .box-button .swiper-button-prev {
  width: 80px;
  height: 45px;
  background: url(../images/honor-ico-01.png) no-repeat center;
  margin-top: 0;
}
.product-info_view .other .content-swiper .box-button .swiper-button-next {
  width: 80px;
  height: 45px;
  background: url(../images/honor-ico-02.png) no-repeat center;
  margin-top: 0;
}
.product-info_view .other .content-swiper .swiper-slide {
  width: 328px;
}
.product-info_view .other .content-swiper .swiper-slide .pic {
  display: flex;
      align-items: center;
  width: 100%;
  position: relative;
      padding: 50% 0;
  background-color: #f7f7f7;
  border: 1px solid #d6d6d6;
  overflow: hidden;
}
.product-info_view .other .content-swiper .swiper-slide .pic img {
  width: 100%;
  height:auto;
  display: block;
  position: absolute;
  left: 0;
  object-fit: cover;
  transition-duration: .3s;
}
.product-info_view .other .content-swiper .swiper-slide .pic:hover img {
  transform: scale(1.2);
}


.product-info_view .other .content-swiper .swiper-slide h4 {
  font-size: 16px;
  color: #666666;
  line-height: 1.2;
  text-align: center;
  padding: 25px 0;
}
.product-info_view .other .content-swiper .swiper-slide h4:hover {
 color: #333;
}
.product-info_view .other .tit{
  text-align: center;
  padding-top: 65px;
  padding-bottom: 20px;
}
.product-info_view .above .txt .vr {
  position: absolute;
  right: 60px;
  bottom: 70px;

}
.product-info_view .above .txt .vr .code{
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  opacity: 0;
  visibility: hidden;
  transition-duration: .3s;
}
.product-info_view .above .txt .vr .code table{
  width: 100% !important;
  height: 100% !important;
  
}
.product-info_view .above .txt .vr:hover .code{

  opacity: 1;
  visibility: visible;

}


.news_view {
  background-color: #f6f6f6;
  padding-top: 70px;
  padding-bottom: 20px;
}
.news_view .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-right: -1.8%;
  margin-bottom: -30px;
}
.news_view .list li {
  width: 31.5%;
  margin-right: 1.8%;
  margin-bottom: 30px;
  transition-duration: .3s;
}
.news_view .list li:hover {
  transform: translateY(-5px);
  box-shadow: 0px 2px 5px #d9d9d9;
}
.news_view .list li:hover h3 {
  padding-left: 10px;
  padding-right: 10px;
}
.news_view .list li:hover h3::after {
  opacity: 1;
  visibility: visible;
}
.news_view .list li a {
  display: block;
  padding: 35px 30px;
  background-color: #fff;
}
.news_view .list li a h3 {
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  z-index: 1;
  padding-bottom: 3px;
  transition-duration: .3s;
  max-width: 100%;
}
.news_view .list li a h3::after {
  content: '';
  display: block;
  width: 100%;
  height: 35px;
  background-color: #a0141a;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition-duration: .3s;
}
.news_view .list li a p {
  font-size: 14px;
  line-height: 25px;
  color: #828282;
  height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 25px;
  margin-top: 15px;
}
.news_view .list li a h5 {
  font-size: 14px;
  line-height: 25px;
  color: #828282;
}
.news_view .list li a .pic {
  display: block;
  width: 100%;
  position: relative;
  margin-top: 32px;
}
.news_view .list li a .pic img {
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  object-fit: cover;
}

.col-l {
  width: 76.08%;
}

.col-r {
  width: 21.78%;
}

.news-info_view {
  padding: 80px 0;
  background-color: #f6f6f6;
}

.news-info_view .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}

.news-info_view .box-blank {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
}

.sidebar_news {
  padding: 20px;
  background-color: #fff;
}
.sidebar_news li {
  border-bottom: 1px solid #dbdbdb;
}
.sidebar_news h3 {
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition-duration: .3s;
  margin-top: 20px;
}
.sidebar_news h3:hover {
  color: #a0141a;
}
.sidebar_news .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 70%;
  margin-top: 15px;
  overflow: hidden;
}
.sidebar_news .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  transition-duration: .3s;
}
.sidebar_news .pic img:hover {
  transform: scale(1.2);
}
.sidebar_news p {
  font-size: 14px;
  line-height: 25px;
  color: #828282;
  height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 23px;
  margin-top: 15px;
}
.sidebar_news p:hover {
  color: #a0141a;
}

.m-contxt1 {
  padding: 25px;
  background-color: #fff;
}

.m-contxt1 .tit {
  font-size: 26px;
  color: #292929;
  /* margin-bottom: 13px; */
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px;
}

.m-contxt1 .box-info {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d6d6d6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
}

.m-contxt1 .box-info .info span {
  font-size: 16px;
  color: #a7a7a7;
  margin-right: 10px;
  display: inline-block;
}

.m-contxt1 .item {
  padding-bottom: 30px;
  border-bottom: 1px solid #d6d6d6;
  /*
   
   margin-bottom: 35px; */
  /* text-indent: 2em; */
  margin-bottom: 30px;
}

.m-contxt1 .share-box {
  font-size: 16px;
  color: #a7a7a7;
}
.m-contxt1 .social-share {
  display: inline-block;
}

.page-t1 a {
  display: block;
  font-size: 16px;
  color: #aaaaaa;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-t1 a:hover {
  color: #a0141a;
}

.page-t1 a.prev {
  margin-bottom: 5px;
}

.page-t1 a:hvoer {
  color: #333;
}

.page-t1 {
  padding-right: 130px;
  position: relative;
}

.page-t1 .blank {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  padding: 10px 25px;
  background-color: #b8b8b8;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: 0;
  letter-spacing: 2px;
  transition: all .3s;
}

.page-t1 .blank:hover {
  background-color: #FF5200;
}

.box-blank .con {
  background: #3d3d3d;
  display: inline-block;
  width: 215px;
}

.box-blank .box1 {
  width: 65px;
  height: 40px;
  background: #a0141a url(../images/t3-img6.png) no-repeat center center;
  float: left;
  transition:.4s all;
}

.box-blank .blank {
  overflow: hidden;
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.box-blank .con:hover .box1{
  background-color: #a0141a;
}

.box-blank {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #d6d6d6;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
}
.box-blank div a {
  display: block;
  font-size: 16px;
  color: #787878;
  transition: .4s all;
}
.box-blank div a + a {
  margin-top: 15px;
}


.cases_view {
  padding-top: 70px;
}
.cases_view .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-right: -1.8%;
}
.cases_view .list li {
  width: 31.5%;
  margin-right: 1.8%;
  transition-duration: .3s;
}
.cases_view .list li .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 74.15%;
}
.cases_view .list li .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.cases_view .list li h3 {
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  margin-top: 20px;
  margin-bottom: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition-duration: .3s;
  position: relative;
  padding-bottom: 3px;
  display: inline-block;
  max-width: 100%;
}
.cases_view .list li h3::after {
  content: '';
  display: block;
  width: 100%;
  height: 12px;
  background-color: #a0141a;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition-duration: .3s;
}
.cases_view .list li:hover h3 {
  padding-left: 10px;
  padding-right: 10px;
}
.cases_view .list li:hover h3::after {
  opacity: 1;
  visibility: visible;
}

.login_view {
  padding: 240px 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.login_view .wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.login_view .tit {
  text-align: center;
}
.login_view .tit span {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  margin-top: 50px;
  margin-bottom: 25px;
}
.login_view form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.login_view form input {
  width: 390px;
  height: 40px;
  border: 1px solid #c4c4c4;
  border-radius: 40px;
  font-size: 16px;
  color: #666;
  padding: 0 20px;
  margin-bottom: 20px;
}
.login_view form .sub {
  width: 390px;
  height: 40px;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  line-height: 38px;
  color: #fff;
  background: url(../images/login-btn.png) no-repeat center;
  background-size: cover;
  transition-duration: .3s;
}
.login_view form .sub:hover {
  box-shadow: 0 2px 5px #999;
  transform: translateY(-3px);
}

.login-page .footer > .wrap {
  display: none;
}
.login-page .footer .copy {
  padding: 25px 0;
  background-color: #fff;
  color: #585757;
}

.com-banner1 {
  position: relative;
  padding-bottom: 37.2%;
  /* margin-top: 76px; */
}

.com-banner1 .box {
  position: absolute;
  top: 0;
  left: 0;
  right: 12%;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
}

.com-banner1 img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.com-banner1 .tit {
  text-align: right;
}
.com-banner1 .tit h3 {
  color: #fff;
}
.com-banner1 .tit h5 {
  color: #fff;
}

.about_view .about .img {
  width: 100%;
  margin-top: 135px;
}
.about_view .about .wrap .txt .slogen {
  margin-bottom: 0;
}
.about_view .general {
  background: url(../images/general-bg01.jpg) no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.about_view .general::before {
  content: '';
  display: block;
  width: 770px;
  height: 360px;
  background: url(../images/antique-bg02.png) no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about_view .general .txt {
  padding-top: 315px;
  padding-bottom: 85px;
  width: 433px;
  position: relative;
}
.about_view .general .txt h3 {
  font-size: 36px;
  line-height: 1.1;
  color: #fff;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
.about_view .general .txt h5 {
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
  font-weight: bold;
  margin-bottom: 45px;
}
.about_view .general .txt p {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}


.about_view .live .tit {
  text-align: center;
}
.about_view .live-swiper{
  margin-top: 30px;
}
.about_view .live-swiper .swiper-slide{
  width: 1200px;
}
.about_view .live-swiper figure {
  width: 100%;
padding-bottom: 53.75%;
position: relative;
}
.about_view .live-swiper .swiper-button-prev{
  width: 39px;
  height: 39px;
  background:url(../images/live-ico01.png) no-repeat;
  background-size: cover;
  left: 14%;
}
.about_view .live-swiper .swiper-button-next{
  width: 39px;
  height: 39px;
  background:url(../images/live-ico02.png) no-repeat;
  background-size: cover;
  right: 14%;
}


.about_view .live-swiper figure img{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.about_view .brand {
  padding: 130px 0;
}




.about_view .brand .tit {
  text-align: center;
}
.about_view .brand .con {
  margin-top: 50px;


  display: flex;
  flex-wrap: wrap;

}
.about_view .brand .con .img{
  width: 46.5%;
}
.about_view .brand .con .txt{
  width: 53.5%;
  padding: 20px 40px 20px 0;
}
.about_view .brand .con .txt p {
  font-size: 16px;
  line-height: 30px;
  color: #585757;
  /* text-align: center; */
  margin-bottom: 20px;
}

.about_view .course {
  background: url(../images/course-bg01.jpg) repeat left top;
  /* padding-top: 100px; */
  display: flex;
  flex-wrap: wrap;
  height: 800px;
}

.about_view .course .poster{
  width: 50%;
 height: 100%;
}
.about_view .course .poster-swiper{
  width: 100%;
 height: 100%;
}
.about_view .course .poster img{
  width: 100%;
 height: 100%;
 object-fit: cover;
}
.about_view .course .con{
  width: 50%;
 height: 100%;
 padding: 95px 13.54% 70px 70px;
}






.about_view .course .tabs-box {
  /* margin-top: 40px; */
  position: relative;
  margin-top: 60px;
}

.about_view .course .course-tabs {
  margin: 0 64px;
}

.about_view .course .course-tabs::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ebebeb;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.about_view .course .course-tabs .swiper-slide {
  width: 150px;
  height: 100px;
  padding-top: 10px;
  color: #333333;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.about_view .course .course-tabs .swiper-slide::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background-color: #999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.about_view .course .course-tabs .swiper-slide-active {
  color: #a0141a;
}

.about_view .course .course-tabs .swiper-slide-active::after {
  background-color: #a0141a;
}

.about_view .course .tabs-box .swiper-button-prev {
  width: 32px;
  height: 32px;
  background: url(../images/left-ico002.png) no-repeat center;
  opacity: 1;
  margin-top: -17px;
}

.about_view .course .tabs-box .swiper-button-next {
  width: 32px;
  height: 32px;
  background: url(../images/right-ico002.png) no-repeat center;
  opacity: 1;
  margin-top: -17px;
}

.about_view .course .tabs-box .swiper-button-prev:hover {
  background: url(../images/left-ico003.png) no-repeat center;
}

.about_view .course .tabs-box .swiper-button-next:hover {
  background: url(../images/right-ico003.png) no-repeat center;
}

.about_view .bg-box {
  padding: 60px 100px;
  background-color: #fff;
  margin-top: 75px;
  margin-bottom: 100px;
}

.about_view .course-swiper {
  margin-top: 90px;
}

.about_view .course-swiper .swiper-slide {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* background-color: #f8f8f8; */
}

/* .about_view .course-swiper .swiper-slide .img {
  width: 50%;
} */

.about_view .course-swiper .swiper-slide .txt {
  /* width: 50%; */
  
}

.about_view .course-swiper .swiper-slide figure {
  width: 100%;
  padding: 25% 0;
  position: relative;
}

.about_view .course-swiper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.about_view .course-swiper .swiper-slide .txt h3 {
  color: #010101;
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
}

.about_view .course-swiper .swiper-slide .txt p {
  color: #979797;
  font-size: 16px;
  line-height: 30px;
  margin: 25px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  /* height: 150px; */
  -webkit-box-orient: vertical;
  white-space: pre-wrap;
}

.about_view .course .wrap {
  overflow: hidden;
}

/* .about_view .course .tit {
  text-align: center;
} */

.about_view .honor {
  padding: 100px 0 80px;
}

.about_view .honor .wrap {
  justify-content: center;
}

.about_view .honor .txt {
  width: 100%;
  text-align: center;
}

.about_view .honor .txt hr {
  width: 60px;
  height: 3px;
  border: none;
  background-color: #215644;
  margin: 0 auto;
  margin-bottom: 50px;
}

.about_view .honor .content-swiper {
  padding-top: 100px;
  width: 100%;
}

.about_view .honor .content-swiper .box-button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top:25px;
}

.about_view .honor .content-swiper .box-button div {
  display: inline-block;
  position: initial;
}

.about_view .honor .content-swiper .box-button .swiper-pagination {
  margin: 0 45px;
  height: 45px;
  line-height: 45px;
}

.about_view .honor .content-swiper .box-button .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #a0141a;
  border-radius: 100%;
  margin: 0 5px;
}

.about_view .honor .content-swiper .box-button .swiper-button-prev {
  width: 80px;
  height: 45px;
  background: url(../images/honor-ico-01.png) no-repeat center;
  margin-top: 0;
}

.about_view .honor .content-swiper .box-button .swiper-button-next {
  width: 80px;
  height: 45px;
  background: url(../images/honor-ico-02.png) no-repeat center;
  margin-top: 0;
}

.about_view .honor .content-swiper .swiper-slide {
  width: 328px;
}

.about_view .honor .content-swiper .swiper-slide .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 74.92%;
  background-color: #f7f7f7;
  border: 1px solid #d6d6d6;
}

.about_view .honor .content-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain;
  padding: 18px 0;
}

.about_view .honor .content-swiper .swiper-slide h4 {
  font-size: 16px;
  color: #666666;
  line-height: 1.2;
  text-align: center;
  padding: 15px 0;
}

.about_view .videos {
  background: url(../images/video-bg002.jpg) no-repeat top center;
  padding-top: 100px;
}
.about_view .videos .tit {
  text-align: center;
}
.about_view .videos .tit h3 {
  color: #fff;
}
.about_view .videos .tit h5 {
  color: #fff;
}
.about_view .videos .con {
  margin: 0 100px;
  padding: 30px;
  background-color: #fff;
  margin-bottom: 110px;
  margin-top: 60px;
}
.about_view .videos .con .video-box {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 52.6%;
}
.about_view .videos .con .video-box video {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.about_view .videos .con .video-box img {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.about_view .videos .con .list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.about_view .videos .con .list li {
  width: 32%;
}
.about_view .videos .con .list li:nth-of-type(n+4){margin-top:15px;}
.about_view .videos .con .list li .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 52%;
}
.about_view .videos .con .list li .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.about_view .videos .con .list li .pic h3 {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition-duration: .3s;
}
.about_view .videos .con .list li:hover h3 {
  opacity: 1;
  visibility: visible;
}

.serve_view .advantage {
  background: url(../images/join-bg001.jpg) no-repeat;
  background-size: cover;
  padding: 120px 0;
  margin-bottom: 20px;
}
.serve_view .advantage .tit  {
  text-align: center;
}
.serve_view .advantage .tit h3 {
  color: #fff;
}
.serve_view .advantage .tit h5 {
  color: #fff;
}
.serve_view .advantage .con {
  margin-top: 55px;
  margin-bottom: -35px;
}
.serve_view .advantage .con h4 {
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
}
.serve_view .advantage .con p {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 35px;
}
.serve_view .join {
  padding-left: 50%;
  padding-top: 110px;
  padding-bottom: 110px;
  margin: 20px 0;
  background: url(../images/join-001.jpg) no-repeat left center;
  background-size: 50% auto;
}
.serve_view .join .box {
  padding-right: 18.5%;
  padding-left: 60px;
  margin-bottom: -58px;
}
.serve_view .join .box .list {
  margin-top: 55px;
}
.serve_view .join .box .list li {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 58px;
}
.serve_view .join .box .list li h3 {
  font-size: 16px;
  line-height: 1.2;
  color: #000000;
  font-weight: bold;
}
.serve_view .join .box .list li p {
  font-size: 16px;
  line-height: 30px;
  color: #585757;
  margin-bottom: 50px;
}
.serve_view .process {
  padding-top: 120px;
  background: url(../images/case-bg01.jpg) no-repeat center;
  /* border-bottom: 7px solid #d9d9d9; */
  background-size: cover;
  position: relative;
  margin-bottom: 20px;
}
.serve_view .process::after {
  content: '';
  display: block;
  border-bottom: 1px solid #a79996;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 130px;
}
.serve_view .process .tit {
  text-align: center;
}
.serve_view .process .tit h3 {
  color: #fff;
}
.serve_view .process .tit h5 {
  color: #fff;
}
.serve_view .process .swiper-box {
  margin-top: 80px;
  margin-bottom: 110px;
  padding: 0 100px;
  position: relative;
  padding-bottom: 30px;
}
.serve_view .process .swiper-pagination {
  bottom: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}
.serve_view .process .swiper-button-prev {
  width: 40px;
  height: 35px;
  background: url(../images/process-ico03.png) no-repeat center;
  left: 0;
}
.serve_view .process .swiper-button-next {
  width: 40px;
  height: 35px;
  background: url(../images/process-ico04.png) no-repeat center;
  right: 0;
}
.serve_view .process .process-swiper .swiper-slide {
  text-align: center;
}
.serve_view .process .process-swiper .swiper-slide h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  margin-top: 80px;
}
.serve_view .process .process-swiper .swiper-slide h5 {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 5px;
  margin-bottom: 40px;
}
.serve_view .process .process-swiper .swiper-slide p {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  height: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.serve_view .process .tabs-swiper .swiper-slide {
  width: 126px;
  height: 130px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.serve_view .process .tabs-swiper .swiper-slide:hover {
 background-color: #015178;
}
.serve_view .process .tabs-swiper .swiper-slide-active {
  background-color: #015178;
 }
.serve_view .process .tabs-swiper .swiper-slide .img {
  position: relative;
  width: 60px;
  height: 60px;
}
.serve_view .process .tabs-swiper .swiper-slide .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  transition-duration: .3s;
}
.serve_view .process .tabs-swiper .swiper-slide .img img.img2 {
  opacity: 0;
  visibility: hidden;
}
.serve_view .process .tabs-swiper .swiper-slide:hover img.img1,
.serve_view .process .tabs-swiper .swiper-slide-active  img.img1{
  display: none;
}
.serve_view .process .tabs-swiper .swiper-slide:hover img.img2,
.serve_view .process .tabs-swiper .swiper-slide-active  .img img.img2 {
  opacity: 1;
  visibility: visible;
}
.serve_view .process .tabs-swiper .swiper-slide h3 {
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  margin-top: 3px;
}
.serve_view .network {
  padding-top: 120px;
  background-color: #eeeeee;
  padding-bottom: 50px;
}
.serve_view .network .tit {
  text-align: center;
}
.serve_view .network .joan_store {
  width: 1400px;
  margin: 0 auto;
}
.serve_view .network .joan_store .this_view {
  width: 100%;
  padding: 40px;
  padding-top: 55px;
  /* background-color: #fff; */
}
.serve_view .network .joan_store .this_view .top {
  width: 100%;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  align-content: unset;
  box-shadow: 0 0 10px #ccc;
  position: relative;
  z-index: 2;
}
.serve_view .network .joan_store .this_view .top .store_search {
  width: 25%;
  height: 30px;
  border: 1px solid #dcdcdc;
  position: relative;
  margin-left: 30px;
}
.serve_view .network .joan_store .this_view .top .store_search input {
  width: 100%;
  line-height: 28px;
  padding: 0 10px;
  font-size: 14px;
  color: #999;
  transition: .4s all;
  background: transparent;
}
.serve_view .network .joan_store .this_view .top .store_search input::-webkit-input-placeholder {
  color: #999;
}
.serve_view .network .joan_store .this_view .top .store_search input:hover {
  box-shadow: 0 0 10px #ccc;
}
.serve_view .network .joan_store .this_view .top .store_search button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  cursor: pointer;
  background: url("../images/store_search.png") no-repeat;
  background-size: 100% 100%;
}
.serve_view .network .joan_store .this_view .top .store_location {
  width: 55%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.serve_view .network .joan_store .this_view .top .store_location select {
  width: 33.333%;
  height: 100%;
  border-left: 1px solid #dcdcdc;
  padding: 0 10px;
  color: #999;
  font-size: 14px;
  background: url(../images/store_xia.png) #fff 90% center no-repeat;
  background-color: transparent;
  background-size: 10%;
}
.serve_view .network .joan_store .this_view .bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.serve_view .network .joan_store .this_view .bottom .left {
  width: 65%;
}
.serve_view .network .joan_store .this_view .bottom .left #joan_map {
  width: 100%;
  height: 600px;
}
.serve_view .network .joan_store .this_view .bottom .right {
  width: 35%;
  height: 600px;
  overflow: hidden;
}
.serve_view .network .joan_store .this_view .bottom .right ul {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.serve_view .network .joan_store .this_view .bottom .right ul li {
  width: 100%;
  height: auto;
  padding: 30px 20px;
  padding-left: 100px;
  cursor: pointer;
  border-bottom: 1px solid #dcdcdc;
  transition: .4s all;
  /* background-color: #fff; */
  position: relative;
}
.serve_view .network .joan_store .this_view .bottom .right ul li:hover {
  background-color: #dcdcdc;
}
.serve_view .network .joan_store .this_view .bottom .right ul li i {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  top: 30px;
  left: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  background-color: #a0141a;
  color: #fff;
  border-radius: 5px;
  font-style: normal;
}
.serve_view .network .joan_store .this_view .bottom .right ul li div {
  width: 100%;
}
.serve_view .network .joan_store .this_view .bottom .right ul li div h4 {
  font-size: 16px;
  color: #141414;
  font-weight: normal;
  margin-bottom: 10px;
}
.serve_view .network .joan_store .this_view .bottom .right ul li div p {
  font-size: 15px;
  color: #666;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.serve_view .network .joan_store .this_view .bottom .right ul::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.serve_view .network .joan_store .this_view .bottom .right ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
.serve_view .network .joan_store .this_view .bottom .right ul::-webkit-scrollbar-thumb {
  background: #2b3b78;
  border-radius: 6px;
}
.serve_view .network .joan_store .this_view .bottom .right ul::-webkit-scrollbar-corner {
  background: #2b3b78;
}
.serve_view .stores .tit {
 padding-top: 100px;
}
.serve_view .stores .tit {
  text-align: center;
}
.serve_view .stores .con {
  padding-top: 60px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.serve_view .stores .con .stores-swiper {
  width: 50%;
  height: 720px;
}
.serve_view .stores .con .stores-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.serve_view .stores .con .stores-swiper .swiper-pagination {
  bottom: 18px;
}
.serve_view .stores .con .stores-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 1;
}
.serve_view .stores .con .stores-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #a0141a;
}
.serve_view .stores .con .tabs {
  width: 50%;
  height: 720px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.serve_view .stores .con .tabs a {
  width: 50%;
  height: 50%;
  position: relative;
}
.serve_view .stores .con .tabs a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.serve_view .stores .con .tabs a .txt {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  transition-duration: .3s;
  opacity: 0;
  visibility: hidden;
}
.serve_view .stores .con .tabs a .txt h3 {
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 15px;
}
.serve_view .stores .con .tabs a:hover .txt {
  opacity: 1;
  visibility: visible;
}

.search-box {
  padding: 0;
  transition: 1s ease;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #999;
  width: 320px;
  height: 0;
  position: absolute;
  z-index: 3;
  left: -150px;
  top: 50px;
  transform: translateX(50px);
  opacity: 0;
  visibility: hidden;
  /* transition:transform .3s,opacity 1s,visibility 1s; */
  transition: initial;
  padding: 15px;
  height: 200px;
  transition: all .8s;
}

.search-box.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  left: -200px;
  transition: transform .3s;
  /* transition: transform .3s,opacity .3s,visibility .3s; */
}

.search-box p {
  text-transform: uppercase;
  font-size: 24px;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.search-box input {
  width: 100%;
  border: 1px solid #999;
  height: 40px;
  background: transparent;
  padding: 0 15px;
}

.search-box button {
  height: 40px;
  border: 1px solid #fff;
  background: #a0141a;
  color: #fff;
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}



.join_view .advantage {
  background: url(../images/join-bg001.jpg) no-repeat;
  background-size: cover;
  padding: 120px 0;
  margin-bottom: 20px;
}
.join_view .advantage .tit  {
  text-align: center;
}
.join_view .advantage .tit h3 {
  color: #fff;
}
.join_view .advantage .tit h5 {
  color: #fff;
}
.join_view .advantage .con {
  margin-top: 55px;
  margin-bottom: -35px;
}
.join_view .advantage .con h4 {
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
}
.join_view .advantage .con p {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 35px;
}
.join_view .advantage .list{
padding-top: 80px;
display:flex;
flex-wrap: wrap;
}
.join_view .advantage .list li{
  width: 33.33%;
  height: 240px;
  border-bottom: 1px solid #8b8b8b;
  border-right: 1px solid #8b8b8b;
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.join_view .advantage .list li:nth-child(n+4){
  border-bottom-color: transparent;

}
.join_view .advantage .list li:nth-child(3n){
  border-right-color: transparent;
  
}
.join_view .advantage .list h4{
font-size: 72px;
color: #fff;
line-height: 1.2;
margin-bottom: 10px;
font-family: nuncio, Arial, Helvetica, sans-serif;
}
.join_view .advantage .list p{
  font-size: 16px;
  color: #fff;
  line-height: 32px;
  white-space: pre-wrap;
  text-align: center;
  }


  .com-item1{
    
    background: url(../images/join-bg002.jpg) no-repeat;
    background-size: cover;
    margin-bottom: 20px;
  }
  .com-item1 .wrap{
    height: 920px;
   display: flex;
   flex-wrap: wrap;
   flex-direction: column;
   justify-content: center;
   align-items: center;
  }
  .com-item1 .wrap h3{
    font-size: 100px;
    line-height: 1;
    color: #ffffff;
    font-family: nuncio, Arial, Helvetica, sans-serif;
    padding: 0 10px;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  .com-item1 .wrap h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 12px;
    background-color: #a0141a;
    position: absolute;
    left: 0;
    bottom: 19px;
    z-index: -1;
}
.com-item1 .wrap h5{
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
  margin-top: 15px;
  margin-bottom: 40px;
  

}
.com-item1 .wrap p{
  font-size: 16px;
  line-height: 35px;
  color: #ffffff;
  white-space: pre-wrap;
  text-align: center;

}
.join_view .policy{
    
  background-image: url(../images/join-bg002.jpg);
}
.join_view .store{
    
  background-image: url(../images/join-bg003.jpg);
}
.join_view .investment{
    
  background-image: url(../images/join-bg004.jpg);

}


.genre{
  background-color: #fafafa;
}
.genre li{
  border-bottom: 1px solid #dadada;
}
.genre li .wrap{
  display: flex;
  flex-wrap: wrap;
  
  align-items: center;
  position: relative;
  padding-left: 50px;

}

.genre li h3{
  font-size: 16px;
  line-height: 70px;
  color: #565656;
  font-weight: bold;
  margin-right: 28px;
  height: 70px;
  position: absolute;
  left: 0;
  top: 0;
}

.genre li a{
  font-size: 16px;
  line-height: 70px;
  height: 70px;
  color: #565656;
  margin: 0 20px;
  position: relative;
  z-index: 1;
}

.genre li a::after {
  content: '';
  display: block;
  width: calc(100% + 18px);
  height: 30px;
  background-color: #a0141a;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition-duration: .3s;
  z-index: -1;
  border-radius: 5px;
}



.genre li a.active::after, .genre li a:hover::after {
  opacity: 1;
  visibility: visible;
}
.genre li a:hover{
  
  color: #fff;
}
.genre li a.active{
  
  color: #fff;
}

.design_view {
  margin-top: 40px;
}
.design_view .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-right: -1.8%;
}
.design_view .list li {
  width: 31.5%;
  margin-right: 1.8%;
  transition-duration: .3s;
}
.design_view .list li .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 74.15%;
}
.design_view .list li .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.design_view .list li h3{
  font-size: 16px;
  line-height: 1.2;
  color: #000;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}
.design_view .list li p{
  font-size: 14px;
  line-height: 25px;
  color: #828282;
  white-space: pre-wrap;
  height: 75px;
  margin-bottom: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}


/* .design_view .list li:hover {
  transform: translateY(-5px);
  box-shadow: 0px 2px 5px #d9d9d9;
} */

.design-info_view .above{
  padding: 70px 0;
  background-color: #f6f6f6;
}
.design-info_view .above .wrap{
  display: flex;
  flex-wrap: wrap;

}
.design-info_view .above  .img{
  width: 67.5%;
  height: 640px;
}

.design-info_view .above  .txt{
  width: 32.5%;
  height: 640px;
  background-color: #fff;
  padding: 55px 60px 0;
}
.design-info_view .above .img img{
  width:100%;
  height: 100%;
  object-fit: cover;
}
.design-info_view .above .txt h3{
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
  font-weight: bold;
}
.design-info_view .above .txt  p{
  font-size: 16px;
  line-height: 35px;
  color: #828282;
  white-space: pre-wrap;
  margin-top: 12px;
  height: 340px;
  overflow: hidden;
  text-overflow: hidden;
  margin-bottom: 14px;
}

.design-info_view .above .txt .box-share {
  padding-top: 25px;
  margin-bottom: 30px;
  border-top: 1px solid #d8d8d8;
}
.design-info_view .above .txt .box-share .social-share {
  display: inline-block;
}
.design-info_view .above .txt .link a {
  width: 132px;
  height: 42px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  color: #6d6d6d;
  margin-right: 12px;
}

.design-info_view .type{
  background-color: #fff;
  padding: 65px 0;
}
.design-info_view .type .tit{
  text-align: center;
  margin: 45px 0;
}
.design-info_view .other{
  background-color: #f6f6f6;
  padding-bottom: 40px;
}
.design-info_view .other .content-swiper {
  padding-top: 85px;
  width: 100%;
}
.design-info_view .other .content-swiper .box-button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.design-info_view .other .content-swiper .box-button div {
  display: inline-block;
  position: initial;
}
.design-info_view .other.content-swiper .box-button .swiper-pagination {
  margin: 0 45px;
  height: 45px;
  line-height: 45px;
}
.design-info_view .other .content-swiper .box-button .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #215644;
  border-radius: 100%;
  margin: 0 5px;
}
.design-info_view .other .content-swiper .box-button .swiper-button-prev {
  width: 80px;
  height: 45px;
  background: url(../images/honor-ico-01.png) no-repeat center;
  margin-top: 0;
}
.design-info_view .other .content-swiper .box-button .swiper-button-next {
  width: 80px;
  height: 45px;
  background: url(../images/honor-ico-02.png) no-repeat center;
  margin-top: 0;
}
.design-info_view .other .content-swiper .swiper-slide {
  width: 328px;
}
.design-info_view .other .content-swiper .swiper-slide .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  background-color: #f7f7f7;
  border: 1px solid #d6d6d6;
  overflow: hidden;
}
.design-info_view .other .content-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  transition-duration: .3s;
}
.design-info_view .other .content-swiper .swiper-slide .pic:hover img {
  transform: scale(1.2);
}
.design-info_view .above .txt .link a:hover {
  background-color: #a0141a;
  color: #fff;
}

.design-info_view .other .content-swiper .swiper-slide h4 {
  font-size: 16px;
  color: #666666;
  line-height: 1.2;
  text-align: center;
  padding: 25px 0;
}
.design-info_view .other .content-swiper .swiper-slide h4:hover {
 color: #333;
}
.design-info_view .other .tit{
  text-align: center;
  padding-top: 65px;
  padding-bottom: 20px;
}


@media screen and (max-width: 1440px) {
  body:after {
    background: blue;
  }

  .wrap {
    width: 1200px;
  }

  .hd-nav  li >a {
    margin: 0 15px;
  }

  .antique .txt {
    margin-left: -860px;
  }

  .serve_view .network .joan_store {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1280px) {
  body:after {
    background: lightblue;
  }

  .wrap {
    width: 100%;
    padding: 0 20px;
  }

  .header-box {
    height: 110px;
  }

  .hd-logo img {
    width: 150px;
  }

  .hd-nav a {
    margin: 0px 10px;
  }

  .hd-btn a {
    margin-left: 5px;
  }

  .footer > .wrap .item {
    width: 32%;
    padding-left: 100px;
  }

  .product-info_view .above .img-box {
    height: 450px;
  }

  .product-info_view .above .txt > p {
    margin-bottom: 10px;
  }

  .product-info_view .above .txt {
    width: 45.7%;
    padding: 20px 30px 0;
    background-color: #fff;
  }

  .col-l {
    width: 100%;
  }

  .col-r {
    display: none;
  }

  .serve_view .join {
    padding-left: 0;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 0;
    background: initial;
  }
  .design-info_view .above .img {
    width: 50%;
}
.design-info_view .above .txt {
  width: 50%;
}

}
@media screen and (max-width: 1024px) {
  /* 移动ipad */
  /* ..... */
  body:after {
    background: pink;
  }

  .hd-nav {
    display: none;
  }

  .hd-btn a {
    display: none;
  }

  .header-box {
    height: 61px;
  }

  .header-box .img1 {
    display: none;
  }

  .header-box .img2 {
    display: block;
    width: 150px;
    max-height: 50px;
  }
  .header {
    padding: 5px 0;
    background-color: #fff;
    border-bottom: 1px solid #d9d9d9;
  }

  .header .menu-btn {
    display: block;
    position: relative;
    z-index: 9;
  }

  .menu-btn {
    /* background-color: #215644; */
    height: 23px;
    width: 30px;
    position: relative;
    cursor: pointer;
    display: none;
    /* top: 50%;
    transform: translateY(-50%);
    */
  }

  .menu-btn span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #a0141a;
    left: 10px;
    top: 13px;
    transition: all .4s;
    border-radius: 3px;
  }

  .menu-btn span:nth-child(2) {
    top: 23px;
  }

  .menu-btn span:nth-child(3) {
    top: 33px;
    width: 19px;
    left: initial;
    right: 10px;
  }

  .menu-btn {
    display: block;
    /* position:absolute;right:8px;top:6px; */
    height: 50px;
    width: 50px;
    padding: 10px;
  }

  .menu-btn.active span:nth-child(2) {
    width: 0;
    left: 22px;
    opacity: 0;
  }

  .menu-btn.active span {
    -webkit-transform: rotate(45deg);
    top: 23px;
  }

  .menu-btn.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    top: 23px;
    width: 30px;
  }

  .m-nav {
    /* display: none; */
    width: 75%;
    height: 100vh;
    max-width: 420px;
    padding: 50px 0 70px;
    /* height: 100vh; */
    position: fixed;
    top: 61px;
    right: -100vw;
    transition: .4s all;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
    display: block;
  }

  .m-nav ul li:hover a {
    background-color: #a0141a;
  }

  .m-nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 5%;
    box-sizing: border-box;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .m-nav.active {
    right: 0;
  }

  .search_btn {
    display: block;
    width: 30px;
    margin-left: auto;
  }

  .m_search .title img {
    width: 35px;
    height: 35px;
  }

  .m_search .title h3 {
    font-size: 24px;
    margin-top: 10px;
    line-height: 28px;
  }

  .m_search .main .m_header_submit {
    font-size: 18px;
  }

  .m_search .search_close span {
    width: 40px;
  }

  .m_search .search_close h4 {
    font-size: 16px;
  }

  .m_search .main select {
    background-position: 100% 33%;
  }

  .m_search .main input,
  .m_search .main select {
    font-size: 16px;
    padding-bottom: 10px;
  }

  .m_search .main .m_header_submit {
    font-size: 16px;
    padding: 10px 0;
  }

  .m_search .search_close {
    margin-top: 15%;
  }

  .m_search .search_close span,
  .m_search .search_close span:before {
    height: 3px;
    width: 30px;
  }

  .m_search .search_close h4 {
    font-size: 14px;
  }

  .slide-nav {
    left: 0;
    top: auto;
    right: 0;
    bottom: 0;
    font-size: 0;
    text-align: center;
  }

  .slide-nav .item {
    margin: 0;
    border: none;
    opacity: 1 !important;
    border-top: 1px solid #999;
    border-radius: 0;
    border-left: 1px solid #999;
    display: inline-block;
    vertical-align: middle;
    width: 20%;
    height: 60px;
  }

  .slide-nav .item:first-child {
    border: none;
    border-top: 1px solid #999;
  }

  .slide-nav .goTop {
    display: inline-block !important;
  }

  .slide-nav .icon {
    width: 30px;
    height: 30px;
    -webkit-background-size: 30px auto;
    background-size: 30px auto;
  }

  .slide-nav .mask {
    left: 50%;
    right: auto;
    bottom: 100%;
    top: auto;
    -webkit-transform: translateX(-50%) scale(1, 0);
    -ms-transform: translateX(-50%) scale(1, 0);
    -o-transform: translateX(-50%) scale(1, 0);
    transform: translateX(-50%) scale(1, 0);
  }

  .slide-nav .tel {
    padding: 0 15px;
    border: 2px solid #000;
    height: 46px;
    line-height: 42px;
  }

  .slide-nav .qr {
    width: 120px;
    height: 120px;
  }

  .slide-nav .item:hover .icon {
    /* background-position:center -30px */
  }

  .slide-nav .item:hover .mask {
    -webkit-transform: scale(1, 1) translateX(-50%);
    -ms-transform: scale(1, 1) translateX(-50%);
    -o-transform: scale(1, 1) translateX(-50%);
    transform: scale(1, 1) translateX(-50%);
  }

  .slide-nav .item {
    width: 25%;
  }

  .slide-nav .wechat {
    display: none;
  }

  .slide-nav .appoint {
    display: none;
  }

  /* .slide-nav .nav-qq{display:none} */
  .slide-nav .icon {
    margin: 8px auto 3px;
  }

  .slide-nav .icon {
    /* background-position: center; */
  }

  .slide-nav .goTop {
    opacity: 1;
    visibility: visible;
  }

  .about {
    padding: 40px 0;
  }

  .antique .txt {
    width: 100%;
    height: 360px;
    left: 0%;
    margin-left: 0;
    bottom: 0;
    padding: 0 20px;
  }

  .marble {
    padding: 40px 0;
  }

  .marble .right {
    width: 48%;
    margin-right: 0;
  }

  .marble .left {
    width: 48%;
  }

  .case {
    padding: 100px 0;
  }

  .news {
    padding: 40px 0;
  }

  .news .tabs a {
    padding: 16px 35px;
  }

  .contact {
    padding: 40px 0;
  }

  .contact .add {
    margin-top: 30px;
  }

  .contact .form {
    margin-top: 40px;
  }

  .footer > .wrap {
    display: none;
  }

  .footer {
    margin-bottom: 60px;
  }

  .product_view {
    padding: 40px;
  }

  .product_view ul li h3 {
    font-size: 28px;
  }

  .product_view ul li h5 {
    font-size: 24px;
    line-height: 1;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 20px;
  }

  .product_view ul li h6 {
    font-size: 16px;
    line-height: 27px;
    color: #ffffff;
    font-weight: bold;
    padding: 0 10px;
    display: inline-block;
    position: relative;
    z-index: 1;
  }

  .product_view ul li p {
    font-size: 16px;
    margin-top: 7px;
    margin-bottom: 35px;
  }

  .product_view ul li .links a {
    font-size: 14px;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 30px;
  }

  .navbar {
    display: block;
  }

  .crumbs {
    display: none;
  }

  .about_view .videos .con {
    margin: 30px 50px 50px;
  }

  .about_view .videos {
    background-size: auto 520px;
  }

  .serve_view .network .joan_store {
    padding: 0;
  }

  .page.store {
    padding-bottom: 0;
  }

  .serve_view .network .joan_store .this_view {
    padding: 4% 3%;
  }

  .serve_view .network .joan_store .this_view .top {
    display: block;
    height: auto;
    box-shadow: none;
  }

  .serve_view .network .joan_store .this_view .top .store_search {
    width: 100%;
    margin-left: 0;
    height: 60px;
  }

  .serve_view .network .joan_store .this_view .top .store_search input {
    line-height: 58px;
  }

  .serve_view .network .joan_store .this_view .top .store_location {
    width: 100%;
    height: 60px;
    margin-top: 3%;
  }

  .serve_view .network .joan_store .this_view .top .store_location select {
    border: 1px solid #dcdcdc;
    border-right: none;
  }

  .serve_view .network .joan_store .this_view .top .store_location select:last-child {
    border-right: 1px solid #dcdcdc;
  }

  .serve_view .network .joan_store .this_view .bottom {
    margin-top: 3%;
  }

  .serve_view .network .joan_store .this_view .bottom .left {
    display: none;
  }

  .serve_view .network .joan_store .this_view .bottom .right {
    width: 100%;
  }

  .serve_view .network .joan_store .this_view .bottom .right ul li {
    height: auto;
    padding: 20px 2%;
    padding-left: 75px;
  }

  .serve_view .network .joan_store .this_view .bottom .right ul li i {
    top: 20px;
  }

  .serve_view .network .joan_store .this_view .bottom .right ul li div {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  /* 响应手机..... */
  body:after {
    background: red;
  }

  .wrap {
    padding: 0 15px;
  }
  .genre li .wrap {
    
    padding-left: 45px;
}
.genre li h3 {
  left: 15px;
}

  .banner {
    padding-bottom:50%;
    margin-top:60px;
  }

  .banner .pc {
    display: none;
  }

  .banner .mobile {
    display: block;
  }

  .about {
    padding: 30px 0;
  }

  .com-tit1 {
    text-align: center;
  }

  .com-tit1 h3 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 20px;
    padding: 0 5px;
    text-align: center;
  }

  .com-tit1 h5 {
    font-size: 20px;
    line-height: 30px;
    padding: 0 5px;
  }

  .com-tit1 h3 p{
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 20px;
    padding: 0 5px;
    text-align: center;
    margin-top:0;
  }

  .com-tit1 h5 p{
    font-size: 20px;
    line-height: 30px;
    padding: 0 5px;
    margin-top:0;
  }

  .com-tit1 h5::after {
    height: 8px;
    bottom: 1px;
  }

  .com-tit1 p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 25px;
  }

  .about .wrap .txt {
    width: 100%;
  }
  .about .link{display:none;}
  .about .wrap .item {
    width: 100%;
    padding: 20px;
    display: none;
  }

  .about .wrap .txt .slogen {
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 0;
  }

  .about .wrap .txt .slogen div {
    margin-right: 0px;
    width: 50%;
    padding: 10px;
  }

  .about .wrap .txt .slogen div img {
    width: 40px;
    height: 40px;
  }

  .about .wrap .txt .slogen div h3 {
    font-size: 12px;
    margin-top: 8px;
  }

  .about .link {
    text-align: center;
  }

  .contact .form form {
    flex-wrap: wrap;
  }

  .com-more1 {
    font-size: 12px;
    padding: 10px 30px 10px;
    border-radius: 30px;
  }

  .antique {
    height: 500px;
    background-size: cover;
  }

  .antique .txt {
    width: 100%;
    height: 185px;
    left: 0%;
    margin-left: 0;
    bottom: 0;
    padding: 0 20px;
  }

  .antique .txt h3 {
    font-size: 40px;
    margin-top: 10px;
  }

  .antique .txt hr {
    width: 35px;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .antique .txt h5 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .antique .txt p {
    font-size: 12px;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
  }

  .marble .txt h3 {
    font-size: 40px;
    padding: 0 5px;
  }

  .marble .txt hr {
    width: 35px;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .marble .txt h3::after {
    height: 8px;
    bottom: 6px;
  }

  .marble .txt h5 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .marble .txt p {
    font-size: 12px;
  }

  .com-more2 {
    font-size: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
  }

  .marble .txt .com-more2 {
    position: initial;
    right: 0;
    bottom: 0;
    margin-top: 30px;
  }

  .marble {
    padding: 20px 0;
  }

  .marble .right .txt {
    margin-bottom: 17px;
  }

  .marble .right {
    width: 46%;
  }

  .marble .left {
    width: 46%;
  }

  .marble .left .pic {
    margin-bottom: 16px;
  }

  .case .tit p {
    margin-bottom: 40px;
    width: 100%;
  }

  .news {
    padding: 20px 0;
  }
  .news .tit {
    width: 100%;
    margin-bottom: 20px;
  }
  .news .tabs {
    width: 100%;
  }
  .news .tabs a {
    padding: 12px 0;
    width: 30%;
    text-align: center;
    margin-left: 0;
    font-size: 14px;
  }

  .news .swiper-box {
    padding: 0 20px;
    margin-top: 10px;
  }

  .news .swiper-box .swiper-button-prev {
    width: 20px;
    height: 30px;
    background-size: contain;
    left: 0;
  }

  .news .swiper-box .swiper-button-next {
    width: 20px;
    height: 30px;
    background-size: contain;
    right: 0;
  }

  .news .swiper-box .swiper-slide {
    padding: 10px;
    border-bottom: 1px solid transparent;
  }

  .news .swiper-box .swiper-slide .txt h3 {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 5px;
  }

  .news .swiper-box .swiper-slide .txt p {
    font-size: 12px;
    line-height: 20px;
    height: 40px;
    margin-bottom: 5px;
  }

  .contact .tit {
    width: 100%;
  }

  .contact .add {
    margin-top: 15px;
    font-size: 14px;
    line-height: 25px;
  }
  .contact .add p {
    flex-wrap: nowrap;
    margin-bottom: 5px;
  }
  .contact .add p img {
    margin-bottom: auto;
    margin-top: 2px;
  }

  .contact .form {
    margin-top: 10px;
  }

  .contact .form form .ind {
    width: 100%;
    border-right-color: #e3e3e3;
    padding: 10px;
    height: 40px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact .form form .sub {
    width: 100%;
    height: 40px;
    background-size: 20px;
  }

  .contact {
    padding: 20px 0;
  }

  .footer .copy {
    padding: 15px 0;
    font-size: 12px;
  }

  .online .main form figure {
    display: none;
  }

  .online .main form ul {
    width: 100%;
  }

  .online .main {
    padding: 15px;
  }

  .online .main .tit h3 {
    font-size: 20px;
  }

  .product_view {
    padding: 15px;
  }

  .product_view ul {
    margin-bottom: -15px;
  }

  .product_view ul li {
    padding: 100px 0;
    margin-bottom: 15px;
  }

  .product_view ul li h3 {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
  }

  .product_view ul li h5 {
    font-size: 20px;
    margin-top: 4px;
    margin-bottom: 15px;
  }

  .product_view ul li p {
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 25px;
    -webkit-line-clamp: 2;
    height: 40px;
    line-height: 20px;
  }
  .product_view ul li .links {
  
    margin-bottom: -8px;
}
  .product_view ul li .links a {
    font-size: 12px;
    padding: 8px 10px;
    margin: 0 5px 8px;
    border-radius: 25px;
  }

  .product-list_view .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-left: -2%;
    margin-bottom: -10px;
  }

  .product-list_view .list li {
    width: 48%;
    margin-left: 2%;
    margin-bottom: 10px;
  }

  .product-list_view {
    padding-top: 0;
  }

  .product-list_view .list li .txt h3 {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .product-list_view .list li .txt h5 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .m-pages {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .page-t1 {
    padding-right: 0;
  }

  .m-pages li {
    display: none;
  }

  .m-pages li.fengye {
    display: block;
  }

  .m-pages li {
    font-size: 14px;
    line-height: 33px;
  }

  .m-pages select {
    font-size: 14px;
  }

  .product-info_view .above .img-box {
    width: 100%;
    height: 280px;
  }

  .product-info_view .above .img-box .img-tabs {
    width: auto;
    padding: 30px 8px;
    position: relative;
  }

  .product-info_view .above .img-box .img-tabs .swiper-slide {
    width: 60px;
    height: 60px;
  }

  .product-info_view .above .txt {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
  }

  .product-info_view {
    padding: 20px 0;
  }

  .product-info_view .above .txt h1 {
    font-size: 20px;
    margin-bottom: 6x;
  }

  .product-info_view .above .txt > p {
    font-size: 12px;
    line-height: 20px;
    height: auto;
  }

  .product-info_view .above .txt .box-share {
    display: none;
  }
  /* .product-info_view .above .txt .link {
    width: 49%;
    margin-right: 0;
} */

  .product-info_view .above .txt .link a {
    width: 110px;
    height: 35px;
    font-size: 12px;
    margin-right: 5px;
  }

  .product-info_view .effect .tit {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .news_view {
    padding-top: 20px;
  }

  .news_view .list {
    margin-right: 0;
    margin-bottom: -10px;
  }

  .news_view .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .news_view .list li a {
    display: block;
    padding: 15px 10px;
  }

  .news_view .list li a .pic {
    margin-top: 10px;
  }

  .news_view .list li a h3 {
    font-size: 14px;
  }

  .news_view .list li a p {
    font-size: 12px;
    line-height: 20px;
    height: 40px;
    margin-bottom: 5px;
    margin-top: 7px;
  }

  .news_view .list li a h5 {
    font-size: 12px;
    line-height: 1.2;
  }

  .news-info_view {
    padding: 20px 0;
  }

  .m-contxt1 {
    padding: 10px 10px 10px;
  }

  .m-contxt1 .tit {
    font-size: 20px;
  }

  .m-contxt1 .box-info .info span {
    font-size: 14px;
  }

  .m-contxt1 .share-box {
    display: none;
  }

  .m-contxt1 .box-info {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .m-contxt1 .item {
    margin-bottom: 10px;
    padding-bottom: 15px;
  }

  .page-t1 {
    padding-right: 0;
  }

  .page-t1 a {
    font-size: 14px;
  }

  .page-t1 .blank {
    position: initial;
    margin-top: 5px;
    font-size: 12px;
    padding: 7px 18px;
  }

  .box-blank {
    margin-top: 10px;
    padding-top: 5px;
  }

  .box-blank .con {
    width: 100%;
    margin-top: 10px;
  }

  .box-blank div a {
    font-size: 14px;
  }

  .box-blank div a + a {
    margin-top: 5px;
  }

  .m-contxt1 .box-blank .blank {
    font-size: 14px;
  }

  .cases_view {
    padding-top: 20px;
  }

  .cases_view .list {
    margin-right: 0;
  }

  .cases_view .list li {
    width: 100%;
    margin-right: 0;
  }

  .cases_view .list li h3 {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .login_view .tit span {
    font-size: 14px;
    margin-top: 18px;
    margin-bottom: 15px;
  }

  .login_view form input {
    width: 80%;
    height: 30px;
    border-radius: 30px;
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 15px;
  }

  .login_view form .sub {
    width: 80%;
    height: 30px;
    border-radius: 30px;
    font-size: 12px;
    line-height: 28px;
  }

  .login_view {
    padding: 190px 0;
  }

  .login-page .footer .copy {
    padding: 15px 0;
  }

  .about_view .course-swiper .swiper-slide .txt {
    width: 100%;
  }

  .about_view .course-swiper .swiper-slide .img {
    width: 100%;
  }

  .about_view .course-swiper .swiper-slide .txt {
    padding: 20px 0 0;
  }

  .about_view .course .course-tabs {
    margin: 0 30px;
  }

  .about_view .course .tabs-box .swiper-button-next {
    right: 0;
    margin-top: -16px;
  }

  .about_view .course .tabs-box .swiper-button-prev {
    left: 0;
    margin-top: -16px;
  }

  .about_view .course .course-tabs .swiper-slide {
    width: 90px;
    height: 60px;
    padding-top: 38px;
    font-size: 16px;
  }

  .about_view .course-swiper {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .about_view .course-swiper .swiper-slide .txt p {
    font-size: 14px;
    line-height: 25px;
    margin: 10px 0;
  }

  .about_view .course-swiper .swiper-slide .txt h3 {
    font-size: 20px;
  }

  .about_view .bg-box {
    padding: 20px;
    background-color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .com-banner1 {
    padding-bottom: 62%;
  }

  .about_view .about .img {
    margin-top: 20px;
  }

  .about_view .general .txt {
    padding-top: 200px;
    padding-bottom: 20px;
    width: 100%;
  }

  .about_view .general .txt h3 {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .about_view .general .txt h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .about_view .general .txt p {
    font-size: 12px;
    line-height: 22px;
    color: #fff;
  }

  .about_view .general::before {
    bottom: -147px;
  }

  .about_view .brand {
    padding: 20px 0;
  }

  .about_view .brand .con {
    margin-top: 20px;
  }
  .about_view .brand .con .txt{
    width: 100%;
    padding: 0;
    order: 2;
    margin-top: 10px;

  }
  .about_view .brand .con .txt p {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 5px;
  }
  .about_view .brand .con .img {
    width: 100%;
    order: 1;
}

  .about_view .course {
    padding-top: 0;
    height: auto;
  }
  .about_view .course .poster {
    display: none;
}
.about_view .course .tabs-box {
  
  margin-top: 0px;
  /* margin-bottom: 20px; */
}
.about_view .course .con {
  width: 100%;
  height: 100%;
  padding: 20px;
  /* overflow: hidden; */
}
  .about_view .honor .content-swiper .box-button .swiper-button-prev {
    display: none;
  }

  .about_view .honor .content-swiper .box-button .swiper-button-next {
    display: none;
  }

  .about_view .honor .content-swiper {
    padding-top: 80px;
  }

  .about_view .honor {
    padding: 20px 0;
  }

  .about_view .videos {
    padding-top: 20px;
  }

  .about_view .videos .con {
    margin: 0;
    margin-top: 10px;
    padding: 10px;
  }
  .about_view .videos .wrap{
    padding-bottom: 25px;
  }
  .about_view .videos .con .list {
    margin-top: 10px;
  }

  .about_view .videos .con .list li .pic {
    padding-bottom: 75%;
  }

  .about_view .videos .con .video-box img {
    width: 40px;
  }

  .about_view .videos .con .list li {
    width: 31%;
  }

  .serve_view .network .joan_store .this_view {
    padding: 8% 3%;
  }

  .serve_view .network .joan_store .this_view .top .store_search {
    height: 40px;
  }

  .serve_view .network .joan_store .this_view .top .store_search input {
    line-height: 38px;
  }

  .serve_view .network .joan_store .this_view .top .store_location {
    height: auto;
  }

  .serve_view .network .joan_store .this_view .top .store_location select {
    width: 100%;
    height: 40px;
    line-height: 38px;
    background-position: 99%;
    background-size: 5%;
    border-right: 1px solid #dcdcdc;
  }

  .serve_view .network .joan_store .this_view .top .store_location select + select {
    margin-top: 3%;
  }

  .serve_view .network .joan_store .this_view .bottom .right ul li {
    padding: 15px 2%;
    padding-left: 75px;
  }

  .serve_view .network .joan_store .this_view .bottom .right ul li i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }

  .serve_view .network .joan_store .this_view .bottom .right ul li div h4 {
    margin-bottom: 5px;
  }

  .serve_view .advantage {
    padding: 30px 0 20px;
  }

  .serve_view .advantage .con h4 {
    font-size: 16px;
  }

  .serve_view .advantage .con {
    margin-top: 20px;
    margin-bottom: -10px;
  }

  .serve_view .advantage .con p {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .serve_view .join {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .serve_view .join .box {
    padding: 0 20px;
    margin-bottom: -10px;
  }

  .serve_view .join .box .list li {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 10px;
  }

  .serve_view .join .box .list {
    margin-top: 20px;
  }

  .serve_view .join .box .list li h3 {
    font-size: 14px;
  }

  .serve_view .join .box .list li p {
    font-size: 12px;
    line-height: 25px;
    margin-bottom: 10px;
  }

  .serve_view .process {
    padding-top: 20px;
    border-bottom: 3px solid #d9d9d9;
  }

  .serve_view .process .swiper-box {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 10px;
    position: relative;
    padding-bottom: 20px;
  }

  .serve_view .process .swiper-button-prev {
    width: 20px;
    height: 20px;
    background-size: contain;
    display: none;
  }

  .serve_view .process .swiper-button-next {
    display: none;
  }

  .serve_view .process .process-swiper .swiper-slide h3 {
    font-size: 18px;
    margin-top: 20px;
  }

  .serve_view .process .process-swiper .swiper-slide h5 {
    font-size: 12px;
    margin-top: 3px;
    margin-bottom: 20px;
  }

  .serve_view .process .process-swiper .swiper-slide p {
    font-size: 12px;
    line-height: 20px;
    height: 120px;
    margin-bottom: 20px;
  }

  .serve_view .process .swiper-pagination {
    font-size: 14px;
  }

  .serve_view .process .tabs-swiper .swiper-slide {
    width: 80px;
    height: 80px;
  }

  .serve_view .process .tabs-swiper .swiper-slide .img {
    width: 40px;
    height: 40px;
  }

  .serve_view .process .tabs-swiper .swiper-slide h3 {
    font-size: 12px;
    margin-top: 5px;
  }

  .serve_view .process::after {
    bottom: 80px;
  }

  .serve_view .network {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .serve_view .network .joan_store .this_view .bottom .right {
    border: 1px solid #ddd;
    height: 300px;
  }

  .serve_view .stores .con .tabs {
    display: none;
  }

  .serve_view .stores .con .stores-swiper {
    width: 100%;
    height: 400px;
  }

  .serve_view .stores .con {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .serve_view .stores .tit {
    padding-top: 20px;
}



.join_view .advantage .list h4 {
  font-size: 30px;
}
.join_view .advantage .list p {
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
  /* white-space: normal; */
}
.join_view .advantage .list li {
 
  height: 150px;}

  .com-item1 .wrap h3 {
    font-size: 40px;
}
.com-item1 .wrap h3::after {
  height: 6px;
  bottom: 7px;
}
.com-item1 .wrap {
  height: 500px;
}
.com-item1 .wrap h5 {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.com-item1 .wrap p {
  font-size: 12px;
  line-height: 22px;
}


.product-info_view .above {
  
  padding-bottom: 20px;
}
.product-info_view .effect .content {
  
  height: auto;
  padding-bottom: 20px;
}

.product-info_view .effect .txt {
 
  padding-bottom: 20px;
  font-size: 12px;
  line-height: 1.5;

}


.product-info_view .effect .content .img-swiper {
  width: 81%;
  height: 390px;
}
.product-info_view .effect .content .img-tabs {
  width: 15.7%;
  height: 390px;
}
.product-info_view .effect .content .img-swiper .swiper-button-prev {
  
  left: 10px;
}
.product-info_view .effect .content .img-swiper .swiper-button-next {
  
  right: 10px;
}
.product-info_view .other .tit {
  
  padding-top: 20px;
  padding-bottom: 10px;
}
.product-info_view .effect {
  
  padding-top: 1px;
}
.product-info_view .other .content-swiper {
  padding-top: 40px;
}
.product-info_view .other .content-swiper .box-button .swiper-button-next {
  display: none;
}
.product-info_view .other .content-swiper .box-button .swiper-button-prev {
  display: none;
}
.product-info_view .other .content-swiper .swiper-slide h4 {
  font-size: 12px;
  padding: 10px 0;
}


.about_view .live-swiper .swiper-button-prev {
  width: 25px;
  height: 25px;
  left: 20px;
  margin-top: -12px;
}
.about_view .live-swiper .swiper-button-next {
  width: 25px;
  height: 25px;
  right: 20px;
  margin-top: -12px;
}

.genre li h3 {
  font-size: 14px;
  line-height: 30px;
  margin-right: 10px;
  height: 30px;
}
.genre li a {
  font-size: 12px;
  line-height: 30px;
  height: 30px;
  margin: 0 10px;


}

.genre li a::after {
  
  width: calc(100% + 10px);
  height: 20px;
  border-radius: 3px;
}
.design_view .list li {
  width: 100%;
  margin-right: 0;
}
.design_view .list {
  
  margin-right: 0;
}
.design_view {
  margin-top: 20px;
}

.design_view .list li h3 {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
}
.design_view .list li p {
  font-size: 12px;
  line-height: 20px;
  height: 60px;
  margin-bottom: 15px;
  
}

.design-info_view .above .img {
  width: 100%;
  height: 220px;
}
.design-info_view .above .txt {
  width: 100%;
  height: auto;
  padding:15px;
}
.design-info_view .above {
  padding: 15px 0;
}
.design-info_view .above .txt h3 {
  font-size: 18px;
  line-height: 1.2;
}
.design-info_view .above .txt p {
  font-size: 12px;
  line-height: 20px;
  margin-top: 8px;
  height: auto;
  margin-bottom: 10px;
}
.design-info_view .above .txt .box-share {
  display: none;
}
.design-info_view .above .txt .link a {
  width: 49%;
margin-right: 0;
height: 35px;
font-size: 12px;
}
.design-info_view .other .content-swiper .box-button .swiper-button-prev {
  display: none;
}
.design-info_view .other .content-swiper .box-button .swiper-button-next {
  display: none;
}
.design-info_view .other .tit {
  padding-top: 20px;
  padding-bottom: 10px;
}
.design-info_view .other .content-swiper .swiper-slide h4 {
  font-size: 12px;
  padding: 10px 0;
}
.design-info_view .type {
  padding: 20px 0;
}
.design-info_view .type .tit {
  margin: 20px 0;
}
.design-info_view .other .content-swiper {
  padding-top: 45px;
}
.design-info_view .other {
  padding-bottom: 20px;
}

.product-info_view .above .txt .vr {
  position: initial;
  margin-top: 10px;
  right: 60px;
  bottom: 70px;
}





}
/* 移动端结束 */

/*# sourceMappingURL=main.css.map */
.back_box{
  width: 1400px;
  margin: 0 auto;
  margin-bottom: 3%;
}
.back_box h1{
  color: #434144;
  font-size: 20px;
  font-weight: bold;
  margin-top: 3%;
  text-transform:uppercase;
}
.back_box a{
  width: 120px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  display: block;
  border: 2px solid #434144;
  transition: .4s all;
  color: #434144;
  font-size: 14px;
  font-weight: bold;
}
.back_box a:hover{
  border-color:#a0141a;
  color:#a0141a;
}





@media screen and (max-width: 1400px) {
  .back_box{width:100%;}
}
@media screen and (max-width: 520px) {
  .back_box a{width:100px;line-height:30px;height:34px;font-size:12px;}
  .back_box h1{font-size:16px;}
  .product-list_view .list li .txt .code_btn{display:none;}
  .com-banner1 .box{right:7%;}
  .product-info_view .above .txt .link a{width:49%;margin-right:0;}

}

