:root {
  --primary: #C03027;
}

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

html {
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
}

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

::-webkit-scrollbar {
  margin-right: 0;
  width: 0px;
  height: 1px;
  overflow: hidden;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: transparent;
}

body {
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-family: Roboto, Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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::after {
  content: "Advertisement";
  font-size: 12px;
  color: #bbbbbb;
  line-height: 14px;
  text-align: center;
  margin-top: 5px;
}


.ad_box>p {
  width: 100%;
  text-align: center;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: capitalize;
}

.container {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

#app {
  width: 100%;
  max-width: 768px;
  min-height: 100%;
  margin-left: auto;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  margin-right: auto;
  background-color: #fff;
  position: relative;
}

#app:has(#category_box.active) {
  overflow-y: hidden;
}

#category_box {
  position: absolute;
  left: 0;
  top: 56px;
  z-index: 9999;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}

#category_box.active {
  display: block;
}

#category_box nav {
  background-color: #fff;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  padding: 4px 16px;
  max-height: 100%;
  overflow-y: scroll;
}

#category_box nav a {
  text-align: center;
  padding: 16px 0;
  color: #333;
  font-weight: 600;
  font-size: 1.2rem;
}

#category_box nav a+a {
  border-top: 1px dotted rgba(11, 11, 11, 0.1);
}

header {
  height: 56px;
  background-color: #000;
}

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

header .container .menu_trigger::before {
  content: "\e60b";
}

header .container .search_trigger::before {
  content: "\ea56";
}

header .container .menu_trigger::before,
header .container .search_trigger::before {
  font-family: iconfont;
  color: #fff;
  font-size: 1.6rem;
}

header .container .menu_trigger.active::before,
header .container .search_trigger.active::before {
  content: "\e629";
}

#seach_box {
  padding-top: 10px;
  display: none;
}

#seach_box.active {
  display: block;
}

#seach_box .container form {
  width: 100%;
  position: relative;
}

#seach_box .container form input {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #0B0B0B;
  padding-right: 40px;
  color: #333;
  font-size: 1.1rem;
}

#seach_box .container form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}

#seach_box .container form button .iconfont {
  font-size: 1.6rem;
  color: #333;
}

.main {
  min-height: calc(100% - 56px - 105px);
  padding: 20px 0 40px;
}

footer {
  background-color: #000;
  padding: 30px 0;
}

footer .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

footer .container p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

footer .container nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer .container nav a {
  text-transform: capitalize;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

footer .container nav a+a {
  display: flex;
  align-items: center;
  gap: 12px;
}

footer .container nav a+a::before {
  content: "";
  width: 2px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.4);
}

.swiper_box {
  margin-bottom: 100px;
  position: relative;
}

.swiper_box .swiper-prev,
.swiper_box .swiper-next {
  display: block;
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px 0px rgba(73, 73, 73, 0.14);
  top: calc(50% - 22px);
  z-index: 1000;
  left: calc(8.3% - 30px);
}

.swiper_box .swiper-prev .iconfont,
.swiper_box .swiper-next .iconfont {
  font-size: 1.4rem;
  font-weight: 600;
}

.swiper_box .swiper-next {
  left: initial;
  right: calc(8.3% - 30px);
}

.swiper_box .swiper-wrapper .swiper-slide {
  position: relative;
}

.swiper_box .swiper-wrapper .swiper-slide .thum {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.swiper_box .swiper-wrapper .swiper-slide .thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.swiper_box .swiper-wrapper .swiper-slide .info {
  background-color: rgba(250, 250, 250, 0.8);
  min-height: 40%;
  border-radius: 8px;
  padding: 16px 16px 24px;
  width: calc(100% - 40px);
  position: absolute;
  left: 20px;
  bottom: -80px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.swiper_box .swiper-wrapper .swiper-slide .info dl {
  width: 100%;
}

.swiper_box .swiper-wrapper .swiper-slide .info dl dt {
  font-size: 1.4rem;
  color: #000;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px;
}

.swiper_box .swiper-wrapper .swiper-slide .info dl dd {
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.1rem;
}

.swiper_box .swiper-wrapper .swiper-slide .info span {
  position: relative;
}

.swiper_box .swiper-wrapper .swiper-slide .info span b {
  display: inline-block;
  /* 让 b 标签可以控制宽度 */
  text-align: center;
  /* 文本居中 */
  position: relative;
  font-size: 1.4rem;
  color: #000;
  padding: 0 8px 4px;
  font-weight: 500;
  z-index: 5;
}

/* 确保父容器 span 居中多行 b 标签 */
.swiper_box .swiper-wrapper .swiper-slide .info span {
  display: flex;
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
  text-align: center;
  /* 兼容多行文本居中 */
  flex-direction: column;
  /* 多行换行时上下排列 */
}

.swiper_box .swiper-wrapper .swiper-slide .info span::before {
  content: "";
  width: 100%;
  height: 8px;
  background-color: #FFE5E5;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  transform: translateY(-50%);
}

.pat {
  margin-bottom: 16px;
}

.pat.hasBj {
  background: #F9F6F1;
  padding: 30px 0 20px;
}

.pat_title_1 {
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 400;
  color: #333;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  position: relative;
  padding-bottom: 8px;
}

.pat_title_1::after {
  content: "";
  position: absolute;
  display: block;
  width: 44px;
  left: calc(50% - 22px);
  background: #D8CBB7;
  bottom: 0;
  height: 2px;
}

.pat_title_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
}

.pat_title_2::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0B0B0B;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.pat_title_2 h2 {
  background-color: var(--primary);
  position: relative;
  z-index: 4;
  padding: 8px 16px;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.4rem;
  transform: skew(-15deg);
}

.pat_title_2 h2 span {
  display: inline-block;
  transform: skew(15deg);
}

.list_1 {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 16px;
}

.list_1 li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(11, 11, 11, 0.2);
}

