:root {
  --primary-color: #ffc702;
}

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

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

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

body {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: lexendDeca;
  background-color: #fdfbf5;
  font-size: 16px;
  line-height: 1.5;
}

body:has(#search_box.active) header .container .left .search_trigger::before {
  content: "\e811";
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

input {
  border: none;
  outline: none;
}

.ad_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 15px;
}

.ad_box:not(:empty)::after {
  content: "Advertisement";
  font-size: 12px;
  color: #bbbbbb;
  line-height: 14px;
  text-align: center;
  margin-top: 5px;
}

.container {
  padding-left: 56px;
  padding-right: 56px;
}

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

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

header {
  padding-top: 20px;
  margin-bottom: 20px;
}

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

header .container .left {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  margin-right: 100px;
  height: 60px;
  padding: 0 40px;
  border-radius: 40px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

header .container .left .menu_trigger {
  color: #2a2a2a;
  margin-right: 20px;
  font-weight: 600;
}

header .container .left .branch {
  margin-right: 40px;
}

header .container .left nav {
  height: 100%;
  overflow-y: hidden;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px 30px;
  grid-auto-flow: row dense;
}

header .container .left nav a {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #2a2a2a;
}

header .container .left nav a:hover {
  text-decoration: underline;
}

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

header .container .search_box .search_form_main form {
  position: relative;
}

header .container .search_box .search_form_main form input {
  width: 360px;
  height: 54px;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 60px;
  text-indent: 1em;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

header .container .search_box .search_form_main form button {
  position: absolute;
  padding: 0 20px;
  height: 40px;
  background-color: var(--primary-color);
  cursor: pointer;
  border-radius: 40px;
  right: 7px;
  top: 7px;
  color: #2a2a2a;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  outline: none;
  font-weight: 600;
  transition: all 0.3s;
}

header .container .search_box .search_form_main form button .iconfont {
  margin-right: 6px;
}

header .container .search_box .search_form_main form button:hover {
  filter: brightness(1.1);
}

@media screen and (max-width: 1200px) {
  header {
    padding-top: 10px;
  }

  header .container .left {
    margin-right: 60px;
    height: 54px;
    padding: 0 20px;
  }

  header .container .left .menu_trigger {
    margin-right: 14px;
  }

  header .container .left .branch {
    margin-right: 30px;
  }

  header .container .left nav {
    gap: 10px 16px;
  }

  header .container .search_box .search_form_main form input {
    width: 260px;
  }

  header .container .search_box .search_form_main form button {
    padding: 0 20px;
    height: 40px;
  }

  header .container .search_box .search_form_main form button span {
    display: none;
  }

  header .container .search_box .search_form_main form button .iconfont {
    margin-right: 0;
  }
}

@media screen and (max-width: 900px) {
  header {
    padding-top: 0;
  }

  header .container {
    padding-left: 0;
    padding-right: 0;
  }

  header .container .left {
    justify-content: space-between;
    margin-right: 0;
    height: 56px;
    padding: 0 16px;
    border-radius: 0;
  }

  header .container .left .menu_trigger {
    margin-right: 0;
  }

  header .container .left .menu_trigger .iconfont {
    font-size: 1.2rem;
  }

  header .container .left .branch {
    margin-right: 0;
  }

  header .container .left .branch img {
    height: 36px;
  }

  header .container .left nav {
    display: none;
  }

  header .container .left .search_trigger {
    display: block;
  }

  header .container .left .search_trigger::before {
    content: "\e63e";
    font-family: "iconfont";
    font-size: 1.3rem;
    color: #2a2a2a;
    font-weight: 600;
  }

  header .container .search_box {
    display: none;
  }

  header .container .search_box.active {
    display: block;
    position: fixed;
    top: 56px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  header .container .search_box.active .search_form_main {
    background-color: #fff;
    padding: 20px;
  }

  header .container .search_box.active .search_form_main form input {
    width: 100%;
  }
}

#menu_mask {
  position: fixed;
  height: 100%;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: none;
}

#menu_mask.active {
  display: block;
}

#menu_mask .nav_main {
  background-color: #000;
  width: 320px;
  height: 100%;
  padding-top: 60px;
  position: absolute;
}

