*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "lexendDeca";
  src: url("./LexendDeca-VariableFont_wght.ttf");
}

@font-face {
  font-family: "ptserif";
  src: url("./PTSerif-Regular.ttf");
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  background-attachment: fixed;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  font-family: "lexendDeca";
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

body:has(#mask_nav.active),
body:has(#search_mask.active) {
  overflow-y: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

input {
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.container .container_title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 32px;
  border-bottom: 1px solid #E7E7E7;
}

.container .container_title h2 {
  font-weight: bold;
  font-size: 32px;
  color: #000000;
  line-height: 40px;
}

.container .container_title h2 span {
  color: #D7282F;
}

.container .container_title::after {
  position: absolute;
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: #D7282F;
  left: 0;
  bottom: 0;
}

.container .container_title a {
  font-size: 14px;
  color: #D7282F;
  line-height: 22px;
}

.container .container_title a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .container .container_title {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .container .container_title h2 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

header {
  padding: 16px 0;
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .container .branch_menu {
  display: flex;
  align-items: center;
}

header .container .branch_menu .memu_trigger {
  display: none;
}

header .container #mask_nav .category_box .close {
  display: none;
}

header .container #mask_nav .category_box nav {
  display: flex;
  align-items: center;
  height: 48px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 28px;
  padding: 0 40px;
}

header .container #mask_nav .category_box nav a {
  font-weight: 500;
  font-size: 14px;
  color: #000000;
}

header .container #mask_nav .category_box nav a+a {
  margin-left: 24px;
}

header .container #mask_nav .category_box nav a.active,
header .container #mask_nav .category_box nav a:hover {
  text-decoration: underline;
}

header .container .search_trigger {
  display: flex;
  align-items: center;
  height: 48px;
  background: #F5F5F5;
  border-radius: 28px;
  padding: 0 24px;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
}

header .container .search_trigger img {
  margin-right: 8px;
}

@media (max-width: 1024px) {
  header {
    padding: 12px 0;
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1);
  }

  header .container .branch_menu .memu_trigger {
    display: initial;
    margin-right: 8px;
  }

  header .container #mask_nav {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }

  header .container #mask_nav.active {
    display: block;
  }

  header .container #mask_nav .category_box {
    position: relative;
    background-color: #fff;
    border-radius: 16px;
    width: calc(100% - 80px);
    margin: 56px auto;
    padding: 48px 0;
  }

  header .container #mask_nav .category_box .close {
    display: initial;
    position: absolute;
    right: 24px;
    top: 24px;
  }

  header .container #mask_nav .category_box nav {
    flex-direction: column;
    height: initial;
    box-shadow: initial;
    border-radius: initial;
    padding: initial;
  }

  header .container #mask_nav .category_box nav a {
    font-size: 18px;
  }

  header .container #mask_nav .category_box nav a+a {
    margin-left: 0;
    margin-top: 24px;
  }

  header .container .search_trigger {
    justify-content: center;
    height: 40px;
    width: 40px;
    padding: 0;
  }

  header .container .search_trigger span {
    display: none;
  }

  header .container .search_trigger img {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  header .container #mask_nav .category_box {
    width: calc(100% - 32px);
  }
}

#search_mask {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

#search_mask.active {
  display: block;
}

#search_mask .search_box {
  background: #FFFFFF;
  border-radius: 16px;
  width: 700px;
  margin: 80px auto;
  padding: 48px 24px;
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

#search_mask .search_box h2 {
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  line-height: 32px;
  margin-bottom: 24px;
  text-align: center;
}

#search_mask .search_box form {
  position: relative;
}

#search_mask .search_box form input {
  width: 100%;
  height: 48px;
  background: #F5F5F5;
  border-radius: 28px;
  text-indent: 2em;
  padding-right: 90px;
}

#search_mask .search_box form button {
  width: 80px;
  height: 40px;
  background: #D7282F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: none;
  position: absolute;
  right: 4px;
  top: 4px;
  cursor: pointer;
}

#search_mask .search_box form button:hover {
  filter: brightness(1.1);
}

