@charset "UTF-8";
/* 确保主要内容在遮罩层上方 */
body > * {
  position: relative;
  z-index: 1;
}

/* 页面背景为白色 */
body {
  background-color: #fff;
}

.main-content {
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  color: #333; /* 深色标题 */
}

a {
  color: #333; /* 深色链接 */
  text-decoration: none;
}

a:hover {
  color: #6c5ce7;
  text-decoration: none;
}

/* 英雄横幅区域 */
.hero-banner {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("${files}/img/mannvshen2.jpg") center/cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 300px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #6c5ce7;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-search {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.hero-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-search-select {
  background: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
  border-radius: 50px 0 0 50px;
  cursor: pointer;
  outline: none;
  border-right: 1px solid #e0e0e0;
}

.hero-search input {
  background: transparent;
  border: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  outline: none;
}

.hero-search button {
  background: #6c5ce7;
  border: none;
  padding: 15px 30px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.hero-search button:hover {
  background: #6c5ce7;
}

.hero-search input:focus {
  outline: none;
}

/* 广告横幅区 */
.promo-banners {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.promo-banner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.promo-banner:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  text-decoration: none;
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(transparent));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.promo-banner-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-banner-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.promo-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.promo-badge-red {
  background: #f44336;
}

.promo-badge-blue {
  background: #2196F3;
}

.promo-badge-yellow {
  background: #FFC107;
  color: #333;
}

/* 功能/筛选标签区 */
.filter-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin: 30px 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.filter-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  width: 100%;
  height: 60px;
}

.filter-tab:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #6c5ce7;
}

.filter-tab > a {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.filter-tab-icon {
  font-size: 1.5rem;
  color: #333;
}

.filter-tab-text {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

/* 顶部文章列表 - 大卡片 */
.featured-articles {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.featured-articles .item-first {
  grid-column: 1/5;
  grid-row: 1/3;
}

.featured-articles .item-0 {
  grid-column: 5/7;
}

.featured-articles .item-1 {
  grid-column: 7/9;
}

.featured-articles .item-2 {
  grid-column: 5/7;
  grid-row: 2;
}

.featured-articles .item-3 {
  grid-column: 7/9;
  grid-row: 2;
}

.featured-article-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
  position: relative;
}

.featured-article-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.featured-article-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-article-content {
  bottom: 0;
  left: 10px;
  right: 10px;
  padding: 10px;
  position: absolute;
}

.featured-article-tag {
  display: inline-block;
  background: #6c5ce7;
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.featured-article-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 10px;
  line-height: 1.4;
}

.featured-article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  color: #ffffff;
}

/* 主文章列表区 - 每行4个 */
.article-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.article-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
}

.article-card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-image {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-content {
  padding: 15px;
}

.article-tag {
  display: inline-block;
  background: #6c5ce7;
  color: #fff;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  margin-bottom: 8px;
}

.article-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-title a {
  color: #333;
}

.article-title a:hover {
  color: #6c5ce7;
}

.article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.75rem;
  color: #999;
  margin-top: 10px;
}

.featured-article-title a {
  color: #ffffff !important;
}

.featured-article-title a:hover {
  color: #6c5ce7;
}

.article-views {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

/* 加载更多按钮 */
.load-more-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 40px auto;
  padding: 15px 30px;
  background: #6c5ce7;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
          box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.load-more-btn:hover {
  background: #6c5ce7;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(75, 33, 243, 0.4);
          box-shadow: 0 6px 20px rgba(75, 53, 243, 0.4);
}

/* 文章区域标题 */
.article-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 40px 0 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #6c5ce7;
}