#menu_mask .nav_main .close {
  position: absolute;
  color: #fff;
  right: 20px;
  top: 20px;
}

#menu_mask .nav_main .close .iconfont {
  font-size: 20px;
}

#menu_mask .nav_main nav {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  height: calc(100% - 20px);
  overflow-y: scroll;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#menu_mask .nav_main nav::-webkit-scrollbar {
  margin-right: 10px;
  width: 0px;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}

#menu_mask .nav_main nav::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: transparent;
}

#menu_mask .nav_main nav a {
  text-align: center;
  padding: 16px 10px;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#menu_mask .nav_main nav a:hover {
  color: #fff;
}

@media screen and (max-width: 600px) {
  #menu_mask .nav_main {
    width: 100%;
  }
}

footer {
  background-color: #2a2a2a;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 60px 0;
}

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

footer nav a {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

footer nav a+a {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

footer nav a+a::before {
  content: "";
  width: 2px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 10px;
}

footer nav a:hover {
  color: #fff;
}

footer p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

#app {
  flex: 1;
  min-height: 0px;
  height: 100%;
  padding-bottom: 60px;
}

#app::-webkit-scrollbar {
  margin-right: 10px;
  width: 0px;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}

#app::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: transparent;
}

.primary_box h1 {
  font-weight: 900;
  font-size: 18px;
  color: #333;
  line-height: 20px;
  margin-bottom: 12px;
}

.primary_box .mainBox h2 {
  font-weight: 600;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 20px;
  margin-top: 12px;
}

.primary_box .mainBox p {
  font-size: 14px;
  color: #666;
  line-height: 21px;
  margin-top: 12px;
}

.not_found {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding-top: 100px;
}

.not_found img {
  width: calc(100% - 80px);
  max-width: 400px;
  margin-bottom: 20px;
}

.not_found h1 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.not_found p {
  font-size: 14px;
  color: #666;
  text-align: center;
}

.general {
  margin-bottom: 20px;
}

.general_guide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.general_guide .general_title {
  font-size: 24px;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  padding-left: 12px;
}

.general_guide .general_title::before {
  content: "";
  width: 4px;
  height: 24px;
  background: #2a2a2a;
  margin-right: 8px;
}

.between_ {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  container: item-box/inline-size;
  gap: 0 20px;
}

.between_ .betwee_aside1 {
  width: 300px;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px 0;
}

.between_ .betwee_aside1> :last-child {
  position: sticky;
  top: 20px;
}

.between_ .betwee_aside2 {
  width: 300px;
  background-color: #fff;
  position: relative;
  border-radius: 16px;
  padding: 24px 0;
}

.between_ .betwee_aside2> :last-child {
  position: sticky;
  top: 20px;
}

.between_ .between_main {
  flex: 1;
  min-width: 0;
}

@media screen and (max-width: 1479px) {
  .between_ {
    flex-wrap: wrap;
  }

  .between_ .betwee_aside2 {
    width: 100%;
    order: 3;
    padding-left: 24px;
    padding-right: 24px;
  }

  .between_ .betwee_aside2> :last-child {
    position: initial;
  }
}

@media screen and (max-width: 1095px) {
  .between_ .betwee_aside2 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .between_ .betwee_aside1 {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    order: 2;
  }

  .between_ .betwee_aside1> :last-child {
    position: initial;
  }
}

.list_style_1 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.list_style_1 li {
  width: 100%;
}

.list_style_1 li a {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.list_style_1 li a img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.list_style_1 li a dl {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(2, 1, 1, 0) 0%, rgba(0, 0, 0, 0.81) 100%);
  padding: 40px 20px 20px;
}