#search_mask .search_box .close {
  position: absolute;
  right: 24px;
  top: 24px;
}

@media (max-width: 1024px) {
  #search_mask .search_box {
    width: calc(100% - 80px);
    margin: 56px auto;
  }
}

@media (max-width: 767px) {
  #search_mask .search_box {
    width: calc(100% - 32px);
  }
}

.ad_box {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

.ad_box::after {
  content: "Advertisement";
  font-size: 12px;
  color: #BBBBBB;
  line-height: 14px;
  text-align: center;
  margin-top: 4px;
}

.banner_ad {
  flex-direction: column;
  display: flex;
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中（如果有高度限制） */
  text-align: center;
  /* 让文字类内容居中 */
}

.banner_ad::after {
  content: "Advertisement";
  font-size: 12px;
  color: #BBBBBB;
  line-height: 14px;
  text-align: center;
  margin-top: 4px;
}

.home_web_overview {
  margin-top: 16px;
}

.home_web_overview .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home_web_overview .container .info_nav nav {
  display: none;
}

.home_web_overview .container .info_nav dl dt {
  font-weight: bold;
  font-size: 56px;
  color: #000;
  line-height: 64px;
  margin-bottom: 16px;
}

.home_web_overview .container .info_nav dl dt span {
  color: #D7282F;
}

.home_web_overview .container .info_nav dl dd {
  font-family: ptserif;
  font-size: 20px;
  color: #666;
  line-height: 1.6em;
}

@media (max-width: 1024px) {
  .home_web_overview {
    margin-top: 24px;
  }

  .home_web_overview .container {
    flex-direction: column;
  }

  .home_web_overview .container .info_nav {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .home_web_overview .container .info_nav nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 280px;
  }

  .home_web_overview .container .info_nav nav a {
    height: 40px;
    border-radius: 28px;
    font-weight: 500;
    font-size: 14px;
    color: #D7282F;
    border: 1px solid #D7282F;
    padding: 0 24px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }

  .home_web_overview .container .info_nav dl {
    flex: 1;
    padding-right: 25px;
  }

  .home_web_overview .container .info_nav dl dt {
    font-size: 32px;
    line-height: 42px;
  }

  .home_web_overview .container .info_nav dl dd {
    font-size: 16px;
  }

  .home_web_overview .container .ad_box {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .home_web_overview .container .info_nav {
    flex-direction: column;
    align-items: stretch;
  }

  .home_web_overview .container .info_nav nav {
    flex-wrap: nowrap;
    margin-top: 24px;
    width: 100%;
    overflow-x: scroll;
  }

  .home_web_overview .container .info_nav nav::-webkit-scrollbar {
    display: none;
  }

  .home_web_overview .container .info_nav nav a {
    margin-bottom: 0;
  }

  .home_web_overview .container .info_nav nav a+a {
    margin-left: 12px;
  }

  .home_web_overview .container .info_nav dl {
    padding-right: 0;
  }
}

.banner_ad {
  margin-top: 26px;
}

@media (max-width: 1024px) {
  .banner_ad {
    margin-top: 28px;
  }
}

@media (max-width: 1024px) {
  .banner_ad {
    margin-top: 28px;
  }
}

.recommend {
  margin-top: 66px;
}

.recommend .container {
  position: relative;
}

.recommend .container h2 {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 50px 0 16px;
  position: absolute;
  top: -24px;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  background: url("../img/recommend_title_bg.png") no-repeat center;
  background-size: auto 100%;
}

.recommend .container h2 img {
  margin-right: 4px;
}

.recommend .container .recommend_main {
  background-color: #D7282F;
  border-radius: 16px;
  padding: 16px 4px 4px;
  overflow: hidden;
}

.recommend .container .recommend_main .main_box {
  background: #F5F5F5;
  padding: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.recommend .container .recommend_main .main_box .thum {
  border-radius: 12px;
  width: 480px;
  aspect-ratio: 1.7777777778;
  overflow: hidden;
}

.recommend .container .recommend_main .main_box .thum img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: all 0.3s;
}

.recommend .container .recommend_main .main_box dl {
  flex: 1;
  padding-left: 40px;
}

.recommend .container .recommend_main .main_box dl dd:nth-child(1) {
  font-weight: 500;
  font-size: 14px;
  color: #D7282F;
  line-height: 16px;
  margin-bottom: 12px;
}

.recommend .container .recommend_main .main_box dl dt {
  font-weight: bold;
  font-size: 38px;
  color: #000000;
  line-height: 50px;
  margin-bottom: 12px;
}

.recommend .container .recommend_main .main_box dl dd:nth-child(3) {
  font-size: 18px;
  color: #666666;
  line-height: 24px;
  font-family: "ptserif";
}

.recommend .container .recommend_main .main_box dl dd:nth-child(4) {
  margin-top: 24px;
}

.recommend .container .recommend_main .main_box dl dd:nth-child(4) a {
  width: 150px;
  height: 48px;
  background: #D7282F;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
  transition: all 0.3s;
}

.recommend .container .recommend_main .main_box dl dd:nth-child(4) a:hover {
  filter: brightness(1.1);
}

@media (max-width: 1024px) {
  .recommend {
    margin-top: 48px;
  }

  .recommend .container .recommend_main .main_box {
    padding: 24px;
  }

  .recommend .container .recommend_main .main_box .thum {
    width: 352px;
  }

  .recommend .container .recommend_main .main_box dl {
    padding-left: 16px;
  }

  .recommend .container .recommend_main .main_box dl dd:nth-child(1) {
    font-size: 12px;
    line-height: 14px;
  }

  .recommend .container .recommend_main .main_box dl dt {
    font-size: 24px;
    line-height: 32px;
  }

  .recommend .container .recommend_main .main_box dl dd:nth-child(3) {
    font-size: 14px;
    line-height: 20px;
  }

  .recommend .container .recommend_main .main_box dl dd:nth-child(4) {
    margin-top: 16px;
  }

  .recommend .container .recommend_main .main_box dl dd:nth-child(4) a {
    width: 120px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .recommend .container .recommend_main .main_box {
    flex-direction: column;
  }

  .recommend .container .recommend_main .main_box .thum {
    width: 100%;
  }

  .recommend .container .recommend_main .main_box dl {
    width: 100%;
    padding-left: 0;
    padding-top: 16px;
  }

  .recommend .container .recommend_main .main_box dl dd:nth-child(4) a {
    width: 100%;
    height: 40px;
  }
}

.item_pat {
  margin-top: 32px;
}

.item_pat .load_more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  width: 220px;
  height: 40px;
  background: #D7282F;
  border-radius: 24px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}

.item_pat .load_more:hover {
  text-decoration: underline;
  filter: brightness(1.1);
}

@media (max-width: 1024px) {
  .item_pat {
    margin-top: 24px;
  }
}

.list_1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.list_1 li {
  width: calc(50% - 16px);
}

.list_1 li:nth-child(n+3) {
  margin-top: 32px;
}

.list_1 li a {
  display: flex;
  align-items: center;
}

.list_1 li a .thum {
  width: 210px;
  aspect-ratio: 1.5;
  overflow: hidden;
  border-radius: 16px;
}

.list_1 li a .thum img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: all 0.3s;
}

.list_1 li a dl {
  flex: 1;
  padding-left: 24px;
}

.list_1 li a dl dd:nth-child(1) {
  font-weight: 500;
  font-size: 14px;
  color: #D7282F;
  line-height: 16px;
  margin-bottom: 8px;
}

.list_1 li a dl dt {
  font-weight: 500;
  font-size: 22px;
  color: #000000;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
}

.list_1 li a dl dd:nth-child(3) {
  font-size: 18px;
  color: #666666;
  line-height: 24px;
  font-family: "ptserif";
}

@media (max-width: 1024px) {
  .list_1 li {
    width: calc(50% - 8px);
  }

  .list_1 li:nth-child(n+3) {
    margin-top: 16px;
  }

  .list_1 li a .thum {
    width: 120px;
    aspect-ratio: 1/1;
  }

  .list_1 li a dl {
    padding-left: 12px;
  }

  .list_1 li a dl dd:nth-child(1) {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 4px;
  }

  .list_1 li a dl dt {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 4px;
  }

  .list_1 li a dl dd:nth-child(3) {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  .list_1 li {
    width: 100%;
  }

  .list_1 li:nth-child(n+2) {
    margin-top: 16px;
  }
}

.list_2 {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.list_2 li {
  width: calc((100% - 64px) / 3);
  margin-right: 32px;
  background: #F5F5F5;
  border-radius: 16px;
  overflow: hidden;
}

.list_2 li a {
  display: block;
}

.list_2 li a .thum {
  width: 100%;
  aspect-ratio: 1.7777777778;
  overflow: hidden;
}

.list_2 li a .thum img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: all 0.3s;
}

.list_2 li a .thum img {
  transition: all 0.3s;
}

.list_2 li a:hover .thum img {
  transform: scale(1.1);
}

.list_2 li a dl {
  padding: 24px;
}

.list_2 li a dl dt {
  font-weight: 500;
  font-size: 22px;
  color: #000000;
  line-height: 28px;
  margin-bottom: 8px;
}

.list_2 li a dl dd:nth-child(2) {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  font-family: "ptserif";
}

.list_2 li a dl dd:nth-child(3) {
  height: 40px;
  background: #D7282F;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  font-size: 16px;
  color: #FFFFFF;
  transition: all 0.3s;
}

.list_2 li a dl dd:nth-child(3):hover {
  filter: brightness(1.1);
  text-decoration: underline;
}

.list_2 li:nth-child(3n) {
  margin-right: 0;
}

.list_2 li:nth-child(n+4) {
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .list_2 {
    justify-content: space-between;
  }

  .list_2 li {
    width: calc(50% - 6px);
    margin-right: 0;
  }

  .list_2 li:nth-child(n+3) {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .list_2 li {
    width: 100%;
  }

  .list_2 li:nth-child(n+2) {
    margin-top: 16px;
  }
}

footer {
  margin-top: 80px;
  background-color: #000;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 24px 0;
}

footer nav {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

footer nav a {
  font-weight: 300;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 18px;
  text-decoration: underline;
  text-transform: uppercase;
}

footer nav a+a {
  margin-left: 24px;
}

footer p {
  font-weight: 300;
  font-size: 12px;
  color: #666666;
  line-height: 16px;
}

@media (max-width: 1024px) {
  footer {
    margin-top: 40px;
  }
}

.category_header {
  margin-top: 8px;
}

.category_header .container h1 {
  border-bottom: 1px solid #E7E7E7;
  position: relative;
  padding-bottom: 24px;
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  color: #000000;
  line-height: 40px;
}

.category_header .container h1::after {
  position: absolute;
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: #D7282F;
  left: calc(50% - 60px);
  bottom: 0;
}

@media (max-width: 1024px) {
  .category_header {
    margin-top: 24px;
  }

  .category_header .container h1 {
    padding-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
  }
}

.search_header {
  margin-top: 8px;
}

.search_header .container h1 {
  padding-bottom: 24px;
  font-weight: bold;
  font-size: 32px;
  color: #000000;
  line-height: 40px;
}

.search_header .container form {
  position: relative;
  width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.search_header .container form input {
  width: 100%;
  height: 48px;
  background: #F5F5F5;
  border-radius: 28px;
  text-indent: 2em;
  padding-right: 90px;
}

.search_header .container form button {
  width: 80px;
  height: 40px;
  background: #D7282F;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: none;
  position: absolute;
  right: 4px;
  top: 4px;
  cursor: pointer;
}

.search_header .container form button:hover {
  filter: brightness(1.1);
}

@media (max-width: 1024px) {
  .search_header {
    margin-top: 24px;
  }

  .search_header .container h1 {
    padding-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
  }

  .search_header .container form {
    width: 100%;
  }
}

.no_search {
  margin-top: 24px;
}

.no_search .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.no_search .container h2 {
  font-weight: bold;
  font-size: 24px;
  color: #333333;
  line-height: 32px;
  text-align: center;
  margin: 24px auto 12px;
}

.no_search .container p {
  font-size: 16px;
  color: #555B64;
  line-height: 24px;
  text-align: center;
}

.primary_box {
  min-height: calc(100vh - 264px);
}

.primary_box .container {
  padding-top: 40px;
}

.primary_box .container h2 {
  font-weight: bold;
  font-size: 22px;
  color: #000000;
  line-height: 28px;
  margin-bottom: 16px;
}

.primary_box .container .mainBox h3 {
  font-size: 1.1em;
  color: #000;
  margin-bottom: 15px;
}

.primary_box .container .mainBox p {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6em;
}

.no_found {
  padding-top: 90px;
  min-height: calc(100vh - 264px);
}

.no_found .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.no_found .container h1 {
  font-weight: bold;
  font-size: 24px;
  color: #333333;
  line-height: 32px;
  margin: 24px auto 12px;
}

.no_found .container p {
  font-size: 16px;
  color: #555B64;
  line-height: 24px;
  text-align: center;
}

.no_found .container a {
  width: 200px;
  height: 48px;
  background: #D7282F;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
  transition: all 0.3s;
  margin-top: 24px;
}

.no_found .container a:hover {
  filter: brightness(1.1);
  text-decoration: underline;
}

.result {
  margin-top: 24px;
}

.result .container .result_box {
  background: #F5F5F5;
  border-radius: 16px;
  overflow: hidden;
}

.result .container .result_box h1 {
  background-position: center;
  background-size: 100% auto;
  background-repeat: repeat-x;
  position: relative;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.result .container .result_box h1 span {
  position: relative;
  font-weight: bold;
  font-size: 34px;
  color: #FFFFFF;
  line-height: 46px;
  text-align: center;
  display: block;
  width: 100%;
  padding: 37px 20px;
}

.result .container .result_box h1::before {
  background-color: rgba(215, 40, 47, 0.9);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.result .container .result_box .desc {
  padding: 40px;
  overflow: hidden;
  max-height: 300px;
  position: relative;
}


.result .container .result_box .desc::after {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, #F5F5F5 100%);
}

.result .container .result_box .desc p {
  font-family: lexendDeca !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #000000 !important;
  line-height: 24px !important;
  margin-bottom: 16px !important;
}

.result .container .result_box .desc h2,
.result .container .result_box .desc h3,
.result .container .result_box .desc h4,
.result .container .result_box .desc h5,
.result .container .result_box .desc h6,
.result .container .result_box .desc h1 {
  font-family: lexendDeca !important;
  font-weight: bold !important;
  font-size: 18px !important;
  color: #000000 !important;
  line-height: 26px !important;
}

.result .container .result_box .see_more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto;
  width: 200px;
  height: 48px;
  background: #D7282F;
  font-size: 16px;
  color: #FFFFFF;
  border-radius: 24px;
  transition: all 0.3s;
  font-weight: bold;
}

.result .container .result_box .see_more:hover {
  text-decoration: underline;
  filter: brightness(1.1);
}

.result .container .result_box.active .desc {
  max-height: initial;
}

.result .container .result_box.active .see_more {
  display: none;
}

/* PC 端样式 */
@media screen and (min-width: 1025px) {
  .result .container .result_box.special-box:not(.active) .desc {
    max-height: 450px;
  }
}


@media (max-width: 1024px) {
  .result .container .result_box h1 span {
    font-size: 24px;
    line-height: 32px;
    padding: 24px 20px;
  }


  .result .container .result_box .desc {
    padding: 24px;
    max-height: 550px;
  }
}

.them_head {
  margin-top: 24px;
}

.them_head .container .them_main {
  background: #F5F5F5;
  border-radius: 16px;
  overflow: hidden;
}

.them_head .container .them_main .thum_info {
  background-repeat: repeat-x;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 16px 16px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.them_head .container .them_main .thum_info .thum {
  width: 60%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.them_head .container .them_main .thum_info .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.them_head .container .them_main .thum_info .dl {
  position: relative;
  z-index: 2;
  width: 50%;
}

.them_head .container .them_main .thum_info .dl::before {
  position: absolute;
  content: "";
  display: block;
  width: 150%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(215, 40, 47, 0.9);
  transform: skewX(-10deg);
}

.them_head .container .them_main .thum_info .dl dl {
  padding: 80px 40px;
  position: relative;
  z-index: 2;
}

.them_head .container .them_main .thum_info .dl dl dt {
  font-weight: bold;
  font-size: 34px;
  color: #FFFFFF;
  line-height: 46px;
  margin-bottom: 12px;
}

.them_head .container .them_main .thum_info .dl dl dd {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 24px;
  font-family: ptserif;
}

.them_head .container .them_main>p {
  font-size: 16px;
  color: #000000;
  line-height: 24px;
  text-align: center;
  padding: 24px;
}

.them_head .container .test_list {
  margin-top: 40px;
}

.them_head .container .test_list form ul li {
  border-bottom: 1px solid #E7E7E7;
}

.them_head .container .test_list form ul li+li {
  margin-top: 40px;
}

.them_head .container .test_list form ul li h2 {
  font-weight: 500;
  font-size: 22px;
  color: #000000;
  line-height: 28px;
  text-align: center;
  opacity: 0.3;
}

.them_head .container .test_list form ul li .answer_box {
  opacity: 0.3;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.them_head .container .test_list form ul li .answer_box::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  content: "";
  display: block;
  height: 100%;
  z-index: 2;
}

.them_head .container .test_list form ul li .answer_box label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 51%;
  overflow: hidden;
  cursor: pointer;
}

.them_head .container .test_list form ul li .answer_box label+label {
  margin-left: 40px;
}

.them_head .container .test_list form ul li .answer_box label input {
  opacity: 0;
}

.them_head .container .test_list form ul li .answer_box label::after {
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../img/v.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  background-size: auto 24px;
}

.them_head .container .test_list form ul li .answer_box label:has(input:checked):nth-child(2) {
  background-color: #34A475;
}

.them_head .container .test_list form ul li .answer_box label:has(input:checked):nth-child(3) {
  background-color: #9B9FAA;
}

.them_head .container .test_list form ul li .answer_box label:has(input:checked):nth-child(4) {
  background-color: #88619A;
}

.them_head .container .test_list form ul li .answer_box label:has(input:checked)::after {
  display: block;
}

.them_head .container .test_list form ul li .answer_box label:nth-child(2),
.them_head .container .test_list form ul li .answer_box label:nth-child(4) {
  width: 56px;
  height: 56px;
}

.them_head .container .test_list form ul li .answer_box label:nth-child(3) {
  width: 40px;
  height: 40px;
  border: 3px solid #9B9FAA;
}

.them_head .container .test_list form ul li .answer_box label:nth-child(3)::after {
  background-size: auto 13px;
}

.them_head .container .test_list form ul li .answer_box label:nth-child(2) {
  border: 3px solid #34A475;
}

.them_head .container .test_list form ul li .answer_box label:nth-child(4) {
  border: 3px solid #88619A;
}

.them_head .container .test_list form ul li .answer_box .agree {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.them_head .container .test_list form ul li .answer_box .agree span {
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  color: #34A475;
  margin-right: 40px;
}

.them_head .container .test_list form ul li .answer_box .agree label {
  width: 72px;
  height: 72px;
  border: 3px solid #34A475;
}

.them_head .container .test_list form ul li .answer_box .agree:has(input:checked) label {
  background-color: #34A475;
}

.them_head .container .test_list form ul li .answer_box .agree:has(input:checked) label::after {
  display: block;
}

.them_head .container .test_list form ul li .answer_box .disagree {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.them_head .container .test_list form ul li .answer_box .disagree span {
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  color: #88619A;
  margin-left: 40px;
}

.them_head .container .test_list form ul li .answer_box .disagree label {
  width: 72px;
  height: 72px;
  border: 3px solid #88619A;
}

.them_head .container .test_list form ul li .answer_box .disagree:has(input:checked) label {
  background-color: #88619A;
}

.them_head .container .test_list form ul li .answer_box .disagree:has(input:checked) label::after {
  display: block;
}

.them_head .container .test_list form ul li.active h2 {
  opacity: 1;
}

.them_head .container .test_list form ul li.active .answer_box {
  opacity: 1;
}

.them_head .container .test_list form ul li.active .answer_box::after {
  display: none;
}

.them_head .container .test_list form .submit {
  width: 200px;
  height: 48px;
  background: #D7282F;
  border-radius: 24px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
  transition: all 0.3s;
  cursor: pointer;
  margin: 40px auto 0;
}

.them_head .container .test_list form .submit:disabled {
  opacity: 0.6;
}

.them_head .container .test_list form .submit:disabled:hover {
  filter: brightness(1);
  text-decoration: none;
}

.them_head .container .test_list form .submit:hover {
  filter: brightness(1.1);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .them_head .container .them_main .thum_info .dl dl {
    padding: 50px 40px;
  }

  .them_head .container .them_main .thum_info .dl dl dt {
    font-size: 24px;
    line-height: 32px;
  }

  .them_head .container .them_main .thum_info .dl dl dd {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 900px) {
  .them_head .container .test_list {
    margin-top: 24px;
  }

  .them_head .container .test_list form ul li+li {
    margin-top: 24px;
  }

  .them_head .container .test_list form ul li h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .them_head .container .test_list form ul li .answer_box {
    padding: 24px 0 56px;
  }

  .them_head .container .test_list form ul li .answer_box .agree {
    position: relative;
  }

  .them_head .container .test_list form ul li .answer_box .agree span {
    font-size: 18px;
    line-height: 24px;
    margin-right: 0;
    position: absolute;
    left: 0;
    bottom: -34px;
  }

  .them_head .container .test_list form ul li .answer_box .disagree {
    position: relative;
  }

  .them_head .container .test_list form ul li .answer_box .disagree span {
    font-size: 18px;
    line-height: 24px;
    margin-left: 0;
    position: absolute;
    right: 0;
    bottom: -34px;
  }

  .them_head .container .test_list form .submit {
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .them_head .container .them_main .thum_info {
    flex-direction: column;
  }

  .them_head .container .them_main .thum_info .thum {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    z-index: 1;
  }

  .them_head .container .them_main .thum_info .dl {
    z-index: 2;
    width: 100%;
    margin-top: -30px;
    left: 0;
    bottom: 0;
  }

  .them_head .container .them_main .thum_info .dl::before {
    transform: skewY(3deg);
    transform-origin: 0 100%;
  }

  .them_head .container .them_main .thum_info .dl dl {
    padding: 30px 24px 24px;
  }

  .them_head .container .them_main>p {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    text-align: center;
    padding: 24px;
  }
}

@media (max-width: 550px) {
  .them_head .container .test_list form ul li .answer_box {
    padding: 24px 0 40px;
    justify-content: space-around;
  }

  .them_head .container .test_list form ul li .answer_box label {
    position: relative;
  }

  .them_head .container .test_list form ul li .answer_box label+label {
    margin-left: 0;
  }

  .them_head .container .test_list form ul li .answer_box label:nth-child(2),
  .them_head .container .test_list form ul li .answer_box label:nth-child(4) {
    width: 48px;
    height: 48px;
  }

  .them_head .container .test_list form ul li .answer_box .agree {
    margin-right: 0;
  }

  .them_head .container .test_list form ul li .answer_box .agree span {
    bottom: -28px;
  }

  .them_head .container .test_list form ul li .answer_box .agree label {
    width: 56px;
    height: 56px;
  }

  .them_head .container .test_list form ul li .answer_box .disagree {
    margin-left: 0;
  }

  .them_head .container .test_list form ul li .answer_box .disagree span {
    bottom: -28px;
  }

  .them_head .container .test_list form ul li .answer_box .disagree label {
    width: 56px;
    height: 56px;
  }
}

/*# sourceMappingURL=main.css.map */