@font-face {
  font-family: 'Montserrat-Bold';
  src: url("../fonts/Montserrat-Bold-3.otf");
}
@font-face {
  font-family: 'Montserrat-Medium';
  src: url("../fonts/Montserrat-Medium-7.otf");
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url("../fonts/Montserrat-SemiBold-9.otf");
}
@font-face {
  font-family: 'Montserrat-Light';
  src: url("../fonts/Montserrat-Light-6.otf");
}
@font-face {
  font-family: 'D-DIN-PRO-ExtraBold';
  src: url("../fonts/D-DIN-PRO-800-ExtraBold.otf");
}
@keyframes o-upfade-top {
  0% {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-bg {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pagination-line {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media screen and (min-width: 1025px) {
  .ani-box.animating {
    transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
  }

  .trans-1 {
    opacity: 0;
    transform: translateY(1rem);
  }
  .trans-1.animating {
    opacity: 1;
    transform: translateY(0);
  }
  .trans-1.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-1.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-1.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-2 {
    opacity: 0;
    transform: translateX(-1rem);
  }
  .trans-2.animating {
    opacity: 1;
    transform: translateX(0);
  }
  .trans-2.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-2.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-2.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-3 {
    opacity: 0;
    transform: translateX(1rem);
  }
  .trans-3.animating {
    opacity: 1;
    transform: translateX(0);
  }
  .trans-3.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-3.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-3.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-4 {
    opacity: 0;
    transform: translateY(-1rem);
  }
  .trans-4.animating {
    opacity: 1;
    transform: translateY(0);
  }
  .trans-4.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-4.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-4.animating.delay-3 {
    transition-delay: .3s;
  }

  .scale-1 {
    transform: scale(1.3);
  }
  .scale-1.animating {
    transform: scale(1);
  }
}
body {
  min-width: 1200px;
}

.swiper-pagination-lock {
  display: none !important;
}

.wrap-s {
  width: 86%;
  max-width: 14.4rem;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.topic-page {
  position: relative;
  font-family: 'Montserrat-Light';
}

.topic-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
}
.topic-header .wrap-s {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1.4rem;
}
.topic-header .img-box {
  display: block;
  width: max(100px, 1.6rem);
}
.topic-header .img-box img {
  display: block;
  width: 100%;
}
.topic-header .btns {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.topic-header a.back {
  background-color: #a62127;
  font-size: 0.24rem;
  line-height: 0.48rem;
  padding: 0 0.2rem;
  border-radius: 0.14rem;
  color: #fff;
  cursor: pointer;
}
.topic-header .global {
  position: relative;
}
.topic-header .global .show {
  background-color: #a62127;
  font-size: 0.24rem;
  line-height: 0.48rem;
  padding: 0 0.2rem;
  border-radius: 0.14rem;
  color: #fff;
  cursor: pointer;
}
.topic-header .global .hide {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.topic-header .global .hide:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  right: 20px;
  top: 11px;
}
.topic-header .global .box {
  min-width: 1rem;
  padding: 0.1rem 0.2rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 0.14rem;
}
.topic-header .global .box a {
  font-size: max(13px, 0.16rem);
  line-height: 2;
  color: #181818;
  white-space: nowrap;
  position: relative;
  transition: color .3s ease;
}
.topic-header .global .box a:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #a62127;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: all .5s;
}
@media (any-hover: hover) {
  .topic-header .global .box a:hover {
    color: #a62127;
  }
  .topic-header .global .box a:hover:before {
    transform: scaleX(1);
  }
}
.topic-header .global:hover .hide {
  opacity: 1;
  visibility: visible;
}

.topic-footer {
  background-color: #2e2d2d;
}
.topic-footer .top-block {
  padding: 1rem 0 0.6rem;
  display: flex;
  align-items: flex-start;
}
.topic-footer .left-box {
  width: calc(50% - 1.2rem);
}
.topic-footer .left-box .img-box img {
  max-width: 100%;
}
.topic-footer .info-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.2rem;
  margin-top: 0.3rem;
}
.topic-footer .info-main .para {
  width: 46%;
  font-size: max(14px, 0.18rem);
  color: #fff;
  line-height: 2;
}
.topic-footer .info-box {
  flex: 1;
}
.topic-footer .info-box .info {
  margin-top: 0.3rem;
  display: flex;
  gap: 0.1rem;
  align-items: flex-start;
}
.topic-footer .info-box .info:nth-of-type(1) {
  margin-top: 0;
}
.topic-footer .info-box .info .icon {
  height: max(16.8px, 0.22rem);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topic-footer .info-box .info .icon img {
  max-width: 100%;
  max-height: 100%;
}
.topic-footer .info-box .info p {
  flex: 1;
  font-size: max(14px, 0.18rem);
  color: #fff;
}
.topic-footer .ewm-box {
  width: calc(50% + 1.2rem);
  display: flex;
  gap: 0.2rem;
  padding-left: 0.2rem;
}
.topic-footer .ewm-box .box {
  flex: 1;
}
.topic-footer .ewm-box .box .img-box img {
  display: block;
  width: 100%;
}
.topic-footer .ewm-box .box p {
  font-size: max(12px, 0.16rem);
  color: #fff;
  text-align: center;
  margin-top: 0.15rem;
}
.topic-footer .bot-block {
  padding: 0.4rem 0;
  border-top: 1px solid #828181;
  font-size: max(14px, 0.18rem);
  color: #ACACAC;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  align-items: center;
  justify-content: center;
}
.topic-footer .bot-block a {
  color: #ACACAC;
}

.inner-s1 {
  padding: 1.4rem 0 0.4rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/topic/img-1.jpg");
}
.inner-s1 .wrap-s {
  display: flex;
  align-items: center;
}
.inner-s1 .txt-box {
  width: calc(100% - 4.59rem);
}
.inner-s1 .label {
  font-size: 0.64rem;
  color: #a62127;
  font-family: 'Montserrat-Bold';
}
.inner-s1 .para {
  font-size: 0.27rem;
  color: #a62127;
  margin-top: 0.3rem;
}
.inner-s1 .para span {
  display: block;
  font-family: "Montserrat-Medium";
}
.inner-s1 .info-box {
  margin-top: 0.24rem;
}
.inner-s1 .info {
  margin-top: 0.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
}
.inner-s1 .info:nth-of-type(1) {
  margin-top: 0;
}
.inner-s1 .info:before {
  content: '';
  width: 0.2rem;
  height: max(22px, 0.29rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.inner-s1 .info p {
  flex: 1;
  font-size: max(18px, 0.24rem);
  color: #fff;
  font-family: "Montserrat-Medium";
}
.inner-s1 .info p span {
  display: block;
  font-family: 'Montserrat-Light';
}
.inner-s1 .info.date:before {
  background-image: url("../images/topic/icon-1.png");
}
.inner-s1 .info.addr:before {
  background-image: url("../images/topic/icon-2.png");
}
.inner-s1 .btns {
  margin-top: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}
.inner-s1 a.box {
  padding: 0.12rem 0.7rem 0.12rem 0.2rem;
  background-color: #fff;
  border-radius: 0.14rem;
  position: relative;
}
.inner-s1 a.box span {
  display: block;
  font-size: max(15px, 0.21rem);
  color: #a62127;
  font-family: 'Montserrat-Medium';
}
.inner-s1 a.box p {
  font-size: max(15px, 0.21rem);
  color: #a62127;
  margin-top: 0.05rem;
}
.inner-s1 a.box:after {
  content: '';
  width: 0.31rem;
  height: 0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/topic/icon-3.png");
  position: absolute;
  top: calc(50% - 0.125rem);
  right: 0.2rem;
  transition: transform 0.3s ease;
  will-change: transform;
}
@media (any-hover: hover) {
  .inner-s1 a.box:hover:after {
    transform: translateX(3px);
  }
}
.inner-s1 .img-box {
  width: 4.59rem;
}
.inner-s1 .img-box img {
  display: block;
  width: 100%;
}

.inner-s2 {
  padding: 1rem 0;
}
.inner-s2 .items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.inner-s2 .item {
  width: calc((100% - 3rem) / 4);
}
.inner-s2 .item .line {
  position: relative;
  height: 2px;
  background-color: #878787;
}
.inner-s2 .item .line:before {
  content: '';
  width: 1.2rem;
  height: 4px;
  position: absolute;
  top: -1px;
  left: 0;
  background-color: #a62127;
}
.inner-s2 .item .num {
  display: flex;
  align-items: center;
  margin-top: 0.3rem;
}
.inner-s2 .item .num span, .inner-s2 .item .num em {
  font-size: 0.68rem;
  color: #3e3a39;
  font-family: 'D-DIN-PRO-ExtraBold';
}
.inner-s2 .item .num em {
  font-style: normal;
}
.inner-s2 .item .num i {
  font-style: normal;
  font-size: 0.68rem;
  color: #a62127;
  font-family: 'D-DIN-PRO-ExtraBold';
}
.inner-s2 .item p {
  font-size: max(18px, 0.25rem);
  color: #3e3a39;
  margin-top: 0.15rem;
}

.inner-s3 {
  background-color: #fbede9;
  padding: 1rem 0;
}
.inner-s3 .top-block .label {
  font-size: 0.45rem;
  color: #3e3a39;
  font-family: 'Montserrat-Bold';
}
.inner-s3 .top-block p {
  font-size: max(18px, 0.24rem);
  color: #3e3a39;
  margin-top: 0.1rem;
}
.inner-s3 .items {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}
.inner-s3 .item {
  width: calc((100% - 0.24rem) / 2);
}
.inner-s3 .item .inner {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 0.14rem;
  padding-right: 1.8rem;
  overflow: hidden;
}
.inner-s3 .item .img-box {
  height: 100%;
  aspect-ratio: 25 / 19;
  position: absolute;
  right: 0;
  top: 0;
}
.inner-s3 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s3 .item .txt-box {
  height: 100%;
  background-color: #fff;
  border-radius: 0.14rem;
  padding: 0.2rem;
  position: relative;
  z-index: 2;
}
.inner-s3 .item .tit {
  font-size: max(15px, 0.19rem);
  color: #a62127;
  font-family: 'Montserrat-Medium';
}
.inner-s3 .item .para {
  margin-top: 0.15rem;
}
.inner-s3 .item p {
  margin-top: 5px;
  position: relative;
  padding-left: 0.2rem;
  font-size: max(14px, 0.18rem);
  color: #3e3a39;
}
.inner-s3 .item p:nth-of-type(1) {
  margin-top: 0;
}
.inner-s3 .item p:before {
  content: '';
  width: 0.12rem;
  height: max(16.8px, 0.216rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/topic/icon-4.png");
  position: absolute;
  top: 0;
  left: 0;
}

.inner-s4 {
  padding: 1rem 0;
}
.inner-s4 .top-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-s4 .top-block .label {
  width: 50%;
  font-size: 0.45rem;
  color: #a62127;
  font-family: 'Montserrat-Bold';
}
.inner-s4 .top-block .btns {
  display: flex;
  gap: 0.15rem;
}
.inner-s4 .top-block a.box {
  padding: 0.12rem 0.7rem 0.12rem 0.2rem;
  background-color: #a62127;
  border-radius: 0.14rem;
  position: relative;
}
.inner-s4 .top-block a.box span {
  display: block;
  font-size: max(15px, 0.21rem);
  color: #fff;
  font-family: 'Montserrat-Medium';
}
.inner-s4 .top-block a.box:after {
  content: '';
  width: 0.31rem;
  height: 0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/topic/icon-3-1.png");
  position: absolute;
  top: calc(50% - 0.125rem);
  right: 0.2rem;
  transition: transform 0.3s ease;
  will-change: transform;
}
@media (any-hover: hover) {
  .inner-s4 .top-block a.box:hover:after {
    transform: translateX(3px);
  }
}
.inner-s4 .items {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
}
.inner-s4 .item {
  width: calc((100% - 0.72rem) / 3);
  padding: 0.3rem;
  box-shadow: 0 0 10px rgba(166, 33, 39, 0.3);
  border-radius: 0.14rem;
  transition: all .3s ease;
}
.inner-s4 .item .top-box {
  display: flex;
  align-items: center;
}
.inner-s4 .item .icon {
  width: 0.92rem;
  height: 1.1rem;
  position: relative;
}
.inner-s4 .item i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.3s ease;
}
.inner-s4 .item i.hide {
  opacity: 0;
}
.inner-s4 .item .tit {
  flex: 1;
  font-size: 0.26rem;
  color: #3e3a39;
  font-family: 'Montserrat-SemiBold';
  padding-left: 0.2rem;
  transition: color 0.3s ease;
}
.inner-s4 .item .tips {
  font-size: max(15px, 0.2rem);
  color: #3e3a39;
  margin-top: 0.2rem;
  transition: color 0.3s ease;
}
.inner-s4 .item .para {
  margin-top: 0.15rem;
}
.inner-s4 .item p {
  margin-top: 0.15rem;
  position: relative;
  padding-left: 0.2rem;
  font-size: max(14px, 0.18rem);
  color: #3e3a39;
  transition: color 0.3s ease;
}
.inner-s4 .item p:nth-of-type(1) {
  margin-top: 0;
}
.inner-s4 .item p:before {
  content: '';
  width: 0.12rem;
  height: max(16.8px, 0.216rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/topic/icon-4.png");
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .inner-s4 .item:hover {
    background-color: #a62127;
    box-shadow: none;
  }
  .inner-s4 .item:hover i.show {
    opacity: 0;
  }
  .inner-s4 .item:hover i.hide {
    opacity: 1;
  }
  .inner-s4 .item:hover .tit {
    color: #fff;
  }
  .inner-s4 .item:hover .tips {
    color: #fff;
  }
  .inner-s4 .item:hover p {
    color: #fff;
  }
  .inner-s4 .item:hover p:before {
    background-image: url("../images/topic/icon-4-1.png");
  }
}

.inner-s5 {
  padding: 1rem 0;
  background-color: #fbede9;
}
.inner-s5 .top-block .label {
  font-size: 0.45rem;
  color: #3e3a39;
  font-family: 'Montserrat-Bold';
}
.inner-s5 .top-block .para {
  font-size: max(18px, 0.24rem);
  color: #3e3a39;
  margin-top: 0.1rem;
}
.inner-s5 .bot-block {
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
}
.inner-s5 .left-box {
  width: 50%;
  padding: 0.3rem;
  background-color: #fff;
  border-radius: 0.14rem;
}
.inner-s5 .left-box .para {
  font-size: max(18px, 0.24rem);
  color: #3e3a39;
}
.inner-s5 .left-box .img-box {
  margin-top: 0.4rem;
  aspect-ratio: 649 / 424;
  border-radius: 0.14rem;
  overflow: hidden;
}
.inner-s5 .left-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s5 .left-box .btns {
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
  gap: 0.15rem;
}
.inner-s5 .left-box a.box {
  padding: 0.12rem 0.7rem 0.12rem 0.2rem;
  background-color: #a62127;
  border-radius: 0.14rem;
  position: relative;
}
.inner-s5 .left-box a.box span {
  display: block;
  font-size: max(15px, 0.21rem);
  color: #fff;
  font-family: 'Montserrat-Medium';
}
.inner-s5 .left-box a.box:after {
  content: '';
  width: 0.31rem;
  height: 0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/topic/icon-3-1.png");
  position: absolute;
  top: calc(50% - 0.125rem);
  right: 0.2rem;
  transition: transform 0.3s ease;
  will-change: transform;
}
@media (any-hover: hover) {
  .inner-s5 .left-box a.box:hover:after {
    transform: translateX(3px);
  }
}
.inner-s5 .right-box {
  width: 50%;
  padding-left: 0.6rem;
}
.inner-s5 .right-box .para {
  font-size: max(18px, 0.24rem);
  color: #a62127;
  font-family: 'Montserrat-Medium';
}
.inner-s5 .items {
  margin-top: 0.4rem;
}
.inner-s5 .item {
  margin-top: 0.2rem;
  border-radius: max(25px, 0.3rem);
  transition: all .3s ease;
}
.inner-s5 .item .show {
  position: relative;
  height: max(50px, 0.6rem);
  border-radius: max(25px, 0.3rem);
  background-color: #a62127;
  padding: 0 1rem 0 0.3rem;
  display: flex;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.inner-s5 .item .show span {
  font-size: max(15px, 0.19rem);
  color: #fff;
}
.inner-s5 .item .show:after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/topic/icon-6.png");
  background-size: auto 0.3rem;
}
.inner-s5 .item .hide {
  display: none;
}
.inner-s5 .item .s-para {
  padding: 0.2rem 0.3rem 0.3rem;
  font-size: max(14px, 0.18rem);
  color: #3e3a39;
}
.inner-s5 .item.active {
  background-color: #fff;
}
.inner-s5 .item.active .hide {
  display: block;
}

.inner-s6 {
  padding: 1rem 0;
}
.inner-s6 .label {
  font-size: 0.45rem;
  color: #a62127;
  font-family: 'Montserrat-Bold';
}
.inner-s6 .top-block {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.5rem;
}
.inner-s6 .top-block .left-box {
  width: 3.5rem;
  background-color: #fbede9;
  padding: 0 0.3rem;
  border-radius: 0.14rem;
}
.inner-s6 .top-block .data {
  padding: 0.24rem 0;
  border-bottom: 1px solid #706a68;
}
.inner-s6 .top-block .data:last-child {
  border-bottom: none;
}
.inner-s6 .top-block .data .num {
  display: flex;
  align-items: center;
}
.inner-s6 .top-block .data .num span, .inner-s6 .top-block .data .num em {
  font-size: 0.48rem;
  color: #3e3a39;
  font-family: 'D-DIN-PRO-ExtraBold';
}
.inner-s6 .top-block .data .num em {
  font-style: normal;
}
.inner-s6 .top-block .data .num i {
  font-style: normal;
  font-size: 0.48rem;
  color: #3e3a39;
  font-family: 'D-DIN-PRO-ExtraBold';
}
.inner-s6 .top-block .data p {
  font-size: max(15px, 0.2rem);
  color: #3e3a39;
}
.inner-s6 .top-block .right-box {
  width: calc(100% - 3.8rem);
}
.inner-s6 .top-block .right-box .img-box {
  height: 100%;
  border-radius: 0.14rem;
  overflow: hidden;
}
.inner-s6 .top-block .right-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s6 .mid-block {
  margin-top: 0.5rem;
}
.inner-s6 .mid-block .para {
  font-size: 0.26rem;
  color: #3e3a39;
  font-family: 'Montserrat-SemiBold';
}
.inner-s6 .mid-block .items {
  position: relative;
  margin-top: 0.4rem;
}
.inner-s6 .mid-block .item {
  width: 6rem;
  background-color: #f5f5f5;
  height: auto;
  margin-right: 0.3rem;
}
.inner-s6 .mid-block .item:last-of-type {
  margin-right: 0;
}
.inner-s6 .mid-block .item .inner {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 0.14rem;
  overflow: hidden;
}
.inner-s6 .mid-block .item .img-box {
  aspect-ratio: 6 / 5;
}
.inner-s6 .mid-block .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s6 .mid-block .item .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.6rem 0.3rem 0.3rem;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), black);
  z-index: 2;
}
.inner-s6 .mid-block .item .tit {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid #fff;
}
.inner-s6 .mid-block .item .tit:before {
  content: '';
  width: 0.36rem;
  height: 0.36rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/topic/icon-9.png");
}
.inner-s6 .mid-block .item .tit span {
  flex: 1;
  font-size: max(15px, 0.195rem);
  color: #fff;
  font-family: 'Montserrat-Medium';
}
.inner-s6 .mid-block .item p {
  font-size: max(14px, 0.18rem);
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (any-hover: hover) {
  .inner-s6 .mid-block .item:hover img {
    transform: scale(1.1);
  }
}
.inner-s6 .mid-block .swiper-scrollbar {
  margin-top: 10px;
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  width: 100%;
  height: 0.1rem;
  background-color: #fafafa;
}
.inner-s6 .mid-block .swiper-scrollbar-drag {
  background-color: #dadada;
  cursor: pointer;
}
.inner-s6 .mid-block .tips {
  font-size: max(15px, 0.2rem);
  color: #3e3a39;
  margin-top: 10px;
}
.inner-s6 .bot-block {
  margin-top: 0.5rem;
}
.inner-s6 .bot-block .tit {
  font-size: 0.26rem;
  color: #3e3a39;
  font-family: 'Montserrat-SemiBold';
}
.inner-s6 .bot-block .para {
  font-size: max(18px, 0.24rem);
  color: #3e3a39;
  margin-top: 0.1rem;
}
.inner-s6 .bot-block .cont {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.inner-s6 .bot-block .left-box {
  width: calc(50% + 0.5rem);
}
.inner-s6 .bot-block .right-box {
  width: calc(50% - 0.9rem);
  box-shadow: 0 0 10px rgba(166, 33, 39, 0.3);
  border-radius: 0.14rem;
  padding: 0.2rem;
}
.inner-s6 .bot-block .right-box .s-tit {
  font-size: max(15px, 0.195rem);
  color: #a62127;
  font-family: 'Montserrat-Medium';
}
.inner-s6 .bot-block .right-box .s-para {
  font-size: max(14px, 0.18rem);
  color: #a62127;
  margin-top: 0.1rem;
}
.inner-s6 .bot-block .right-box .btns {
  display: flex;
  justify-content: flex-end;
  gap: 0.15rem;
  margin-top: 10px;
}
.inner-s6 .bot-block .right-box a.box {
  padding: 0.12rem 0.7rem 0.12rem 0.2rem;
  background-color: #a62127;
  border-radius: 0.14rem;
  position: relative;
}
.inner-s6 .bot-block .right-box a.box span {
  display: block;
  font-size: max(15px, 0.21rem);
  color: #fff;
  font-family: 'Montserrat-Medium';
}
.inner-s6 .bot-block .right-box a.box:after {
  content: '';
  width: 0.31rem;
  height: 0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/topic/icon-3-1.png");
  position: absolute;
  top: calc(50% - 0.125rem);
  right: 0.2rem;
  transition: transform 0.3s ease;
  will-change: transform;
}
@media (any-hover: hover) {
  .inner-s6 .bot-block .right-box a.box:hover:after {
    transform: translateX(3px);
  }
}
.inner-s6 .bot-block .items {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.2rem;
}
.inner-s6 .bot-block .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
}
.inner-s6 .bot-block .item .s-tit {
  position: relative;
  padding-left: 0.2rem;
  font-size: max(14px, 0.18rem);
  font-family: 'Montserrat-Medium';
  color: #a62127;
}
.inner-s6 .bot-block .item .s-tit:before {
  content: '';
  width: 0.12rem;
  height: max(16.8px, 0.216rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/topic/icon-4.png");
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
.inner-s6 .bot-block .item span {
  font-size: max(15px, 0.195rem);
  color: #a62127;
  border: 1px solid #a62127;
  padding: 5px 0.15rem;
  border-radius: 9000px;
  white-space: nowrap;
}

.inner-s7 {
  padding: 1rem 0;
  background-color: #fbede9;
}
.inner-s7 .label {
  font-size: 0.45rem;
  color: #3e3a39;
  font-family: 'Montserrat-Bold';
}
.inner-s7 .top-block {
  margin-top: 0.5rem;
}
.inner-s7 .top-block .items {
  display: flex;
  gap: 0.24rem;
  flex-wrap: wrap;
}
.inner-s7 .top-block .item {
  position: relative;
  width: calc((100% - 0.48rem) / 3);
  background-color: #fff;
  border-radius: 0.14rem;
  padding: 1.2rem 0.3rem 0.3rem;
  transition: all .3s ease;
}
.inner-s7 .top-block .item .icon {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  width: 0.68rem;
  height: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s7 .top-block .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s7 .top-block .item .num {
  display: flex;
  align-items: center;
}
.inner-s7 .top-block .item .num span, .inner-s7 .top-block .item .num em {
  font-size: 0.6rem;
  color: #3e3a39;
  font-family: 'D-DIN-PRO-ExtraBold';
}
.inner-s7 .top-block .item .num em {
  font-style: normal;
}
.inner-s7 .top-block .item .num i {
  font-style: normal;
  font-size: 0.6rem;
  color: #3e3a39;
  font-family: 'D-DIN-PRO-ExtraBold';
}
.inner-s7 .top-block .item p {
  font-size: max(18px, 0.24rem);
  color: #3e3a39;
  margin-top: 0.1rem;
}
@media (any-hover: hover) {
  .inner-s7 .top-block .item:hover {
    background-color: #ef8b77;
  }
}
.inner-s7 .mid-block {
  margin-top: 0.5rem;
}
.inner-s7 .mid-block .para {
  font-size: 0.26rem;
  color: #3e3a39;
  font-family: 'Montserrat-SemiBold';
}
.inner-s7 .mid-block .items {
  margin-top: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}
.inner-s7 .mid-block .item {
  width: calc((100% - 0.24rem) / 2);
  background-color: #fff;
  border-radius: 0.14rem;
  padding: 0.2rem 0.3rem;
  border-left: 0.06rem solid #ef8b77;
}
.inner-s7 .mid-block .item .tit {
  font-size: max(15px, 0.2rem);
  color: #ef8b77;
  font-family: 'Montserrat-Medium';
}
.inner-s7 .mid-block .item .s-para {
  font-size: max(14px, 0.18rem);
  color: #3e3a39;
  margin-top: 0.1rem;
}
.inner-s7 .bot-block {
  margin-top: 0.6rem;
}
.inner-s7 .bot-block .para {
  font-size: 0.26rem;
  color: #3e3a39;
  font-family: 'Montserrat-SemiBold';
}
.inner-s7 .bot-block .img-box {
  margin-top: 0.3rem;
  background-color: #fff;
  border-radius: 0.14rem;
  border: 1px solid #a62127;
  padding: 0.48rem;
}
.inner-s7 .bot-block .img-box img {
  display: block;
  width: 100%;
}
.inner-s7 .btns {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 0.15rem;
}
.inner-s7 a.box {
  padding: 0.12rem 0.7rem 0.12rem 0.2rem;
  background-color: #a62127;
  border-radius: 0.14rem;
  position: relative;
}
.inner-s7 a.box span {
  display: block;
  font-size: max(15px, 0.21rem);
  color: #fff;
  font-family: 'Montserrat-Medium';
}
.inner-s7 a.box:after {
  content: '';
  width: 0.31rem;
  height: 0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/topic/icon-3-1.png");
  position: absolute;
  top: calc(50% - 0.125rem);
  right: 0.2rem;
  transition: transform 0.3s ease;
  will-change: transform;
}
@media (any-hover: hover) {
  .inner-s7 a.box:hover:after {
    transform: translateX(3px);
  }
}

.inner-s8 {
  padding: 1rem 0;
}
.inner-s8 .label {
  font-size: 0.8rem;
  color: #3e3a39;
  font-family: 'Montserrat-Bold';
  text-align: center;
}
.inner-s8 .items {
  margin-top: 0.4rem;
}
.inner-s8 .item {
  margin-top: 0.2rem;
  border-radius: 0.14rem;
  background-color: #fad9d3;
}
.inner-s8 .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s8 .item:nth-of-type(1) {
  background-color: #fef8f7;
}
.inner-s8 .item:nth-of-type(2) {
  background-color: #fdf2f0;
}
.inner-s8 .item:nth-of-type(3) {
  background-color: #fdece8;
}
.inner-s8 .item:nth-of-type(4) {
  background-color: #fbe5e1;
}
.inner-s8 .item:nth-of-type(5) {
  background-color: #fadfda;
}
.inner-s8 .item:nth-of-type(6) {
  background-color: #fad9d3;
}
.inner-s8 .item .show {
  height: max(90px, 1.2rem);
  display: flex;
  align-items: center;
  gap: 0.24rem;
  padding: 0 0.3rem;
  cursor: pointer;
}
.inner-s8 .item .show span {
  flex: 1;
  font-size: 0.27rem;
  color: #3e3a39;
  font-family: 'Montserrat-Medium';
}
.inner-s8 .item .show:before {
  content: '';
  width: 0.56rem;
  height: 0.56rem;
  background-color: #fff;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/topic/icon-7.png");
  background-size: auto 0.22rem;
}
.inner-s8 .item .show:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 0.15rem solid transparent;
  border-right: 0.15rem solid transparent;
  border-top: 0.18rem solid #a62127;
}
.inner-s8 .item .hide {
  display: none;
}
.inner-s8 .item .para {
  font-size: max(14px, 0.18rem);
  color: #3e3a39;
  padding: 0 0.3rem 0.4rem;
}
.inner-s8 .item.active .hide {
  display: block;
}

.inner-s9 {
  padding: 0 0 1rem;
}
.inner-s9 .label {
  font-size: 0.45rem;
  color: #3e3a39;
  font-family: 'Montserrat-Bold';
  text-align: center;
}
.inner-s9 .tit {
  font-size: 0.55rem;
  color: #a62127;
  font-family: 'Montserrat-SemiBold';
  text-align: center;
  margin-top: 0.4rem;
}
.inner-s9 .btns {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.inner-s9 a.box {
  padding: 0.12rem 0.7rem 0.12rem 0.2rem;
  background-color: #a62127;
  border-radius: 0.14rem;
  position: relative;
}
.inner-s9 a.box span {
  display: block;
  font-size: max(15px, 0.21rem);
  color: #fff;
  font-family: 'Montserrat-Medium';
}
.inner-s9 a.box:after {
  content: '';
  width: 0.31rem;
  height: 0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/topic/icon-3-1.png");
  position: absolute;
  top: calc(50% - 0.125rem);
  right: 0.2rem;
  transition: transform 0.3s ease;
  will-change: transform;
}
@media (any-hover: hover) {
  .inner-s9 a.box:hover:after {
    transform: translateX(3px);
  }
}

@media only screen and (max-width: 1700px) {
  html {
    font-size: 99px;
  }
}
@media only screen and (max-width: 1685px) {
  html {
    font-size: 98px;
  }
}
@media only screen and (max-width: 1670px) {
  html {
    font-size: 97px;
  }
}
@media only screen and (max-width: 1655px) {
  html {
    font-size: 96px;
  }
}
@media only screen and (max-width: 1640px) {
  html {
    font-size: 95px;
  }
}
@media only screen and (max-width: 1625px) {
  html {
    font-size: 94px;
  }
}
@media only screen and (max-width: 1610px) {
  html {
    font-size: 93px;
  }
}
@media only screen and (max-width: 1595px) {
  html {
    font-size: 92px;
  }
}
@media only screen and (max-width: 1580px) {
  html {
    font-size: 91px;
  }
}
@media only screen and (max-width: 1565px) {
  html {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1550px) {
  html {
    font-size: 89px;
  }
}
@media only screen and (max-width: 1535px) {
  html {
    font-size: 88px;
  }
}
@media only screen and (max-width: 1520px) {
  html {
    font-size: 87px;
  }
}
@media only screen and (max-width: 1505px) {
  html {
    font-size: 86px;
  }
}
@media only screen and (max-width: 1490px) {
  html {
    font-size: 85px;
  }
}
@media only screen and (max-width: 1475px) {
  html {
    font-size: 84px;
  }
}
@media only screen and (max-width: 1460px) {
  html {
    font-size: 83px;
  }
}
@media only screen and (max-width: 1445px) {
  html {
    font-size: 82px;
  }
}
@media only screen and (max-width: 1430px) {
  html {
    font-size: 81px;
  }
}
@media only screen and (max-width: 1415px) {
  html {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 79px;
  }
}
@media only screen and (max-width: 1385px) {
  html {
    font-size: 78px;
  }
}
@media only screen and (max-width: 1370px) {
  html {
    font-size: 77px;
  }
}
@media only screen and (max-width: 1355px) {
  html {
    font-size: 76px;
  }
}
@media only screen and (max-width: 1340px) {
  html {
    font-size: 75px;
  }
}
@media only screen and (max-width: 1325px) {
  html {
    font-size: 74px;
  }
}
@media only screen and (max-width: 1310px) {
  html {
    font-size: 72px;
  }
}
@media only screen and (max-width: 1295px) {
  html {
    font-size: 71px;
  }
}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 70px;
  }
}
@media screen and (max-width: 1025px) {
  body {
    min-width: 100%;
  }

  .wrap-s {
    width: 86%;
  }

  .inner-s2 .items {
    gap: 0.5rem 1rem;
  }

  .inner-s2 .item {
    width: calc(50% - 0.5rem);
  }

  .inner-s3 .item {
    width: 100%;
  }

  .inner-s6 .mid-block .item {
    width: calc(50% - 10px);
    margin-right: 20px;
  }

  .inner-s6 .mid-block .swiper-scrollbar {
    display: none;
  }

  .inner-s6 .pagination {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .inner-s6 .pagination span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #d4dfff;
    transition: all .3s ease;
    cursor: pointer;
    margin-left: 5px;
  }
  .inner-s6 .pagination span:nth-of-type(1) {
    margin-left: 0;
  }
  .inner-s6 .pagination span.active {
    background-color: #a62127;
  }

  .topic-footer .top-block {
    flex-wrap: wrap;
    gap: 20px;
  }

  .topic-footer .left-box {
    width: 100%;
  }

  .topic-footer .ewm-box {
    width: 100%;
    padding-left: 0;
    gap: 5px;
  }
}
@media screen and (max-width: 900px) {
  .inner-s1 .wrap-s {
    display: block;
  }

  .inner-s1 .txt-box {
    width: 100%;
  }

  .inner-s1 .img-box {
    max-width: 459px;
    width: 80%;
    margin: 0.4rem auto 0;
  }

  .inner-s4 .item {
    width: 100%;
  }

  .inner-s5 .bot-block {
    flex-wrap: wrap;
  }

  .inner-s5 .left-box {
    width: 100%;
  }

  .inner-s5 .right-box {
    width: 100%;
    padding: 0.4rem 0 0;
  }

  .inner-s6 .top-block {
    flex-wrap: wrap;
  }

  .inner-s6 .top-block .left-box {
    width: 100%;
  }

  .inner-s6 .top-block .right-box {
    width: 100%;
  }

  .inner-s6 .bot-block .cont {
    flex-wrap: wrap;
  }

  .inner-s6 .bot-block .left-box {
    width: 100%;
  }

  .inner-s6 .bot-block .right-box {
    width: 100%;
  }

  .inner-s7 .top-block .item {
    width: 100%;
  }

  .inner-s7 .mid-block .item {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .inner-s1 .label {
    font-size: 24px;
  }

  .inner-s1 .label br {
    display: none;
  }

  .inner-s1 .para {
    font-size: 16px;
  }

  .inner-s1 .info p {
    font-size: 16px;
  }

  .inner-s2 .items {
    gap: 30px;
  }

  .inner-s2 .item .num span, .inner-s2 .item .num em,
  .inner-s2 .item .num i {
    font-size: 30px;
  }

  .inner-s2 .item {
    width: calc(50% - 15px);
  }

  .inner-s2 .item p {
    font-size: 14px;
  }

  .inner-s3 .top-block .label {
    font-size: 24px;
  }

  .inner-s3 .top-block p {
    font-size: 16px;
  }

  .inner-s3 .item .inner {
    padding: 0;
  }

  .inner-s3 .item .img-box {
    position: static;
    height: auto;
    width: 100%;
  }

  .inner-s3 .item .txt-box {
    height: auto;
  }

  .inner-s4 .top-block {
    flex-wrap: wrap;
    gap: 15px;
  }

  .inner-s4 .top-block .label {
    width: 100%;
    font-size: 24px;
  }

  .inner-s4 .top-block .label br {
    display: none;
  }

  .inner-s5 .top-block .label {
    font-size: 24px;
  }

  .inner-s5 .top-block .label br {
    display: none;
  }

  .inner-s5 .top-block .para {
    font-size: 16px;
  }

  .inner-s5 .left-box .para {
    font-size: 16px;
  }

  .inner-s5 .right-box .para {
    font-size: 16px;
  }

  .inner-s5 .item .show {
    padding: 0 50px 0 20px;
  }

  .inner-s5 .item .show span {
    font-size: 14px;
  }

  .inner-s5 .item .show span br {
    display: none;
  }

  .inner-s6 .label {
    font-size: 24px;
  }

  .inner-s6 .label br {
    display: none;
  }

  .inner-s6 .top-block .data p {
    font-size: 14px;
  }

  .inner-s6 .mid-block .para {
    font-size: 16px;
  }

  .inner-s6 .mid-block .item {
    width: 100%;
    max-width: 400px;
  }

  .inner-s6 .bot-block .tit {
    font-size: 16px;
  }

  .inner-s6 .bot-block .para {
    font-size: 16px;
  }

  .inner-s6 .bot-block .item span {
    font-size: 12px;
  }

  .inner-s7 .label {
    font-size: 24px;
  }

  .inner-s7 .top-block .item .num span, .inner-s7 .top-block .item .num em,
  .inner-s7 .top-block .item .num i {
    font-size: 30px;
  }

  .inner-s7 .top-block .item p {
    font-size: 14px;
  }

  .inner-s7 .mid-block .para {
    font-size: 16px;
  }

  .inner-s7 .bot-block .img-box {
    padding: 15px;
  }

  .inner-s8 .label {
    font-size: 24px;
  }

  .inner-s8 .item .show span {
    font-size: 14px;
  }

  .inner-s8 .item .show {
    height: auto;
    padding: 15px;
  }

  .inner-s9 .label {
    font-size: 24px;
  }

  .inner-s9 .tit {
    font-size: 24px;
  }

  .inner-s9 .btns {
    gap: 10px;
  }

  .topic-header .btns {
    gap: 5px;
  }

  .topic-header a.back {
    font-size: 12px;
  }

  .topic-header .global .show {
    font-size: 12px;
  }

  .topic-footer .top-block {
    padding: 40px 0 30px;
  }

  .topic-footer .info-main .para {
    width: 100%;
  }

  .topic-footer .info-main .para {
    flex: auto;
    width: 100%;
  }

  .topic-footer .bot-block {
    padding: 30px 0;
  }
}

/*# sourceMappingURL=bundle.css.map */