.list_style_1 li a dl dd {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list_style_1 li a dl dd:nth-child(1) {
  text-transform: uppercase;
}

.list_style_1 li a dl dd:nth-child(3) {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
}

.list_style_1 li a dl dd:nth-child(3) .iconfont {
  margin-right: 6px;
}

.list_style_1 li a dl dt {
  margin-top: 10px;
  color: #fff;
  line-height: 1.5;
}

.list_style_1 li a dl dt .iconfont {
  border-radius: 50%;
  background-color: #ffc702;
  padding: 4px;
  line-height: 12px;
  font-size: 8px;
  color: #000;
  margin-left: 5px;
}

.list_style_1 li a:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.list_style_1 li a:hover dl dt {
  text-decoration: underline;
}

@container item-box (max-width: 1047px) {
  .list_style_1 {
    justify-content: space-between;
  }

  .list_style_1 li {
    width: calc((100% - 60px) / 4);
  }
}

@container item-box (max-width: 750px) {
  .list_style_1 li {
    width: calc(50% - 10px);
  }
}

@container item-box (max-width: 480px) {
  .list_style_1 li {
    width: 100%;
  }
}

.list_style_2 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.list_style_2 li {
  width: 100%;
}

.list_style_2 li a {
  display: flex;
  align-items: center;
  background-color: #f6f6f6;
  width: 100%;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}

.list_style_2 li a .thum {
  width: 120px;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
}

.list_style_2 li a .thum img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.list_style_2 li a dl {
  flex: 1;
  min-width: 0;
  padding: 0 15px;
}

.list_style_2 li a dl dd {
  width: 100%;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list_style_2 li a dl dd .country {
  color: #0f49a2;
}

.list_style_2 li a dl dd:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.list_style_2 li a dl dd:nth-child(3) .view {
  display: flex;
  align-items: center;
  color: #999;
}

.list_style_2 li a dl dd:nth-child(3) .view .iconfont {
  margin-right: 6px;
}

.list_style_2 li a dl dd:nth-child(3) .more {
  width: 60px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #333;
  transition: all 0.3s;
}

.list_style_2 li a dl dd:nth-child(3) .more:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.list_style_2 li a dl dt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 6px;
  color: #333;
}

.list_style_2 li a:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.list_style_2 li a:hover dl dt {
  text-decoration: underline;
}

.list_style_3 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.list_style_3 li {
  width: 100%;
  border-top: 1px dotted #0a0602;
  padding-top: 14px;
}

.list_style_3 li a {
  display: block;
  width: 100%;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}

.list_style_3 li a .thum {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.list_style_3 li a .thum img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.list_style_3 li a p {
  font-size: 14px;
  color: #333;
}

.list_style_3 li a:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.list_style_3 li a:hover p {
  text-decoration: underline;
}

@container item-box (max-width: 1367px) {
  .list_style_3 {
    align-items: stretch;
    justify-content: space-between;
  }

  .list_style_3 li {
    width: calc((100% - 60px) / 4);
  }
}

@container item-box (max-width: 750px) {
  .list_style_3 li {
    width: calc(50% - 10px);
  }
}

@container item-box (max-width: 480px) {
  .list_style_3 li {
    width: 100%;
  }
}

.list_style_4 li {
  width: 100%;
}

.list_style_4 li+li {
  margin-top: 20px;
}

.list_style_4 li a {
  display: flex;
  width: 100%;
  align-items: stretch;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.list_style_4 li a .thum {
  width: 44%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
}

.list_style_4 li a .thum img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.list_style_4 li a>dl {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  position: relative;
}

.list_style_4 li a>dl::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 180px;
  height: 3px;
}

.list_style_4 li a>dl>dt {
  font-size: 20px;
  color: #2a2a2a;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.list_style_4 li a>dl>dd {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 10px;
  margin-top: auto;
  display: flex;
  align-items: center;
}

.list_style_4 li a>dl>dd .user_thum {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  overflow: hidden;
  margin-right: 10px;
}

.list_style_4 li a>dl>dd .user_thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.list_style_4 li a>dl>dd dl {
  flex: 1;
  min-width: 0;
}

.list_style_4 li a>dl>dd dl dt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333333;
}

.list_style_4 li a>dl>dd dl dd {
  display: flex;
  align-items: center;
}

.list_style_4 li a>dl>dd dl dd .date {
  font-size: 14px;
  color: #333333;
  margin-right: 20px;
}

.list_style_4 li a>dl>dd dl dd .view {
  font-size: 14px;
  color: #333333;
  display: flex;
  align-items: center;
}

.list_style_4 li a>dl>dd dl dd .view .iconfont {
  margin-right: 6px;
}

.list_style_4 li:nth-child(4n+1) a>dl::before {
  background-color: #ffc702;
}

.list_style_4 li:nth-child(4n+2) a>dl::before {
  background-color: #02a8ff;
}

.list_style_4 li:nth-child(4n+3) a>dl::before {
  background-color: #ff0202;
}

.list_style_4 li:nth-child(4n) a>dl::before {
  background-color: #0255ff;
}

@container item-box (max-width: 750px) {
  .list_style_4 li a .thum {
    width: 240px;
  }

  .list_style_4 li a>dl {
    padding: 12px;
  }
}

@container item-box (max-width: 590px) {
  .list_style_4 li a {
    flex-direction: column-reverse;
  }

  .list_style_4 li a .thum {
    width: 100%;
  }

  .list_style_4 li a>dl {
    padding: 12px;
  }

  .list_style_4 li a>dl>dt {
    margin-bottom: 20px;
  }
}

.list_style_5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}