.list_1 li.ad_box {
  margin-bottom: 0;
}

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

.list_1 li a .thum {
  width: 26%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
}

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

.list_1 li a dl {
  flex: 1;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 4px;
}

.list_1 li a dl dd {
  font-size: 1rem;
  color: rgba(11, 11, 11, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
}

.list_1 li a dl dd span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.list_1 li a dl dd span .iconfont {
  font-size: 1.2rem;
}

.list_1 li a dl dt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #333;
  font-weight: 600;
  font-size: 1.3rem;
}

.list_1.column li a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.list_1.column li a .thum {
  width: 100%;
  aspect-ratio: 16/9;
}

.list_2 {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 16px;
}

.list_2 li.ad_box {
  margin-bottom: 0;
}

.list_2 li a {
  display: block;
  border: 1px solid #0B0B0B;
  padding: 14px;
}

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

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

.list_2 li a dl dt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #333;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-align: center;
}

.list_2 li a dl dd {
  text-transform: uppercase;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
}

.list_2.no_border li a {
  display: block;
  border: none;
  padding: 0;
}

.list_2.no_border li a dl dd {
  background-color: var(--primary);
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
  padding: 10px;
}

.list_3 {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 16px;
}

.list_3 li a {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 14px;
}

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

.list_3 li a .thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.list_3 li a dl {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.list_3 li a dl dt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #333;
  font-weight: 600;
  font-size: 1.3rem;
}

.list_3 li a dl dd.desc {
  font-size: 1rem;
  color: #999;
}

.list_3 li a dl dd.category {
  display: inline-flex;
  background-color: var(--primary);
  color: #fff;
  text-transform: capitalize;
  font-size: 1.1rem;
  padding: 4px 12px;
}

.list_3 li a dl dd.view {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.list_3 li a dl dd.view .view_num {
  display: flex;
  align-items: center;
  color: #666;
  gap: 6px;
}

.list_3 li a dl dd.view .view_num .iconfont {
  margin-top: 2px;
}

.list_3 li a dl dd.view .view_btn {
  text-transform: uppercase;
  font-size: 1rem;
  border: 1px solid rgba(11, 11, 11, 0.2);
  padding: 10px 12px;
}

.list_3.has_shadow li a {
  border: none;
  box-shadow: 0px 4px 11px -3px #E0E0E0;
}

.list_4 {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 16px;
}

.list_4 li.ad_box {
  margin-bottom: 0;
}

.list_4 li a {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.list_4 li a .thum {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.list_4 li a .thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.list_4 li a dl {
  position: absolute;
  z-index: 1;
}

.list_4.has_shadow li a {
  border: none;
  box-shadow: 0px 4px 11px -3px #E0E0E0;
}

.list_5 {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4px;
}

.list_5 li {
  width: calc(50% - 2px);
}

.list_5 li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  background-color: rgb(245, 245, 243);
}

.list_5 li a .thum {
  width: 100%;
  flex: 1;
  min-height: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_5 li a .thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.list_5 li a h3 {
  margin-top: auto;
  color: #333;
  font-size: 1.2rem;
  padding-bottom: 10px;
  position: relative;
}

.list_5 li a h3::after {
  content: "";
  display: block;
  width: calc(100% - 10px);
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 5px;
  bottom: 0;
}

.list_5.has_shadow li a {
  border: none;
  box-shadow: 0px 4px 11px -3px #E0E0E0;
}

.list_6 {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 16px;
}

.list_6 li a {
  display: block;
  position: relative;
}

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

.list_6 li a .thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.list_6 li a dl {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  padding: 8px;
  left: 10px;
  bottom: 10px;
  background-color: rgba(11, 11, 11, 0.5);
  width: calc(100% - 20px);
}

.list_6 li a dl dt {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-size: 1.2rem;
}

.list_6 li a dl dd {
  display: inline-flex;
  background-color: var(--primary);
  color: #fff;
  text-transform: capitalize;
  font-size: 1.1rem;
  padding: 2px 12px;
}

.list_6.has_shadow li a {
  border: none;
  box-shadow: 0px 4px 11px -3px #E0E0E0;
}

.more_box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more_box .load_more {
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1;
}

.no_res {
  padding: 20px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.no_res p {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  text-align: center;
  padding: 0 20px;
}

.no_res p span {
  color: var(--primary);
}

.no_res .back_home {
  display: inline-block;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1;
}

.privacy {
  padding: 0 16px;
}

.privacy h1 {
  text-align: center;
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 14px;
}

.privacy .mainBox h2,
.privacy .mainBox h3,
.privacy .mainBox h4,
.privacy .mainBox h5 {
  font-size: 1.2em;
  color: #000;
  margin-bottom: 15px;
}

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

.category_box .category_title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.article .container h1 {
  border-bottom: 1px solid #0B0B0B;
  padding-bottom: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
}

.article .container .date_share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.article .container .date_share time {
  font-size: 1rem;
  color: #999;
}

.article .container .article_main {
  margin-bottom: 20px;
}

.article .container .article_main img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin-bottom: 14px !important;
}

.article .container .article_main p {
  margin-bottom: 20px !important;
  font-family: "constomFont" !important;
  font-size: 1.2rem !important;
  color: #333 !important;
  line-height: 1.4 !important;
}

.article .container .article_main p span {
  font-family: "constomFont" !important;
  font-size: 1.2rem !important;
  color: #333 !important;
  line-height: 1.4 !important;
}

.article .container .article_main h3 span {
  font-family: "constomFont" !important;
  font-size: 1.2rem !important;
  color: #333 !important;
  line-height: 1.4 !important;
}

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