.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.font {
  font-family: Arial;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.mbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hidden-xs {
  display: block;
}
.hidden-pc {
  display: none;
}
.box-container {
  width: 15.36rem;
  margin: 0 auto;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
.box-container-fluid {
  width: 100%;
  margin: 0 auto;
}
.medium-box-container {
  width: 80%;
  margin: 0 auto;
}
body {
  overflow-x: hidden;
}
.rl {
  writing-mode: tb-rl;
  writing-mode: vertical-lr;
}
@font-face {
  font-family: "cn_light";
  src: url('../fonts/MISANS-LIGHT.TTF');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "regular";
  src: url('../fonts/MISANS-REGULAR.TTF');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mlight";
  src: url('../fonts/Montserrat-Light.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "medium";
  src: url('../fonts/Montserrat-Medium.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mb";
  src: url('../fonts/MontserratBold.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "thin";
  src: url('../fonts/MiSans-Thin.ttf');
  font-weight: normal;
  font-style: normal;
}
:root {
  --fs14: 14px;
  --fs16: 16px;
  --fs18: 18px;
  --fs20: 20px;
  --fs24: 0.24rem;
  --fs30: 0.3rem;
  --fs36: 0.36rem;
  --fs48: 0.48rem;
}
.light {
  font-family: "cn_light";
}
.pic {
  font-size: 0;
  overflow: hidden;
  display: block;
  width: 100%;
}
.pic img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
}
.pic img.phone {
  display: none;
}
.phone-nav {
  display: none;
}
.links {
  font-size: 0;
}
.links a {
  position: relative;
  font-size: var(--fs14);
  padding-right: 0.1rem;
  margin-right: 0.1rem;
  display: inline-block;
  color: #666;
  vertical-align: top;
  line-height: 0.24rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.links a:hover {
  color: #d6001f;
}
.links a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0.06rem;
  z-index: 1;
  width: 0.02rem;
  height: 0.12rem;
  background: #666;
}
.links a:last-child {
  margin-right: 0;
  padding-right: 0;
}
.links a:last-child:after {
  display: none;
}
.content,
.desc {
  text-align: justify;
}
.content,
.content div {
  font-size: var(--fs16);
}
.content {
  line-height: 0.36rem;
}
.content img,
.content input[type="image"] {
  max-width: 100%;
  height: auto!important;
  display: block;
  margin: 0 auto;
}
.swiper-box {
  position: relative;
}
.index .header-wrapper {
  background-color: transparent;
}
.index .header-wrapper.on,
.index .header-wrapper.active {
  background-color: #fff;
}
.index .p_h {
  display: none;
}
.p_h {
  height: 1rem;
}
.header-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  width: 100%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  background-color: #fff;
}
.header-wrapper.absolute {
  position: absolute;
}
.header-wrapper.shadow {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.header-wrapper .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  height: 1rem;
}
.header-wrapper .logo-box {
  width: 14.19%;
}
.header-wrapper .logo-box a {
  display: block;
  width: 100%;
}
.header-wrapper .logo-box img {
  display: block;
  width: 100%;
}
.header-wrapper .search {
  cursor: pointer;
}
.header-wrapper .search svg {
  width: 26px;
  height: 26px;
}
.pc-nav-box {
  flex: 1;
  margin-right: 0.6rem;
}
.pc-nav-box ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: flex-end;
}
.pc-nav-box li {
  margin-right: 0.72rem;
}
.pc-nav-box li:last-child {
  margin-right: 0;
}
.pc-nav-box li:hover > a,
.pc-nav-box li.on > a {
  color: #d6001f;
}
.pc-nav-box li:hover > a:after,
.pc-nav-box li.on > a:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.pc-nav-box li:hover .nav {
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  opacity: 1;
}
.pc-nav-box li > a {
  line-height: 1rem;
  position: relative;
  z-index: 21;
  font-size: var(--fs16);
}
.pc-nav-box li > a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #d6001f;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.pc-nav-box .nav {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  z-index: 20;
  transform-origin: top;
  transition: transform 0.3s ease-out 0s, opacity 0.2s ease-out 0s;
  opacity: 0;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  background-color: #fff;
  padding-top: 0.32rem;
  padding-bottom: 0.62rem;
  margin-top: -1px;
  border-top: 1px solid #efefef;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}
.pc-nav-box .nav a {
  line-height: 0.3rem;
  font-family: "cn_light";
}
.pc-nav-box .nav a:hover {
  color: #d6001f;
}
.pc-nav-box .nav a:hover span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.pc-nav-box .nav span {
  background: url(../img/dot.jpg) no-repeat;
  background-size: 0 1px;
  background-position: 100% 100%;
  transition: background-size 0.7s ease;
}
.pc-nav-box a {
  display: block;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.footer-wrapper {
  border-top: 2px solid #d6001f;
  padding: 1.1rem 0 1.42rem;
}
.footer-wrapper .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer-wrapper .left {
  width: 50%;
}
.footer-wrapper .right {
  width: 40%;
  text-align: right;
}
.footer-wrapper .logo-box {
  width: 26.69%;
  margin-bottom: 0.44rem;
  display: block;
}
.footer-wrapper .logo-box img {
  display: block;
  width: 100%;
}
.footer-wrapper .tel-box p {
  font-size: var(--fs16);
}
.footer-wrapper .tel-box a {
  display: inline-block;
  font-family: "mlight";
  color: #d6001f;
  font-size: 24px;
  margin: 0.04rem auto 0.34rem;
}
.footer-wrapper .form {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: flex-end;
  /* input placeholder  */
}
.footer-wrapper .form .text {
  width: 3rem;
  background-color: #f5f5f5;
  padding: 0 0.22rem;
  margin-right: 0.05rem;
  text-align: left;
}
.footer-wrapper .form .text,
.footer-wrapper .form .submit {
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 5px;
}
.footer-wrapper .form ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #9999;
  font-size: var(--fs14);
}
.footer-wrapper .form :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #9999;
  font-size: var(--fs14);
}
.footer-wrapper .form ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #9999;
  font-size: var(--fs14);
}
.footer-wrapper .form :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #9999;
  font-size: var(--fs14);
}
.footer-wrapper .form .submit {
  width: 0.8rem;
  color: #fff;
  text-align: center;
  background-color: #d6001f;
  transition: box-shadow 0.3s ease;
  -webkit-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  -ms-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
}
.footer-wrapper .form .submit:hover {
  box-shadow: 0 5px 30px rgba(214, 0, 31, 0.4);
}
.footer-wrapper .copyright,
.footer-wrapper .copyright a {
  color: rgba(51, 51, 51, 0.5);
}
.footer-wrapper .copyright {
  margin-top: 0.08rem;
  line-height: 24px;
}
.footer-wrapper .copyright a {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.footer-wrapper .copyright a:hover {
  color: #d6001f;
}
.footer-nav-box ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.footer-nav-box li {
  width: 33.33%;
  margin-top: 0.36rem;
  padding-right: 0.2rem;
}
.footer-nav-box li:nth-child(-n+3) {
  margin-top: 0;
}
.footer-nav-box li:nth-child(3n) {
  padding-right: 0;
}
.footer-nav-box li > a {
  line-height: 0.3rem;
  font-size: var(--fs16);
  margin-bottom: 0.07rem;
}
.footer-nav-box a {
  display: block;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.footer-nav-box .nav a,
.footer-nav-box .contact {
  line-height: 24px;
  font-family: "cn_light";
  color: #989898;
}
.footer-nav-box .nav a:hover {
  color: #d6001f;
}
.footer-nav-box .nav a:hover span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.footer-nav-box .nav span {
  background: url(../img/dot.jpg) no-repeat;
  background-size: 0 1px;
  background-position: 100% 100%;
  transition: background-size 0.7s ease;
}
.share {
  margin: 1rem auto 0.35rem;
}
.share ul {
  font-size: 0;
}
.share ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 0.14rem;
}
.share ul li:last-child {
  margin-right: 0;
}
.share ul li.on .hidebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.share ul li.on a img {
  display: none;
}
.share ul li.on a img.on {
  display: block;
}
.share ul li a {
  position: relative;
  display: block;
  width: 0.43rem;
  height: 0.43rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  border-radius: 50%;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.share ul li a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 10;
  border-radius: 50%;
}
.share ul li a img.on {
  display: none;
}
.share .hidebox {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.15rem);
  z-index: 1;
  margin-left: -0.6rem;
  width: 1.2rem;
  background-color: #fff;
  box-shadow: 0px 0px 46px 0px rgba(6, 0, 1, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  text-align: center;
  padding-bottom: 0.08rem;
}
.share .hidebox img {
  display: block;
  width: 100%;
}
.share .hidebox p {
  font-size: 12px;
  color: #999;
  line-height: 20px;
}
.search-form {
  width: 100%;
  position: fixed;
  left: 0;
  top: 1rem;
  background: #fff;
  z-index: 30;
  padding: 0.7rem 0;
  display: none;
  border-top: 1px solid #efefef;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  /* input placeholder  */
}
.search-form .w960 {
  position: relative;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  width: 9.6rem;
  margin: 0 auto;
  align-items: center;
  border-bottom: 1px solid #efefef;
}
.search-form .keywords {
  flex: 1;
  overflow: hidden;
  line-height: 0.56rem;
  margin-left: 20px;
  font-size: 15px;
  color: #999;
}
.search-form ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999;
  font-size: 15px;
}
.search-form :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #999;
  font-size: 15px;
}
.search-form ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #999;
  font-size: 15px;
}
.search-form :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #999;
  font-size: 15px;
}
.search-form .close {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 10;
  color: #999;
  margin-top: -0.15rem;
  width: 0.2rem;
  height: 0.2rem;
}
.search-form .close svg {
  fill: #999;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.search-form .close:hover svg {
  fill: #d6001f;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.swiper-btn {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.index-more {
  display: inline-block;
  color: #666;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  line-height: 0.24rem;
  font-family: "cn_light";
}
.index-more:hover,
.index-more.on {
  color: #d6001f;
}
.index-more:hover span:before,
.index-more.on span:before {
  left: -100%;
}
.index-more:hover span:after,
.index-more.on span:after {
  right: 0;
}
.index-more.white {
  color: #fff;
}
.index-more.white span:before {
  background-color: #fff;
}
.index-more.white span:after {
  background-color: #fff;
}
.index-more span {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.index-more span:before,
.index-more span:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.index-more span:before {
  background-color: #666;
  left: 0;
}
.index-more span:after {
  background-color: #d6001f;
  right: -100%;
}
.index-banner-wrapper:hover .swiper-btn {
  opacity: 1;
  visibility: visible;
}
.index-banner-wrapper:hover .prev {
  left: 0;
}
.index-banner-wrapper:hover .next {
  right: 0;
}
.index-banner-wrapper .index-banner-swiper .swiper-slide-active .info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.index-banner-wrapper .index-banner-swiper .swiper-slide-active img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.index-banner-wrapper .index-banner-swiper .info {
  opacity: 0;
  visibility: hidden;
  transform: translateY(120px);
  -webkit-transform: translateY(120px);
  -moz-transform: translateY(120px);
  -ms-transform: translateY(120px);
  -o-transform: translateY(120px);
  transition: all 1.5s ease;
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition-delay: 0.4s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.index-banner-wrapper .swiper-slide {
  overflow: hidden;
}
.index-banner-wrapper .swiper-slide a {
  display: block;
}
.index-banner-wrapper .swiper-slide a > img,
.index-banner-wrapper .swiper-slide video {
  height: 100vh;
  object-fit: cover;
}
.index-banner-wrapper .swiper-slide video {
  display: block;
  width: 100%;
}
.index-banner-wrapper .swiper-slide a > img {
  display: block;
  width: 100%;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 1.5s ease;
  -webkit-transition: transform 1.5s ease;
  -moz-transition: transform 1.5s ease;
  -ms-transition: transform 1.5s ease;
  -o-transition: transform 1.5s ease;
}
.index-banner-wrapper .swiper-slide a > img.phone {
  display: none;
}
.index-banner-wrapper .video.swiper-slide-active .title span {
  opacity: 1;
  visibility: visible;
}
.index-banner-wrapper .video.swiper-slide-active .title span:first-child {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.index-banner-wrapper .video.swiper-slide-active .title span:not(first-child) {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.index-banner-wrapper .video.swiper-slide .info {
  opacity: 1;
  visibility: visible;
  transform: none;
  left: auto;
  right: calc((100% - 15.36rem) / 2);
}
.index-banner-wrapper .video > img {
  display: none;
  width: 100%;
}
.index-banner-wrapper .video .title {
  font-family: "thin";
  color: #000;
}
.index-banner-wrapper .video .title span {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  margin-right: 0.2rem;
}
.index-banner-wrapper .video .title span:last-child {
  margin-right: 0;
}
.index-banner-wrapper .video .title span:first-child {
  margin-right: 0.6rem;
  transform: scale(5);
  -webkit-transform: scale(5);
  -moz-transform: scale(5);
  -ms-transform: scale(5);
  -o-transform: scale(5);
  transition-delay: 0.2s;
}
.index-banner-wrapper .video .title span:not(first-child) {
  transform: translateX(2rem);
  -webkit-transform: translateX(2rem);
  -moz-transform: translateX(2rem);
  -ms-transform: translateX(2rem);
  -o-transform: translateX(2rem);
}
.index-banner-wrapper .info {
  position: absolute;
  left: calc((100% - 15.36rem) / 2);
  top: 0;
  z-index: 10;
  width: 40%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.index-banner-wrapper .inner {
  width: 100%;
  text-align: center;
}
.index-banner-wrapper .title {
  font-size: var(--fs48);
  letter-spacing: 2px;
  color: #010101;
  line-height: 0.72rem;
  margin-bottom: 0.14rem;
}
.index-banner-wrapper .brief {
  display: inline-block;
  background-color: #d6001f;
  font-size: var(--fs20);
  color: #fff;
  font-family: "cn_light";
  padding: 0 8px;
  line-height: 28px;
  width: auto;
}
.index-banner-wrapper .info2 .brief {
  font-family: "cn_light";
  line-height: 32px;
  font-size: var(--fs24);
  margin-bottom: 0.1rem;
}
.index-banner-wrapper .info2 .title {
  margin-bottom: 0;
  font-size: var(--fs36);
}
.index-banner-wrapper .swiper-btn {
  width: 1.5rem;
  height: 100%;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  opacity: 0;
  visibility: hidden;
  top: 0;
  transform: none;
}
.index-banner-wrapper .swiper-btn:before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.06);
  position: absolute;
  left: 50%;
  margin-left: -0.24rem;
  top: 50%;
  margin-top: -0.24rem;
  z-index: 10;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.index-banner-wrapper .swiper-btn:hover:before {
  background-color: #d6001f;
}
.index-banner-wrapper .prev {
  left: -1rem;
}
.index-banner-wrapper .prev:before {
  background-image: url(../img/prev3.png);
}
.index-banner-wrapper .next {
  right: -1rem;
}
.index-banner-wrapper .next:before {
  background-image: url(../img/next3.png);
}
.index-title {
  font-size: var(--fs36);
  color: #222;
  line-height: 0.48rem;
  text-align: center;
  margin-bottom: 0.24rem;
}
.index-title.white {
  color: #fff;
}
.video-box {
  position: relative;
  overflow: hidden;
}
.video-box .pic:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.video-box .pic:hover .play:after {
  animation-play-state: paused;
}
.video-box .play {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  cursor: pointer;
  background-image: url(../img/play.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 0.14rem;
}
.video-box .play:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
  background: url(../img/circle.png) no-repeat center center;
  animation: iconRotate 4s linear infinite;
  background-size: contain;
}
.video-box video {
  width: 100%;
}
.video-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  background-color: rgba(0, 0, 0, 0.85);
}
.video-modal .box {
  width: 9.6rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.video-modal video {
  display: block;
  width: 100%;
}
.video-modal .close {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  z-index: 1;
}
.video-modal .close svg {
  fill: #fff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.video-modal .close:hover svg {
  transform: rotate(-90deg);
}
.index-box-1 {
  background-color: #d6001f;
  text-align: center;
}
.index-box-1 .desc {
  width: 76%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-family: "cn_light";
  line-height: 0.24rem;
  margin-bottom: 0.2rem;
}
.index-box-1 .video-box {
  width: 76%;
  margin: 0.5rem auto 0;
}
.index-box-2 ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  border-top: 2px solid #d6001f;
}
.index-box-2 li {
  width: 25%;
}
.index-box-2 li:last-child .info {
  border-right: none;
}
.index-box-2 li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.index-box-2 li:hover .pic:after {
  animation-name: translateX-hover-1;
  animation-duration: 0.6s;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.index-box-2 .info {
  padding: 0.46rem 0.5rem 0.4rem 0.6rem;
  border-right: 1px solid #efefef;
}
.index-box-2 .icon {
  display: block;
  height: 0.25rem;
  max-width: 100%;
}
.index-box-2 .desc {
  margin: 0.2rem auto 0.26rem;
  font-family: "cn_light";
  line-height: 0.24rem;
  height: 0.72rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-align: justify;
}
.index-box-2 .pic {
  position: relative;
  display: block;
}
.index-box-2 .pic:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  animation-name: translateX-hover-2;
  animation-duration: 0.6s;
  animation-delay: 0s;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.news-box ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.news-box li a,
.news-box .swiper-slide a {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.news-box .swiper-slide {
  width: 39.47%;
}
.news-box li {
  width: 49.34%;
  margin-top: 0.5rem;
}
.news-box li:nth-child(-n+2) {
  margin-top: 0;
}
.news-box li .title {
  -webkit-line-clamp: 3;
  line-height: 0.3rem;
  height: 0.9rem;
}
.news-box .pic,
.news-box .info {
  width: 50%;
}
.news-box .pic:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.news-box .info {
  text-align: center;
  padding: 0.86rem 0.4rem 0;
  background-color: #fff;
}
.news-box .info:hover .index-more,
.news-box .info:hover .title {
  color: #d6001f;
}
.news-box .info:hover .index-more span:before {
  left: -100%;
}
.news-box .info:hover .index-more span:after {
  right: 0;
}
.news-box .time {
  font-size: var(--fs16);
  color: #ccc;
  font-family: "mlight";
  line-height: 0.24rem;
}
.news-box .title {
  font-size: var(--fs20);
  line-height: 0.32rem;
  height: 0.64rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.08rem auto 0.45rem;
}
.index-box-3 .news-box {
  border-top: 2px solid #d6001f;
  background-color: #f0f2f3;
  height: calc(100vh - 1.92rem);
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
  align-content: center;
  justify-content: center;
}
.index-box-3 .swiper-container {
  padding-left: calc((100% - 15.36rem) / 2);
}
.index-box-3 .btn-box {
  margin-top: 0.5rem;
}
.btn-box {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  text-align: center;
  justify-content: center;
}
.btn-box .swiper-btn {
  width: 15px;
  height: 28px;
  transform: none;
  position: static;
}
.btn-box .prev {
  margin-right: 0.26rem;
  background-image: url(../img/prev.png);
}
.btn-box .prev:hover {
  background-image: url(../img/prev2.png);
}
.btn-box .next {
  margin-left: 0.26rem;
  background-image: url(../img/next.png);
}
.btn-box .next:hover {
  background-image: url(../img/next2.png);
}
.btn-box .swiper-pagination {
  position: static;
  display: block;
  font-size: 0;
}
.btn-box .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: none;
  margin: 0 6px;
  width: 14px;
  height: 14px;
  border: none;
}
.btn-box .swiper-pagination .swiper-pagination-bullet:focus,
.btn-box .swiper-pagination .swiper-pagination-bullet:active,
.btn-box .swiper-pagination .swiper-pagination-bullet:link {
  outline: none;
}
.btn-box .swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: block;
  margin: 4px auto 0;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.btn-box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before,
.btn-box .swiper-pagination .swiper-pagination-bullet:hover:before {
  background: #d6001f;
}
.page-box {
  padding: 0.82rem 0 1.68rem;
}
.page-banner-wrapper {
  background: none!important;
}
.page-banner-swiper:hover .swiper-btn {
  opacity: 1;
  visibility: visible;
}
.page-banner-swiper:hover .prev {
  left: 0.86rem;
}
.page-banner-swiper:hover .next {
  right: 0.86rem;
}
.page-banner-swiper.noSwiper .swiper-slide img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: none;
}
.page-banner-swiper .swiper-slide {
  overflow: hidden;
}
.page-banner-swiper .swiper-slide.swiper-slide-active img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.page-banner-swiper .swiper-slide a {
  display: block;
}
.page-banner-swiper .swiper-slide img {
  display: block;
  width: 100%;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 6s ease;
  -webkit-transition: transform 6s ease;
  -moz-transition: transform 6s ease;
  -ms-transition: transform 6s ease;
  -o-transition: transform 6s ease;
}
.page-banner-swiper video {
  width: 100%;
  object-fit: cover;
}
.page-banner-swiper .swiper-btn {
  width: 0.25rem;
  height: 0.48rem;
  opacity: 0.5;
}
.page-banner-swiper .swiper-btn:hover {
  opacity: 1;
}
.page-banner-swiper .prev {
  left: -1rem;
  background-image: url(../img/prev4.png);
}
.page-banner-swiper .next {
  right: -1rem;
  background-image: url(../img/next4.png);
}
.page-title {
  text-align: center;
  margin-bottom: 1rem;
}
.page-title.phone {
  display: none;
}
.page-title h3 {
  font-size: var(--fs36);
  font-weight: 700;
  line-height: 0.48rem;
}
.page-title .line {
  width: 0.43rem;
  height: 0.03rem;
  background-color: #d6001f;
  margin: 0.13rem auto 0;
}
.page-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 30;
}
.mt {
  margin-top: 1.2rem;
}
.ad-box {
  position: relative;
}
.ad-box img {
  display: block;
  width: 100%;
}
.ad-box .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 0.55rem 0.58rem;
}
.ad-box .name {
  font-size: var(--fs18);
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.ad-box p {
  font-family: "cn_light";
  line-height: 20px;
}
.ad-box .number {
  font-size: var(--fs48);
  line-height: 0.48rem;
  color: #d6001f;
  font-family: "medium";
  margin: 0.16rem auto 0.18rem;
}
.ad-box .title {
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-family: "cn_light";
}
.actual-wrapper .box-1 .main {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.actual-wrapper .box-1 .ad-box {
  width: 42.32%;
}
.actual-wrapper .box-1 .stock-box {
  width: 56.96%;
  padding: 10px;
  font-size: 0;
  border: 1px solid #eee;
}
.actual-wrapper iframe {
  width: 100%;
}
.actual-wrapper .box-2 ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.actual-wrapper .box-2 li {
  position: relative;
  width: 32.55%;
  background-color: #f8f8f8;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin-top: 0.6rem;
  margin-right: 1.175%;
  padding: 0.4rem 0.8rem 0.5rem 0.46rem;
}
.actual-wrapper .box-2 li:hover {
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
}
.actual-wrapper .box-2 li:hover .title {
  color: #d6001f;
}
.actual-wrapper .box-2 li:nth-child(-n+3) {
  margin-top: 0;
}
.actual-wrapper .box-2 li:nth-child(3n) {
  margin-right: 0;
}
.actual-wrapper .box-2 .title {
  font-size: var(--fs20);
  line-height: 0.3rem;
  height: 0.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 700;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  margin-bottom: 0.26rem;
}
.actual-wrapper .box-2 p {
  font-size: var(--fs18);
  font-family: "cn_light";
  line-height: 0.24rem;
}
.actual-wrapper .box-2 .download {
  display: inline-block;
  width: 0.3rem;
  height: 0.42rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/pdf.png);
  position: absolute;
  right: 0.72rem;
  bottom: 0.4rem;
  z-index: 10;
}
.actual-wrapper .box-3 {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.actual-wrapper .box-3 .item {
  width: 33.33%;
  position: relative;
}
.actual-wrapper .box-3 .item:nth-child(2) .title {
  color: #333;
}
.actual-wrapper .box-3 .item:nth-child(2) .line {
  background-color: #d6001f;
}
.actual-wrapper .box-3 .item:nth-child(2) .index-more {
  color: #333;
}
.actual-wrapper .box-3 .item:nth-child(2) .index-more span:before,
.actual-wrapper .box-3 .item:nth-child(2) .index-more span:after {
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}
.actual-wrapper .box-3 .item:nth-child(2) .index-more:hover {
  color: #d6001f;
}
.actual-wrapper .box-3 .item:nth-child(2) .index-more:hover span:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  background-color: #d6001f;
}
.actual-wrapper .box-3 .item:hover .info {
  transform: translateY(-0.2rem);
  -webkit-transform: translateY(-0.2rem);
  -moz-transform: translateY(-0.2rem);
  -ms-transform: translateY(-0.2rem);
  -o-transform: translateY(-0.2rem);
}
.actual-wrapper .box-3 .info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 1.15rem 0.4rem 0;
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}
.actual-wrapper .box-3 .title {
  font-size: var(--fs36);
  color: #fff;
  line-height: 0.48rem;
  font-weight: 700;
}
.actual-wrapper .box-3 .line {
  width: 0.43rem;
  height: 0.03rem;
  background-color: #fff;
  margin: 0.12rem auto 0.46rem;
}
.notice-wrapper .main {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.notice-wrapper .list {
  width: calc(100% - 4.4rem);
}
.notice-wrapper .list li {
  height: 1.18rem;
  background-color: #fff;
  border: solid 2px #f2f0ea;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  margin-bottom: 0.2rem;
  line-height: 0.3rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  padding-right: 0.5rem;
}
.notice-wrapper .list li:last-child {
  margin-bottom: 0;
}
.notice-wrapper .list li:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
}
.notice-wrapper .list li:hover .download {
  background-image: url(../img/pdf2.png);
}
.notice-wrapper .list .title {
  font-size: var(--fs18);
  color: #666;
  transition: color 0.4s ease;
  -webkit-transition: color 0.4s ease;
  -moz-transition: color 0.4s ease;
  -ms-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
  max-height: 0.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  flex: 1;
  margin-right: 0.72rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.notice-wrapper .date {
  width: 2rem;
  text-align: center;
  font-size: var(--fs16);
  color: #999;
  font-family: "cn_light";
}
.notice-wrapper .download {
  display: inline-block;
  width: 0.3rem;
  height: 0.42rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/pdf.png);
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.notice-wrapper .other {
  width: 3.8rem;
}
.notice-wrapper .ad-box .number {
  margin: 0.2rem auto;
  font-size: var(--fs36);
}
.notice-wrapper .ad-box .info {
  padding: 0.65rem 0.44rem;
}
.form-box {
  position: relative;
  z-index: 10;
  background-color: #f2f2f2;
  padding: 0.5rem 0.35rem 0.6rem 0.44rem;
}
.form-box .title {
  font-size: var(--fs18);
  line-height: 0.24rem;
  margin-bottom: 0.18rem;
}
.form-box .group {
  position: relative;
  margin-bottom: 0.32rem;
}
.form-box .group:last-child {
  margin-bottom: 0;
}
.form-box .caption,
.form-box .text {
  height: 0.5rem;
  line-height: 0.5rem;
  background-color: #fff;
  padding: 0 0.44rem 0 0.2rem;
}
.form-box .caption {
  position: relative;
  cursor: pointer;
  font-size: var(--fs16);
  color: #b4b4b4;
}
.form-box .caption.on:after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.form-box .caption:after {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  background: url(../img/idown.png) no-repeat left center;
  background-size: contain;
  position: absolute;
  right: 0.2rem;
  top: 0;
  z-index: 10;
}
.form-box .list {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 2.55rem;
  overflow-y: auto;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  display: none;
}
.form-box .list a {
  display: block;
  color: #b4b4b4;
  font-size: var(--fs16);
  line-height: 0.5rem;
  padding: 0 0.2rem;
  font-family: "cn_light";
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.form-box .list a:hover,
.form-box .list a.on {
  color: #d6001f;
  font-weight: 700;
}
.form-box .list a:last-child {
  border-bottom: none;
}
.form-box .search {
  position: relative;
  /* input placeholder  */
}
.form-box .search ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #b4b4b4;
  font-size: var(--fs16);
}
.form-box .search :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #b4b4b4;
  font-size: var(--fs16);
}
.form-box .search ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #b4b4b4;
  font-size: var(--fs16);
}
.form-box .search :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #b4b4b4;
  font-size: var(--fs16);
}
.form-box .text {
  width: 100%;
}
.form-box .submit {
  width: 16px;
  height: 100%;
  position: absolute;
  right: 0.2rem;
  top: 0;
  z-index: 10;
  background-image: url(../img/search2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.newsinfo-wrapper {
  background-color: #f5f5f5;
}
.newsinfo-wrapper .top {
  text-align: center;
  margin-bottom: 0.45rem;
}
.newsinfo-wrapper .top h1 {
  font-size: var(--fs36);
  color: #404040;
  line-height: 0.48rem;
  margin-bottom: 0.54rem;
}
.newsinfo-wrapper .top .date {
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #ccc;
}
.newsinfo-wrapper .top .date img {
  margin-right: 0.12rem;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: -2px;
  width: 0.16rem;
}
.newsinfo-wrapper .main {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 1.05rem 0 1.52rem 0.94rem;
  background-color: #fff;
}
.newsinfo-wrapper .content {
  width: calc(100% - 2.45rem);
}
.newsinfo-wrapper .relative-box {
  margin-top: 0.72rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 0.72rem;
}
.newsinfo-wrapper .relative-box p {
  width: 39.06%;
  background-color: #fff;
  border-radius: 40px;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  padding: 0 0.56rem;
}
.newsinfo-wrapper .relative-box p:hover {
  color: #d6001f;
  box-shadow: 15px 11px 13px 0px rgba(0, 0, 0, 0.05);
}
.newsinfo-wrapper .relative-box p:hover a:hover {
  color: #d6001f;
}
.newsinfo-wrapper .relative-box p a {
  height: 0.8rem;
  line-height: 0.8rem;
  max-width: 85%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.newsinfo-wrapper .relative-box p,
.newsinfo-wrapper .relative-box p a {
  font-size: var(--fs16);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.share-box {
  width: 1.5rem;
  position: sticky;
  height: 100%;
  top: 1rem;
  border-top: 0.03rem solid #d6001f;
}
.share-box a {
  display: block;
  line-height: 0.7rem;
  padding-left: 0.28rem;
  font-size: 0.16rem;
  color: #666;
  background-color: #fafafa;
  border-bottom: 1px solid #ebebeb;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.share-box a:hover {
  color: #d6001f;
}
.share-box a.return {
  color: #fff !important;
  padding-left: 0;
  text-align: center;
  background-color: #d6001f;
}
.share-box a.return img {
  margin-right: 0;
  margin-left: 10px;
  width: 0.17rem;
}
.share-box img {
  vertical-align: middle;
  width: 0.3rem;
  margin-right: 0.15rem;
}
.gotop {
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-image: url(../img/top.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: fixed;
  bottom: 25%;
  right: 0.26rem;
  z-index: 30;
  display: none;
}
.rights-wrapper {
  padding-bottom: 0!important;
}
.rights-wrapper .box-1 .base {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.rights-wrapper .box-1 .info,
.rights-wrapper .box-1 .pic {
  width: 50%;
}
.rights-wrapper .box-1 .pic:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.rights-wrapper .box-1 .info {
  padding: 0.94rem 0.96rem 0 0.86rem;
  background-color: #f5f5f5;
}
.rights-wrapper .box-1 .title {
  font-size: var(--fs48);
  color: #d6001f;
  font-weight: 700;
  line-height: 0.56rem;
}
.rights-wrapper .box-1 .brief {
  font-size: var(--fs24);
  line-height: 0.36rem;
  margin: 0.18rem auto 0.3rem;
}
.rights-wrapper .box-1 .content {
  font-family: "cn_light";
}
.rights-wrapper .box-1 .list {
  margin-top: 1.05rem;
}
.rights-wrapper .box-1 .list ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.rights-wrapper .box-1 .list li {
  width: 20%;
  text-align: center;
  padding: 0 0.3rem;
}
.rights-wrapper .box-1 .list li:hover .icon {
  transform: translateY(-0.2rem);
  -webkit-transform: translateY(-0.2rem);
  -moz-transform: translateY(-0.2rem);
  -ms-transform: translateY(-0.2rem);
  -o-transform: translateY(-0.2rem);
}
.rights-wrapper .box-1 .list .icon {
  display: block;
  height: 1.3rem;
  max-width: 100%;
  margin: 0 auto;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.rights-wrapper .box-1 .list p {
  font-size: var(--fs16);
  color: #666;
  margin-top: 0.46rem;
  line-height: 0.24rem;
}
.rights-wrapper .box-2 {
  margin-top: 0.94rem;
  padding: 0.9rem 0 1.2rem;
  background-color: #f9f9f9;
}
.rights-wrapper .box-2 .cat-box {
  text-align: center;
  font-size: 0;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: center;
}
.rights-wrapper .box-2 .cat-box a {
  display: inline-block;
  position: relative;
  font-size: var(--fs30);
  color: #666;
  line-height: 0.36rem;
  padding-bottom: 0.09rem;
  margin: 0 0.71rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.rights-wrapper .box-2 .cat-box a:last-child {
  margin-right: 0;
}
.rights-wrapper .box-2 .cat-box a.on {
  color: #d6001f;
}
.rights-wrapper .box-2 .cat-box a.on:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.rights-wrapper .box-2 .cat-box a:after {
  content: "";
  width: 100%;
  height: 0.03rem;
  background-color: #d6001f;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}
.rights-wrapper .form {
  position: relative;
  z-index: 10;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: center;
  margin: 0.58rem auto 0.77rem;
}
.rights-wrapper .form .group {
  position: relative;
  width: 1.9rem;
  margin-right: 0.4rem;
}
.rights-wrapper .form .group:last-child {
  margin-right: 0;
}
.rights-wrapper .form .caption {
  position: relative;
  cursor: pointer;
  font-size: var(--fs14);
  color: #666;
  height: 0.45rem;
  line-height: 0.43rem;
  background-color: #fff;
  padding: 0 0.44rem 0 0.25rem;
  border-radius: 23px;
  border: solid 1px #e6e6e6;
}
.rights-wrapper .form .caption.on:after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.rights-wrapper .form .caption:after {
  content: "";
  display: block;
  width: 11px;
  height: 100%;
  background: url(../img/idown2.png) no-repeat left center;
  background-size: contain;
  position: absolute;
  right: 0.2rem;
  top: 0;
  z-index: 10;
}
.rights-wrapper .form .list {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 2.3rem;
  overflow-y: auto;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  display: none;
}
.rights-wrapper .form .list a {
  display: block;
  color: #666;
  font-size: var(--fs14);
  line-height: 0.45rem;
  padding: 0 0.25rem;
  font-family: "cn_light";
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.rights-wrapper .form .list a:hover,
.rights-wrapper .form .list a.on {
  color: #d6001f;
  font-weight: 700;
}
.rights-wrapper .form .list a:last-child {
  border-bottom: none;
}
.rights-wrapper .main .item {
  display: none;
}
.rights-wrapper .main ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.rights-wrapper .main li {
  cursor: pointer;
  width: 22.53%;
  margin-right: 3.293%;
  margin-top: 3.293%;
  background-color: #fff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  text-align: center;
  padding: 0.26rem 0 0.44rem;
}
.rights-wrapper .main li:hover {
  box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.1);
}
.rights-wrapper .main li:hover p {
  color: #d6001f;
}
.rights-wrapper .main li:hover .pic:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.rights-wrapper .main .pic {
  width: 72.25%;
  margin: 0 auto;
  position: relative;
}
.rights-wrapper .main .pic:before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.38rem;
  margin-top: -0.38rem;
  background-image: url(../img/search3.png);
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.rights-wrapper .main .pic img {
  height: 3.33rem;
  object-fit: contain;
}
.rights-wrapper .main p {
  padding: 0 0.3rem;
  color: #222;
  font-family: "cn_light";
  line-height: 0.26rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 0.52rem;
  margin-top: 0.32rem;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.rights-wrapper .pageNum {
  margin-top: 1.06rem;
}
.pic-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  background-color: rgba(0, 0, 0, 0.85);
}
.pic-modal .box {
  width: 8.7rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.pic-modal .pic {
  display: block;
}
.pic-modal .pic img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  max-height: 70vh;
  object-fit: contain;
}
.pic-modal .main {
  position: relative;
  width: 100%;
  padding: 0.6rem;
  background: #fff;
}
.pic-modal .close {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: url(../img/close2.png);
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  right: -0.6rem;
  top: -0.2rem;
  z-index: 1;
  background-size: 0.2rem;
  opacity: 1;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.pic-modal .close:hover {
  transform: rotate(-90deg);
}
.pic-modal p {
  font-size: var(--fs20);
  line-height: 0.36rem;
  text-align: center;
  margin-top: 0.6rem;
}
.mask {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.esg-wrapper .box-1 {
  padding-top: 0.78rem;
}
.esg-wrapper .box-1 .page-title {
  margin-bottom: 0.53rem;
}
.esg-wrapper .box-1 .main {
  background-color: #f0f2f3;
}
.esg-wrapper .box-1 .swiper-container {
  padding: 0.78rem 0;
}
.esg-wrapper .box-1 .box-container {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-left: 2.8rem;
}
.esg-wrapper .box-1 .pic {
  width: 31.85%;
  overflow: hidden;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  box-shadow: 16px 17px 10px 0px rgba(0, 0, 0, 0.06);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}
.esg-wrapper .box-1 .pic img {
  display: block;
  width: 100%;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
}
.esg-wrapper .box-1 .pic img:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.esg-wrapper .box-1 .swiper-box {
  width: 100%;
}
.esg-wrapper .box-1 .swiper-box .swiper-slide {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.esg-wrapper .box-1 .swiper-box .info {
  width: 61.3%;
  padding-right: 1.7rem;
  padding-top: 1.2rem;
}
.esg-wrapper .box-1 .swiper-box .swiper-slide-active .title,
.esg-wrapper .box-1 .swiper-box .swiper-slide-active .brief,
.esg-wrapper .box-1 .swiper-box .swiper-slide-active .btns {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.esg-wrapper .box-1 .swiper-box .swiper-slide-active .pic {
  opacity: 1;
  visibility: visible;
}
.esg-wrapper .box-1 .swiper-box .title,
.esg-wrapper .box-1 .swiper-box .brief,
.esg-wrapper .box-1 .swiper-box .btns {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.7rem);
  -webkit-transform: translateY(0.7rem);
  -moz-transform: translateY(0.7rem);
  -ms-transform: translateY(0.7rem);
  -o-transform: translateY(0.7rem);
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
}
.esg-wrapper .box-1 .swiper-box .title {
  font-size: var(--fs24);
  line-height: 0.36rem;
  transition-delay: 0.15s;
}
.esg-wrapper .box-1 .swiper-box .brief {
  font-size: var(--fs14);
  font-family: "cn_light";
  line-height: 0.26rem;
  max-height: 1.82rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  margin: 0.2rem auto 0.38rem;
  transition-delay: 0.3s;
}
.esg-wrapper .btn-box {
  width: 61.3%;
  position: absolute;
  right: 0;
  bottom: 1.1rem;
  z-index: 10;
  justify-content: flex-start;
}
.esg-wrapper .part-1 {
  text-align: center;
  padding-top: 1rem;
}
.esg-wrapper .part-1 .page-title {
  margin-bottom: 0.83rem;
}
.esg-wrapper .part-1 .main {
  position: relative;
}
.esg-wrapper .part-1 .info-box {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  padding: 0.76rem 1rem 0;
}
.esg-wrapper .part-1 h2 {
  font-size: var(--fs48);
  color: #000;
  font-family: "cn_light";
  line-height: 0.56rem;
  margin-bottom: 0.56rem;
}
.esg-wrapper .data ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: center;
}
.esg-wrapper .data li {
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  margin-right: 1.05rem;
  padding: 0 0.3rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.esg-wrapper .data li:last-child {
  margin-right: 0;
}
.esg-wrapper .data li:before {
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  animation: circleAnimate 10s linear infinite;
}
.esg-wrapper .data li:nth-child(1):before {
  background-image: url(../img/circle_1.png);
}
.esg-wrapper .data li:nth-child(2):before {
  background-image: url(../img/circle_2.png);
}
.esg-wrapper .data li:nth-child(3):before {
  background-image: url(../img/circle_3.png);
}
.esg-wrapper .data .info {
  width: 100%;
}
.esg-wrapper .data .title {
  font-size: var(--fs16);
  color: #000;
  line-height: 0.3rem;
  min-height: 0.6rem;
}
.esg-wrapper .data .num {
  margin-top: 0.08rem;
}
.esg-wrapper .data .num em,
.esg-wrapper .data .num span {
  display: inline-block;
}
.esg-wrapper .data .num span {
  font-family: "mb";
  color: #d6001f;
  font-size: 0.5rem;
  line-height: 0.5rem;
  height: 0.5rem;
}
.esg-wrapper .data .num em {
  font-size: var(--fs16);
  font-family: "cn_light";
  line-height: 0.24rem;
  margin-left: 0.08rem;
}
.esg-wrapper .part-2 {
  margin-top: 0.83rem;
}
.esg-wrapper .part-2 .top {
  text-align: center;
  margin-bottom: 0.78rem;
}
.esg-wrapper .part-2 .page-title {
  color: #d6001f;
  margin-bottom: 0.32rem;
}
.esg-wrapper .part-2 .brief {
  font-size: var(--fs14);
  font-family: "cn_light";
  line-height: 0.24rem;
}
.esg-wrapper .part-2 .main {
  background: url(../img/esg3bg.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  padding: 0.67rem 0.7rem 0.67rem 2.06rem;
}
.esg-wrapper .part-2 .pic {
  width: 55.8%;
}
.esg-wrapper .part-2 .content {
  width: 38.09%;
  color: #f4d2bf;
  font-size: 0.16rem;
  line-height: 24px;
}
.esg-wrapper .part-2 .en {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #f5d2be;
  font-family: "cn_light";
  margin-top: 0.36rem;
}
.esg-wrapper .box-3 {
  padding-top: 0.83rem;
}
.esg-wrapper .box-3 .main {
  background-color: #f0f2f3;
  padding: 0.92rem 0 1.65rem;
}
.esg-wrapper .form {
  position: relative;
  z-index: 10;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  justify-content: center;
  margin-bottom: 0.76rem;
  /* input placeholder  */
}
.esg-wrapper .form .group {
  position: relative;
  width: 1.5rem;
  margin-right: 0.4rem;
}
.esg-wrapper .form .group:last-child {
  margin-right: 0;
}
.esg-wrapper .form .group:nth-child(2) {
  width: 3.5rem;
}
.esg-wrapper .form .caption {
  position: relative;
  cursor: pointer;
  font-size: var(--fs14);
  color: #666;
  height: 0.45rem;
  line-height: 0.45rem;
  background-color: #fff;
  padding: 0 0.44rem 0 0.25rem;
  border-radius: 23px;
}
.esg-wrapper .form .caption.on:after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.esg-wrapper .form .caption:after {
  content: "";
  display: block;
  width: 11px;
  height: 100%;
  background: url(../img/idown2.png) no-repeat left center;
  background-size: contain;
  position: absolute;
  right: 0.2rem;
  top: 0;
  z-index: 10;
}
.esg-wrapper .form .list {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 2.3rem;
  overflow-y: auto;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  display: none;
}
.esg-wrapper .form .list a {
  display: block;
  color: #666;
  font-size: var(--fs14);
  line-height: 0.45rem;
  padding: 0 0.25rem;
  font-family: "cn_light";
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.esg-wrapper .form .list a:hover,
.esg-wrapper .form .list a.on {
  color: #d6001f;
  font-weight: 700;
}
.esg-wrapper .form .list a:last-child {
  border-bottom: none;
}
.esg-wrapper .form .text {
  width: 100%;
  height: 0.45rem;
  background-color: #fff;
  border-radius: 23px;
  color: #666;
  font-size: var(--fs14);
  padding: 0 0.25rem;
  transition: box-shadow 0.5s ease;
  -webkit-transition: box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  -ms-transition: box-shadow 0.5s ease;
  -o-transition: box-shadow 0.5s ease;
}
.esg-wrapper .form .text:focus {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.esg-wrapper .form ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #666;
  font-size: var(--fs14);
}
.esg-wrapper .form :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #666;
  font-size: var(--fs14);
}
.esg-wrapper .form ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #666;
  font-size: var(--fs14);
}
.esg-wrapper .form :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #666;
  font-size: var(--fs14);
}
.esg-wrapper .form .submit {
  display: block;
  color: #fff;
  text-align: center;
  width: 0.6rem;
  height: 0.45rem;
  line-height: 0.45rem;
  background-color: #d6001f;
  border-radius: 23px;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.esg-wrapper .form .submit:hover {
  background-color: #cb292e;
}
.btns {
  font-size: 0;
  transition-delay: 0.45s;
}
.btns a {
  display: inline-block;
  width: 1.32rem;
  height: 0.45rem;
  line-height: 0.45rem;
  text-align: center;
  background-color: #fff;
  border-radius: 23px;
  margin-right: 0.28rem;
  color: #d6001f;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.btns a:last-child {
  margin-right: 0;
}
.btns a:hover {
  background-color: #d6001f;
  color: #fff;
}
.btns span {
  text-decoration: underline;
}
.btns .download:hover:after {
  background-image: url(../img/download2.png);
}
.btns .download:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/download.png);
  transition: background 0.4s ease;
  -webkit-transition: background 0.4s ease;
  -moz-transition: background 0.4s ease;
  -ms-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  margin-left: 0.1rem;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.base-wrapper {
  padding-top: 0!important;
}
.base-wrapper .page-title {
  padding-top: 0.8rem;
  margin-bottom: 0.9rem;
}
.base-wrapper .top {
  text-align: center;
  margin-bottom: 0.82rem;
}
.base-wrapper .top .page-title {
  margin-bottom: 0.3rem;
}
.base-wrapper .top .brief {
  font-size: var(--fs30);
  font-family: "cn_light";
  line-height: 0.36rem;
}
.base-wrapper .top .brief em {
  display: inline-block;
  margin-left: 0.46rem;
}
.marubi-wrapper .box-1 .main {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.marubi-wrapper .box-1 .info,
.marubi-wrapper .box-1 .pic {
  width: 50%;
}
.marubi-wrapper .box-1 .pic:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.marubi-wrapper .box-1 .pic img {
  height: 100%;
  object-fit: cover;
}
.marubi-wrapper .box-1 .info {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  padding: 0.4rem 0.6rem 0.4rem 0.68rem;
  background-color: #f7f7f7;
}
.marubi-wrapper .box-1 .inner {
  width: 100%;
}
.marubi-wrapper .box-1 .title {
  font-size: 0.3rem;
  line-height: 0.36rem;
  margin-bottom: 0.2rem;
}
.marubi-wrapper .box-1 .content,
.marubi-wrapper .box-1 .content li {
  color: #999;
  font-family: "cn_light";
}
.marubi-wrapper .box-1 .content b {
  color: #333;
  font-size: var(--fs18);
}
.marubi-wrapper .box-1 .content ul li {
  list-style-type: circle;
}
.marubi-wrapper .box-2 .list {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-flow: wrap;
}
.marubi-wrapper .box-2 .item {
  width: 49.34%;
  margin-top: 0.42rem;
}
.marubi-wrapper .box-2 .item:nth-child(-n+2) {
  margin-top: 0;
}
.marubi-wrapper .box-2 .item:hover .prices {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.marubi-wrapper .box-2 .item:hover .prices ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.marubi-wrapper .box-2 .item:hover .name {
  color: #d6001f;
}
.marubi-wrapper .box-2 .pic {
  position: relative;
}
.marubi-wrapper .box-2 .prices {
  width: 79.42%;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  height: 100%;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  padding: 0.77rem 1.14rem 0 1.38rem;
}
.marubi-wrapper .box-2 .prices ul {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-2rem);
  -webkit-transform: translateX(-2rem);
  -moz-transform: translateX(-2rem);
  -ms-transform: translateX(-2rem);
  -o-transform: translateX(-2rem);
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition-delay: 0.4s;
}
.marubi-wrapper .box-2 .prices > ul > li {
  font-family: "cn_light";
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  line-height: 0.3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.marubi-wrapper .box-2 .info {
  text-align: center;
  padding: 0.34rem 1.8rem 0;
}
.marubi-wrapper .box-2 .name {
  color: #000;
  font-size: var(--fs24);
  line-height: 0.36rem;
  height: 0.36rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.marubi-wrapper .box-2 .desc {
  color: #666;
  line-height: 0.24rem;
  height: 0.72rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-align: center;
  font-family: "cn_light";
  margin-top: 0.28rem;
}
.marubi-wrapper .box-3 .swiper-box {
  padding: 0 8px;
}
.marubi-wrapper .box-3 .swiper-slide:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.marubi-wrapper .box-3 .swiper-slide:hover .buy {
  background-color: #d6001f;
  color: #fff;
}
.marubi-wrapper .box-3 .pic img {
  height: 4rem;
  object-fit: contain;
}
.marubi-wrapper .box-3 .info {
  text-align: center;
  margin-top: 0.35rem;
}
.marubi-wrapper .box-3 .name {
  font-size: var(--fs18);
  color: #000;
  line-height: 0.3rem;
  height: 0.3rem;
  margin-bottom: 0.12rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.marubi-wrapper .box-3 .brief {
  color: #666;
  line-height: 0.24rem;
  height: 0.24rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: "cn_light";
}
.marubi-wrapper .box-3 .price {
  color: #000;
  line-height: 0.24rem;
  margin: 0.04rem auto 0.13rem;
}
.marubi-wrapper .box-3 .swiper-btn {
  width: 0.25rem;
  height: 0.48rem;
  transform: none;
  top: 1.76rem;
}
.marubi-wrapper .box-3 .prev {
  left: -0.25rem;
  background-image: url(../img/prev5.png);
}
.marubi-wrapper .box-3 .prev:hover {
  background-image: url(../img/prev6.png);
}
.marubi-wrapper .box-3 .next {
  right: -0.25rem;
  background-image: url(../img/next5.png);
}
.marubi-wrapper .box-3 .next:hover {
  background-image: url(../img/next6.png);
}
.newGoods-box {
  position: relative;
}
.newGoods-box ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.newGoods-box li {
  width: 31.25%;
}
.newGoods-box li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.newGoods-box li:hover .buy {
  background-color: #d6001f;
  color: #fff;
}
.newGoods-box .pic {
  display: block;
}
.newGoods-box .pic img {
  height: 5.5rem;
  object-fit: cover;
}
.newGoods-box .info {
  text-align: center;
  margin-top: 0.6rem;
}
.newGoods-box .name {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.3rem;
  height: 0.3rem;
  margin-bottom: 0.16rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: "cn_light";
}
.newGoods-box .brief {
  font-size: var(--fs24);
  color: #000;
  line-height: 0.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.newGoods-box .price {
  color: #000;
  margin: 0.24rem auto 0.14rem;
  line-height: 0.24rem;
}
.newGoods-box .swiper-btn {
  width: 0.25rem;
  height: 0.48rem;
  transform: none;
  top: 2.51rem;
}
.newGoods-box .prev {
  left: -0.65rem;
  background-image: url(../img/prev5.png);
}
.newGoods-box .prev:hover {
  background-image: url(../img/prev6.png);
}
.newGoods-box .next {
  right: -0.65rem;
  background-image: url(../img/next5.png);
}
.newGoods-box .next:hover {
  background-image: url(../img/next6.png);
}
.buy {
  display: block;
  margin: 0 auto;
  width: 1.26rem;
  height: 0.4rem;
  line-height: 0.38rem;
  border-radius: 20px;
  border: solid 1px rgba(53, 53, 53, 0.2);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  text-align: center;
  font-size: var(--fs16);
  color: #999;
}
.buy:hover {
  background-color: #d6001f;
  color: #fff;
  border-color: #d6001f;
}
.lover-wrapper {
  background: url(../img/loverbg.jpg) no-repeat center top;
  background-size: 100%;
}
.lover-wrapper .box-1 .content {
  color: #999;
  text-align: center;
  font-family: "cn_light";
}
.lover-wrapper .box-1 .content b {
  color: #333;
  font-size: var(--fs18);
}
.lover-wrapper .box-2 {
  margin-bottom: 1.94rem;
}
.lover-wrapper .box-2 .box-container {
  padding-top: 0.75rem;
  background: url(../img/text.png) no-repeat top 1.17rem center;
  background-size: 83.72%;
}
.lover-wrapper .box-2 .item {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 0.26rem;
}
.lover-wrapper .box-2 .item:last-child {
  margin-bottom: 0;
}
.lover-wrapper .box-2 .item:hover .info:before {
  opacity: 0;
  visibility: hidden;
}
.lover-wrapper .box-2 .item:hover .info img {
  opacity: 1;
  visibility: visible;
}
.lover-wrapper .box-2 .item:first-child:hover .name {
  color: #ae856f;
}
.lover-wrapper .box-2 .item:first-child:hover .brief {
  color: #c9af93;
}
.lover-wrapper .box-2 .item:nth-child(2):hover .name,
.lover-wrapper .box-2 .item:nth-child(2):hover .brief {
  color: #fcf2e9;
}
.lover-wrapper .box-2 .item:nth-child(3):hover .name {
  color: #66727d;
}
.lover-wrapper .box-2 .item:nth-child(3):hover .brief {
  color: #91989e;
}
.lover-wrapper .box-2 .pic {
  display: block;
  width: 62.37%;
}
.lover-wrapper .box-2 .info {
  position: relative;
  width: 37.63%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.lover-wrapper .box-2 .info:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
}
.lover-wrapper .box-2 .info img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  opacity: 0;
  visibility: hidden;
}
.lover-wrapper .box-2 .inner {
  width: 100%;
  text-align: center;
  padding: 0.6rem;
}
.lover-wrapper .box-2 .inner div {
  transition: color 0.8s ease;
  -webkit-transition: color 0.8s ease;
  -moz-transition: color 0.8s ease;
  -ms-transition: color 0.8s ease;
  -o-transition: color 0.8s ease;
}
.lover-wrapper .box-2 .name {
  font-size: var(--fs24);
  line-height: 30px;
}
.lover-wrapper .box-2 .brief {
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 24px;
  font-family: "cn_light";
}
.load {
  text-align: center;
  margin-top: 0.75rem;
}
.load a {
  display: inline-block;
  font-size: var(--fs16);
  color: #d6001f;
  line-height: 24px;
}
.load a:hover i {
  background-image: url(../img/iload2.png);
}
.load i {
  display: block;
  margin: 0.14rem auto 0;
  width: 0.23rem;
  height: 0.12rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background 0.4s ease;
  -webkit-transition: background 0.4s ease;
  -moz-transition: background 0.4s ease;
  -ms-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  background-image: url(../img/iload.png);
}
.huruki-wrapper .box-1 .top {
  margin-bottom: 0.27rem;
}
.huruki-wrapper .box-1 .top .page-title {
  margin-bottom: 0.67rem;
}
.huruki-wrapper .box-1 .content {
  text-align: center;
  font-family: "cn_light";
}
.huruki-wrapper .box-2 {
  background: url(../img/hurukibg.jpg) no-repeat center center;
  background-size: cover;
  padding-bottom: 1.24rem;
}
.huruki-wrapper .box-2 .page-title {
  margin-bottom: 0.38rem;
}
.huruki-wrapper .box-2 .caption {
  font-size: 0.6rem;
  color: #666;
  font-family: "cn_light";
  height: 1.2rem;
  line-height: 1.2rem;
  text-align: center;
}
.huruki-wrapper .box-2 .caption span {
  display: inline-block;
  font-size: 1.2rem;
  color: #fb7b8a;
  font-style: italic;
  font-family: "thin";
  margin-right: 0.3rem;
  vertical-align: middle;
}
.huruki-wrapper .box-2 .swiper-container {
  padding: 0.58rem calc((100% - 15.36rem) / 2) 1.04rem;
}
.huruki-wrapper .box-2 .swiper-slide {
  width: 3.14rem;
  background-color: #fff;
  text-align: center;
  padding: 0.6rem 0 0.34rem;
  transition: box-shadow 0.4s ease;
  -webkit-transition: box-shadow 0.4s ease;
  -moz-transition: box-shadow 0.4s ease;
  -ms-transition: box-shadow 0.4s ease;
  -o-transition: box-shadow 0.4s ease;
  border-radius: 0.2rem;
  height: auto;
}
.huruki-wrapper .box-2 .swiper-slide:hover {
  box-shadow: 9px 7px 50px 0px rgba(150, 175, 196, 0.35);
}
.huruki-wrapper .box-2 .swiper-slide:hover .dot i {
  border-color: #fb7b8a;
}
.huruki-wrapper .box-2 .swiper-slide:last-child .dot:after {
  display: none;
}
.huruki-wrapper .box-2 .year {
  font-size: var(--fs30);
  color: #fb7b8a;
  line-height: 30px;
  font-family: "mb";
}
.huruki-wrapper .box-2 .dot {
  position: relative;
  margin: 0.16rem auto 0.32rem;
}
.huruki-wrapper .box-2 .dot:before,
.huruki-wrapper .box-2 .dot:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  z-index: 0;
  background-color: #d3d7e2;
  opacity: 0.2;
  height: 2px;
}
.huruki-wrapper .box-2 .dot:before {
  width: 100%;
  left: 0;
}
.huruki-wrapper .box-2 .dot:after {
  left: 100%;
  width: 20px;
}
.huruki-wrapper .box-2 .dot i {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: solid 0.03rem #d8dce4;
  border-radius: 50%;
  z-index: 1;
  transition: border 0.3s ease;
  -webkit-transition: border 0.3s ease;
  -moz-transition: border 0.3s ease;
  -ms-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  margin: 0 auto;
}
.huruki-wrapper .box-2 .title,
.huruki-wrapper .box-2 .desc {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.huruki-wrapper .box-2 .title {
  font-size: var(--fs24);
  font-weight: 700;
  line-height: 0.36rem;
}
.huruki-wrapper .box-2 .desc {
  font-size: var(--fs18);
  line-height: 0.36rem;
  font-family: "cn_light";
  text-align: center;
  margin-top: 0.52rem;
  min-height: 1.44rem;
}
.huruki-wrapper .box-2 .swiper-pagination-progressbar {
  position: relative;
  height: 3px;
  width: 45.83%;
  margin-right: calc((100% - 15.36rem) / 2);
  margin-left: auto;
  background: #fff;
}
.huruki-wrapper .box-2 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fb7b8a;
  transform-origin: left center;
}
.huruki-wrapper .box-3 ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.huruki-wrapper .box-3 li {
  width: 48.83%;
  margin-top: 0.75rem;
}
.huruki-wrapper .box-3 li:nth-child(-n+2) {
  margin-top: 0;
}
.huruki-wrapper .box-3 li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.huruki-wrapper .box-3 li a {
  display: block;
}
.huruki-wrapper .box-3 .info {
  text-align: center;
  margin-top: 0.6rem;
}
.huruki-wrapper .box-3 .name {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #000;
}
.huruki-wrapper .box-3 .desc {
  text-align: center;
  font-size: var(--fs16);
  line-height: 24px;
  font-family: "cn_light";
  margin-top: 0.08rem;
}
.huruki-wrapper .box-3 .price {
  color: #000;
  line-height: 0.24rem;
  margin: 0.1rem auto 0.13rem;
}
.tokyo-wrapper .pic-box {
  position: relative;
}
.tokyo-wrapper .pic-box > img {
  display: block;
  width: 100%;
}
.tokyo-wrapper .pic-box .info {
  position: absolute;
  top: 0;
  left: 25%;
  z-index: 10;
  width: 50%;
}
.tokyo-wrapper .pic-box .content {
  color: #666;
  font-family: "cn_light";
}
.tokyo-wrapper .pic-box .content.phone {
  display: none;
}
.tokyo-wrapper .pic-box .brief {
  font-size: var(--fs30);
  line-height: 0.48rem;
  font-family: "cn_light";
}
.tokyo-wrapper .pic-box .title {
  font-size: var(--fs48);
  display: inline-block;
  font-weight: 700;
  line-height: 0.6rem;
  background-image: -webkit-linear-gradient(left, #eec564, #d7b071);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tokyo-wrapper .box-1 .info {
  width: 34.375%;
  left: 16.354%;
  top: 1.6rem;
}
.tokyo-wrapper .box-1 .brief {
  margin: 0.2rem auto 0.68rem;
}
.tokyo-wrapper .box-2 .info,
.tokyo-wrapper .box-2 .content {
  text-align: center;
}
.tokyo-wrapper .box-2 .page-title {
  margin-bottom: 0.56rem;
}
.tokyo-wrapper .box-2 .title {
  margin: 0.32rem auto 0.3rem;
}
.tokyo-wrapper .box-3 .list ul {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.tokyo-wrapper .box-3 .list li {
  width: 39.84%;
  background: #f6f6f6;
}
.tokyo-wrapper .box-3 .list li:hover .pic img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.tokyo-wrapper .box-3 .list li:first-child {
  text-align: center;
}
.tokyo-wrapper .box-3 .list li:first-child .desc {
  text-align: center;
}
.tokyo-wrapper .box-3 .list li:first-child p {
  margin-bottom: 0.24rem;
}
.tokyo-wrapper .box-3 .list li:first-child .info {
  padding: 0.43rem 0.56rem 0;
}
.tokyo-wrapper .box-3 .list li:nth-child(2) {
  width: 54.3%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.tokyo-wrapper .box-3 .list li:nth-child(2) .pic {
  width: 47.12%;
}
.tokyo-wrapper .box-3 .list li:nth-child(2) .info {
  width: 52.88%;
  padding: 1.3rem 0.56rem 0;
}
.tokyo-wrapper .box-3 .name {
  font-size: var(--fs36);
  line-height: 0.4rem;
  margin-bottom: 0.12rem;
}
.tokyo-wrapper .box-3 p {
  font-size: var(--fs18);
  color: #b7882b;
  line-height: 0.24rem;
  margin-bottom: 0.36rem;
}
.tokyo-wrapper .box-3 .desc {
  color: #666;
  font-family: "cn_light";
  line-height: 0.24rem;
}
.tokyo-wrapper .box-3 .desc b {
  display: inline-block;
  font-size: var(--fs16);
  color: #000;
  margin-bottom: 0.2rem;
}
.tokyo-wrapper .box-4 {
  margin-top: 1.5rem;
  background-color: #f3f0ea;
  padding-bottom: 1rem;
}
.tokyo-wrapper .box-4 .top {
  margin-bottom: 0.75rem;
}
.tokyo-wrapper .box-4 .top .page-title {
  margin-bottom: 0.55rem;
}
.tokyo-wrapper .box-4 .swiper-slide {
  width: 31.25%;
  margin-right: 3.125%;
  border-radius: 0.45rem;
  overflow: hidden;
}
.tokyo-wrapper .box-4 .swiper-slide:last-child {
  margin-right: 0;
}
.tokyo-wrapper .box-4 .swiper-slide:hover .pic:before {
  opacity: 1;
  visibility: visible;
}
.tokyo-wrapper .box-4 .swiper-slide:hover .info {
  margin-top: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.tokyo-wrapper .box-4 .swiper-slide:hover .hidebox {
  display: block;
  animation: fadeInUp50 0.6s ease;
}
.tokyo-wrapper .box-4 .pic {
  position: relative;
  border-radius: 0.45rem;
}
.tokyo-wrapper .box-4 .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.tokyo-wrapper .box-4 .info {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 10;
  width: 100%;
  margin-top: -0.18rem;
  text-align: center;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.tokyo-wrapper .box-4 .info div {
  color: #fff;
}
.tokyo-wrapper .box-4 .title {
  font-size: var(--fs24);
  line-height: 0.36rem;
}
.tokyo-wrapper .box-4 .hidebox {
  display: none;
}
.tokyo-wrapper .box-4 .desc {
  font-size: var(--fs18);
  line-height: 0.36rem;
  margin: 0.35rem auto 0.45rem;
  text-align: center;
}
.tokyo-wrapper .box-4 .intro {
  font-size: var(--fs16);
  line-height: 0.3rem;
  font-family: "cn_light";
}
.tokyo-wrapper .box-5 .pic {
  display: block;
}
.tokyo-wrapper .newGoods-box .name {
  margin-bottom: 0.08rem;
}
.tokyo-wrapper .newGoods-box .price {
  margin: 0.08rem auto 0.14rem;
}
.book-wrapper .box-1 .box-container {
  position: relative;
}
.book-wrapper .swiper-box {
  padding-bottom: 1.04rem;
}
.book-wrapper .swiper-box:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #f5f5f5;
  width: calc(100% - (100% - 15.36rem) / 2);
  height: calc(100% - 1rem);
}
.book-wrapper .swiper-box .swiper-slide {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.book-wrapper .swiper-box .swiper-slide-active .pic {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.book-wrapper .swiper-box .swiper-slide-active .title,
.book-wrapper .swiper-box .swiper-slide-active .brief,
.book-wrapper .swiper-box .swiper-slide-active .publish {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.book-wrapper .swiper-box .swiper-slide-active .year {
  opacity: 1;
  visibility: visible;
}
.book-wrapper .swiper-box .pic {
  transform: translateX(2rem);
  -webkit-transform: translateX(2rem);
  -moz-transform: translateX(2rem);
  -ms-transform: translateX(2rem);
  -o-transform: translateX(2rem);
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  opacity: 0;
  visibility: hidden;
}
.book-wrapper .swiper-box .info-box,
.book-wrapper .swiper-box .pic-box {
  width: 50%;
}
.book-wrapper .swiper-box .info-box {
  position: relative;
  padding: 2.23rem 1.06rem 0 1.2rem;
}
.book-wrapper .swiper-box .btn-box {
  width: 50%;
  padding-left: 1.2rem;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.book-wrapper .swiper-box .year {
  position: absolute;
  right: 0.36rem;
  top: 1.7rem;
  z-index: -1;
  font-family: "thin";
  font-size: 2rem;
  writing-mode: tb-rl;
  writing-mode: vertical-lr;
  color: #e6e6e6;
  line-height: 1.6rem;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.book-wrapper .swiper-box .title,
.book-wrapper .swiper-box .brief,
.book-wrapper .swiper-box .publish {
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  -webkit-transform: translateY(1rem);
  -moz-transform: translateY(1rem);
  -ms-transform: translateY(1rem);
  -o-transform: translateY(1rem);
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
}
.book-wrapper .swiper-box .title {
  font-size: 0.6rem;
  line-height: 0.72rem;
  font-weight: 700;
  transition-delay: 0.15s;
}
.book-wrapper .swiper-box .brief {
  font-size: var(--fs30);
  font-family: "cn_light";
  color: #d6001f;
  margin: 0.25rem auto 0.36rem;
  line-height: 0.36rem;
  transition-delay: 0.3s;
}
.book-wrapper .swiper-box .publish {
  font-size: var(--fs18);
  line-height: 0.3rem;
  transition-delay: 0.45s;
}
.book-wrapper .swiper-slide {
  padding-bottom: 0.98rem;
}
.book-wrapper .btns {
  position: absolute;
  width: 50%;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.book-wrapper .box-2 {
  margin-top: 0.58rem;
}
.videos {
  position: relative;
  overflow: hidden;
}
.videos:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.videos.on .pic {
  opacity: 0;
  visibility: hidden;
}
.videos.on .video {
  opacity: 1;
  visibility: visible;
}
.videos .play {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  cursor: pointer;
  z-index: 10;
}
.videos .play:before,
.videos .play:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-sizing: border-box;
}
.videos .play:before {
  animation: iconScale2 2.4s linear infinite;
}
.videos .play:after {
  animation: iconScale2 2.4s 1.2s linear infinite;
}
.videos .play i {
  display: block;
  position: relative;
  z-index: 11;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url(../img/play2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.videos .pic {
  position: relative;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
}
.videos .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.videos video {
  width: 100%;
}
.videos .video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
}
.videos .video video {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  max-height: 100%;
  object-fit: contain;
}
.about-wrapper {
  padding-top: 0!important;
}
.about-wrapper .page-title {
  padding-top: 0.82rem;
}
.about-wrapper .main {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about-wrapper .main .pic,
.about-wrapper .main .info {
  width: 50%;
}
.about-wrapper .main .info {
  padding-left: 0.8rem;
}
.about-wrapper .main .title {
  font-size: var(--fs48);
  color: #d6001f;
  line-height: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.17rem;
}
.about-wrapper .main .content {
  font-family: "cn_light";
  color: #666;
}
.about-wrapper .main .content b {
  font-size: var(--fs18);
  color: #000;
}
.about-wrapper .main .brief {
  font-size: var(--fs30);
  line-height: 0.36rem;
  margin-bottom: 0.64rem;
}
.about-wrapper .box-1 .main {
  align-items: center;
  flex-direction: row-reverse;
}
.about-wrapper .box-1 .main .info {
  padding-left: 0;
  padding-right: 0.8rem;
}
.about-wrapper .box-2 .info {
  padding-top: 0.45rem;
}
.about-wrapper .box-2 .main .title {
  font-size: 0.36rem;
}
.about-wrapper .box-3 {
  margin-top: 1.52rem;
}
.about-wrapper .box-3 .list {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.about-wrapper .box-3 .item {
  position: relative;
  width: 33.33%;
}
.about-wrapper .box-3 .item:hover .icon .on {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.about-wrapper .box-3 .item:hover .icon .init {
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  opacity: 0;
  visibility: hidden;
}
.about-wrapper .box-3 .item:hover .pic {
  background: transparent;
}
.about-wrapper .box-3 .item:hover .pic img {
  opacity: 1;
  visibility: visible;
}
.about-wrapper .box-3 .item:hover .title,
.about-wrapper .box-3 .item:hover .intro {
  color: #fff;
}
.about-wrapper .box-3 .item:nth-child(even):hover .pic {
  background: transparent;
}
.about-wrapper .box-3 .item:nth-child(even) .pic {
  background: #f9f9f9;
}
.about-wrapper .box-3 .pic {
  position: relative;
  background: #f5f5f5;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.about-wrapper .box-3 .pic img {
  display: block;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.about-wrapper .box-3 .info {
  position: absolute;
  left: 0;
  top: 50%;
  text-align: center;
  width: 100%;
  padding: 0 0.6rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 10;
}
.about-wrapper .box-3 .icon {
  width: 0.58rem;
  height: 0.58rem;
  position: relative;
  margin: 0 auto;
}
.about-wrapper .box-3 .icon img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.about-wrapper .box-3 .icon .on {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  opacity: 0;
  visibility: hidden;
}
.about-wrapper .box-3 .title,
.about-wrapper .box-3 .intro {
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.about-wrapper .box-3 .title {
  font-size: var(--fs30);
  color: #d6001f;
  font-weight: 700;
  line-height: 0.36rem;
  margin: 0.3rem auto;
}
.about-wrapper .box-3 .intro {
  font-size: var(--fs18);
  color: #666;
}
.about-wrapper .box-4 {
  margin-top: 1.25rem;
  position: relative;
}
.about-wrapper .box-4 .pic {
  position: relative;
}
.about-wrapper .box-4 .info {
  width: 50%;
  position: absolute;
  top: 0;
  z-index: 10;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  left: calc((100% - 15.36rem) / 2);
}
.about-wrapper .box-4 .info img {
  display: block;
  width: 68.48%;
}
.about-wrapper .box-4 .title {
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #d6001f;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.about-wrapper .box-4 .intro {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.36rem;
  text-align: justify;
  font-family: "cn_light";
}
.about-wrapper .box-4 .intro.phone {
  display: none;
}
.about-wrapper .box-4 .stock {
  font-family: "cn_light";
  line-height: 0.4rem;
  margin: 0.56rem auto 0.98rem;
  font-size: var(--fs30);
}
.about-wrapper .box-5 canvas {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.about-wrapper .box-5 .box {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  background: url(./aboutbg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.about-wrapper .box-5 .detail-box {
  z-index: 2;
  position: relative;
  width: 50%;
  padding-top: 1.14rem;
  padding-right: 1.1rem;
  padding-left: 3.19rem;
}
.about-wrapper .box-5 .detail-box .item {
  display: none;
}
.about-wrapper .box-5 .year {
  font-size: 0.72rem;
  font-family: "thin";
  color: #fadaa5;
  line-height: 0.7rem;
}
.about-wrapper .box-5 .desc {
  font-size: var(--fs18);
  color: #fdf1e3;
  line-height: 0.36rem;
  margin: 0.15rem auto 0.28rem;
}
.about-wrapper .box-5 .pic {
  width: 70.45%;
}
.about-wrapper .box-5 .swiper-box {
  z-index: 2;
  width: calc(50% - 0.5rem);
  padding-left: 1.12rem;
  background: url(../img/line.png) no-repeat center left;
}
.about-wrapper .box-5 .swiper-box:before {
  content: "";
  width: 100%;
  height: 1.54rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border: 1px solid rgba(255, 225, 189, 0.3);
  border-left: none;
  border-right: none;
}
.about-wrapper .box-5 .swiper-box .swiper-container {
  height: 6.73rem;
}
.about-wrapper .box-5 .swiper-box .swiper-slide {
  position: relative;
  cursor: pointer;
  font-family: "mb";
  color: #ffe1bd;
  opacity: 0.5;
  font-size: var(--fs24);
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.about-wrapper .box-5 .swiper-box .swiper-slide.swiper-slide-active {
  opacity: 1;
  font-size: var(--fs36);
}
.about-wrapper .box-5 .btn-box {
  position: absolute;
  left: 4.34rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 10;
  width: 0.41rem;
  height: 1.69rem;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
}
.about-wrapper .box-5 .btn-box:before {
  content: "";
  display: block;
  width: 0.98rem;
  height: 1px;
  background-color: rgba(255, 225, 189, 0.3);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: 50%;
  z-index: 10;
}
.about-wrapper .box-5 .swiper-btn {
  display: block;
  width: 100%;
  height: 0.16rem;
  margin: 0 auto;
  top: 0;
  position: static;
  transform: none;
}
.about-wrapper .box-5 .swiper-btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-size: 0.16rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #920019;
}
.about-wrapper .box-5 .swiper-btn.prev {
  margin-bottom: 1.37rem;
}
.about-wrapper .box-5 .swiper-btn.prev:before {
  background-image: url(../img/i-up.png);
}
.about-wrapper .box-5 .swiper-btn.next:before {
  background-image: url(../img/i-down.png);
}
/*分页*/
.pageNum {
  text-align: center;
  font-size: 0;
  margin-top: 1.34rem;
  width: 100%;
}
.pageNum a {
  display: inline-block;
  color: #4d4d4d;
  vertical-align: middle;
  margin: 0 0.1rem;
  width: 0.48rem;
  height: 0.48rem;
  line-height: 0.48rem;
  background-color: #fff;
  border: solid 1px #eee;
  border-radius: 50%;
  text-align: center;
  transition: background 0.5s ease;
  -webkit-transition: background 0.5s ease;
  -moz-transition: background 0.5s ease;
  -ms-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
}
.pageNum a:first-child {
  margin-left: 0;
}
.pageNum a:last-child {
  margin-right: 0;
}
.pageNum .dot {
  line-height: 0.38rem;
}
.pageNum .btn {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 9px;
}
.pageNum .prev {
  background-image: url(../img/i-prev.png);
}
.pageNum .prev:hover {
  background-image: url(../img/i-prev2.png);
}
.pageNum .next {
  background-image: url(../img/i-next.png);
}
.pageNum .next:hover {
  background-image: url(../img/i-next2.png);
}
.pageNum a:hover,
.pageNum .on {
  color: #fff;
  background-color: #d6001f;
}
.pageMore {
  display: none;
  margin-top: 0.6rem;
}
.pageMore a {
  display: block;
  width: 100%;
  text-align: center;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #d6001f;
  color: #fff;
  font-size: 12px;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
@keyframes translateX-hover-1 {
  0% {
    transform: translateX(0%);
    transform-origin: 100% 0%;
  }
  100% {
    transform: translateX(-100%);
    transform-origin: 100% 0%;
  }
}
@keyframes translateX-hover-2 {
  0% {
    transform: translateX(100%);
    transform-origin: 0% 0%;
  }
  100% {
    transform: translateX(0%);
    transform-origin: 0% 0%;
  }
}
@keyframes iconRotate {
  100% {
    transform: rotate(1turn);
    -webkit-transform: rotate(1turn);
    -moz-transform: rotate(1turn);
    -ms-transform: rotate(1turn);
    -o-transform: rotate(1turn);
  }
}
@keyframes circleAnimate {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes iconScale2 {
  from {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.9);
    -webkit-transform: scale(1.9);
    -moz-transform: scale(1.9);
    -ms-transform: scale(1.9);
    -o-transform: scale(1.9);
    opacity: 0;
  }
}