.list_style_5 li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.list_style_5 li a::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  left: 20px;
  bottom: 0;
}

.list_style_5 li a .thum {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.list_style_5 li a .thum img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.list_style_5 li a .thum::after {
  content: "\e6b6";
  font-family: iconfont;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 20px;
}

.list_style_5 li a dl {
  border-top: 4px solid var(--primary-color);
}

.list_style_5 li a dl dd:nth-child(1) {
  height: 42px;
  background: #303030;
  color: #fff;
  line-height: 42px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 20px;
}

.list_style_5 li a dl dt {
  padding: 0 20px;
  font-size: 16px;
  color: #2a2a2a;
  margin-top: 6px;
}

.list_style_5 li a dl dd:nth-child(3) {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
  padding: 0 20px;
  margin-top: 6px;
  font-size: 14px;
  color: #2a2a2a;
}

.list_style_5 li a:hover .thum img {
  transform: scale(1.05);
}

.list_style_5 li a:hover dl dt {
  text-decoration: underline;
}

@media screen and (max-width: 750px) {
  .list_style_5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 750px) {
  .list_style_5 {
    grid-template-columns: 1fr;
  }
}

.between_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  container: bet_box/inline-size;
}

.between_box .between_box_item {
  width: calc(50% - 10px);
  border: 1px solid rgba(42, 42, 42, 0.2);
  border-radius: 0 0 16px 16px;
  padding: 20px;
}

.between_box .between_box_item h2 {
  font-size: 24px;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.between_box .between_box_item:nth-child(1) {
  border-top: 6px solid #15599d;
}

.between_box .between_box_item:nth-child(2) {
  border-top: 6px solid #01794a;
}

@container bet_box (max-width: 950px) {
  .between_box .between_box_item {
    width: 100%;
  }

  .between_box .between_box_item:nth-child(1) {
    margin-bottom: 20px;
  }
}

.list_style_6 {
  counter-reset: item;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 24px;
}

.list_style_6 li {
  display: flex;
  align-items: flex-start;
  counter-increment: item;
}

/* 只在 PC 端生效 */
@media screen and (min-width: 1024px) {
  .list_style_6 li {
    height: 100px;
  }
}

.list_style_6 li::before {
  content: counter(item);
  margin-right: 20px;
  font-size: 18px;
  color: #2a2a2a;
}

.list_style_6 li a {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list_style_6 li a>span {
  border-bottom: 1px dotted var(--primary-color);
  padding-bottom: 20px;
  font-size: 16px;
  color: var(--primary-color);
}

.list_style_6 li a>span:hover {
  text-decoration: underline;
}

.list_style_6 li a .hot {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-left: 20px;
}

.list_style_6 li a .hot .iconfont {
  font-size: 20px;
  color: var(--primary-color);
}

.list_style_6 li a .hot span {
  font-size: 12px;
  color: #2a2a2a;
}

.list_style_7 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px 20px;
}

.list_style_7 li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.list_style_7 li a::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  left: 20px;
  bottom: 0;
}

