@charset "UTF-8";
@keyframes soundWave1 {
  0% {
    width: 4.13vw;
  }
  50% {
    width: 0;
  }
  100% {
    width: 4.13vw;
  }
}

@keyframes soundWave2 {
  0% {
    width: 2.8vw;
  }
  50% {
    width: 0;
  }
  100% {
    width: 2.8vw;
  }
}

@keyframes soundWave3 {
  0% {
    width: 3.6vw;
  }
  50% {
    width: 0;
  }
  100% {
    width: 3.6vw;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes heart {
  from {
    transform: translate(0, -1.2vw);
  }
  to {
    transform: translate(0, 0.6vw);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(200deg) scale(0.8);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes rotate2 {
  0% {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(200deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes rotate3 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes custom_pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(226, 60, 50, 0.4);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 1.33vw rgba(226, 60, 50, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 0 0 1.33vw rgba(226, 60, 50, 0);
  }
}

@keyframes custom_pulse2 {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 60, 50, 0.8);
  }
  100% {
    box-shadow: 0 0 0 1.6vw rgba(226, 60, 50, 0);
  }
}

@keyframes wave {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/* Ò³ÃæÍ·²¿ */
.head {
  width: 100vw;
  height: 11.73vw;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.5s;
  color: #fff;
  animation: fadeInDown 0.6s forwards;
}

.head .head-tool {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 3.07vw;
}

.head .head-tool .logo {
  margin-right: auto;
  width: 23.6vw;
  display: block;
  position: relative;
}

.head .head-tool .logo img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
  transition: all 0.5s;
}

.head .head-tool .logo .logo-dark {
  z-index: 1;
  opacity: 0;
}

.head .head-tool .en,
.head .head-tool .search {
  color: #fff;
  font-size: 3.47vw;
  margin-right: 3.73vw;
  display: inline-flex;
  align-items: center;
  transition: color 0.5s;
}

.head .head-tool .search {
  font-size: 3.67vw;
  margin-top: 0.23vw;
}

.head .head-tool .open-menu {
  width: 11.73vw;
  height: 11.73vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: transparent;
  outline: none;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  padding-left: 3.47vw;
  transition: all 0.5s;
  position: relative;
}

.head .head-tool .open-menu i {
  display: inline-block;
  width: 4.13vw;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: backgroundColor 0.5s;
  animation-play-state: running;
}

.head .head-tool .open-menu i:nth-child(1) {
  animation: soundWave1 1.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s infinite alternate;
}

.head .head-tool .open-menu i:nth-child(2) {
  width: 2.8vw;
  margin: 1.07vw 1.33vw 1.07vw 0;
  animation: soundWave2 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s infinite alternate;
}

.head .head-tool .open-menu i:nth-child(3) {
  animation: soundWave3 0.9s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s infinite alternate;
}

.head .head-tool .open-menu::before, .head .head-tool .open-menu::after {
  content: "";
  position: absolute;
  background: #fff;
  left: 3.47vw;
  display: block;
  transition: all 0.5s;
  opacity: 0;
}

.head .head-tool .open-menu::before {
  width: 4.13vw;
  height: 2px;
  top: 4vw;
}

.head .head-tool .open-menu::after {
  width: 2px;
  height: 4.13vw;
  top: calc(3.73vw - 3px);
  transform: rotate(90deg);
  transform-origin: 0% 100%;
}

.head .head-menu {
  width: 100vw;
  height: calc(100vh - 11.73vw);
  position: fixed;
  top: 11.73vw;
  right: 0;
  background: #e23c32;
  transform: translateY(20%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.head .head-menu .search-box,
.head .head-menu .menu-list {
  visibility: hidden;
}

.head .head-menu .search-box {
  width: 92vw;
  height: 0;
  border-radius: 4.67vw;
  opacity: 0;
}

.head .head-menu .search-box input {
  width: 100%;
  height: 100%;
  border-radius: 4.67vw;
  background: #fff;
  text-align: center;
  color: #333;
  line-height: 9.34vw;
  font-size: 3.47vw;
}

.head .head-menu .search-box input::placeholder {
  color: #c3c3c3;
}

.head .head-menu .menu-list {
  width: 100vw;
  height: 0;
}

.head .head-menu .menu-list .fir-item {
  min-height: 14.67vw;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.head .head-menu .menu-list .fir-item .fir-link {
  width: 100%;
  height: 14.67vw;
  display: inline-block;
  align-items: center;
  box-sizing: border-box;
  padding: 0 5.86vw 0 8vw;
  position: relative;
  font-size: 4.27vw;
  line-height: 14.67vw;
  color: #fff;
}

.head .head-menu .menu-list .fir-item .fir-link::before {
  content: "";
  width: 2.13vw;
  height: 0.8vw;
  border-radius: 0.4vw;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 4vw;
  transform: translateY(-50%);
}

.head .head-menu .menu-list .fir-item .fir-link::after {
  content: "\e624";
  width: 3.2vw;
  height: 3.2vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "iconfont";
  font-size: 3.07vw;
  color: #fff;
  position: absolute;
  right: 4.13vw;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition: transform 0.4s;
  transform-origin: center;
}

.head .head-menu .menu-list .fir-item .fir-link.has-menu--2nd::after {
  opacity: 1;
}

.head .head-menu .menu-list .fir-item.open .has-menu--2nd::after {
  transform: rotate(90deg) translateY(-50%);
  right: 6.67vw;
}

.head .head-menu .menu-list .fir-item.open .menu-2nd {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.47vw 4vw 4.8vw;
}

.head .head-menu .menu-list .menu-2nd {
  width: 100%;
  box-sizing: border-box;
  padding: 0 4vw;
  height: 0;
  overflow: hidden;
  background: #d4332a;
  transition: all 0.6s;
  border-top: 0 solid rgba(255, 255, 255, 0);
}

.head .head-menu .menu-list .menu-2nd .sec-item {
  min-height: 11.47vw;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.head .head-menu .menu-list .menu-2nd .sec-item .sec-link {
  width: 100%;
  height: 11.47vw;
  line-height: 11.47vw;
  box-sizing: border-box;
  padding: 0 4.27vw;
  position: relative;
  font-size: 3.47vw;
  color: #fff;
  display: block;
}

.head .head-menu .menu-list .menu-2nd .sec-item .sec-link::before {
  content: "";
  width: 1.07vw;
  height: 1.07vw;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2vw;
  top: 50%;
  transform: translateY(-50%);
}

.head .head-menu .menu-list .menu-2nd .sec-item .sec-link.has-menu--3rd::after {
  content: "";
  border-left: 1.2vw solid transparent;
  border-top: 1.47vw solid #fff;
  border-right: 1.2vw solid transparent;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.head .head-menu .menu-list .menu-3rd {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding-left: 2.66vw;
  margin-top: -2.34vw;
  padding-bottom: 3.34vw;
}

.head .head-menu .menu-list .menu-3rd .third-item .third-link {
  font-size: 3.47vw;
  color: rgba(255, 255, 255, 0.5);
  line-height: 8vw;
  padding: 0 1.74vw;
}

.head .head-menu.type_search .search-box {
  visibility: visible;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.5;
  height: 9.34vw;
  margin: 3.87vw auto 0;
}

.head .head-menu.type_menu .menu-list {
  visibility: visible;
  animation: fadeInUp2 1s forwards;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

.head.white {
  background: #fff;
  border-bottom-color: rgba(51, 51, 51, 0.2);
  box-shadow: 0vw 0vw 1.33vw 0vw #dcdde1;
  color: #333;
}

.head.white .logo .logo-dark {
  opacity: 1;
}

.head.white .logo .logo-light {
  opacity: 0;
}

.head.white .en,
.head.white .search {
  color: #333;
}

.head.white .open-menu {
  border-left-color: rgba(51, 51, 51, 0.2);
}

.head.white .open-menu i {
  background: #333;
}

.head.red {
  background: #e23c32;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.head.red .head-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.head.red .head-menu.type_search {
  box-shadow: inset 0vw 26.8vw 8.8vw -10.6vw #d0190d;
}

.head.red .head-menu.type_menu {
  box-shadow: inset 0vw 10.8vw 8.8vw -10.6vw #d0190d;
}

.head.red .head-tool .logo .logo-dark {
  opacity: 0;
}

.head.red .head-tool .logo .logo-light {
  opacity: 1;
}

.head.red .head-tool .en,
.head.red .head-tool .search {
  color: #fff;
}

.head.red .head-tool .open-menu {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.head.red .head-tool .open-menu i {
  animation-play-state: paused;
  visibility: hidden;
}

.head.red .head-tool .open-menu::before, .head.red .head-tool .open-menu::after {
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: 50% 50%;
}

/* Ò³Ãæµ×²¿ */
.foot {
  width: 100vw;
  height: 110vw;
  overflow: hidden;
}

.foot .company {
  width: 100%;
  height: 70vw;
  background: url("/static/front/wap/images/foot_bg.jpg") no-repeat top center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 3.47vw;
  line-height: 6.13vw;
}

.foot .company ul {
  width: 44.13vw;
  display: flex;
  justify-content: space-between;
  margin-top: 4.54vw;
}

.foot .company ul img {
  width: 20.53vw;
  border-radius: 0.27vw;
}

.foot .company ul p {
  text-align: center;
  margin-top: 1.87vw;
}

.foot .company a {
  color: #fff;
  font-size: 3.47vw;
  line-height: 6.13vw;
}

.foot .website {
  width: 100%;
  height: 40vw;
  background: #a2221a;
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  padding: 0 4.94vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Îüµ×µÄÒ³Ãæµ×²¿ */
.sticky-foot {
  width: 100vw;
  background: #ffffff;
  box-shadow: 0vw 0vw 2.67vw 0vw rgba(0, 0, 0, 0.26);
  box-sizing: border-box;
  padding: 8.4vw 4vw 4.67vw;
  z-index: 10;
}

.sticky-foot .foot-cell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
  padding: 5.73vw 2.4vw 2.67vw;
  font-size: 2.67vw;
  line-height: 3.6vw;
  position: relative;
  border-radius: 1.33vw;
  border: solid 0.13vw #f8e6e5;
}

.sticky-foot .foot-cell + .foot-cell {
  margin-top: 8vw;
}

.sticky-foot .foot-cell .label {
  width: 26.8vw;
  height: 8vw;
  font-size: 3.47vw;
  line-height: 8vw;
  box-sizing: border-box;
  padding-left: 2vw;
  background: #f8e6e5;
  color: #333333;
  font-weight: bold;
  border-radius: 0vw 4vw 4vw 0vw;
  position: absolute;
  top: -4.4vw;
  left: 0;
}

.sticky-foot .foot-cell span {
  color: #333;
}

.sticky-foot .foot-cell b {
  color: #c70019;
}

/* ²à±ßÐü¸¡¹¤¾ßÀ¸ */
.aside-tool {
  width: 9.87vw;
  position: fixed;
  right: 0.8vw;
  top: 50%;
  z-index: 888;
}

.aside-tool li {
  width: 100%;
  height: 9.87vw;
  border-radius: 0.53vw;
  background: #c70019;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.8vw;
}

.aside-tool li .iconfont {
  font-size: 4.53vw;
}

.aside-tool li p {
  font-size: 1.87vw;
  line-height: 3.2vw;
  letter-spacing: 0.04vw;
}

.aside-tool li.contact {
  position: relative;
}

.aside-tool li.contact .qq {
  font-size: 1.87vw;
  height: 9.87vw;
  line-height: 9.87vw;
  color: #fff;
  padding: 0 1.87vw;
  border-radius: 0.53vw;
  background: #c70019;
  position: absolute;
  left: 0.53vw;
  top: 0;
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.4s;
  white-space: nowrap;
  visibility: hidden;
}

.aside-tool li.contact.show .qq {
  transform: translateX(-100%);
  opacity: 1;
  visibility: visible;
}

.aside-tool li.back-top {
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(40%);
  transition: all 0.4s;
}

.aside-tool li.back-top .iconfont {
  font-size: 4vw;
}

.aside-tool li.back-top.show {
  transform: translateY(0);
  opacity: 1;
}

/* Ä£¿£¿éÎÊÌâ */
.plate-title {
  text-align: center;
  padding-top: 6.07vw;
}

.plate-title h1 {
  font-size: 5.33vw;
  line-height: 13.33vw;
}

.plate-title .en {
  color: transparent;
  background: linear-gradient(to bottom, #eaeaea 0%, rgba(234, 234, 234, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.plate-title .cn {
  letter-spacing: -0.03vw;
  color: #c7011a;
  margin-top: -10.33vw;
}

.plate-title .line {
  width: 42.27vw;
  height: 0.13vw;
  margin: -0.53vw auto 0;
  position: relative;
  background: linear-gradient(to right, rgba(199, 1, 26, 0) 0%, #c7011a 40.69%, rgba(199, 1, 26, 0) 40.69%, rgba(199, 1, 26, 0) 59.31%, #c7011a 59.31%, rgba(199, 1, 26, 0) 100%);
}

.plate-title .line::before {
  content: "\e60b";
  width: 3.2vw;
  height: 3.2vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "iconfont";
  font-size: 3.2vw;
  color: #c7011a;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1.7vw 0 0 -1.2vw;
  transform-origin: center center;
  animation: rotate2 5s linear 0s infinite;
}

/* Ê×Ò³ */
.index-body {
  width: 100vw;
}

.index-body .banner {
  width: 100vw;
  height: 75.73vw;
  position: relative;
}

.index-body .banner-swiper {
  width: 100%;
  height: 100%;
}

.index-body .banner-swiper .swiper-slide {
  position: relative;
}

.index-body .banner-swiper .swiper-slide-active .slide-text h1 {
  opacity: 0;
  animation-name: fadeInUp;
  animation-delay: 0.2s;
  animation-duration: 1.2s;
}

.index-body .banner-swiper .swiper-slide-active .slide-text p {
  opacity: 0;
  animation-name: fadeInUp;
  animation-delay: 0.6s;
  animation-duration: 1.2s;
}

.index-body .banner-swiper .swiper-slide-active .slide-text .learn-btn {
  opacity: 0;
  animation-name: fadeInUp;
  animation-delay: 0.9s;
  animation-duration: 1.2s;
}

.index-body .banner-swiper .swiper-slide-active .slide-text .learn-btn .iconfont {
  animation-play-state: running;
}

.index-body .banner-swiper .swiper-slide-active .slide-text .honor {
  opacity: 0;
  animation-name: fadeInUp;
  animation-delay: 1.1s;
  animation-duration: 1.2s;
}

.index-body .banner-swiper .slide-bg {
  width: 100%;
  height: 100%;
  margin-top: -75.73vw;
  position: relative;
}

.index-body .banner-swiper .slide-bg img,
.index-body .banner-swiper .slide-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.index-body .banner-swiper .slide-bg video {
  z-index: -99;
}

.index-body .banner-swiper .slide-text {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-top: 5.87vw;
}

.index-body .banner-swiper .slide-text h1 {
  font-size: 5.33vw;
  color: #fff;
  line-height: 13.33vw;
  text-shadow: 0.27vw 0.47vw 0.51vw rgba(0, 0, 0, 0.42);
  animation-name: fadeOutDown;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

.index-body .banner-swiper .slide-text p {
  font-size: 3.2vw;
  color: #fff;
  line-height: 3.6vw;
  text-shadow: 0.27vw 0.47vw 0.51vw rgba(0, 0, 0, 0.42);
  animation-name: fadeOutDown;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

.index-body .banner-swiper .slide-text .learn-btn {
  width: 30.93vw;
  height: 8vw;
  border-radius: 4vw;
  border: 0.2vw solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2vw;
  color: #fff;
  margin-bottom: 5.47vw;
  margin-top: 5.2vw;
  box-sizing: border-box;
  animation-name: fadeOutDown;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}

.index-body .banner-swiper .slide-text .learn-btn span {
  text-shadow: 0.27vw 0.47vw 0.51vw rgba(0, 0, 0, 0.42);
}

.index-body .banner-swiper .slide-text .learn-btn .iconfont {
  margin-left: 1vw;
  display: inline-block;
  animation-play-state: paused;
  animation: rotate 5s linear 0s infinite;
}

.index-body .banner-swiper .slide-text .honor {
  width: 45.47vw;
  height: 7.6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation-name: fadeOutDown;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}

.index-body .banner-swiper .slide-text .honor li {
  width: 8vw;
  height: 7.6vw;
  position: relative;
}

.index-body .banner-swiper .slide-text .honor li span {
  font-size: 7.6vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

.index-body .banner-swiper .slide-text .honor li span.white {
  color: #fff;
  opacity: 1;
}

.index-body .banner-swiper .slide-text .honor li span.gradient {
  color: transparent;
  background: linear-gradient(50deg, #e9e5b9 10%, #dfb85e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  opacity: 0;
}

.index-body .banner-swiper .slide-text .honor li.active span.white {
  opacity: 0;
}

.index-body .banner-swiper .slide-text .honor li.active span.gradient {
  opacity: 1;
}

.index-body .banner .mouse {
  font-size: 5.47vw;
  color: #fff;
  position: absolute;
  bottom: 3.87vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: heart 0.8s ease-in-out 0s infinite alternate;
}

.index-body .group-profile {
  padding-bottom: 56.67vw;
  background: #fff url("../images/box_bg_index1.png") no-repeat bottom center/100% auto;
}

.index-body .group-profile .plate-title {
  margin-bottom: 5.59vw;
}

.index-body .group-profile .profile {
  font-size: 4vw;
  line-height: 6.67vw;
  color: #333;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-bottom: 6.79vw;
}

.index-body .group-profile .learn-link {
  width: 30.4vw;
  height: 9.34vw;
  display: block;
  background: #e23c32;
  border-radius: 4.67vw;
  margin: 0 auto;
  font-size: 3.73vw;
  line-height: 9.34vw;
  text-align: center;
  color: #fff;
}

.index-body .news .tabs {
  width: 83.2vw;
  height: 11.74vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8vw auto 3.2vw;
  position: relative;
}

.index-body .news .tabs li {
  width: 19.33vw;
  text-align: center;
  font-size: 4.8vw;
  color: #575656;
  transition: all 0.6s;
}

.index-body .news .tabs li.active {
  font-weight: bold;
  color: #c70019;
}

.index-body .news .tabs::after {
  content: "";
  width: 19.33vw;
  height: 0.4vw;
  background: #c70019;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 0.6s;
}

.index-body .news .tabs.move_1::after {
  transform: translateX(0);
}

.index-body .news .tabs.move_2::after {
  transform: translateX(31.935vw);
}

.index-body .news .tabs.move_3::after {
  transform: translateX(63.87vw);
}

.index-body .news .news-swiper {
  width: 100%;
  height: 50vw;
  margin-bottom: 3.6vw;
}

.index-body .news .news-swiper .swiper {
  width: 100%;
  height: 0;
  visibility: hidden;
}

.index-body .news .news-swiper .swiper.show {
  height: 100%;
  visibility: visible;
}

.index-body .news .news-swiper .swiper-slide {
  width: 85.33vw;
  height: 50vw;
  border-radius: 1.33vw;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
}

.index-body .news .news-swiper .swiper-slide .slide-text {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 3.73vw;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.index-body .news .news-swiper .swiper-slide .slide-text .more {
  height: 3.73vw;
  padding-right: 3.33vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 2.93vw;
  color: #fff;
}

.index-body .news .news-swiper .swiper-slide .slide-text .more span:not(.iconfont) {
  text-shadow: 0vw 2.19vw 0.21vw rgba(120, 120, 120, 0.2);
}

.index-body .news .news-swiper .swiper-slide .slide-text .more .iconfont {
  display: inline-block;
  width: 3.73vw;
  height: 3.73vw;
  border-radius: 50%;
  background: #c70019;
  font-size: 2vw;
  text-align: center;
  line-height: 3.73vw;
  margin-left: 0.67vw;
}

.index-body .news .news-swiper .swiper-slide .slide-text h2 {
  width: 71.2vw;
  font-size: 4vw;
  line-height: 6.4vw;
  color: #fff;
  margin-left: 3.33vw;
  margin-top: 28.34vw;
}

.index-body .news .news-swiper .swiper-slide .slide-text .date {
  line-height: 6.4vw;
  color: #fff;
  margin-left: 3.6vw;
}

.index-body .news .news-swiper .swiper-slide .slide-text .date .mm-dd {
  font-size: 4vw;
}

.index-body .news .news-swiper .swiper-slide .slide-text .date .yyyy {
  font-size: 3.2vw;
  margin-left: 1.6vw;
}

.index-body .news .list-group {
  width: 92vw;
  margin: 0 auto;
  border-top: 0.27vw solid #ededed;
  padding-top: 1.2vw;
}

.index-body .news .news-list {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.6s;
}

.index-body .news .news-list li {
  width: 100%;
  height: 23.87vw;
  border-radius: 1.33vw;
  background: #f8f8f8;
  margin-top: 2.8vw;
  box-sizing: border-box;
  padding: 3.33vw 5.33vw 0 3.6vw;
}

.index-body .news .news-list li h2 {
  width: 100%;
  font-size: 4vw;
  line-height: 6.67vw;
  color: #333;
  margin-bottom: 6vw;
}

.index-body .news .news-list li p {
  font-size: 3.2vw;
  line-height: 5.6vw;
  color: #8a8787;
}

.index-body .news .news-list li p .date {
  margin-left: 6vw;
}

.index-body .news .news-list.show {
  height: 81.47vw;
}

.index-body .news .check-more {
  width: 92vw;
  height: 9.07vw;
  display: block;
  background: #f8f8f8;
  border-radius: 1.33vw;
  margin: 0 auto;
  font-size: 3.47vw;
  line-height: 9.07vw;
  text-align: center;
  color: #333;
  margin-top: 2.93vw;
}

.index-body .product-center .plate-title {
  padding-top: 6.2vw;
}

.index-body .product-center .product-data {
  width: 100vw;
  height: 126.27vw;
  margin-top: 8vw;
  background: url("/static/front/wap/images/data_bg_index2.jpg") no-repeat top center/100% auto;
  box-sizing: border-box;
  padding-top: 11.2vw;
}

.index-body .product-center .product-swiper {
  width: 100vw;
  height: 97.27vw;
}

.index-body .product-center .product-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.index-body .product-center .product-swiper .swiper-slide {
  width: 65.33vw;
  height: 94.27vw;
  box-shadow: 0vw 0vw 2.19vw 0.21vw rgba(120, 120, 120, 0.2);
  border-radius: 1.33vw;
  overflow: hidden;
  background: #fff url("../images/data_bg_index1.jpg") no-repeat center/cover;
  position: relative;
}

.index-body .product-center .product-swiper .swiper-slide::before {
  content: "\e617";
  font-family: "iconfont";
  font-size: 11.07vw;
  color: transparent;
  background: linear-gradient(0deg, #e75d55 0%, #fe7169 100%);
  background-clip: text;
  -webkit-background-clip: text;
  position: absolute;
  right: -0.4vw;
  top: -0.4vw;
}

.index-body .product-center .product-swiper .swiper-slide .product-img {
  width: 100%;
  height: 65.6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-top: 6.13vw;
}

.index-body .product-center .product-swiper .swiper-slide .product-img img {
  width: auto;
  height: auto;
  max-width: 52vw;
  max-height: 47.47vw;
}

.index-body .product-center .product-swiper .swiper-slide .product-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.index-body .product-center .product-swiper .swiper-slide .product-text .iconfont {
  font-size: 6.53vw;
  color: #c7011a;
  line-height: 6.53vw;
  margin-bottom: 3.36vw;
}

.index-body .product-center .product-swiper .swiper-slide .product-text b {
  font-size: 4.27vw;
  color: #333;
  line-height: 5vw;
}

.index-body .product-center .product-swiper .swiper-slide .product-text b.en {
  font-size: 3.47vw;
  line-height: 4vw;
  margin-top: 3.7vw;
}

.index-body .product-center .product-swiper .swiper-slide .product-text::before {
  content: "";
  width: 7.87vw;
  height: 0.27vw;
  background: #c7011a;
  position: absolute;
  bottom: 5.4vw;
  left: 50%;
  transform: translateX(-50%);
}

.index-body .product-center .check-more {
  display: block;
  width: 30.4vw;
  height: 9.34vw;
  background: #e23c32;
  border-radius: 4.67vw;
  text-align: center;
  line-height: 9.34vw;
  margin: 1.93vw auto 0;
  font-size: 3.73vw;
  color: #fff;
}

.index-body .innovation {
  background: linear-gradient(to bottom, #f6f9fb 0%, #fff 40%);
}

.index-body .innovation .plate-title {
  padding-top: 6.34vw;
}

.index-body .innovation img {
  width: 92.13vw;
  margin-left: 5.07vw;
}

.index-body .innovation .innovation-info {
  width: 100vw;
  box-sizing: border-box;
  margin-top: -11.93vw;
}

.index-body .innovation .innovation-info h3 {
  font-size: 4.53vw;
  line-height: 5.33vw;
  text-align: center;
  color: #e03a30;
}

.index-body .innovation .innovation-info .innovation-slogan {
  width: 42.8vw;
  height: 6.8vw;
  background: rgba(226, 60, 50, 0.2);
  border-radius: 3.4vw;
  box-sizing: border-box;
  padding: 0 1.33vw;
  margin: 2.67vw auto 0;
}

.index-body .innovation .innovation-info .innovation-slogan span {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #e23c32;
  border-radius: 3.4vw;
  text-align: center;
  line-height: 6.8vw;
  font-size: 3.2vw;
  color: #fff;
}

.index-body .innovation .innovation-info .info-text {
  text-indent: 2em;
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
  text-align: center;
  margin-top: 5.21vw;
  box-sizing: border-box;
  padding: 0 2.07vw;
}

.index-body .innovation .innovation-info ul {
  margin-top: 3.48vw;
  padding-bottom: 7.33vw;
}

.index-body .innovation .innovation-info ul li {
  width: 100%;
  height: 20.8vw;
  display: flex;
  align-items: center;
  border-radius: 1.33vw;
  margin-bottom: 3.2vw;
  box-sizing: border-box;
  padding: 0 4.27vw 0 2.8vw;
  position: relative;
}

.index-body .innovation .innovation-info ul li:nth-child(1) {
  background: rgba(226, 61, 50, 0.2);
}

.index-body .innovation .innovation-info ul li:nth-child(2) {
  background: rgba(239, 107, 95, 0.2);
}

.index-body .innovation .innovation-info ul li:nth-child(3) {
  background: rgba(236, 129, 119, 0.2);
}

.index-body .innovation .innovation-info ul li .iconfont {
  font-size: 13.07vw;
  color: transparent;
  background: linear-gradient(-30deg, #e23c32 0%, #ff8686 100%);
  background-clip: text;
  -webkit-background-clip: text;
  margin-right: 2.8vw;
  position: relative;
  z-index: 1;
}

.index-body .innovation .innovation-info ul li b {
  font-size: 4vw;
  color: #e23c32;
  letter-spacing: 0.16vw;
  position: relative;
}

.index-body .innovation .innovation-info ul li .num-box {
  display: inline-flex;
  align-items: flex-start;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.index-body .innovation .innovation-info ul li .num-box b {
  font-size: 10.67vw;
}

.index-body .innovation .innovation-info ul li .num-box sup {
  font-size: 3.2vw;
  color: #e23c32;
  margin-top: -0.27vw;
  margin-left: 1vw;
}

.index-body .innovation .innovation-info ul li::before {
  content: "\e60b";
  font-family: "iconfont";
  font-size: 16.27vw;
  color: #e23c32;
  opacity: 0.06;
  position: absolute;
  right: 2vw;
  top: 1.6vw;
}

.index-body .social {
  background: #fff url("../images/data_bg_index3.png") no-repeat top center/100% auto;
  padding-bottom: 2.67vw;
}

.index-body .social .plate-title .en {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.index-body .social .plate-title .cn {
  color: #fff;
}

.index-body .social .plate-title .line {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 40.69%, rgba(255, 255, 255, 0) 40.69%, rgba(255, 255, 255, 0) 59.31%, rgba(255, 255, 255, 0.5) 59.31%, rgba(255, 255, 255, 0) 100%);
}

.index-body .social .plate-title .line::before {
  color: #fff;
}

.index-body .social .leader-img {
  width: 92vw;
  margin: 0 auto;
  border-radius: 1.33vw;
  margin-top: 8vw;
}

.index-body .social .leader-speak {
  width: 100vw;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  padding-left: 2.07vw;
  margin-top: 6.92vw;
}

.index-body .social .leader-speak img {
  width: 5.47vw;
  position: absolute;
}

.index-body .social .leader-speak img:nth-child(1) {
  top: 1.54vw;
  left: 5.07vw;
}

.index-body .social .leader-speak img:last-child {
  top: 11.08vw;
  right: 11.47vw;
}

.index-body .social .leader-speak p {
  width: 82.35vw;
  font-size: 6.22vw;
  text-shadow: 0.53vw 0.92vw 1.07vw rgba(81, 18, 19, 0.31);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}

.index-body .social .leader-speak p span {
  line-height: 9.61vw;
  margin-left: -0.13vw;
}

.index-body .social .leader {
  display: flex;
  align-items: center;
  margin-left: 4vw;
  margin-top: 4.59vw;
}

.index-body .social .leader p {
  font-size: 3.47vw;
  line-height: 9.33vw;
  color: #fff;
  text-shadow: 0.53vw 0.92vw 1.07vw rgba(81, 18, 19, 0.31);
}

.index-body .social .leader .yfh {
  font-size: 8vw;
  line-height: 10.67vw;
}

.index-body .social .leader .yfh span {
  display: inline-block;
  line-height: 10.67vw;
  margin-left: -0.13vw;
}

.index-body .social .special-subject {
  width: 100vw;
  height: 26.4vw;
  margin-top: 6.6vw;
}

.index-body .social .special-subject .swiper-slide {
  width: 67.73vw;
  height: 100%;
  border-radius: 0.53vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.index-body .social .special-subject .swiper-slide p {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 4.27vw;
}

.index-body .social .special-subject .swiper-slide p span {
  line-height: 7vw;
  position: relative;
  z-index: 1;
}

.index-body .social .special-subject .swiper-slide p span:last-child {
  font-size: 3.2vw;
}

.index-body .social .special-subject .swiper-slide::before {
  content: "";
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: rgba(226, 60, 50, 0.8);
  position: absolute;
  bottom: -70vw;
  left: 0;
  opacity: 0;
  transform: scale(0) translate(-50%, -50%);
  transition: all 0.8s;
  transition-delay: 0.2s;
}

.index-body .social .special-subject .swiper-slide-active::before {
  opacity: 1;
  transform: scale(2.1);
}

.index-body .enterprise {
  padding-bottom: 9.73vw;
}

.index-body .enterprise .enterprise-swiper-group {
  margin-top: 7.87vw;
  height: 46.4vw;
  box-sizing: border-box;
  padding: 4.46vw 0;
  background: #f6f9fb;
  position: relative;
}

.index-body .enterprise .enterprise-swiper-group .swiper {
  width: 100vw;
  height: 18.27vw;
  margin-bottom: 0.94vw;
}

.index-body .enterprise .enterprise-swiper-group .swiper:last-child {
  margin-bottom: 0;
}

.index-body .enterprise .enterprise-swiper-group .swiper-wrapper {
  transition-timing-function: linear !important;
}

.index-body .enterprise .enterprise-swiper-group .swiper-slide {
  width: 34.27vw;
  height: 100%;
  border-radius: 0.53vw;
  overflow: hidden;
}

.index-body .enterprise .enterprise-swiper-group .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-body .enterprise .enterprise-swiper-group::before, .index-body .enterprise .enterprise-swiper-group::after {
  content: "";
  width: 44.13vw;
  width: 0;
  height: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  z-index: 2;
}

.index-body .enterprise .enterprise-swiper-group::before {
  left: 0;
  background-image: url("/static/front/wap/images/mask_l.png");
  background-position: left center;
}

.index-body .enterprise .enterprise-swiper-group::after {
  right: 0;
  background-image: url("/static/front/wap/images/mask_r.png");
  background-position: right center;
}

/* ÄÚÒ³banner */
.inner-banner {
  width: 100vw;
  height: 70.4vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.inner-banner .inner-which {
  width: 100vw;
  height: 58.4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-top: 12.97vw;
}

.inner-banner .inner-which .hollowout-text {
  width: auto;
  height: 9.87vw;
}

.inner-banner .inner-which h1 {
  font-size: 6.67vw;
  color: #fff;
  line-height: 13.33vw;
  margin-top: -6.07vw;
}

.inner-banner .inner-which .breadcrumbs {
  font-size: 3.2vw;
  line-height: 6.2vw;
  color: #fff;
  margin-top: -1.57vw;
}

.inner-banner .inner-which .breadcrumbs a {
  color: #fff;
}

.inner-banner .lev2-menu {
  min-width: 100vw;
  height: 12vw;
  border-radius: 2.67vw 2.67vw 0 0;
  background: #e23c32;
  padding: 0 1.46vw;
  box-sizing: border-box;
  position: relative;
}

.inner-banner .lev2-menu .lev2-anchor-point {
  display: none;
}

.inner-banner .lev2-menu-list {
  height: 100%;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-snap-align: center;
}

.inner-banner .lev2-menu-list li {
  flex-shrink: 0;
  position: relative;
}

.inner-banner .lev2-menu-list li a {
  display: inline-block;
  padding: 0 2.67vw;
  font-size: 3.47vw;
  line-height: 12vw;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

.inner-banner .lev2-menu-list li.current a {
  font-weight: bold;
  color: #fff;
}

.inner-banner .lev2-menu-list li.current::before {
  content: "\e60b";
  width: 12.94vw;
  height: 12.94vw;
  text-align: center;
  line-height: 12.94vw;
  font-size: 10.8vw;
  font-family: "iconfont";
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -0.47vw;
  left: 50%;
  margin-left: -6.47vw;
  animation: rotate 5s linear 0s infinite;
}

.inner-banner .lev2-menu-list.flex_jc {
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 10vw;
}

.inner-banner .lev2-menu-list.flex_jcc {
  justify-content: center;
}

.inner-banner .lev2-menu-list.flex_jcc li {
  padding: 0 6vw;
}

.inner-banner .lev2-menu::before, .inner-banner .lev2-menu::after {
  content: "";
  width: 21.74vw;
  height: 12vw;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.inner-banner .lev2-menu::before {
  background: linear-gradient(to right, #e23c32 28%, transparent 100%);
  left: 0;
  border-top-left-radius: 2.67vw;
}

.inner-banner .lev2-menu::after {
  background: linear-gradient(to left, #e23c32 28%, transparent 100%);
  right: 0;
  border-top-right-radius: 2.67vw;
}

.inner-banner .lev2-menu.showl::before {
  opacity: 1;
  visibility: visible;
}

.inner-banner .lev2-menu.showr::after {
  opacity: 1;
  visibility: visible;
}

/* ÄÚÒ³Èý¼¶µ¼º½ */
.lev3-menu {
  width: 92vw;
  height: 14vw;
  border-bottom: 0.13vw solid #f0f0f0;
  margin: 0.4vw auto 0;
  position: relative;
}

.lev3-menu .lev3-anchor-point {
  display: none;
}

.lev3-menu-list {
  height: 100%;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-snap-align: center;
}

.lev3-menu-list li {
  flex-shrink: 0;
  position: relative;
  margin: 0 4vw;
}

.lev3-menu-list li a {
  display: inline-block;
  font-size: 3.47vw;
  line-height: 14vw;
  color: #333;
  position: relative;
  z-index: 1;
}

.lev3-menu-list li:first-child {
  margin-left: 0;
}

.lev3-menu-list li:last-child {
  margin-right: 0;
}

.lev3-menu-list li.current a {
  font-weight: bold;
  color: #e23c32;
}

.lev3-menu-list li.current::after {
  content: "";
  width: 100%;
  height: 0.4vw;
  background: #e23c32;
  position: absolute;
  left: 0;
  bottom: -0.13vw;
}

.lev3-menu-list.flex_jc {
  justify-content: space-between;
}

.lev3-menu-list.flex_jcc {
  justify-content: center;
}

.lev3-menu::before, .lev3-menu::after {
  content: "";
  width: 5vw;
  height: 14vw;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.lev3-menu::before {
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
  left: 0;
}

.lev3-menu::after {
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
  right: 0;
}

.lev3-menu.showl::before {
  opacity: 1;
  visibility: visible;
}

.lev3-menu.showr::after {
  opacity: 1;
  visibility: visible;
}

/* ÏàÊ¶¸ü¶à - ÏßÌõ */
.learn-more--line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 36.8vw;
  height: 4.87vw;
}

.learn-more--line span {
  font-size: 3.47vw;
  color: #000;
}

.learn-more--line .line {
  display: inline-block;
  width: 16.27vw;
  height: 1px;
  background-color: #2e2e2e;
}

.learn-more--line .circle {
  display: inline-block;
  width: 3.2vw;
  height: 3.2vw;
  background-color: #c70019;
  border-radius: 50%;
}

/* ·µ»ØÁÐ±í */
.back-list {
  width: 34.53vw;
  height: 9.2vw;
  display: block;
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 4vw;
  overflow: hidden;
}

.back-list span {
  display: inline-block;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 3.47vw;
  line-height: 4.8vw;
}

.back-list span.iconfont {
  font-size: 4.8vw;
  margin-right: 1.87vw;
}

.back-list::before {
  content: "";
  width: 100%;
  height: calc(100% + 0.26vw);
  background: #e23c32;
  /* ÑÕÉ« */
  border-radius: 0 1.33vw 1.33vw 0;
  /* ÉèÖÃÔ²½Ç */
  transform: skew(25deg);
  transform-origin: bottom left;
  position: absolute;
  left: 0;
  top: 0;
}

/* ÉÏÒ»Ìõ / ÏÂÒ»Ìõ */
.check-tool {
  width: 95.6vw;
  height: 9.2vw;
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding-right: 4.4vw;
  overflow: hidden;
}

.check-tool a {
  display: inline-block;
  width: 45.6vw;
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 3.47vw;
  line-height: 9.2vw;
  color: #fff;
}

.check-tool::before {
  content: "";
  width: 100%;
  height: calc(100% + 0.26vw);
  background: #e23c32;
  /* ÑÕÉ« */
  border-radius: 1.33vw 0 0 1.33vw;
  /* ÉèÖÃÔ²½Ç */
  transform: skew(-25deg);
  transform-origin: bottom right;
  position: absolute;
  left: 0;
  top: 0;
}

/* ·ÖÏí¹¤¾ßÀ¸ */
.share-tool {
  display: flex;
  align-items: center;
  height: 9.2vw;
  font-size: 3.2vw;
  color: #333;
  position: absolute;
  top: 5.6vw;
  right: 4.4vw;
}

.share-tool .social-share {
  display: flex;
  align-items: center;
  margin-left: 1.67vw;
}

.share-tool .social-share-icon {
  width: 8vw;
  text-align: center;
}

.share-tool .social-share-icon.icon-wechat, .share-tool .social-share-icon.icon-weibo, .share-tool .social-share-icon.icon-qq {
  border-color: transparent;
  color: #bbb;
  font-size: 4.8vw;
  margin: 0 !important;
}

.share-tool .social-share-icon.icon-wechat:hover, .share-tool .social-share-icon.icon-weibo:hover, .share-tool .social-share-icon.icon-qq:hover {
  background: transparent;
  transition: all 0.2s;
  color: #bbb;
}

.share-tool .social-share-icon.icon-wechat::before, .share-tool .social-share-icon.icon-weibo::before, .share-tool .social-share-icon.icon-qq::before {
  font-family: "iconfont";
  transition: all 0.2s;
}

.share-tool .social-share-icon.icon-wechat::before {
  content: "\e61f";
}

.share-tool .social-share-icon.icon-weibo::before {
  content: "\e620";
}

.share-tool .social-share-icon.icon-qq::before {
  content: "\e614";
}

.share-tool .social-share-icon:first-child {
  text-align: left;
}

.share-tool .social-share-icon:last-child {
  text-align: right;
}

/* Í¼Æ¬Ô¤ÀÀ */
.preview-img {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-bottom: 15vw;
  z-index: 99999;
}

.preview-img .mask {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}

.preview-img img {
  width: 92vw;
  height: auto;
  position: relative;
  z-index: 0;
}

.preview-img p {
  font-size: 3.47vw;
  color: #fff;
  line-height: 6.13vw;
  margin-top: 2.67vw;
  position: relative;
  z-index: 0;
}

/* º£ÀË¶¯»­ */
.wave {
  display: block;
  width: 100vw;
  height: 18vw;
}

.wave use {
  animation: wave 12s linear infinite;
  transform-origin: 50% 50%;
}

.wave use:nth-child(1) {
  animation-delay: -2s;
}

.wave use:nth-child(2) {
  animation-delay: -2s;
  animation-duration: 5s;
}

/* 008PG¹ú¼Ê¼ò½é */
.inner-jtjj {
  width: 100%;
  background: #fff url("../images/jtjj_bg1.png") no-repeat right -25.47vw/66.27vw auto;
}

.inner-jtjj .jtjj-container {
  box-sizing: border-box;
  padding-top: 10vw;
  padding-bottom: 53.38vw;
  background: url("/static/front/wap/images/jtjj_bg2.png") no-repeat center bottom/100vw auto;
}

.inner-jtjj .jtjj-container h1 {
  font-size: 8vw;
  line-height: 10.4vw;
  color: #000;
}

.inner-jtjj .jtjj-container h5 {
  font-size: 3.73vw;
  line-height: 6.13vw;
  color: #666;
  margin-top: 2.16vw;
  box-sizing: border-box;
  padding-right: 13.47vw;
  padding-bottom: 5.33vw;
  border-bottom: 0.4vw solid #e23c32;
}

.inner-jtjj .jtjj-container .introduce {
  font-size: 3.47vw;
  line-height: 6.13vw;
  text-align: justify;
  text-indent: 2em;
  color: #666;
  margin-top: 5.11vw;
}

.inner-jtjj .jtjj-other {
  box-sizing: border-box;
  padding-bottom: 8.27vw;
}

.inner-jtjj .jtjj-other .statistics {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inner-jtjj .jtjj-other .statistics li {
  width: 42.8vw;
  margin-top: 8.74vw;
}

.inner-jtjj .jtjj-other .statistics li .data {
  padding-bottom: 3.47vw;
  border-bottom: 1px solid #ca0d25;
}

.inner-jtjj .jtjj-other .statistics li .data b {
  font-size: 8vw;
  color: #ca0d25;
}

.inner-jtjj .jtjj-other .statistics li .data sub {
  font-size: 3.2vw;
  color: #999;
  margin-left: 2.4vw;
}

.inner-jtjj .jtjj-other .statistics li .source {
  font-size: 3.47vw;
  color: #575656;
  line-height: 6vw;
  margin-top: 2.2vw;
}

.inner-jtjj .jtjj-other .statistics li .source span {
  color: #9d9d9d;
}

.inner-jtjj .jtjj-other .promotion-video {
  margin-top: 6.78vw;
  width: 100%;
  height: 46.27vw;
  border-radius: 1.33vw;
  position: relative;
  overflow: hidden;
}

.inner-jtjj .jtjj-other .promotion-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-jtjj .jtjj-other .promotion-video .video-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.inner-jtjj .jtjj-other .promotion-video .video-mask .iconfont {
  font-size: 8.27vw;
}

.inner-jtjj .jtjj-other .promotion-video .video-mask b {
  font-size: 3.47vw;
  line-height: 4.8vw;
  margin-top: 3vw;
}

.inner-jtjj .jtjj-other .promotion-video .video-mask.hidden {
  visibility: hidden;
  opacity: 0;
}

/* ³ÉÔ±ÆóÒµ || ²úÆ·Æ·ÅÆ */
.inner-cyqy li,
.inner-cppp li {
  width: 100%;
  height: 9.07vw;
  padding: 2.13vw 4vw;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.6s;
}

.inner-cyqy li .title,
.inner-cppp li .title {
  font-size: 3.47vw;
  color: #b5b5b5;
  line-height: 4.81vw;
  box-sizing: border-box;
  position: relative;
}

.inner-cyqy li .title::after,
.inner-cppp li .title::after {
  content: "\e624";
  font-size: 3.47vw;
  font-family: "iconfont";
  color: #b5b5b5;
  position: absolute;
  top: 50%;
  right: 0.53vw;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.inner-cyqy li .info-data,
.inner-cppp li .info-data {
  margin-top: 3.87vw;
}

.inner-cyqy li .info-data .introduce,
.inner-cppp li .info-data .introduce {
  font-size: 3.47vw;
  color: #666;
  line-height: 6.13vw;
  margin-bottom: 4vw;
}

.inner-cyqy li .info-data .enterprises-swiper,
.inner-cyqy li .info-data .brand-swiper,
.inner-cppp li .info-data .enterprises-swiper,
.inner-cppp li .info-data .brand-swiper {
  width: 100%;
  height: 64vw;
  position: relative;
  margin-bottom: 1.97vw;
}

.inner-cyqy li .info-data .enterprises-swiper::before,
.inner-cyqy li .info-data .brand-swiper::before,
.inner-cppp li .info-data .enterprises-swiper::before,
.inner-cppp li .info-data .brand-swiper::before {
  content: "";
  width: 53.87vw;
  height: 42.67vw;
  border-radius: 1.33vw;
  background: #e23c32;
  position: absolute;
  left: -4vw;
  bottom: 0;
}

.inner-cyqy li .info-data .enterprises-swiper .swiper,
.inner-cyqy li .info-data .brand-swiper .swiper,
.inner-cppp li .info-data .enterprises-swiper .swiper,
.inner-cppp li .info-data .brand-swiper .swiper {
  width: 92vw;
  height: 57.47vw;
  overflow: hidden;
  border-radius: 1.33vw;
}

.inner-cyqy li .info-data .enterprises-swiper .swiper-slide,
.inner-cyqy li .info-data .brand-swiper .swiper-slide,
.inner-cppp li .info-data .enterprises-swiper .swiper-slide,
.inner-cppp li .info-data .brand-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.inner-cyqy li .info-data .enterprises-swiper .swiper-slide img,
.inner-cyqy li .info-data .brand-swiper .swiper-slide img,
.inner-cppp li .info-data .enterprises-swiper .swiper-slide img,
.inner-cppp li .info-data .brand-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s;
}

.inner-cyqy li .info-data .enterprises-swiper .swiper-slide-active img,
.inner-cyqy li .info-data .brand-swiper .swiper-slide-active img,
.inner-cppp li .info-data .enterprises-swiper .swiper-slide-active img,
.inner-cppp li .info-data .brand-swiper .swiper-slide-active img {
  transform: scale(1.3);
}

.inner-cyqy li .info-data .enterprises-swiper .swiper-pagination,
.inner-cyqy li .info-data .brand-swiper .swiper-pagination,
.inner-cppp li .info-data .enterprises-swiper .swiper-pagination,
.inner-cppp li .info-data .brand-swiper .swiper-pagination {
  width: 100%;
  height: 2.13vw;
  bottom: 5.07vw;
  left: 0;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-cyqy li .info-data .enterprises-swiper .swiper-pagination-bullet,
.inner-cyqy li .info-data .brand-swiper .swiper-pagination-bullet,
.inner-cppp li .info-data .enterprises-swiper .swiper-pagination-bullet,
.inner-cppp li .info-data .brand-swiper .swiper-pagination-bullet {
  display: block;
  width: 1.33vw;
  height: 1.33vw;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 2vw;
  transition: all 0.3s;
}

.inner-cyqy li .info-data .enterprises-swiper .swiper-pagination-bullet-active,
.inner-cyqy li .info-data .brand-swiper .swiper-pagination-bullet-active,
.inner-cppp li .info-data .enterprises-swiper .swiper-pagination-bullet-active,
.inner-cppp li .info-data .brand-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.6);
  background: #c70019;
}

.inner-cyqy li .info-data .learn-more--line,
.inner-cppp li .info-data .learn-more--line {
  margin-left: auto;
}

.inner-cyqy li:first-child,
.inner-cppp li:first-child {
  height: 13.2vw;
  padding-top: 6.26vw;
}

.inner-cyqy li:first-child.open,
.inner-cppp li:first-child.open {
  margin-top: 0;
}

.inner-cyqy li:last-child,
.inner-cppp li:last-child {
  margin-bottom: 6.4vw;
}

.inner-cyqy li:last-child.open,
.inner-cppp li:last-child.open {
  margin-bottom: 0;
}

.inner-cyqy li.open,
.inner-cppp li.open {
  background: #f7f7f7;
  border-radius: 1.33vw;
  padding: 6.8vw 4vw 6.1vw;
  margin-top: 3.07vw;
  margin-bottom: 4.27vw;
}

.inner-cyqy li.open .title,
.inner-cppp li.open .title {
  font-size: 4.27vw;
  font-weight: bold;
  color: #333;
}

.inner-cyqy li.open .title::after,
.inner-cppp li.open .title::after {
  transform: translateY(-50%) rotate(90deg);
  color: #333;
}

/* ¼¯ÍÅÏòµ¼ */
.inner-jtld {
  width: 100vw;
  box-sizing: border-box;
  padding-top: 7vw;
  padding-bottom: 5.2vw;
  background: #fff url("../images/jtld_bg1.png") no-repeat top center/100% auto;
}

.inner-jtld h1 {
  font-size: 6.13vw;
  line-height: 7.47vw;
  color: #e23c32;
  margin-bottom: 4.2vw;
}

.inner-jtld h3 {
  font-size: 4vw;
  line-height: 7.47vw;
  color: #333;
}

.inner-jtld .introduce {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
  margin-top: 4vw;
  margin-bottom: 107.34vw;
}

.inner-jtld ul {
  width: 100%;
}

.inner-jtld ul li {
  width: 100%;
  overflow: hidden;
  border-radius: 1.33vw;
  box-shadow: 0vw 0vw 2.67vw 0vw rgba(220, 221, 225, 0.74);
  position: relative;
  box-sizing: border-box;
  padding: 1.07vw 4.47vw 6.68vw;
  margin-top: 6.53vw;
  background: url("/static/front/wap/images/jtld_bg2.png") no-repeat 30.67vw -51.87vw/65.33vw auto;
}

.inner-jtld ul li::before {
  content: "";
  width: 100%;
  height: 1.07vw;
  background: #e23c32;
  position: absolute;
  top: 0;
  left: 0;
}

.inner-jtld ul li .about-title {
  width: 100%;
  height: 19.87vw;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(2, 2, 2, 0.06);
}

.inner-jtld ul li .about-title .iconfont {
  font-size: 10vw;
  line-height: 12vw;
  color: transparent;
  background: linear-gradient(-54deg, #eb5d4f 0%, #f3a199 100%);
  background-clip: text;
  -webkit-background-clip: text;
  margin-right: 5vw;
  margin-bottom: 1.27vw;
}

.inner-jtld ul li .about-title p {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-jtld ul li .about-title p b {
  font-size: 5.07vw;
  color: #333;
  line-height: 5.6vw;
}

.inner-jtld ul li .about-title p span {
  font-size: 3.47vw;
  color: #999;
  line-height: 4.8vw;
}

.inner-jtld ul li .about-data {
  margin-top: 3vw;
}

.inner-jtld ul li .about-data p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
}

/* ¿ªÕ¹Àú³Ì */
.inner-fzlc {
  overflow: hidden;
  background: url("/static/front/wap/images/fzlc_bg1.jpg") no-repeat top center/100% auto;
  padding-bottom: 8.53vw;
}

.inner-fzlc .record {
  font-size: 3.47vw;
  line-height: 6.93vw;
  margin-top: 4.14vw;
  color: #333;
  text-align: center;
}

.inner-fzlc .record b {
  color: #e23c32;
}

.inner-fzlc .slogan {
  width: 58.27vw;
  height: 6.13vw;
  background: #e23c32;
  border-radius: 0.53vw;
  font-size: 3.47vw;
  color: #fff;
  line-height: 6.13vw;
  text-align: center;
  margin: 0 auto 10.4vw;
}

.inner-fzlc .year-dots {
  width: 100vw;
  height: 59.2vw;
  background: url("/static/front/wap/images/fzlc_line.png") no-repeat center/100% auto;
  margin-bottom: 17.87vw;
  position: relative;
}

.inner-fzlc .year-dots li {
  position: absolute;
  width: 14.53vw;
}

.inner-fzlc .year-dots li * {
  transition: all 0.5s;
}

.inner-fzlc .year-dots li .circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 1.6vw;
  height: 1.6vw;
  border-radius: 50%;
  background: #e23c32;
}

.inner-fzlc .year-dots li .circle::before {
  content: "";
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  background: rgba(226, 60, 50, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}

.inner-fzlc .year-dots li p {
  height: 5.33vw;
  color: #e23c32;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-fzlc .year-dots li b {
  font-size: 4.8vw;
}

.inner-fzlc .year-dots li span {
  font-weight: bold;
  font-size: 2.13vw;
  color: #e23c32;
  margin-left: 1.2vw;
  margin-top: 1.47vw;
}

.inner-fzlc .year-dots li:nth-child(2n - 1) {
  padding-top: 4.74vw;
}

.inner-fzlc .year-dots li:nth-child(2n - 1).current {
  padding-top: 6.4vw;
}

.inner-fzlc .year-dots li:nth-child(2n - 1) .circle {
  top: 0;
}

.inner-fzlc .year-dots li:nth-child(2n) {
  padding-bottom: 3.54vw;
}

.inner-fzlc .year-dots li:nth-child(2n).current {
  padding-bottom: 6.4vw;
}

.inner-fzlc .year-dots li:nth-child(2n) .circle {
  bottom: 0;
}

.inner-fzlc .year-dots li:nth-child(1) {
  left: 4vw;
  bottom: -8.6vw;
}

.inner-fzlc .year-dots li:nth-child(1).current {
  bottom: -10.26vw;
}

.inner-fzlc .year-dots li:nth-child(2) {
  left: 11.47vw;
  top: 28.34vw;
}

.inner-fzlc .year-dots li:nth-child(2).current {
  top: 25.48vw;
}

.inner-fzlc .year-dots li:nth-child(3) {
  left: 35.47vw;
  bottom: 12.07vw;
}

.inner-fzlc .year-dots li:nth-child(3).current {
  bottom: 10.41vw;
}

.inner-fzlc .year-dots li:nth-child(4) {
  left: 39.73vw;
  top: 11vw;
}

.inner-fzlc .year-dots li:nth-child(4).current {
  top: 8.14vw;
}

.inner-fzlc .year-dots li:nth-child(5) {
  right: 24.27vw;
  top: 18.8vw;
}

.inner-fzlc .year-dots li:nth-child(6) {
  right: 4vw;
  top: 1.4vw;
}

.inner-fzlc .year-dots li:nth-child(6).current {
  top: -1.46vw;
}

.inner-fzlc .year-dots li.current b {
  font-size: 6.67vw;
}

.inner-fzlc .year-dots li.current span {
  margin-top: 2.07vw;
}

.inner-fzlc .year-dots li.current .circle::before {
  animation: custom_pulse 1.5s infinite;
}

.inner-fzlc .years-swiper {
  width: 92vw;
  height: 48.67vw;
  border-radius: 1.33vw;
  margin: 0 auto;
  background: #e23c32 url("../images/fzlc_bg2.jpg") no-repeat center/cover;
}

.inner-fzlc .years-swiper .year {
  height: 10.4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5.8vw;
}

.inner-fzlc .years-swiper .year b {
  display: inline-block;
  position: relative;
  font-size: 8vw;
  color: #fff;
}

.inner-fzlc .years-swiper .year span {
  display: inline-block;
  width: 4.8vw;
  height: 4.8vw;
  text-align: center;
  line-height: 4.8vw;
  border-radius: 50%;
  font-size: 3.47vw;
  font-weight: bold;
  color: #e23c32;
  background: #fff;
  margin-left: 2.27vw;
  margin-top: 1.07vw;
}

.inner-fzlc .years-swiper .event {
  width: 76.13vw;
  font-size: 3.47vw;
  color: #fff;
  line-height: 6.13vw;
  margin: 6.2vw auto 0;
  text-align: center;
}

.inner-fzlc .years-swiper .iconfont {
  width: 9.6vw;
  height: 9.6vw;
  background: #e23c32;
  border: none;
  outline: none;
  position: absolute;
  top: 6.67vw;
  border-radius: 50%;
  font-size: 9.6vw;
  color: #fff;
  z-index: 2;
}

.inner-fzlc .years-swiper .iconfont.year-prev {
  left: 6.67vw;
}

.inner-fzlc .years-swiper .iconfont.year-next {
  right: 6.67vw;
}

.inner-fzlc .years-swiper .iconfont.swiper-button-disabled {
  opacity: 0.7;
  cursor: no-drop;
}

/* ÆóÒµÎÄ»¯ */
.inner-qywh p {
  font-size: 3.47vw;
  color: #333;
  line-height: 6.13vw;
}

.inner-qywh .text {
  box-sizing: border-box;
  padding: 0 4.93vw;
  margin: 6.68vw 0 7.88vw;
  text-align: center;
}

.inner-qywh .fixed-bg {
  width: 100vw;
  height: 76.53vw;
  background: url("/static/front/wap/images/qywh_bg.jpg") no-repeat center/100vw 76.53vw fixed;
}

.inner-qywh .text-indent {
  margin-top: 6.7vw;
  box-sizing: border-box;
  padding: 0 4vw;
}

.inner-qywh .text-indent p {
  letter-spacing: 0.07vw;
  text-indent: 2em;
  text-align: justify;
}

.inner-qywh .ideas {
  padding-bottom: 2.14vw;
  margin-top: 2.7vw;
  box-sizing: border-box;
}

.inner-qywh .ideas .text-img {
  width: 46vw;
  height: 11.73vw;
  margin: 0 auto 2.93vw;
}

.inner-qywh .ideas .idea-list {
  width: 100%;
}

.inner-qywh .ideas .idea-list li {
  margin-bottom: 5.33vw;
}

.inner-qywh .ideas .idea-list li .title {
  width: 100%;
  height: 9.33vw;
  border-radius: 2.67vw 2.67vw 0 0;
  box-sizing: border-box;
  padding-left: 3.87vw;
  font-size: 4.27vw;
  color: #fff;
  line-height: 9.33vw;
  margin-bottom: 3.48vw;
}

.inner-qywh .ideas .idea-list li p.content {
  color: #666;
  text-align: justify;
  box-sizing: border-box;
  padding: 0 3.6vw;
}

.inner-qywh .ideas .idea-list li img {
  width: 84.8vw;
  height: 47.73vw;
  border-radius: 1.33vw;
  object-fit: cover;
  margin: 2.68vw auto 0;
}

.inner-qywh .ideas .idea-list li:nth-child(1) .title {
  background: #d42f25;
}

.inner-qywh .ideas .idea-list li:nth-child(2) .title {
  background: #f5816f;
}

.inner-qywh .ideas .idea-list li:nth-child(3) .title {
  background: #e9b01a;
}

.inner-qywh .ideas .idea-list li:nth-child(4) .title {
  background: #fb614e;
}

.inner-qywh .ideas .idea-list li:nth-child(5) .title {
  background: #d61046;
}

.inner-qywh .core {
  padding-top: 28.27vw;
  padding-bottom: 10.4vw;
  box-sizing: border-box;
  background: url("/static/front/wap/images/qywh_bg2.jpg") no-repeat top center/100vw auto;
}

.inner-qywh .core-content {
  width: 100%;
  box-sizing: border-box;
  padding: 3.87vw 9.47vw 5.88vw 6.13vw;
  box-shadow: 0vw 0vw 4.27vw 0vw rgba(0, 0, 0, 0.1);
  border-radius: 0.8vw;
  background: #fff;
}

.inner-qywh .core-content b {
  display: block;
  line-height: 6.13vw;
  font-size: 3.47vw;
  color: #e23c32;
  padding-bottom: 3.2vw;
  position: relative;
  margin-bottom: 2.41vw;
}

.inner-qywh .core-content b::after {
  content: "";
  width: 6vw;
  height: 0.27vw;
  background: #e23c32;
  position: absolute;
  left: 0;
  bottom: 0;
}

.inner-qywh .core-content p.data-text {
  text-align: justify;
}

/* Ò©Îï¾¯½ä */
.inner-ywjj {
  box-sizing: border-box;
  margin-top: 6.4vw;
  padding-bottom: 8.27vw;
}

.inner-ywjj .warning-illustrate {
  width: 100%;
  height: 38.4vw;
  border-radius: 4vw 0 4vw 0;
  overflow: hidden;
  background: url("/static/front/wap/images/ywjj_bg.jpg") no-repeat left top/auto 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 5.47vw 0 24vw;
}

.inner-ywjj .warning-illustrate p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #fff;
  text-align: justify;
}

.inner-ywjj .warning-notice {
  margin-top: 3.07vw;
}

.inner-ywjj .warning-notice h3 {
  display: flex;
  align-items: center;
  height: 13.33vw;
  font-size: 4.27vw;
  color: #e23c32;
  margin-bottom: 2.81vw;
}

.inner-ywjj .warning-notice h3 .iconfont {
  font-size: 5.33vw;
  margin-bottom: 0.67vw;
  margin-right: 2.53vw;
}

.inner-ywjj .warning-notice .notice-detail {
  box-sizing: border-box;
  padding: 0 5.87vw 0 8vw;
  position: relative;
}

.inner-ywjj .warning-notice .notice-detail::before {
  content: "";
  width: 1px;
  height: 47.2vw;
  background: linear-gradient(to bottom, #e23c32 0%, rgba(226, 60, 50, 0.1) 100%);
  position: absolute;
  top: 1vw;
  left: 2.93vw;
}

.inner-ywjj .warning-notice .notice-detail p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
}

.inner-ywjj .warning-notice .notice-detail .qrcode {
  margin-top: 6.28vw;
}

.inner-ywjj .warning-notice .notice-detail .qrcode img {
  width: 28vw;
}

.inner-ywjj .warning-notice .notice-detail .qrcode span {
  display: inline-block;
  line-height: 4.8vw;
  margin-top: 3.6vw;
}

.inner-ywjj .filling-illustrate {
  margin-top: 11.2vw;
  width: 100%;
  border: 0.13vw dashed #9b9b9b;
  border-radius: 1.33vw;
  position: relative;
  box-sizing: border-box;
  padding: 12.83vw 5vw 2.07vw;
}

.inner-ywjj .filling-illustrate::before {
  content: "Ìî±¨ËµÃ÷";
  font-size: 4.27vw;
  font-weight: bold;
  width: 28.93vw;
  height: 9.33vw;
  border-radius: 1.33vw 0 1.33vw 0;
  background: #e23c32;
  text-align: center;
  color: #fff;
  line-height: 9.33vw;
  position: absolute;
  top: 0;
  left: 0;
}

.inner-ywjj .filling-illustrate p {
  margin-bottom: 6.13vw;
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #666;
}

/* ÖÊÁ¿ÖÎÀí */
.inner-zlgl .plate-start {
  width: 100vw;
  height: 70.53vw;
  background: url("/static/front/wap/images/zlgl_bg1.jpg") no-repeat center/cover;
  box-sizing: border-box;
  padding: 0.72vw 4.93vw 0;
}

.inner-zlgl .plate-start .plate-title {
  margin-bottom: 6.54vw;
}

.inner-zlgl .plate-start p.desc {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
  text-align: center;
}

.inner-zlgl h2 {
  font-size: 4.8vw;
  color: #e23c32;
  line-height: 12.93vw;
  position: relative;
}

.inner-zlgl h2 span {
  position: relative;
  z-index: 1;
}

.inner-zlgl h2::before {
  content: attr(data-num);
  font-size: 13.5vw;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(to bottom, rgba(226, 60, 50, 0.1), rgba(226, 60, 50, 0) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  position: absolute;
  top: -3.2vw;
  left: 0;
}

.inner-zlgl h2:after {
  content: "";
  width: 6.93vw;
  height: 0.4vw;
  background-color: #e23c32;
  position: absolute;
  bottom: 0;
  left: 0;
}

.inner-zlgl .plate--1 {
  margin-top: -3.86vw;
  padding: 8.14vw 4vw 106.67vw;
  box-sizing: border-box;
  background: #f7f7f7 url("../images/zlgl_bg2.png") no-repeat bottom center/100vw auto;
  border-radius: 2.67vw 2.67vw 0 0;
}

.inner-zlgl .plate--1 h2 {
  text-align: center;
  margin-bottom: 6.2vw;
}

.inner-zlgl .plate--1 h2::before, .inner-zlgl .plate--1 h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.inner-zlgl .plate--1 p {
  font-size: 3.47vw;
  color: #333;
  line-height: 6.13vw;
  text-align: justify;
}

.inner-zlgl .plate--1 p b {
  color: #e23c32;
}

.inner-zlgl .plate--2 {
  padding: 12vw 4vw 11.6vw;
  box-sizing: border-box;
  background: url("/static/front/wap/images/zlgl_bg3.jpg") no-repeat left center/cover;
}

.inner-zlgl .plate--2 h2 {
  width: 92vw;
  line-height: 13.34vw;
  margin-bottom: 5.47vw;
}

.inner-zlgl .plate--2 h2::before {
  top: -4.13vw;
}

.inner-zlgl .plate--2 p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
}

.inner-zlgl .plate--2 .imgs-swiper {
  width: calc(100% + 4vw);
  height: 44.93vw;
  margin-top: 4.67vw;
}

.inner-zlgl .plate--2 .imgs-swiper .swiper-slide {
  width: 66.8vw;
  height: 37.73vw;
  border-radius: 0.8vw;
  overflow: hidden;
}

.inner-zlgl .plate--2 .imgs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}

.inner-zlgl .plate--2 .imgs-swiper .swiper-pagination {
  top: 44.53vw;
  height: 0.4vw;
  background: rgba(80, 75, 68, 0.2);
  border-radius: 0.2vw;
}

.inner-zlgl .plate--2 .imgs-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #e23c32;
  height: 0.4vw;
  border-radius: 0.2vw;
}

.inner-zlgl .plate--3 {
  padding-top: 12.66vw;
}

.inner-zlgl .plate--3 h2 {
  line-height: 13.34vw;
  margin: 0 4vw 5.48vw;
}

.inner-zlgl .plate--3 h2::before {
  top: -4.26vw;
}

.inner-zlgl .plate--3 p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
  box-sizing: border-box;
  padding: 0 4vw;
}

.inner-zlgl .plate--3 img {
  width: 100vw;
  margin-top: 5.08vw;
}

/* ¹¤ÒµÂþÑÜ */
.inner-cyfb {
  box-sizing: border-box;
  padding-bottom: 13.47vw;
}

.inner-cyfb .industry-types {
  width: 100%;
  margin-top: 8.13vw;
}

.inner-cyfb .industry-types li {
  width: 100%;
  height: 33.33vw;
  border-radius: 1.33vw;
  margin-bottom: 0.27vw;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.inner-cyfb .industry-types li h3 {
  width: 10.93vw;
  height: 100%;
  background: #e23c32;
  writing-mode: vertical-lr;
  text-align: center;
  line-height: 10.93vw;
  letter-spacing: 0.8vw;
  font-size: 4vw;
  color: #fff;
}

.inner-cyfb .industry-types li .item-data {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.inner-cyfb .industry-types li .item-data p {
  width: 34.8vw;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.inner-cyfb .industry-types li .item-data p b {
  height: 9.33vw;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.4vw;
}

.inner-cyfb .industry-types li .item-data p b span {
  font-size: 9.33vw;
}

.inner-cyfb .industry-types li .item-data p b sub {
  font-size: 3.2vw;
  margin-left: 2vw;
  margin-top: 3vw;
}

.inner-cyfb .industry-types li .item-data p span {
  font-size: 3.47vw;
  line-height: 6.13vw;
}

.inner-cyfb .industry-types li:nth-child(1) {
  background: url("/static/front/wap/images/cyfb_bg1.jpg") no-repeat right center/cover;
}

.inner-cyfb .industry-types li:nth-child(2) {
  background: url("/static/front/wap/images/cyfb_bg2.jpg") no-repeat right center/cover;
}

.inner-cyfb .industry-types li:nth-child(3) {
  background: url("/static/front/wap/images/cyfb_bg3.jpg") no-repeat right center/cover;
}

.inner-cyfb .industry-types li:nth-child(3) .item-data p b {
  height: 10.67vw;
  margin-bottom: 0.67vw;
}

.inner-cyfb .industry-types li:nth-child(3) .item-data p b sub {
  margin-top: 3.74vw;
}

.inner-cyfb .companies-total {
  width: 100vw;
  height: 28.4vw;
  background: url("/static/front/wap/images/cyfb_bg4.jpg") no-repeat center/cover;
  line-height: 28.4vw;
  font-size: 3.73vw;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12.66vw;
  margin-left: -4vw;
}

.inner-cyfb .companies-total b {
  margin-right: 2.67vw;
  font-size: 9.27vw;
}

.inner-cyfb .companies-total b sub {
  font-size: 6.13vw;
  margin-left: 1.47vw;
}

.inner-cyfb .companies-total > span {
  margin-top: 2vw;
}

.inner-cyfb .companies {
  margin-top: 1.6vw;
}

.inner-cyfb .companies li {
  padding: 2.68vw 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.inner-cyfb .companies p {
  font-size: 3.47vw;
  line-height: 6.13vw;
}

.inner-cyfb .map {
  width: 100%;
  margin-top: 21.2vw;
}

/* ÓªÏúÍøÂç */
.inner-yxwl {
  padding-bottom: 9.73vw;
}

.inner-yxwl .plate-title {
  margin-bottom: 6.55vw;
}

.inner-yxwl .p-text {
  font-size: 3.47vw;
  line-height: 6.13vw;
  text-align: center;
  color: #333;
}

.inner-yxwl .statistics {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 6.8vw 0 4.67vw;
}

.inner-yxwl .statistics li {
  width: 42.8vw;
  display: flex;
  flex-direction: column;
  margin-top: 2.93vw;
}

.inner-yxwl .statistics li span:nth-child(1) {
  line-height: 12.94vw;
  border-bottom: 1px solid #ca0d25;
}

.inner-yxwl .statistics li span:nth-child(1) b {
  font-size: 8vw;
  color: #ca0d25;
}

.inner-yxwl .statistics li span:nth-child(1) sub {
  font-size: 3.2vw;
  color: #999;
  margin-left: 2vw;
}

.inner-yxwl .statistics li span:nth-child(2) {
  font-size: 3.47vw;
  color: #575656;
  line-height: 10.67vw;
}

.inner-yxwl .distribution {
  width: 100vw;
  margin-left: -4vw;
}

.inner-yxwl .distribution .map {
  width: 100%;
}

.inner-yxwl .distribution ul {
  width: 100%;
  height: 22vw;
  background: #e23c32;
  box-sizing: border-box;
  padding: 0 4vw;
  display: flex;
  align-items: center;
}

.inner-yxwl .distribution ul li {
  width: 46vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.inner-yxwl .distribution ul li b {
  font-size: 4vw;
  line-height: 9.86vw;
}

.inner-yxwl .distribution ul li p {
  font-size: 3.2vw;
  line-height: 4vw;
}

.inner-yxwl .map-gif {
  width: 100%;
  margin-top: 9.35vw;
}

/* ÂÃÓÎ¾°Çø */
.inner-scenic .plate-title {
  padding-top: 7.93vw;
}

.inner-scenic .plate-title h1 {
  font-size: 4.67vw;
  letter-spacing: -0.03vw;
}

.inner-scenic .plate-title h1.cn {
  font-size: 4.8vw;
}

.inner-scenic .plate--1 {
  box-sizing: border-box;
  padding: 8.4vw 4vw 70.8vw;
  background: #fff url("../images/scenic_bg1.jpg") no-repeat bottom center/100% auto;
}

.inner-scenic .plate--1 .scenic-logo {
  width: 34.93vw;
  height: 18.8vw;
  margin-bottom: 5.93vw;
}

.inner-scenic .plate--1 .scenic-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-scenic .plate--1 h3 {
  font-size: 3.87vw;
  line-height: 6.4vw;
  color: #333333;
}

.inner-scenic .plate--1 .describe {
  margin-top: 5.8vw;
}

.inner-scenic .plate--1 .describe p {
  font-size: 3.47vw;
  line-height: 4.8vw;
  color: #333333;
  text-align: justify;
}

.inner-scenic .plate--1 .statistics {
  margin-top: 12.13vw;
  height: 38.48vw;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.inner-scenic .plate--1 .statistics li {
  display: flex;
  flex-direction: column;
}

.inner-scenic .plate--1 .statistics li:nth-child(2n) {
  margin-top: 12.34vw;
}

.inner-scenic .plate--1 .statistics li .data {
  height: 8.27vw;
  line-height: 8.27vw;
  padding-bottom: 1.47vw;
  box-sizing: border-box;
}

.inner-scenic .plate--1 .statistics li .data b {
  font-size: 6.67vw;
  color: #333;
}

.inner-scenic .plate--1 .statistics li .data sub {
  font-size: 2.67vw;
  color: #666666;
}

.inner-scenic .plate--1 .statistics li .source {
  font-size: 3.2vw;
  color: #666666;
  line-height: 4.8vw;
}

.inner-scenic .plate--2 {
  padding-bottom: 21.47vw;
  background: #fff url("../images/scenic_bg2.jpg") no-repeat bottom center/100% auto;
}

.inner-scenic .plate--2 .scenic-panorama {
  margin-top: 9.2vw;
  text-align: center;
}

.inner-scenic .plate--2 .scenic-panorama img {
  max-width: 100%;
}

.inner-scenic .plate--2 .scenic-panorama img + img {
  margin-top: 6.13vw;
}

.inner-scenic .plate--3 {
  padding: 13.47vw 0 0;
}

.inner-scenic .plate--3 .type-tab {
  width: 100%;
  height: 13.07vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7.6vw;
  box-sizing: border-box;
  padding: 0 4vw;
}

.inner-scenic .plate--3 .type-tab li {
  width: 29.73vw;
  height: 100%;
  border-radius: 1.33vw;
  background: #ffffff;
  box-shadow: 0px 0px 2.67vw 0px rgba(220, 221, 225, 0.74);
  position: relative;
  overflow: hidden;
  transition: all .3s;
  z-index: 1;
  box-sizing: border-box;
  padding: 0 2.8vw;
}

.inner-scenic .plate--3 .type-tab li .title {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-scenic .plate--3 .type-tab li .title .cn {
  font-size: 3.2vw;
  line-height: 4.8vw;
  color: #333333;
}

.inner-scenic .plate--3 .type-tab li .title .en {
  font-size: 2.13vw;
  line-height: 2.27vw;
  color: #999999;
  opacity: 0.2;
}

.inner-scenic .plate--3 .type-tab li .no {
  font-size: 6.21vw;
  opacity: 0.1;
  color: #999999;
  background: linear-gradient(144deg, #eb5d4f 0%, #f3a199 100%);
  -webkit-background-clip: text;
  transition: all .3s;
  position: absolute;
  top: 1.6vw;
  right: 1.07vw;
}

.inner-scenic .plate--3 .type-tab li::before, .inner-scenic .plate--3 .type-tab li::after {
  content: '';
  width: 100%;
  height: 0.54vw;
  position: absolute;
  top: 0;
  left: 0;
}

.inner-scenic .plate--3 .type-tab li::before {
  background: #cfcfcf;
}

.inner-scenic .plate--3 .type-tab li::after {
  background: linear-gradient(-54deg, #eb5d4f 0%, #f3a199 100%);
  opacity: 0;
  transition: all .3s;
}

.inner-scenic .plate--3 .type-tab li.cur .no {
  color: transparent;
  opacity: 0.2;
}

.inner-scenic .plate--3 .type-tab li.cur:after {
  opacity: 1;
}

.inner-scenic .plate--3 .type-swiper-group {
  width: 100%;
  height: 58.14vw;
  margin-bottom: -3.07vw;
}

.inner-scenic .plate--3 .type-swiper-group .item-swiper {
  width: 100%;
  height: 39.87vw;
}

.inner-scenic .plate--3 .type-swiper-group .item-swiper .swiper-wrapper {
  align-items: center;
}

.inner-scenic .plate--3 .type-swiper-group .item-swiper .swiper-slide {
  width: 53.33vw;
  height: 33.33vw;
}

.inner-scenic .plate--3 .type-swiper-group .item-swiper .swiper-slide .item-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.33vw;
}

.inner-scenic .plate--3 .type-swiper-group .item-swiper .swiper-slide .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-scenic .plate--3 .type-swiper-group .group-name {
  font-size: 3.47vw;
  line-height: 5.33vw;
  color: #333333;
  margin: 1.6vw 0 5.2vw;
  text-align: center;
}

.inner-scenic .plate--3 .type-swiper-group .item-control {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.13vw;
}

.inner-scenic .plate--3 .type-swiper-group .item-control .item-prev,
.inner-scenic .plate--3 .type-swiper-group .item-control .item-next {
  width: 6.13vw;
  height: 6.13vw;
  border-radius: 50%;
  color: #e23c32;
  cursor: pointer;
  font-size: 6.13vw;
  margin: 0 2.27vw;
}

.inner-scenic .plate--3 .type-swiper-group .item-control .item-prev.swiper-button-disabled,
.inner-scenic .plate--3 .type-swiper-group .item-control .item-next.swiper-button-disabled {
  color: #c9c9c9;
  cursor: no-drop;
}

.inner-scenic .plate--4 {
  padding-bottom: 12.4vw;
}

.inner-scenic .plate--4 .list-group {
  padding-top: 8.53vw;
  margin-bottom: 11.6vw;
}

.inner-scenic .plate--5 {
  background: #f5f5f5;
  box-sizing: border-box;
  padding: 0 4vw 13.87vw;
}

.inner-scenic .plate--5 .video-ls {
  width: 100%;
  margin-bottom: 11.73vw;
  margin-top: 8vw;
}

.inner-scenic .plate--5 .video-ls li + li {
  margin-top: 7.2vw;
}

.inner-scenic .plate--5 .video-ls .video-box {
  width: 100%;
  height: 51.73vw;
  border-radius: 1.33vw;
  overflow: hidden;
  position: relative;
}

.inner-scenic .plate--5 .video-ls .video-box .video-mask {
  width: 100%;
  height: 51.73vw;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  cursor: pointer;
}

.inner-scenic .plate--5 .video-ls .video-box .video-mask::before {
  content: '';
  width: 9.33vw;
  height: 9.73vw;
  background: url("/static/front/wap/images/play_border.png") no-repeat center center/cover;
}

.inner-scenic .plate--5 .video-ls .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-scenic .plate--5 .video-ls .title {
  color: #1e1e1e;
  font-size: 3.47vw;
  line-height: 4vw;
  letter-spacing: 0.07vw;
  margin-top: 3.6vw;
  text-align: center;
}

.inner-scenic .more {
  display: block;
  width: 25.6vw;
  height: 9.33vw;
  background: #e23c32;
  border-radius: 4.67vw;
  font-size: 3.47vw;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 9.33vw;
  margin: 0 auto;
}

/* ÑÐ·¢Á¢Òì */
.inner-yfcx {
  padding-top: 6.13vw;
}

.inner-yfcx h3 {
  font-size: 4.8vw;
  line-height: 13.6vw;
  text-align: center;
  color: #e23c32;
  margin-bottom: 2.94vw;
  position: relative;
}

.inner-yfcx h3::before {
  content: "";
  width: 5.87vw;
  height: 0.53vw;
  background: #e23c32;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.inner-yfcx .p-text {
  font-size: 3.47vw;
  line-height: 6.13vw;
  text-align: center;
  color: #333;
  box-sizing: border-box;
  padding: 0 4.93vw;
}

.inner-yfcx .four-ques {
  box-sizing: border-box;
  padding-top: 3vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inner-yfcx .four-ques .img-arrow {
  width: 29.2vw;
}

.inner-yfcx .four-ques .img-mark {
  width: 5.07vw;
  margin: 0 auto;
}

.inner-yfcx .four-ques .img-circle {
  width: 100%;
  display: block;
  margin-top: 2.4vw;
}

.inner-yfcx .four-ques h4 {
  font-size: 3.47vw;
  color: #e23c32;
  line-height: 4.8vw;
  width: 100%;
  position: relative;
  margin: 4.53vw 0 2.8vw;
}

.inner-yfcx .four-ques h4::before, .inner-yfcx .four-ques h4::after {
  content: "";
  width: 5.87vw;
  height: 0.13vw;
  background: #e23c32;
  opacity: 0.2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.inner-yfcx .four-ques h4::before {
  left: 0;
}

.inner-yfcx .four-ques h4::after {
  right: 0;
}

.inner-yfcx .four-ques .thumb-img {
  width: 75.07vw;
  height: 50.26vw;
  overflow: hidden;
  position: relative;
}

.inner-yfcx .four-ques .thumb-img .poster {
  width: 57.6vw;
  position: absolute;
  bottom: -0.27vw;
  left: 8.8vw;
}

.inner-yfcx .four-ques .ques {
  width: 100%;
  margin-top: 4.13vw;
}

.inner-yfcx .four-ques .ques li {
  width: 100%;
  height: 9.33vw;
  font-size: 3.47vw;
  line-height: 9.33vw;
  border-radius: 1.33vw;
  background: #ffe2e0;
  color: #333;
  margin-top: 2.67vw;
}

.inner-yfcx .four-ques .ques li:nth-child(2n) {
  background: #e23c32;
  color: #fff;
}

.inner-yfcx .text-group {
  box-sizing: border-box;
  margin-bottom: 9vw;
}

.inner-yfcx .text-group p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  margin-top: 6.13vw;
  color: #333;
}

.inner-yfcx .imgs-swiper-box {
  width: 100%;
  padding-bottom: 8.14vw;
  position: relative;
}

.inner-yfcx .imgs-swiper-box .imgs-swiper {
  width: 100%;
  height: 33.33vw;
}

.inner-yfcx .imgs-swiper-box .imgs-swiper .swiper-slide {
  width: 53.33vw;
  height: 33.33vw;
  border-radius: 1.33vw;
  overflow: hidden;
}

.inner-yfcx .imgs-swiper-box .imgs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-yfcx .imgs-swiper-box .img-name {
  width: 92vw;
  font-size: 3.47vw;
  color: #333;
  line-height: 5.33vw;
  margin: 4.94vw auto 0;
  text-align: center;
}

.inner-yfcx .imgs-swiper-box .img-control {
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -1.73vw;
  left: 0;
}

.inner-yfcx .imgs-swiper-box .img-control button {
  display: inline-block;
  width: 6.13vw;
  height: 6.13vw;
  border-radius: 50%;
  border: none;
  outline: none;
  background: #fff;
  text-align: center;
  line-height: 6.13vw;
  font-size: 6.13vw;
  color: #e23c32;
  margin: 0 2.27vw;
}

.inner-yfcx .imgs-swiper-box .img-control button.swiper-button-disabled {
  color: #b1b1b1;
}

.inner-yfcx .children-menu {
  width: 100vw;
  height: 72.14vw;
  padding-top: 7.2vw;
  padding-bottom: 7.47vw;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inner-yfcx .children-menu li {
  width: 44.13vw;
  height: 26.67vw;
  border-radius: 1.33vw;
  margin-bottom: 4.13vw;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.inner-yfcx .children-menu li p {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.inner-yfcx .children-menu li p b {
  font-size: 3.47vw;
  line-height: 4.8vw;
  color: #fff;
  text-align: center;
}

.inner-yfcx .children-menu li p span {
  display: inline-block;
  width: 18.67vw;
  height: 6.67vw;
  background: #e23c32;
  border-radius: 3.33vw;
  text-align: center;
  line-height: 6.67vw;
  font-size: 3.2vw;
  line-height: 6.67vw;
  margin: 1.47vw auto 0;
  color: #fff;
}

/* ÑÐ·¢ÖÐÐÄ */
.inner-yfzx {
  box-sizing: border-box;
  overflow: hidden;
}

.inner-yfzx .p-text {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
  text-align: center;
  margin-top: 8vw;
}

.inner-yfzx .statistics {
  width: 100%;
  margin-top: 4.96vw;
  margin-bottom: 6.13vw;
}

.inner-yfzx .statistics li {
  width: 100%;
  height: 20.8vw;
  border-radius: 1.33vw;
  margin-top: 3.2vw;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 4.13vw 5.33vw;
  position: relative;
  color: #fff;
}

.inner-yfzx .statistics li .iconfont {
  width: 12.53vw;
  height: 12.53vw;
  background: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 12.53vw;
  margin-right: 5.47vw;
}

.inner-yfzx .statistics li .iconfont span {
  color: transparent;
  background: linear-gradient(-30deg, #e23c32 0%, #ff8686 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 6.27vw;
}

.inner-yfzx .statistics li p:not(.iconfont) {
  width: 58.8vw;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-yfzx .statistics li p:not(.iconfont) .num b {
  font-size: 8vw;
}

.inner-yfzx .statistics li p:not(.iconfont) .num sub {
  font-size: 3.47vw;
  margin-left: 1.47vw;
}

.inner-yfzx .statistics li p:not(.iconfont) span:not(.num) {
  font-size: 3.47vw;
  line-height: 5.07vw;
}

.inner-yfzx .statistics li:nth-child(1) {
  background: #e23d32;
}

.inner-yfzx .statistics li:nth-child(2) {
  background: #ef5647;
}

.inner-yfzx .statistics li:nth-child(3) {
  height: 24.8vw;
  background: #f3675a;
}

.inner-yfzx .statistics li::after {
  content: "\e60b";
  font-family: "iconfont";
  font-size: 16.27vw;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 1.6vw;
  right: 2vw;
}

.inner-yfzx .platform-country {
  width: 100vw;
  height: 103.33vw;
  margin-left: -4vw;
  background: url("/static/front/wap/images/yfzx_bg1.jpg") no-repeat center top/100% auto;
}

.inner-yfzx .platform-country .plate-title {
  padding-top: 6.87vw;
}

.inner-yfzx .platform-country .certificate {
  width: 71.33vw;
  height: 71.33vw;
  margin: 5.2vw auto 0;
  position: relative;
}

.inner-yfzx .platform-country .certificate::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("/static/front/wap/images/yfzx_circle.png") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  animation: rotate3 10s linear infinite;
}

.inner-yfzx .platform-country .certificate .circle-center {
  width: 27.2vw;
  height: 27.2vw;
  background: url("/static/front/wap/images/yfzx_circle_center.png") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.27vw;
  font-weight: bold;
  line-height: 6.13vw;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13.6vw;
  margin-left: -13.6vw;
}

.inner-yfzx .platform-country .certificate-list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.inner-yfzx .platform-country .certificate-list li {
  width: 37.47vw;
  height: 13.47vw;
  border-radius: 1.33vw;
  position: absolute;
  line-height: 4.8vw;
  font-size: 3.2vw;
  font-weight: bolder;
  color: #333;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.inner-yfzx .platform-country .certificate-list li::after {
  content: "\e737";
  width: 15.33vw;
  height: 15.33vw;
  position: absolute;
  font-family: "iconfont";
  font-size: 5.87vw;
  font-weight: normal;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
}

.inner-yfzx .platform-country .certificate-list li:nth-child(1) {
  padding-left: 2.93vw;
  background: linear-gradient(to right, #fceded, rgba(252, 237, 237, 0));
  top: 6.8vw;
  left: -10.4vw;
}

.inner-yfzx .platform-country .certificate-list li:nth-child(1)::after {
  width: 14.4vw;
  height: 14.4vw;
  background-image: url("/static/front/wap/images/yfzx_circle_sm1.png");
  padding-left: 0.67vw;
  padding-bottom: 0.93vw;
  top: -0.47vw;
  right: -0.4vw;
}

.inner-yfzx .platform-country .certificate-list li:nth-child(2) {
  justify-content: flex-end;
  padding-right: 3.87vw;
  text-align: right;
  background: linear-gradient(to left, rgba(91, 236, 254, 0.2), rgba(91, 236, 254, 0));
  top: 6.8vw;
  right: -10.27vw;
}

.inner-yfzx .platform-country .certificate-list li:nth-child(2)::after {
  content: "\e62f";
  font-size: 5.47vw;
  background-image: url("/static/front/wap/images/yfzx_circle_sm2.png");
  padding-left: 0.8vw;
  padding-bottom: 0.53vw;
  top: -0.93vw;
  left: -4.13vw;
}

.inner-yfzx .platform-country .certificate-list li:nth-child(3) {
  padding-left: 2.93vw;
  background: linear-gradient(to right, #befbee, rgba(190, 251, 238, 0));
  bottom: 9.73vw;
  left: -10.4vw;
}

.inner-yfzx .platform-country .certificate-list li:nth-child(3)::after {
  content: "\e618";
  width: 14.93vw;
  height: 14.93vw;
  font-size: 4.13vw;
  background-image: url("/static/front/wap/images/yfzx_circle_sm3.png");
  padding-left: 1.07vw;
  padding-bottom: 0.4vw;
  top: -0.73vw;
  right: -0.4vw;
}

.inner-yfzx .platform-country .certificate-list li:nth-child(4) {
  justify-content: flex-end;
  padding-right: 4vw;
  text-align: right;
  background: linear-gradient(to left, rgba(166, 212, 254, 0.55), rgba(166, 212, 254, 0));
  bottom: 9.73vw;
  right: -10.27vw;
}

.inner-yfzx .platform-country .certificate-list li:nth-child(4)::after {
  background-image: url("/static/front/wap/images/yfzx_circle_sm4.png");
  padding-left: 0.8vw;
  padding-bottom: 1.07vw;
  top: -0.93vw;
  left: -4.13vw;
}

.inner-yfzx .platform-province .plate-title {
  padding-top: 7.54vw;
}

.inner-yfzx .platform-province .certificate {
  width: 91.73vw;
  height: 54vw;
  background: url("/static/front/wap/images/yfzx_circle2.png") no-repeat center/cover;
  margin: 20.4vw auto 0;
  position: relative;
}

.inner-yfzx .platform-province .certificate li {
  font-size: 3.47vw;
  line-height: 4.8vw;
  letter-spacing: -0.01vw;
  position: absolute;
}

.inner-yfzx .platform-province .certificate li:nth-child(1) {
  color: #e47d01;
  top: -12.94vw;
  left: 0;
}

.inner-yfzx .platform-province .certificate li:nth-child(2) {
  color: #e23c32;
  top: -12.94vw;
  right: 0;
  text-align: right;
}

.inner-yfzx .platform-province .certificate li:nth-child(3) {
  color: #90030b;
  bottom: -15vw;
  left: 0;
}

.inner-yfzx .platform-province .certificate li:nth-child(4) {
  color: #d2a36d;
  bottom: -15vw;
  right: 0;
  text-align: right;
}

.inner-yfzx .volunteer {
  width: 100vw;
  box-sizing: border-box;
  padding: 11.6vw 4vw 10.27vw;
  margin-left: -4vw;
  margin-top: 24.13vw;
  background: #f0f5f8 url("../images/yfzx_bg2.jpg") no-repeat center top/100vw auto;
}

.inner-yfzx .volunteer .creation-logs {
  width: 100%;
  margin-top: 8vw;
}

.inner-yfzx .volunteer .creation-logs li {
  width: 100%;
  min-height: 34.13vw;
  box-sizing: border-box;
  padding: 6.14vw 6.07vw 6.4vw;
  background: #fff;
  border-radius: 1.33vw;
  margin-top: 4.53vw;
  overflow: hidden;
  position: relative;
}

.inner-yfzx .volunteer .creation-logs li h5 {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #e23c32;
}

.inner-yfzx .volunteer .creation-logs li p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
  margin-top: 1.07vw;
  text-align: justify;
}

.inner-yfzx .volunteer .creation-logs li::after {
  content: "";
  width: 100%;
  height: 0.8vw;
  background: #e23c32;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ¿ÆÑÐÊÂÇéÕ¾ */
.inner-kygzz .p-text {
  width: 92vw;
  font-size: 3.47vw;
  line-height: 6.13vw;
  text-align: center;
  color: #333;
  margin: 6.67vw auto 7.2vw;
}

.inner-kygzz .level-national .title,
.inner-kygzz .level-provincial .title {
  width: 92vw;
  height: 10.67vw;
  border-radius: 1.33vw;
  font-size: 3.47vw;
  line-height: 10.67vw;
  text-align: center;
  color: #fff;
  background: #f4746c;
  margin: 0 auto 8vw;
}

.inner-kygzz .level-national .title {
  margin-bottom: 10.27vw;
  background: url("/static/front/wap/images/kygzz_bg.png") no-repeat center/cover;
}

.inner-kygzz .level-provincial .title {
  margin-top: 9.87vw;
}

.inner-kygzz .national-swiper-box,
.inner-kygzz .provincial-swiper-box {
  width: 100%;
  padding-bottom: 8.14vw;
  position: relative;
}

.inner-kygzz .national-swiper-box .national-swiper,
.inner-kygzz .national-swiper-box .provincial-swiper,
.inner-kygzz .provincial-swiper-box .national-swiper,
.inner-kygzz .provincial-swiper-box .provincial-swiper {
  width: 100%;
  height: 38.4vw;
}

.inner-kygzz .national-swiper-box .national-swiper .swiper-slide,
.inner-kygzz .national-swiper-box .provincial-swiper .swiper-slide,
.inner-kygzz .provincial-swiper-box .national-swiper .swiper-slide,
.inner-kygzz .provincial-swiper-box .provincial-swiper .swiper-slide {
  width: 61.33vw;
  height: 38.4vw;
  border-radius: 1.33vw;
  overflow: hidden;
}

.inner-kygzz .national-swiper-box .national-swiper .swiper-slide img,
.inner-kygzz .national-swiper-box .provincial-swiper .swiper-slide img,
.inner-kygzz .provincial-swiper-box .national-swiper .swiper-slide img,
.inner-kygzz .provincial-swiper-box .provincial-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-kygzz .national-swiper-box .national-name,
.inner-kygzz .national-swiper-box .provincial-name,
.inner-kygzz .provincial-swiper-box .national-name,
.inner-kygzz .provincial-swiper-box .provincial-name {
  width: 92vw;
  font-size: 3.47vw;
  color: #333;
  line-height: 5.33vw;
  margin: 4.94vw auto 0;
  text-align: center;
}

.inner-kygzz .national-swiper-box .national-control,
.inner-kygzz .national-swiper-box .provincial-control,
.inner-kygzz .provincial-swiper-box .national-control,
.inner-kygzz .provincial-swiper-box .provincial-control {
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -1.73vw;
  left: 0;
}

.inner-kygzz .national-swiper-box .national-control button,
.inner-kygzz .national-swiper-box .provincial-control button,
.inner-kygzz .provincial-swiper-box .national-control button,
.inner-kygzz .provincial-swiper-box .provincial-control button {
  display: inline-block;
  width: 6.13vw;
  height: 6.13vw;
  border-radius: 50%;
  border: none;
  outline: none;
  background: #fff;
  text-align: center;
  line-height: 6.13vw;
  font-size: 6.13vw;
  color: #e23c32;
  margin: 0 2.27vw;
}

.inner-kygzz .national-swiper-box .national-control button.swiper-button-disabled,
.inner-kygzz .national-swiper-box .provincial-control button.swiper-button-disabled,
.inner-kygzz .provincial-swiper-box .national-control button.swiper-button-disabled,
.inner-kygzz .provincial-swiper-box .provincial-control button.swiper-button-disabled {
  color: #b1b1b1;
}

/* Ò©ÓÃÃÀÖÞ´óó¹ËÄ´¨Ê¡ÖØµãÊµÑéÊÒ */
.inner-yymzdl .p-text {
  width: 92vw;
  font-size: 3.47vw;
  line-height: 6.13vw;
  text-align: center;
  color: #333;
  margin: 6.67vw auto;
}

.inner-yymzdl .fixed-bg {
  width: 100vw;
  height: 47.6vw;
  background: url("/static/front/wap/images/yymzdl_img.jpg") no-repeat center/100vw 47.6vw fixed;
}

/* ²úÑ§ÑÐÁªÃË */
.inner-cxylm .p-text {
  width: 92vw;
  font-size: 3.47vw;
  line-height: 6.13vw;
  text-align: center;
  color: #333;
  margin: 6.67vw auto 8vw;
}

.inner-cxylm .timeline {
  width: 92vw;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 3.67vw 0 7.07vw 7.87vw;
  position: relative;
}

.inner-cxylm .timeline li {
  margin-bottom: 12.6vw;
  display: flex;
  flex-direction: column;
  position: relative;
}

.inner-cxylm .timeline li b {
  font-size: 4.8vw;
  line-height: 5.33vw;
  color: #e23c32;
}

.inner-cxylm .timeline li span {
  display: inline-block;
  width: 25.2vw;
  height: 6.67vw;
  font-size: 3.47vw;
  line-height: 6.67vw;
  color: #fff;
  background: #e23c32;
  border-radius: 0.53vw;
  box-sizing: border-box;
  padding-left: 2.67vw;
  margin-top: 1.8vw;
  position: relative;
}

.inner-cxylm .timeline li span::before {
  content: "";
  border: 1vw solid transparent;
  border-right: 1.6vw solid #e23c32;
  position: absolute;
  left: -2vw;
  top: 50%;
  transform: translateY(-50%);
}

.inner-cxylm .timeline li p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  margin: 2.94vw 0 2.54vw;
  color: #333;
}

.inner-cxylm .timeline li .item-img {
  width: 100%;
  height: 51.33vw;
  border-radius: 1.33vw;
  overflow: hidden;
}

.inner-cxylm .timeline li .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-cxylm .timeline li:last-child {
  margin-bottom: 0;
}

.inner-cxylm .timeline li::before {
  content: "";
  width: 1.87vw;
  height: 1.87vw;
  border-radius: 50%;
  background: #e23c32;
  position: absolute;
  top: 9vw;
  left: -8.67vw;
  animation: custom_pulse2 1.5s infinite;
}

.inner-cxylm .timeline::before {
  content: "";
  width: 0.54vw;
  height: 100%;
  border-radius: 0.27vw;
  background: #f0efef;
  position: absolute;
  top: 0;
  left: 0;
}

.inner-cxylm .events-swiper-box {
  width: 100vw;
  height: 99.73vw;
  background: #f6f6f6;
  box-sizing: border-box;
  padding: 14.4vw 0 15.73vw;
}

.inner-cxylm .events-swiper {
  width: 100vw;
  height: 69.6vw;
}

.inner-cxylm .events-swiper .swiper-slide {
  width: 71.47vw;
  height: calc(100% - 4.53vw);
}

.inner-cxylm .events-swiper .swiper-slide .slide-img {
  width: 100%;
  height: 44.67vw;
  border-radius: 1.33vw;
  overflow: hidden;
}

.inner-cxylm .events-swiper .swiper-slide .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-cxylm .events-swiper .swiper-slide .slide-text {
  font-size: 3.47vw;
  line-height: 5.33vw;
  text-align: center;
  color: #333;
  margin-top: 5.2vw;
  box-sizing: border-box;
  padding: 0 1.07vw;
}

.inner-cxylm .events-swiper .swiper-pagination {
  width: 91.88vw;
  height: 0.53vw;
  border-radius: 0.27vw;
  background: rgba(0, 0, 0, 0.1);
  top: 69.07vw;
  left: 4.06vw;
}

.inner-cxylm .events-swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 0.53vw;
  border-radius: 0.27vw;
  background: #e23c32;
}

/* Éç»áÔðÈÎ */
.inner-shzr {
  background: #fff url("../images/shzr_bg1.jpg") no-repeat center top/100vw auto;
  box-sizing: border-box;
  padding-top: 72vw;
  padding-bottom: 2.54vw;
}

.inner-shzr .leader-speak {
  width: 76.53vw;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  position: relative;
  margin-left: 9.87vw;
}

.inner-shzr .leader-speak img {
  width: 5.47vw;
  position: absolute;
}

.inner-shzr .leader-speak img:nth-child(1) {
  top: 1vw;
  left: 0;
}

.inner-shzr .leader-speak img:last-child {
  top: 10.53vw;
  right: 5.07vw;
}

.inner-shzr .leader-speak p {
  width: 74.73vw;
  font-size: 5.33vw;
  text-shadow: 0.53vw 0.92vw 1.07vw rgba(81, 18, 19, 0.31);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  margin-left: 2.07vw;
}

.inner-shzr .leader-speak p span {
  line-height: 8.72vw;
  margin-left: -0.13vw;
  text-indent: 0;
}

.inner-shzr .leader-speak p span:first-child {
  padding-left: 1em;
}

.inner-shzr .leader {
  width: 76.53vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 9.87vw;
  margin-top: 3.95vw;
}

.inner-shzr .leader p:not(.yfh) {
  width: 100%;
  font-size: 3.47vw;
  line-height: 9.33vw;
  color: #fff;
  text-shadow: 0.53vw 0.92vw 1.07vw rgba(81, 18, 19, 0.31);
  box-sizing: border-box;
  padding-left: 1.07vw;
}

.inner-shzr .leader .yfh {
  width: 100%;
  font-size: 6.67vw;
  line-height: 9.33vw;
  text-align: right;
  color: #fff;
  text-shadow: 0.53vw 0.92vw 1.07vw rgba(81, 18, 19, 0.31);
  margin-top: -1.06vw;
}

.inner-shzr .leader .yfh span {
  display: inline-block;
  line-height: 9.33vw;
  margin-left: -0.13vw;
}

.inner-shzr .declaration-box {
  width: 92vw;
  margin: 10.53vw auto 7.73vw;
  box-shadow: 0px 0px 1.33vw 0px rgba(0, 0, 0, 0.21);
  border-radius: 1.33vw;
  background: #fff;
  position: relative;
  box-sizing: border-box;
  padding: 6.3vw 5.93vw 12.17vw;
}

.inner-shzr .declaration-box p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  text-indent: 2em;
  color: #333;
}

.inner-shzr .declaration-box p b {
  color: #e03c32;
}

.inner-shzr .declaration-box::before {
  content: "";
  width: 100%;
  height: 0.9vw;
  background: #ff8e87;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1.33vw 1.33vw 0 0;
}

.inner-shzr .declaration-box::after {
  content: "";
  width: 23.87vw;
  height: 20.13vw;
  background: url("/static/front/wap/images/shzr_page_foot.png") no-repeat left top/23.87vw auto;
  position: absolute;
  bottom: -4.4vw;
  right: -2.93vw;
}

.inner-shzr .children-column {
  width: 92vw;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inner-shzr .children-column li {
  width: 44.67vw;
  height: 26.4vw;
  border-radius: 0.53vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.93vw;
}

.inner-shzr .children-column li p {
  font-size: 3.2vw;
  color: #fff;
  line-height: 7vw;
}

.inner-shzr .children-column li .title {
  font-size: 4.27vw;
  margin-bottom: -1.67vw;
}

/* ÐæÂäÕñÐË */
.inner-xczx .plate-title {
  margin-bottom: 6.34vw;
}

.inner-xczx .inner-plate .plate-title .cn {
  position: relative;
  padding-top: 13.07vw;
}

.inner-xczx .inner-plate .plate-title .cn::before {
  content: attr(data-num);
  font-size: 13.5vw;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(to bottom, rgba(226, 60, 50, 0.1), rgba(226, 60, 50, 0) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  position: absolute;
  top: 8.67vw;
  left: 50%;
  transform: translateX(-50%);
}

.inner-xczx .p-text {
  width: 91.2vw;
  margin: 0 auto;
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #666;
  text-align: justify;
}

.inner-xczx .p-text.center {
  color: #333;
  text-align: center;
}

.inner-xczx .scale-swiper {
  width: 100vw;
  height: 62.13vw;
  margin: 6.4vw 0;
}

.inner-xczx .scale-swiper .swiper-slide {
  width: 87.73vw;
  height: 49.33vw;
  border-radius: 0.8vw;
  overflow: hidden;
}

.inner-xczx .scale-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-xczx .scale-swiper .scale-control {
  width: 100%;
  height: 6.13vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.inner-xczx .scale-swiper .scale-control .iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.13vw;
  height: 6.13vw;
  border-radius: 50%;
  border: 0.13vw solid #e23c32;
  font-size: 1.47vw;
  box-sizing: border-box;
  color: #e23c32;
  margin: 0 3.6vw;
}

.inner-xczx .scale-swiper .scale-control.swiper-button-disabled {
  border-color: #b1b1b1;
  color: #b1b1b1;
}

.inner-xczx .plate--1 {
  background: #f5f5f5 url("../images/xczx_bg1.jpg") no-repeat bottom center/100vw auto;
  box-sizing: border-box;
  padding-bottom: 36.27vw;
}

.inner-xczx .plate--1 .timeline {
  width: 100%;
  height: 71.3vw;
  margin-top: 8.83vw;
  position: relative;
}

.inner-xczx .plate--1 .timeline li {
  box-sizing: border-box;
  padding-left: 4.8vw;
  position: absolute;
}

.inner-xczx .plate--1 .timeline li b {
  font-size: 3.73vw;
  line-height: 4vw;
  color: #e23c32;
}

.inner-xczx .plate--1 .timeline li p {
  width: 100%;
  font-size: 3.47vw;
  line-height: 4.8vw;
  color: #333;
  text-align: justify;
}

.inner-xczx .plate--1 .timeline li::before {
  content: "";
  width: 0.4vw;
  height: 18.8vw;
  background: linear-gradient(to bottom, #e23c32, rgba(226, 60, 50, 0) 90%);
  position: absolute;
  left: 0;
  top: 2.13vw;
}

.inner-xczx .plate--1 .timeline li::after {
  content: "";
  width: 1.87vw;
  height: 1.87vw;
  border-radius: 50%;
  background: #e23c32;
  position: absolute;
  top: 1.2vw;
  left: -0.8vw;
  animation: custom_pulse2 1.5s infinite;
}

.inner-xczx .plate--1 .timeline li:nth-child(1) {
  width: calc(100% - 43.33vw);
  left: 38vw;
  top: -0.2vw;
}

.inner-xczx .plate--1 .timeline li:nth-child(2) {
  width: calc(100% - 28.66vw);
  left: 23.33vw;
  top: 28.27vw;
}

.inner-xczx .plate--1 .timeline li:nth-child(3) {
  width: calc(100% - 11.33vw);
  left: 6vw;
  top: 50.8vw;
}

.inner-xczx .plate--2 {
  margin-top: 1.33vw;
}

.inner-xczx .plate--2 .tile-swiper {
  width: 100vw;
  height: 55.6vw;
  margin-top: 6.54vw;
}

.inner-xczx .plate--2 .tile-swiper .swiper-slide {
  width: 81.73vw;
  height: 46vw;
  border-radius: 0.8vw;
  overflow: hidden;
}

.inner-xczx .plate--2 .tile-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-xczx .plate--2 .tile-swiper .swiper-pagination {
  top: 55.2vw;
  left: 4vw;
  width: 92vw;
  height: 0.4vw;
  background: rgba(80, 75, 68, 0.2);
  border-radius: 0.2vw;
}

.inner-xczx .plate--2 .tile-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #e23c32;
  height: 0.4vw;
  border-radius: 0.2vw;
}

.inner-xczx .plate--3 {
  margin-top: 4.53vw;
}

.inner-xczx .about-news {
  margin-top: 6.3vw;
}

/* ¿¹Òß×¨Ìâ */
.inner-kyzt {
  padding-bottom: 7.47vw;
}

.inner-kyzt .p-text {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
  text-indent: 2em;
  width: 92vw;
  margin: 6.71vw auto 6.04vw;
}

.inner-kyzt .preorder {
  width: 92vw;
  box-sizing: border-box;
  padding: 3.07vw 5.87vw 3.87vw;
  border-radius: 1.33vw;
  background: #e23c32;
  font-size: 3.47vw;
  line-height: 8vw;
  color: #fefefe;
  text-indent: 2em;
  margin: 0 auto 10.4vw;
}

.inner-kyzt .work-swiper-box {
  width: 100%;
  padding-bottom: 8.14vw;
  position: relative;
}

.inner-kyzt .work-swiper-box .work-swiper {
  width: 100%;
  height: 38.4vw;
}

.inner-kyzt .work-swiper-box .work-swiper .swiper-slide {
  width: 61.33vw;
  height: 38.4vw;
  border-radius: 1.33vw;
  overflow: hidden;
}

.inner-kyzt .work-swiper-box .work-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-kyzt .work-swiper-box .work-name {
  width: 92vw;
  font-size: 3.47vw;
  color: #333;
  line-height: 5.33vw;
  margin: 4.94vw auto 0;
  text-align: center;
}

.inner-kyzt .work-swiper-box .work-control {
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -1.73vw;
  left: 0;
}

.inner-kyzt .work-swiper-box .work-control button {
  display: inline-block;
  width: 6.13vw;
  height: 6.13vw;
  border-radius: 50%;
  border: none;
  outline: none;
  background: #fff;
  text-align: center;
  line-height: 6.13vw;
  font-size: 6.13vw;
  color: #e23c32;
  margin: 0 2.27vw;
}

.inner-kyzt .work-swiper-box .work-control button.swiper-button-disabled {
  color: #b1b1b1;
}

.inner-kyzt .work-swiper-box .work-control .check-more {
  width: 20vw;
  height: 6.13vw;
  background: #e23c32;
  border-radius: 3.07vw;
  text-align: center;
  line-height: 6.13vw;
  font-size: 2.67vw;
  color: #fff;
}

.inner-kyzt .stories-body {
  width: 100vw;
  padding: 5.33vw 4vw 7.47vw;
  box-sizing: border-box;
  background: #f4f4f4;
  margin: 7.33vw auto 2.27vw;
}

.inner-kyzt .stories-body ul {
  width: 100%;
}

.inner-kyzt .stories-body ul li {
  width: 100%;
  height: 10.67vw;
  border-radius: 0.8vw;
  background: #fff;
  margin-bottom: 1.33vw;
}

.inner-kyzt .stories-body ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 10.67vw;
  font-size: 3.47vw;
  color: #333;
  box-sizing: border-box;
  padding: 0 3.6vw;
}

.inner-kyzt .stories-body .check-more {
  display: block;
  width: 92vw;
  height: 9.07vw;
  background: #fff;
  border-radius: 1.33vw;
  line-height: 9.07vw;
  text-align: center;
  font-size: 3.47vw;
  color: #333;
  margin-top: 3.47vw;
}

.inner-kyzt .videos {
  width: 92vw;
  margin: 0 auto;
}

.inner-kyzt .videos ul {
  margin-top: 8vw;
}

.inner-kyzt .videos li {
  width: 92vw;
  margin-bottom: 6.14vw;
}

.inner-kyzt .videos li p:not(.video-poster) {
  font-size: 3.47vw;
  line-height: 6.13vw;
  letter-spacing: 0.07vw;
  color: #1e1e1e;
  margin-top: 2.54vw;
  text-align: center;
}

.inner-kyzt .videos li .video-poster {
  width: 92vw;
  height: 51.73vw;
  border-radius: 1.33vw;
  text-align: center;
  line-height: 51.73vw;
  font-size: 9.33vw;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.inner-kyzt .videos .check-more {
  display: block;
  margin: 0 auto;
  width: 30.4vw;
  height: 9.33vw;
  background: #e23c32;
  border-radius: 4.67vw;
  line-height: 9.33vw;
  text-align: center;
  font-size: 3.73vw;
  color: #fff;
}

/* ¿¹Õð¾ÈÔÖ */
.inner-kzjz {
  box-sizing: border-box;
  padding-top: 6.8vw;
}

.inner-kzjz .timeline {
  width: 92vw;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 10.6vw 0 13.6vw 7.87vw;
  position: relative;
}

.inner-kzjz .timeline li {
  margin-bottom: 12.6vw;
  display: flex;
  flex-direction: column;
  position: relative;
}

.inner-kzjz .timeline li b {
  font-size: 4.8vw;
  line-height: 5.33vw;
  color: #e23c32;
}

.inner-kzjz .timeline li p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  margin: 3.14vw 0 4vw;
  color: #333;
}

.inner-kzjz .timeline li .item-img {
  width: 100%;
  height: 51.33vw;
  border-radius: 1.33vw;
  overflow: hidden;
}

.inner-kzjz .timeline li .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-kzjz .timeline li .item-img .swiper-pagination {
  bottom: 2.67vw;
  width: 100%;
  height: 1.6vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-kzjz .timeline li .item-img .swiper-pagination .swiper-pagination-bullet {
  margin: 0 1.2vw;
  width: 1.6vw;
  height: 1.6vw;
  border-radius: 50%;
  background: #e23c32;
  opacity: 0.2;
}

.inner-kzjz .timeline li .item-img .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.inner-kzjz .timeline li .item-img .swiper-pagination .swiper-pagination-bullet:only-child {
  display: inline-block !important;
}

.inner-kzjz .timeline li:last-child {
  margin-bottom: 0;
}

.inner-kzjz .timeline li::before {
  content: "";
  width: 1.87vw;
  height: 1.87vw;
  border-radius: 50%;
  background: #e23c32;
  position: absolute;
  top: 2.06vw;
  left: -8.67vw;
  animation: custom_pulse2 1.5s infinite;
}

.inner-kzjz .timeline::before {
  content: "";
  width: 0.54vw;
  height: 100%;
  border-radius: 0.27vw;
  background: #f0efef;
  position: absolute;
  top: 0;
  left: 0;
}

/* ½ÌÓý¹«Òæ */
.inner-jygy {
  width: 100vw;
  overflow: hidden;
}

.inner-jygy .p-text {
  width: 92vw;
  margin: 6.58vw auto 5.78vw;
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
  text-indent: 2em;
  text-align: justify;
}

.inner-jygy .imgs-group {
  height: 38.53vw;
  position: relative;
}

.inner-jygy .imgs-group .swiper {
  width: 92vw;
  height: 18.93vw;
  margin: 0 auto 0.67vw;
}

.inner-jygy .imgs-group .swiper:last-child {
  margin-bottom: 0;
}

.inner-jygy .imgs-group .swiper-wrapper {
  transition-timing-function: linear !important;
}

.inner-jygy .imgs-group .swiper-slide {
  width: 30.13vw;
  height: 100%;
  border-radius: 0.53vw;
  overflow: hidden;
}

.inner-jygy .imgs-group .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-jygy .imgs-group::before, .inner-jygy .imgs-group::after {
  content: "";
  width: 28.27vw;
  height: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  z-index: 2;
}

.inner-jygy .imgs-group::before {
  left: 0;
  background-image: url("/static/front/wap/images/jygy_mask_l.png");
  background-position: left center;
}

.inner-jygy .imgs-group::after {
  right: 0;
  background-image: url("/static/front/wap/images/jygy_mask_r.png");
  background-position: right center;
}

.inner-jygy .issuance-deeds {
  margin-top: 2.13vw;
}

.inner-jygy .issuance-deeds .scholarship-swiper-box {
  width: 100%;
  padding-bottom: 8.14vw;
  position: relative;
  margin-top: 9.73vw;
}

.inner-jygy .issuance-deeds .scholarship-swiper-box .scholarship-swiper {
  width: 100%;
  height: 33.33vw;
}

.inner-jygy .issuance-deeds .scholarship-swiper-box .scholarship-swiper .swiper-slide {
  width: 53.33vw;
  height: 33.33vw;
  border-radius: 1.33vw;
  overflow: hidden;
}

.inner-jygy .issuance-deeds .scholarship-swiper-box .scholarship-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-jygy .issuance-deeds .scholarship-swiper-box .scholarship-name {
  width: 92vw;
  font-size: 3.47vw;
  color: #333;
  line-height: 5.33vw;
  margin: 4.94vw auto 0;
  text-align: center;
}

.inner-jygy .issuance-deeds .scholarship-swiper-box .scholarship-control {
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -1.73vw;
  left: 0;
}

.inner-jygy .issuance-deeds .scholarship-swiper-box .scholarship-control button {
  display: inline-block;
  width: 6.13vw;
  height: 6.13vw;
  border-radius: 50%;
  border: none;
  outline: none;
  background: #fff;
  text-align: center;
  line-height: 6.13vw;
  font-size: 6.13vw;
  color: #e23c32;
  margin: 0 2.27vw;
}

.inner-jygy .issuance-deeds .scholarship-swiper-box .scholarship-control button.swiper-button-disabled {
  color: #b1b1b1;
}

/* ÆäËûÉç»á¹«Òæ */
.inner-shgy .p-text {
  width: 91.2vw;
  font-size: 3.47vw;
  line-height: 6.13vw;
  text-align: center;
  color: #666;
  margin: 5.62vw auto 5.43vw;
}

/* ÈË²Å×÷Óý */
.inner-rcpy .p-text {
  width: 92vw;
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
  text-align: justify;
  margin: 8.81vw auto 5.88vw;
}

.inner-rcpy .inner-plate b {
  font-size: 4.8vw;
  line-height: 6.13vw;
  color: #fff;
}

.inner-rcpy .inner-plate p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #fff;
  margin-top: 2.41vw;
  text-align: justify;
}

.inner-rcpy .exercise-head {
  width: 100vw;
  box-sizing: border-box;
  padding: 5.87vw 4vw 0;
  background: #e23c32;
}

.inner-rcpy .exercise-head .head-swiper {
  width: 100vw;
  height: 29.73vw;
  margin-left: -4vw;
  margin-top: 5.07vw;
}

.inner-rcpy .exercise-head .head-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-rcpy .exercise-substrate {
  margin-top: 10.14vw;
  width: 100vw;
  box-sizing: border-box;
  padding: 0 4vw;
}

.inner-rcpy .exercise-substrate b,
.inner-rcpy .exercise-substrate p {
  color: #333;
}

.inner-rcpy .exercise-substrate .exercise-swiper {
  width: 100vw;
  height: 62.4vw;
  box-sizing: border-box;
  padding-bottom: 14vw;
  margin-top: 3.87vw;
  margin-left: -4vw;
}

.inner-rcpy .exercise-substrate .exercise-swiper .swiper-slide {
  width: 72.13vw;
  height: 48.4vw;
}

.inner-rcpy .exercise-substrate .exercise-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-rcpy .exercise-substrate .exercise-swiper .exercise-control {
  width: 16vw;
  height: 6.67vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 4vw;
  bottom: 0;
}

.inner-rcpy .exercise-substrate .exercise-swiper .exercise-control .iconfont {
  width: 6.67vw;
  height: 6.67vw;
  border-radius: 50%;
  background: #e23c32;
  font-size: 2vw;
  color: #fff;
  text-align: center;
  line-height: 6.67vw;
}

.inner-rcpy .exercise-substrate .exercise-swiper .exercise-control .iconfont.swiper-button-disabled {
  background: #f1f1f1;
  color: #333;
}

.inner-rcpy .exercise-substrate .exercise-swiper .exercise-pagination {
  width: 64.8vw;
  height: 0.27vw;
  left: 35.2vw;
  top: 58.93vw;
  background: #f1f1f1;
}

.inner-rcpy .exercise-substrate .exercise-swiper .exercise-pagination .swiper-pagination-progressbar-fill {
  background: #e23c32;
}

.inner-rcpy .leading-team {
  box-sizing: border-box;
  padding-top: 9.74vw;
  padding-bottom: 10.27vw;
  background: #fff url("../images/rcpy_bg.png") no-repeat top center/100vw auto;
  margin-top: 8.67vw;
}

.inner-rcpy .leading-team .team-swiper {
  width: 100%;
  height: 66.94vw;
  box-sizing: border-box;
  padding-bottom: 9.47vw;
  margin-top: 7.74vw;
}

.inner-rcpy .leading-team .team-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-rcpy .leading-team .team-pagination {
  bottom: 0;
  width: 100%;
  height: 1.6vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-rcpy .leading-team .team-pagination .swiper-pagination-bullet {
  margin: 0 1.2vw;
  width: 1.6vw;
  height: 1.6vw;
  border-radius: 50%;
  background: #e23c32;
  opacity: 0.2;
}

.inner-rcpy .leading-team .team-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.inner-rcpy .leading-team .team-pagination .swiper-pagination-bullet:only-child {
  display: inline-block !important;
}

/* ËÑË÷Ð§¹û */
.inner-search .search-box {
  width: 92vw;
  height: 12vw;
  box-sizing: border-box;
  border: 1px solid #cbcbcb;
  margin: 4.93vw auto 0;
  padding: 0 2.14vw 0 4.4vw;
  border-radius: 1.33vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-search .search-box input {
  width: calc(100% - 20vw);
  font-size: 3.47vw;
  color: #333;
}

.inner-search .search-box input::placeholder {
  color: #dad5d5;
}

.inner-search .search-box .iconfont {
  font-size: 6.67vw;
  color: #e23c32;
}

.inner-search .search-key {
  width: 92vw;
  font-size: 3.47vw;
  line-height: 6.13vw;
  text-align: center;
  margin: 4.67vw auto 9.2vw;
}

.inner-search .search-key b {
  color: #e23c32;
  margin: 0 0.5em;
}

/* ÏßÉÏÉÌ³Ç */
.inner-xssc .online-shop {
  box-sizing: border-box;
  padding: 6vw 4vw 0;
}

.inner-xssc .online-shop li {
  width: 100%;
  height: 38vw;
  box-sizing: border-box;
  background: #f8fafa;
  border-radius: 2.67vw;
  border: solid 0.13vw #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 3.47vw;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.inner-xssc .online-shop li .shop-info .shop-logo {
  width: auto;
  height: 6.8vw;
}

.inner-xssc .online-shop li .shop-info .shop-name {
  font-size: 3.2vw;
  line-height: 4.53vw;
  letter-spacing: 0.16vw;
  color: #333333;
  margin: 4.2vw 0 3.2vw;
}

.inner-xssc .online-shop li .shop-info a {
  font-size: 2.67vw;
  line-height: 3.53vw;
  color: #e23c32;
}

.inner-xssc .online-shop li .shop-img {
  width: auto;
  height: 30.13vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 0 0 auto;
}

.inner-xssc .online-shop li .shop-img img {
  width: auto;
  height: 100%;
}

.inner-xssc .online-shop li:last-child .shop-img {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  margin: 0;
}

.inner-xssc .online-shop li:last-child .shop-img img {
  width: auto;
  height: 100%;
}

.inner-xssc .online-shop li:last-child .shop-img::before {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f8fafa 50%, transparent 100%);
  position: absolute;
  left: 0;
  top: 0;
}

.inner-xssc .online-shop li + li {
  margin-top: 3.2vw;
}

/* ÁÐ±í·ÖÒ³ */
.page-list {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.67vw;
  margin: 9.73vw 0 8.53vw;
}

.page-list li {
  width: 6.67vw;
  height: 6.67vw;
  border-radius: 3.335vw;
  background: #fff;
  box-shadow: 0vw 0vw 1.33vw 0vw rgba(206, 206, 206, 0.3);
  margin: 0 0.67vw;
  line-height: 6.67vw;
  overflow: hidden;
}

.page-list li a {
  color: #333;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.page-list li.page-item {
  font-size: 3.47vw;
}

.page-list li.iconfont {
  font-size: 2.53vw;
  letter-spacing: -0.69vw;
  font-weight: bold;
}

.page-list li.active {
  background-color: #e23c32;
}

.page-list li.active a {
  color: #fff;
}

.page-list li.page-fir, .page-list li.page-last {
  width: 13.34vw;
  font-size: 2.83vw;
}

/* ÔÝÎÞÊý¾Ý */
.empty-data,
.empty-search {
  width: 100%;
  height: 60vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.empty-data img,
.empty-search img {
  width: 69.2vw;
  display: block;
  margin: 0 auto;
}

.empty-data p,
.empty-search p {
  font-size: 3.47vw;
  line-height: 13.33vw;
  color: #e23c32;
}

/* ·ÖÀàÑ¡Ïî */
.classify-box {
  width: 92vw;
  border-radius: 1.33vw;
  padding-bottom: 3.73vw;
  margin: 5.2vw auto 8.13vw;
  background-color: #f8fafa;
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 1.33vw;
  -moz-border-radius: 1.33vw;
  -ms-border-radius: 1.33vw;
  -o-border-radius: 1.33vw;
}

.classify-box h5 {
  width: 31.87vw;
  height: 6.66vw;
  font-size: 3.47vw;
  line-height: 6.66vw;
  box-sizing: border-box;
  padding-left: 2.67vw;
  color: #fff;
  background: url("/static/front/wap/images/inner_product_textbg.png") no-repeat right bottom/cover;
}

.classify-box::before {
  content: '';
  width: 100%;
  height: 0.53vw;
  position: absolute;
  top: 0;
  left: 0;
  background: #e23c32;
}

.classify-box ul {
  width: 100%;
  max-height: 59.35vw;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0 2.4vw;
  margin-top: 3.47vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.classify-box ul li {
  width: 42.4vw;
  height: 8vw;
  background: #fff;
  border-radius: 0.8vw;
}

.classify-box ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 3.47vw;
  line-height: 8vw;
  color: #333;
  box-sizing: border-box;
  padding: 0 2.27vw;
}

.classify-box ul li.act {
  background: #fb6f66;
}

.classify-box ul li.act a {
  color: #fff;
}

.classify-box ul li:nth-last-child(n+3) {
  margin-bottom: 2.27vw;
}

/* ÁÐ±í --1 */
.inner-list--1 {
  box-sizing: border-box;
  padding: 4.8vw 4vw 2.26vw;
}

.inner-list--1 li {
  margin-bottom: 6.54vw;
}

.inner-list--1 .item-img {
  width: 100%;
  height: 57.47vw;
  border-radius: 1.33vw;
  margin-bottom: 2.67vw;
  overflow: hidden;
}

.inner-list--1 .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-list--1 .item-title {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
}

/* ÁÐ±í --2 */
.inner-list--2 .preferred-item {
  width: 100vw;
  height: 98vw;
  box-sizing: border-box;
  padding: 4.4vw 4vw 6.4vw;
  position: relative;
}

.inner-list--2 .preferred-item .item-imgs {
  width: 92vw;
  height: 53.87vw;
  border-radius: 1.33vw;
  margin-bottom: 6.19vw;
  position: relative;
  z-index: 1;
}

.inner-list--2 .preferred-item .item-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-list--2 .preferred-item .item-imgs .imgs-pagination {
  width: 100%;
  height: 1.73vw;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 4.67vw;
}

.inner-list--2 .preferred-item .item-imgs .imgs-pagination .swiper-pagination-bullet {
  width: 1.73vw;
  height: 1.73vw;
  border-radius: 50%;
  opacity: 1;
  margin: 0 1.34vw;
  background: #efefef;
}

.inner-list--2 .preferred-item .item-imgs .imgs-pagination .swiper-pagination-bullet-active {
  background: #e84738;
}

.inner-list--2 .preferred-item .item-title {
  font-size: 4vw;
  line-height: 6.4vw;
  font-weight: bold;
  text-align: justify;
  color: #212121;
  box-sizing: border-box;
  padding: 0 6.93vw 0 3.33vw;
  position: relative;
  z-index: 1;
}

.inner-list--2 .preferred-item .item-desc {
  font-size: 3.47vw;
  line-height: 5.6vw;
  text-align: justify;
  color: #8a8787;
  margin-top: 3.13vw;
  box-sizing: border-box;
  padding: 0 1.87vw 0 3.6vw;
  position: relative;
  z-index: 1;
}

.inner-list--2 .preferred-item::before {
  content: "";
  width: 100vw;
  height: 67.07vw;
  background: #f4f4f4;
  border-radius: 1.33vw;
  position: absolute;
  bottom: 0;
  left: 0;
}

.inner-list--2 .list-group {
  box-sizing: border-box;
  padding: 6.93vw 4vw 0;
}

.inner-list--2 .list-group li {
  margin-bottom: 6.53vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-list--2 .list-group li .item-img {
  width: 32vw;
  height: 18.8vw;
  border-radius: 0.8vw;
  overflow: hidden;
}

.inner-list--2 .list-group li .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-list--2 .list-group li .item-info {
  width: calc(100% - 36.4vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-list--2 .list-group li .item-info .date {
  font-size: 3.2vw;
  line-height: 3.73vw;
  color: #999;
  margin-top: 0.54vw;
}

.inner-list--2 .list-group li .item-info .title {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
  margin-top: 1.34vw;
}

/* ÁÐ±í --3 */
.inner-list--3 {
  box-sizing: border-box;
  padding: 0 4vw;
}

.inner-list--3 .list-group {
  margin-top: 6.4vw;
}

.inner-list--3 .list-group li {
  height: 20.27vw;
  margin-bottom: 5.07vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 2.13vw 8.4vw 2.13vw 2vw;
  border: 1px solid #f0f0f0;
  border-radius: 0.8vw;
}

.inner-list--3 .list-group li .item-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 14.93vw;
  height: 15.73vw;
  background: #f6f6f6;
  border-radius: 0.8vw;
  color: #666;
  position: relative;
}

.inner-list--3 .list-group li .item-date .dd {
  font-size: 6.4vw;
  line-height: 10.4vw;
}

.inner-list--3 .list-group li .item-date .y-m {
  font-size: 2.93vw;
  line-height: 4.8vw;
  margin-top: 0.47vw;
}

.inner-list--3 .list-group li .item-date::before {
  content: "";
  width: 12.8vw;
  height: 0.13vw;
  background: radial-gradient(closest-side, rgba(51, 51, 51, 0.2), rgba(51, 51, 51, 0));
  position: absolute;
  top: 9.67vw;
  left: 1.07vw;
}

.inner-list--3 .list-group li .item-info {
  width: calc(100% - 19.2vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-list--3 .list-group li .item-info .item-title {
  width: 100%;
  line-height: 6.13vw;
  font-size: 3.47vw;
  color: #000;
}

.inner-list--3 .list-group li .item-info .item-title.line-text--2 {
  height: 12.26vw;
}

.inner-list--3 .list-group li .item-info .item-title span.red {
  color: #e23c32;
}

.inner-list--3 .list-group li .item-info .item-desc {
  width: 100%;
  line-height: 6.13vw;
  font-size: 3.47vw;
  color: #666;
  margin-top: 0.54vw;
}

/* ÁÐ±í --4 */
.inner-list--4 {
  box-sizing: border-box;
  padding: 0 4vw;
  margin-top: 4.67vw;
}

.inner-list--4 .all-honor {
  width: 100%;
  max-height: 105.87vw;
  box-sizing: border-box;
  padding: 3.98vw 3.73vw 4.72vw 4.4vw;
  background: #f8f8f8;
  /* ×ª¶¯Ìõ */
  /* »¬¿é */
}

.inner-list--4 .all-honor ul {
  max-height: 97.17vw;
  overflow: hidden;
  overflow-y: auto;
}

.inner-list--4 .all-honor ul li {
  box-sizing: border-box;
  padding-left: 3.27vw;
  position: relative;
  font-size: 3.47vw;
  line-height: 7.47vw;
  color: #333;
}

.inner-list--4 .all-honor ul li::before {
  content: "";
  width: 1.33vw;
  height: 1.33vw;
  border-radius: 50%;
  background: #333;
  position: absolute;
  top: 3.07vw;
  left: 0;
}

.inner-list--4 .all-honor ::-webkit-scrollbar {
  /* ×ÝÏò×ª¶¯Ìõ ¿í¶È */
  width: 0.67vw;
  /* ºáÏò×ª¶¯Ìõ ¸ß¶È */
  height: 0.67vw;
  /* ÕûÌåÅä¾° */
  background: rgba(126, 126, 126, 0.1);
  /* ÕûÌå Ô²½Ç */
  border-radius: 0.33vw;
}

.inner-list--4 .all-honor ::-webkit-scrollbar-thumb {
  background: #e23c32;
  border-radius: 0.33vw;
}

.inner-list--4 .list-group {
  margin-top: 7.87vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inner-list--4 .list-group li {
  width: 44vw;
  height: 40.13vw;
  box-sizing: border-box;
  border: 1px solid #e7e7e7;
  padding: 1.74vw 1.8vw 0;
  margin-bottom: 3.87vw;
}

.inner-list--4 .list-group li .item-img {
  width: 40.4vw;
  height: 27.33vw;
  overflow: hidden;
  position: relative;
}

.inner-list--4 .list-group li .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-list--4 .list-group li .item-img::before {
  content: "";
  width: 10.13vw;
  height: 10.13vw;
  background: rgba(226, 60, 50, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.inner-list--4 .list-group li .item-img::after {
  content: "\e61b";
  display: block;
  font-family: "iconfont";
  font-size: 4vw;
  text-align: center;
  line-height: 8vw;
  color: #fff;
  width: 8vw;
  height: 8vw;
  background: #e23c32;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.inner-list--4 .list-group li .item-title {
  line-height: 8.5vw;
  font-size: 3.2vw;
  color: #333;
  border-top: 1px solid #e7e7e7;
  margin-top: 1.87vw;
}

/* ÁÐ±í --5 */
.inner-list--5 {
  box-sizing: border-box;
  padding: 0 4vw;
  margin-top: 6.4vw;
}

.inner-list--5.bg {
  margin-top: 11.6vw;
  background: linear-gradient(to bottom, #f3f6f6 0%, transparent 100%) no-repeat top center/100% 21.6vw;
}

.inner-list--5.bg .plate-title {
  margin-bottom: 10vw;
}

.inner-list--5 .list-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.inner-list--5 .list-group li {
  width: 44.93vw;
  height: 64.27vw;
  border-radius: 1.33vw;
  background: #f8fafa url("../images/list5_item_bg.jpg") no-repeat center bottom/cover;
  margin-bottom: 2.4vw;
  box-sizing: border-box;
  padding: 2.34vw 4vw 4.27vw;
  display: flex;
  flex-direction: column;
  position: relative;
}

.inner-list--5 .list-group li h4 {
  font-size: 3.47vw;
  line-height: 6.67vw;
  color: #000;
}

.inner-list--5 .list-group li p:not(.product-poster) {
  height: 10.66vw;
  font-size: 3.47vw;
  line-height: 5.33vw;
  color: #999;
  margin-top: 1.14vw;
}

.inner-list--5 .list-group li .product-poster {
  width: 100%;
  height: calc(100% - 20vw);
  position: relative;
  margin-top: auto;
}

.inner-list--5 .list-group li .product-poster img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  bottom: 2.13vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.inner-list--5 .list-group li .product-poster::before {
  content: "";
  width: 29.33vw;
  height: 3.2vw;
  background: url("/static/front/wap/images/list5_item_shadow.png") no-repeat center/cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.inner-list--5 .list-group li.hot::before {
  content: "\e617";
  font-family: "iconfont";
  font-size: 6.4vw;
  color: transparent;
  background: linear-gradient(0deg, #e75d55 0%, #fe7169 100%);
  background-clip: text;
  -webkit-background-clip: text;
  position: absolute;
  right: -0.4vw;
  top: -0.4vw;
}

/* ÏêÇé --1 */
.inner-detail--1 {
  width: 100vw;
  padding-bottom: 10vw;
  overflow: hidden;
}

.inner-detail--1 .back-list {
  margin-top: 5.6vw;
}

.inner-detail--1 .detail-body {
  margin-top: 5.6vw;
}

.inner-detail--1 .detail-body h3 {
  font-size: 4.27vw;
  color: #333;
  line-height: 4.8vw;
  box-sizing: border-box;
}

.inner-detail--1 .detail-body .rich-box {
  margin-top: 4.67vw;
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #666;
}

.inner-detail--1 .detail-body .rich-box img,
.inner-detail--1 .detail-body .rich-box video {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.inner-detail--1 .detail-body .rich-box p {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #666;
  margin-bottom: 6.13vw;
  text-indent: 2em;
}

.inner-detail--1 .detail-body .imgs-swiper {
  width: 96vw;
  height: 61.86vw;
  margin-left: 4vw;
  margin-bottom: 9.73vw;
}

.inner-detail--1 .detail-body .imgs-swiper .swiper-slide {
  width: 85.33vw;
  height: 53.33vw;
  border-radius: 1.33vw;
  overflow: hidden;
}

.inner-detail--1 .detail-body .imgs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-detail--1 .detail-body .imgs-swiper .swiper-pagination {
  top: 61.46vw;
  height: 0.4vw;
  background: #e7e7e7;
  border-radius: 0.2vw;
}

.inner-detail--1 .detail-body .imgs-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #e23c32;
  height: 0.4vw;
  border-radius: 0.2vw;
}

/* ÏêÇé --2 */
.inner-detail--2 {
  width: 100vw;
  padding: 5.6vw 0 8.67vw;
  position: relative;
}

.inner-detail--2 .detail-body {
  margin: 6.27vw 0 10.34vw;
}

.inner-detail--2 .detail-body .title {
  font-size: 5.07vw;
  line-height: 8vw;
  color: #333;
  box-sizing: border-box;
  padding: 0 4.4vw;
  text-align: justify;
  margin-bottom: 5vw;
}

.inner-detail--2 .detail-body .detail-about {
  min-height: 9.6vw;
  box-sizing: border-box;
  padding: 1.73vw 4.2vw;
  border: solid #ddd;
  border-width: 1px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 3.2vw;
  color: #999;
}

.inner-detail--2 .detail-body .detail-about li {
  flex-shrink: 0;
  line-height: 6.14vw;
}

.inner-detail--2 .detail-body .rich-box {
  width: 100vw;
  margin-top: 5.28vw;
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
}

.inner-detail--2 .detail-body .rich-box p {
  width: 100%;
  text-indent: 2em;
  text-align: justify;
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
  box-sizing: border-box;
  padding: 0 5vw;
}

.inner-detail--2 .detail-body .rich-box img,
.inner-detail--2 .detail-body .rich-box video {
  font-size: 3.47vw;
  display: block;
  width: calc(100% + 10vw) !important;
  height: auto !important;
  margin-left: -5vw;
  text-indent: 0;
  margin-bottom: 4px;
}

.inner-detail--2 .detail-body .rich-box table {
  text-indent: 0;
}

.inner-detail--2 .detail-body .rich-box table * {
  text-indent: 0;
}

/* ÏêÇé --3 */
.inner-detail--3 {
  background: #f0f6f8 url("../images/detail3_bg1.jpg") no-repeat center top/100vw auto;
  box-sizing: border-box;
  padding: 0 4vw 6vw;
}

.inner-detail--3 .back-list {
  margin-left: auto;
  margin-right: -4vw;
  padding-left: 6.8vw;
}

.inner-detail--3 .back-list::before {
  border-radius: 1.33vw 0 0 1.33vw;
  /* ÉèÖÃÔ²½Ç */
  transform: skew(-25deg);
  transform-origin: bottom right;
}

.inner-detail--3 .detail-body {
  margin-top: 1.07vw;
}

.inner-detail--3 .detail-body .detail-img {
  width: 78.8vw;
  height: 78.8vw;
  background: url("/static/front/wap/images/detail3_bg2.png") no-repeat center/cover;
  position: relative;
  margin: 0 auto;
}

.inner-detail--3 .detail-body .detail-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.inner-detail--3 .detail-body .tag {
  display: inline-block;
  min-width: 13.33vw;
  height: 5.6vw;
  border-radius: 0.8vw;
  background: #474747;
  box-sizing: border-box;
  padding: 0 2.67vw;
  font-size: 3.2vw;
  color: #fff;
  line-height: 5.6vw;
  margin-top: 9.87vw;
}

.inner-detail--3 .detail-body .info {
  margin: 2.13vw 0 3.47vw;
}

.inner-detail--3 .detail-body .info p {
  min-height: 10.53vw;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  font-size: 3.47vw;
  color: #333;
  line-height: 4.8vw;
  box-sizing: border-box;
  padding: 0.67vw 0;
}

.inner-detail--3 .detail-body .info p.title {
  font-size: 4.8vw;
  line-height: 6.13vw;
}

.inner-detail--3 .detail-body .info p.red {
  color: #e23c32;
}

.inner-detail--3 .detail-body .info p:last-child {
  border-bottom: none;
}

.inner-detail--3 .detail-body .online-shop {
  width: 100%;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
  display: flex;
  flex-wrap: wrap;
  margin-top: -2.47vw;
  padding: 4vw 0;
}

.inner-detail--3 .detail-body .online-shop li {
  margin-right: 2.13vw;
  text-align: center;
}

.inner-detail--3 .detail-body .online-shop .logo-code {
  width: 16vw;
  height: 16vw;
  background: #ffffff;
  border-radius: 1.33vw;
  border: solid 0.13vw #cacfd1;
  box-sizing: border-box;
  padding: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-detail--3 .detail-body .online-shop .logo-code img {
  max-width: 100%;
  max-height: 100%;
}

.inner-detail--3 .detail-body .online-shop p {
  color: #333;
  font-size: 2.67vw;
  line-height: 3.73vw;
  padding: 0;
  border-top: none;
  text-align: center;
  margin: 1.33vw 0;
}

.inner-detail--3 .detail-body .online-shop a {
  display: inline-block;
  text-align: center;
  line-height: 5.53vw;
  width: 15vw;
  background: #e23c32;
  border-radius: 0.53vw;
  font-size: 2.4vw;
  color: #ffffff;
}

.inner-detail--3 .detail-body .contact-group {
  height: 8vw;
}

.inner-detail--3 .detail-body .contact-group a {
  min-width: 25.33vw;
  height: 8vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-sizing: border-box;
  padding: 0 2.8vw;
  background: #e23c32;
  border-radius: 0.8vw;
  margin-right: 2.67vw;
  font-size: 3.47vw;
}

.inner-detail--3 .detail-body .contact-group a .iconfont {
  margin-right: 2.53vw;
}

.inner-detail--3 .detail-body .contact-group a .tel {
  display: none;
}

.inner-detail--3 .detail-body .illustrate {
  background: #fff url("../images/detail3_bg3.png") no-repeat 14.4vw -24.27vw/81.6vw auto;
  box-shadow: 0vw 0vw 1.6vw 0vw rgba(197, 205, 224, 0.22);
  border-radius: 1.33vw;
  overflow: hidden;
  position: relative;
  margin-top: 10.13vw;
  box-sizing: border-box;
  padding: 0.94vw 6.27vw 6.27vw;
}

.inner-detail--3 .detail-body .illustrate::before {
  content: "";
  width: 100%;
  height: 0.94vw;
  background: #e23c32;
  position: absolute;
  top: 0;
  left: 0;
}

.inner-detail--3 .detail-body .illustrate h3 {
  height: 15.46vw;
  padding-bottom: 0.8vw;
  box-sizing: border-box;
  border-bottom: 0.13vw dashed #dfd5d5;
  font-size: 4.8vw;
  line-height: 14.66vw;
  color: #e23c32;
  text-align: center;
  margin-bottom: 7vw;
}

.inner-detail--3 .detail-body .illustrate .rich-box {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
}

.inner-detail--3 .detail-body .illustrate .rich-box p,
.inner-detail--3 .detail-body .illustrate .rich-box span {
  font-size: 3.47vw;
  line-height: 6.13vw;
  color: #333;
}

.inner-detail--3 .detail-body .illustrate .rich-box img,
.inner-detail--3 .detail-body .illustrate .rich-box video {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.inner-detail--3 .check-tool {
  width: 92vw;
  height: 10.67vw;
  background: #ffffff;
  border-radius: 1.33vw;
  margin: 3.6vw auto 0;
}

.inner-detail--3 .check-tool a {
  color: #333;
  font-size: 3.47vw;
  width: 32vw;
  box-sizing: border-box;
}

.inner-detail--3 .check-tool a::before {
  font-size: 2.8vw;
  color: #000;
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.inner-detail--3 .check-tool a:nth-child(1) {
  text-align: left;
  padding-left: 10.8vw;
}

.inner-detail--3 .check-tool a:nth-child(1)::before {
  content: "\e61d";
  left: 4vw;
}

.inner-detail--3 .check-tool a:nth-child(2) {
  text-align: right;
  padding-right: 10.8vw;
}

.inner-detail--3 .check-tool a:nth-child(2)::before {
  content: "\e622";
  right: 4vw;
}

.inner-detail--3 .check-tool::before {
  display: none;
}
<!--ºÄÊ±1766538398.6727Ãë-->