.carousel {
  overflow: hidden;
  border-radius: 20px;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.2);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.2);
  position: relative;
  background: #2d2d2d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.carousel:hover {
  -webkit-box-shadow: 0 12px 40px rgba(70, 53, 255, 0.4), 0 0 0 1px rgba(70, 53, 255, 0.4);
          box-shadow: 0 12px 40px rgba(70, 53, 255, 0.4), 0 0 0 1px rgba(70, 53, 255, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.carousel-inner {
  border-radius: 20px;
}

.carousel-item {
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.carousel-item img {
  width: auto;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.carousel:hover .carousel-item img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.blockImg {
  border-radius: 0.5rem;
}

.carousel-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.95)), color-stop(50%, rgba(0, 0, 0, 0.7)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  color: #FFFFFF;
  width: 100%;
  padding: 30px 25px 20px;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 20px 20px;
  text-align: left;
}

.carousel-caption p {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  color: #ffffff;
  line-height: 1.4;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.carousel-item:hover .carousel-caption p {
  color: #6c5ce7;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* 轮播指示器美化 */
.carousel-indicators {
  margin-bottom: 20px;
  z-index: 10;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  margin: 0 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-indicators li:hover {
  background-color: rgba(255, 107, 53, 0.6);
  border-color: #6c5ce7;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.carousel-indicators li.active {
  background-color: #6c5ce7;
  border-color: #6c5ce7;
  width: 30px;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
          box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

/* 轮播控制按钮美化 */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(130, 53, 255, 0.8);
  border-radius: 50%;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgb(130, 53, 255);
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
  -webkit-box-shadow: 0 4px 15px rgba(130, 53, 255, 0.5);
          box-shadow: 0 4px 15px rgba(130, 53, 255, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/* 轮播图容器包装 */
.carousel-wrapper {
  position: relative;
  /* margin-bottom: 30px; */
}

.carousel-wrapper::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #6c5ce7, #6c6ce7);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.3;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.list-unstyled {
  background-color: #2d2d2d;
  border-radius: 15px;
  overflow-y: scroll;
  padding: 15px;
}

/* 侧边栏样式 */
.sidebar-block {
  background: #2d2d2d;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sidebar-block h4 {
  color: #6c5ce7;
  font-size: 1.2rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #6c5ce7;
}

.sidebar-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-block ul li {
  padding: 8px 0;
  border-bottom: 1px solid #3d3d3d;
}

.sidebar-block ul li:last-child {
  border-bottom: none;
}

.sidebar-block ul li a {
  color: #ffffff;
  font-size: 0.95rem;
}

.sidebar-block ul li a:hover {
  color: #6c5ce7;
}

/* 标签样式 */
.tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag-item {
  background: #3d3d3d;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.tag-item:hover {
  background: #6c5ce7;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* 内容区域标题 */
.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #6c5ce7;
}

.section-number {
  font-size: 4rem;
  font-weight: 900;
  color: #6c5ce7;
  margin-right: 20px;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.section-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-left: auto;
}

.section-tab {
  padding: 8px 20px;
  background: #3d3d3d;
  color: #ffffff;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.section-tab:hover,
.section-tab.active {
  background: #6c5ce7;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/*测评分类   👇*/
.gapSet {
  gap: 12px 0;
}

.testPart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 5px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.testPart:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.testImg {
  width: 100%;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.testText {
  color: #fff;
  text-shadow: black 0.2em 0.2em 0.2em;
  margin: -2rem;
  font-weight: 700;
  font-size: 18px;
}

.lineSet {
  background-color: #3d3d3d;
  height: 2px;
  width: 98%;
}

.textHeaderPart {
  font-size: 18px;
  color: #ffffff;
  font-weight: 450;
  margin-top: 1rem;
}

/*测评分类   👆*/
/*精选爆款测评     👇  */
.hotStyleMarginTop2 {
  margin-top: 65px;
}

.hotStylePart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3px 10px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.hotStylePart:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.hotStyleImg {
  width: 377.5px;
  border-radius: 15px 15px 0 0;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hotStyleBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hotStylePic {
  width: 30px;
  height: 30px;
  border-radius: 20px;
}

.hotStyleB {
  background-color: #2d2d2d;
  padding: 15px;
  border-radius: 0 0 15px 15px;
  width: 100%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hotStyleB p {
  margin-bottom: 8px;
}

.hotStyleB a {
  color: #ffffff;
}

.hotStyleB a:hover {
  color: #6c5ce7;
}

.fontSize14 {
  font-size: 14px;
  color: #ffffff;
}

.goodPost {
  background-color: #6c5ce7;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 12px;
  margin-right: 8px;
  display: inline-block;
}

/* 星级和刺激度标签 */
.product-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.product-tag {
  background: #3d3d3d;
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
}

.product-tag.star {
  background: #ffd700;
  color: #1a1a1a;
}

.product-tag.low {
  background: #4caf50;
}

.product-tag.medium {
  background: #ff9800;
}

.product-tag.high {
  background: #f44336;
}

/* 官方社群按钮 */
.community-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.community-btn {
  background: #6c5ce7;
  color: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 4px 15px rgba(151, 53, 255, 0.3);
          box-shadow: 0 4px 15px rgba(151, 53, 255, 0.3);
}

.community-btn:hover {
  background: #6c5ce7;
  color: #ffffff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 6px 20px rgba(151, 53, 255, 0.5);
          box-shadow: 0 6px 20px rgba(151, 53, 255, 0.5);
}

.community-btn i {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

/* 分页控件 */
.pagination-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pagination-custom button {
  background: #3d3d3d;
  color: #ffffff;
  border: 2px solid #6c5ce7;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pagination-custom button:hover {
  background: #6c5ce7;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.pagination-custom button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pinkText {
  color: #fe49aa;
  text-shadow: #fff 0.2em 0.2em 0.2em;
  font-weight: 700;
  font-size: 6rem;
  font-style: italic;
  -webkit-text-stroke: 3px #fff;
  cursor: pointer;
}

.blueText {
  color: #30cbf5;
  text-shadow: #fff 0.2em 0.2em 0.2em;
  font-weight: 700;
  font-size: 6rem;
  font-style: italic;
  -webkit-text-stroke: 3px #fff;
  cursor: pointer;
}

.miniPink {
  color: #fe49aa;
  text-shadow: #fff 0.2em 0.2em 0.2em;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  font-style: italic;
  -webkit-text-stroke: 0.5px #fff;
  margin: -1rem 0;
  cursor: pointer;
}

.line-40 {
  height: 40px;
}

/*精选爆款测评     👆  */
@media only screen and (min-width: 430px) {
  .topPart {
    height: 370px;
    overflow: hidden;
  }
  .list-unstyled {
    height: 370px;
    overflow-y: scroll;
  }
  #imageContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -5px;
  }
}
/*移动端页面适配     👆  */
@media only screen and (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-number {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-tabs {
    gap: 8px;
    margin-left: 0;
    margin-top: 10px;
  }
  .community-buttons {
    grid-template-columns: 1fr;
  }
  .hotStylePart {
    width: 100% !important;
    margin-bottom: 20px;
  }
  /* 响应式布局 */
  .promo-banners {
    grid-template-columns: 1fr;
  }
  .filter-tabs {
    gap: 10px;
  }
  .filter-tab {
    padding: 12px 15px;
    font-size: 0.85rem;
  }
  .featured-articles {
    grid-template-columns: 1fr;
  }
  .article-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
/* 移动端背景图优化 */
@media only screen and (max-width: 991px) {
  body::before {
    background: rgba(26, 26, 26, 0.4); /* 移动端增加遮罩透明度 */
  }
}
@media only screen and (max-width: 430px) {
  body {
    background-size: cover;
    background-position: center center;
  }
  .main-content {
    padding-left: 5px;
    padding-right: 5px;
  }
  .hero-banner {
    padding: 30px 15px;
    margin: 10px 0;
    min-height: 200px;
  }
  .hero-content {
    min-height: 200px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 15px;
  }
  .hero-search-select {
    border-radius: 15px 15px 0 0;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .hero-search input {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .hero-search button {
    border-radius: 0 0 15px 15px;
  }
  .section-number {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .list-unstyled {
    height: 100%;
    background-color: #2d2d2d;
  }
  .carousel {
    overflow: hidden;
    padding: 0;
    border-radius: 15px;
  }
  .carousel-wrapper {
    margin-bottom: 20px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  .carousel-control-prev {
    left: 10px;
  }
  .carousel-control-next {
    right: 10px;
  }
  .carousel-caption p {
    font-size: 1rem;
    padding: 15px;
  }
  .carousel-indicators {
    margin-bottom: 10px;
  }
  .carousel-indicators li {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
  .carousel-indicators li.active {
    width: 20px;
  }
  .topPart {
    overflow: hidden;
    height: 100%;
  }
  .mini-top-part {
    padding: 0 10px;
  }
  .mini-unstyled {
    margin: 20px 0 0;
  }
  .mini-test {
    margin: 0 -6px;
    gap: 0;
    margin-top: 16px;
  }
  .testPart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1rem;
  }
  .lineSet1 {
    margin: 0.5rem 0;
    background-color: #3d3d3d;
    width: 98%;
  }
  .mini-hot-style {
    margin: 0 10px 0;
  }
  .mini-hot-style-margin-top {
    margin: 0 -6px 10px;
  }
  .mini-hot-style-part1 {
    display: inline-block;
    width: 30%;
    position: relative;
  }
  .mini-hot-style-part {
    display: inline-block;
    width: 100%;
    position: relative;
  }
  .mini-text {
    font-size: 10px;
  }
  /* 移动端布局调整 */
  .promo-banners {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .filter-tabs {
    gap: 8px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .filter-tab {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .featured-articles {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .article-list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .article-section-title {
    font-size: 1.2rem;
  }
}
/* 表单控件样式 */
/* .form-control {
    background-color: #3d3d3d !important;
    border: 1px solid #555;
    color: #ffffff;
} */
/* .form-control:focus {
    border-color: #ff6b35;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255,107,53,0.25);
} */
.btn-primary {
  background-color: #6c5ce7;
  border-color: #6c5ce7;
}

.btn-primary:hover {
  background-color: #6c5ce7;
  border-color: #6c5ce7;
}

/* 滚动条样式 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #2d2d2d;
}

::-webkit-scrollbar-thumb {
  background: #6c5ce7;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6c5ce7;
}

/* 年龄验证弹窗样式 */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  backdrop-filter: blur(5px);
}

.age-verification-modal {
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.2);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.2);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  -webkit-animation: modalFadeIn 0.3s ease-out;
          animation: modalFadeIn 0.3s ease-out;
}

@-webkit-keyframes modalFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9) translateY(-20px);
            transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9) translateY(-20px);
            transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
.age-verification-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
}

.age-verification-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.age-verification-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1a1a1a;
  cursor: pointer;
  padding: 5px 10px;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
}

.age-verification-close:hover {
  background: #f5f5f5;
  color: #6c5ce7;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.age-verification-body {
  padding: 25px;
  color: #1a1a1a;
  line-height: 1.8;
  font-size: 1rem;
}

.age-verification-body p {
  margin: 0 0 15px 0;
}

.age-verification-body p:last-child {
  margin: 0;
}

.age-verification-countdown {
  text-align: center;
  padding: 15px 25px 25px;
  color: #666;
  font-size: 0.9rem;
}

.age-verification-countdown .countdown-number {
  color: #6c5ce7;
  font-weight: 700;
  font-size: 1.1rem;
}

/* 移动端适配 */
@media only screen and (max-width: 600px) {
  .age-verification-modal {
    width: 95%;
    border-radius: 15px;
  }
  .age-verification-title {
    font-size: 1.3rem;
  }
  .age-verification-body {
    padding: 20px;
    font-size: 0.95rem;
  }
  .age-verification-countdown {
    padding: 12px 20px 20px;
    font-size: 0.85rem;
  }
}
/* 浮动小球样式 */
.floating-ball {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6c5ce7 0%, #6c6ce7 100%);
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 20px rgba(141, 53, 255, 0.4), 0 0 0 4px rgba(255, 107, 53, 0.1);
          box-shadow: 0 4px 20px rgba(130, 53, 255, 0.4), 0 0 0 4px rgba(130, 53, 255, 0.1);
  cursor: pointer;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: floatBall 3s ease-in-out infinite;
          animation: floatBall 3s ease-in-out infinite;
}

.floating-ball:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 6px 30px rgba(151, 53, 255, 0.6), 0 0 0 6px rgba(151, 53, 255, 0.15);
          box-shadow: 0 6px 30px rgba(114, 53, 255, 0.6), 0 0 0 6px rgba(127, 53, 255, 0.15);
}

.floating-ball img {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}

@-webkit-keyframes floatBall {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes floatBall {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
/* 按钮选择弹窗样式 */
.button-select-modal {
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.2);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.2);
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  -webkit-animation: modalFadeIn 0.3s ease-out;
          animation: modalFadeIn 0.3s ease-out;
  padding: 30px;
}

.button-select-modal .modal-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.button-select-modal .modal-btn {
  background: #6c5ce7;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
          box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.button-select-modal .modal-btn:hover {
  background: #6c5ce7;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
          box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.button-select-modal .modal-btn i {
  font-size: 1.3rem;
}

/* QQ群弹窗样式 */
.qq-group-modal {
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.2);
          box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.2);
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  -webkit-animation: modalFadeIn 0.3s ease-out;
          animation: modalFadeIn 0.3s ease-out;
}

.qq-group-modal .qq-group-content {
  padding: 30px;
  text-align: center;
}

.qq-group-modal .qq-group-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6c5ce7;
  margin: 20px 0;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

.qq-group-modal .qq-group-number:hover {
  background: #6c5ce7;
  color: #ffffff;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
          box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.qq-group-modal .qq-group-link {
  display: inline-block;
  background: #6c5ce7;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.qq-group-modal .qq-group-link:hover {
  background: #ff8c5a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
          box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* 移动端浮动小球适配 */
@media only screen and (max-width: 600px) {
  .floating-ball {
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 70px;
  }
  .floating-ball img {
    width: 70%;
    height: 70%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .button-select-modal {
    padding: 20px;
  }
  .button-select-modal .modal-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}