.list_style_7 li a .thum {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.list_style_7 li a .thum img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.list_style_7 li a .thum::after {
  content: "\e6b6";
  font-family: iconfont;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 20px;
}

.list_style_7 li a dl {
  border-top: 4px solid var(--primary-color);
}

.list_style_7 li a dl dd:nth-child(1) {
  height: 42px;
  background: #303030;
  color: #fff;
  line-height: 42px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 20px;
}

.list_style_7 li a dl dt {
  padding: 0 20px;
  font-size: 16px;
  color: #2a2a2a;
  margin-top: 6px;
}

.list_style_7 li a dl dd:nth-child(3) {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
  padding: 0 20px;
  margin-top: 6px;
  font-size: 14px;
  color: #2a2a2a;
}

.list_style_7 li a:hover .thum img {
  transform: scale(1.05);
}

.list_style_7 li a:hover dl dt {
  text-decoration: underline;
}

@media screen and (max-width: 750px) {
  .list_style_7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 750px) {
  .list_style_7 {
    grid-template-columns: 1fr;
  }
}

.swiper_box li a {
  display: flex;
  width: 100%;
  align-items: stretch;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.swiper_box li a .thum {
  width: 44%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
}

.swiper_box li a .thum img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.swiper_box li a>dl {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  position: relative;
}

.swiper_box li a>dl::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 180px;
  height: 3px;
}

.swiper_box li a>dl>dt {
  font-size: 20px;
  color: #2a2a2a;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.swiper_box li a>dl>dd {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 10px;
  margin-top: auto;
  display: flex;
  align-items: center;
}

.swiper_box li a>dl>dd .user_thum {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  overflow: hidden;
  margin-right: 10px;
}

.swiper_box li a>dl>dd .user_thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.swiper_box li a>dl>dd dl {
  flex: 1;
  min-width: 0;
}

.swiper_box li a>dl>dd dl dt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333333;
}

.swiper_box li a>dl>dd dl dd {
  display: flex;
  align-items: center;
}

.swiper_box li a>dl>dd dl dd .date {
  font-size: 14px;
  color: #333333;
  margin-right: 20px;
}

.swiper_box li a>dl>dd dl dd .view {
  font-size: 14px;
  color: #333333;
  display: flex;
  align-items: center;
}

.swiper_box li a>dl>dd dl dd .view .iconfont {
  margin-right: 6px;
}

.swiper_box li:nth-child(4n+1) a>dl::before {
  background-color: #ffc702;
}

.swiper_box li:nth-child(4n+2) a>dl::before {
  background-color: #02a8ff;
}

.swiper_box li:nth-child(4n+3) a>dl::before {
  background-color: #ff0202;
}

.swiper_box li:nth-child(4n) a>dl::before {
  background-color: #0255ff;
}

.swiper_box .toggle_btn {
  display: block;
  width: 24px;
  height: 48px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 600;
  transition: all 0.3s;
  position: absolute;
  z-index: 999;
  top: calc(50% - 24px);
  opacity: 0.6;
}

.swiper_box .toggle_btn.prev {
  left: 2px;
  transform: rotateZ(180deg);
}

.swiper_box .toggle_btn.next {
  left: calc(44% - 26px);
}

@container item-box (max-width: 750px) {
  .swiper_box .toggle_btn.next {
    left: 214px;
  }
}

@container item-box (max-width: 590px) {
  .swiper_box .toggle_btn {
    top: initial;
    width: 48px;
    bottom: 27%;
  }

  .swiper_box .toggle_btn.prev {
    left: 6px;
  }

  .swiper_box .toggle_btn.next {
    left: initial;
    right: 6px;
  }
}

.swiper_box:hover .toggle_btn {
  opacity: 1;
}

.swiper_box .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  background: #2a2a2a;
  border-radius: 10px;
  padding: 2px 12px;
  left: 22%;
  transform: translateX(-50%);
  bottom: 15px;
}

.swiper_box .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.27);
}

.swiper_box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
  width: 14px;
  border-radius: 5px;
}

@container item-box (max-width: 750px) {
  .swiper_box .swiper-pagination {
    display: none;
  }
}

@container item-box (max-width: 750px) {
  .swiper_box li a .thum {
    width: 240px;
  }

  .swiper_box li a>dl {
    padding: 12px;
  }
}

@container item-box (max-width: 590px) {
  .swiper_box li a {
    flex-direction: column-reverse;
  }

  .swiper_box li a .thum {
    width: 100%;
  }

  .swiper_box li a>dl {
    padding: 12px;
  }

  .swiper_box li a>dl>dt {
    margin-bottom: 20px;
  }
}

.loadMore {
  width: 240px;
  height: 48px;
  background-color: #000;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  text-align: center;
  line-height: 48px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}

.loadMore:hover {
  filter: brightness(1.1);
}

.no_result {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 30px;
}

.no_result img {
  width: calc(100% - 60px);
  max-width: 400px;
  margin-bottom: 20px;
}

.no_result dl dt {
  text-align: center;
  color: #333;
  margin-bottom: 6px;
  font-size: 16px;
}

.no_result dl dd {
  font-size: 14px;
  color: #2a2a2a;
  text-align: center;
}

.detail_main {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
}

.detail_main h1 {
  font-weight: bold;
  font-size: 28px;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.detail_main .author_shared {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dotted #979797;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.detail_main .author_shared .author {
  display: flex;
  align-items: center;
}

.detail_main .author_shared .author .user_thum {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  overflow: hidden;
  margin-right: 10px;
}

.detail_main .author_shared .author .user_thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.detail_main .author_shared .author dl {
  flex: 1;
  min-width: 0;
}

.detail_main .author_shared .author dl dt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333333;
}

.detail_main .author_shared .author dl dd {
  display: flex;
  align-items: center;
}

.detail_main .author_shared .author dl dd .date {
  font-size: 14px;
  color: #333333;
  margin-right: 20px;
}

.detail_main .author_shared .author dl dd .view {
  font-size: 14px;
  color: #333333;
  display: flex;
  align-items: center;
}

.detail_main .author_shared .author dl dd .view .iconfont {
  margin-right: 6px;
}

.detail_main .detail_article_box {
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #2a2a2a !important;
  line-height: 1.8 !important;
}

.detail_main .detail_article_box p {
  font-weight: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
}

.detail_main .detail_article_box img {
  display: block !important;
  max-width: 100% !important;
  border-radius: 16px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.detail_main .detail_article_box>*+* {
  margin-top: 20px !important;
}

@media screen and (max-width: 660px) {
  .detail_main .author_shared {
    flex-direction: column-reverse;
  }

  .detail_main .author_shared .author {
    margin-top: 10px;
    align-self: flex-start;
  }
}

.index_bottom {
  background-color: var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 30px;
}

.index_bottom .index_bottom_main {
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
}

.index_bottom .index_bottom_main dl {
  padding-left: 30px;
}

.index_bottom .index_bottom_main dl dd {
  font-size: 16px;
  color: #ffffff;
}

.index_bottom .index_bottom_main dl dt {
  font-size: 24px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 6px;
}

@media screen and (max-width: 880px) {
  .index_bottom .index_bottom_main {
    flex-direction: column;
  }

  .index_bottom .index_bottom_main dl {
    text-align: center;
    padding-left: 0;
    margin-top: 20px;
  }
}

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