/* 通用样式 */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  line-height: 1.6;
  background-color: #1A1A2E;
}

a {
  color: #4A90E2;
  text-decoration: none;
}

a:hover {
  color: #E94584;
}

/* 第一屏：全屏视频背景 */
.fullscreen-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.fullscreen-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.7); /* 深蓝色半透明遮罩 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 顶部导航栏样式 */
header {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: transparent;
  z-index: 1000;
  margin-right: 40px; /* 增加图片的左边距 */
}
/* Logo 样式 */

/* 引入 AiDeep 字体 */
/* @font-face {
  font-family: 'AiDeep';
  src: url('fonts/AiDeep.woff2') format('woff2'),
       url('fonts/AiDeep.woff') format('woff'),
       url('fonts/AiDeep.ttf') format('truetype');
       url('fonts/AiDeep.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */
.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  font-family: 'AiDeep', sans-serif; /* 使用 AiDeep 字体 */
}

.logo-img {
  width: 30px;
  height: 30px;
  vertical-align: middle; /* 图片与文字垂直居中 */
  margin-right: 10px; /* 图片与文字的间距 */
  margin-left: 60px; /* 增加图片的左边距 */
}

.logo-img1 {
  width: 180px;
  height: 63px;
  vertical-align: middle; /* 图片与文字垂直居中 */
  margin-right: 10px; /* 图片与文字的间距 */
  margin-left: 1px; /* 增加图片的左边距 */
}
/* 导航菜单样式 */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: color 0.3s, transform 0.3s;
  margin: 0 5px;
}

/* 悬浮效果 */
nav a:hover {
  color: #E94584;
  transform: scale(1.1);
}

/* 下划线动画 */
nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #E94584;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* 点击效果 */
nav a:active {
  transform: scale(0.95);
}

/* 登录按钮样式 */
.login-btn {
  background-color: #E94584;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  margin-right: 40px; /* 增加图片的右边距 */
  transition: background-color 0.3s, transform 0.3s;
}

.login-btn:hover {
  background-color: #C73A6E;
  transform: scale(1.05);
}

.login-btn:active {
  transform: scale(0.95);
}

header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

header nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 16px;
  transition: color 0.3s;
}

header nav a:hover {
  color: #E94584;
}

header .login-btn {
  background-color: #E94584;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

header .login-btn:hover {
  background-color: #C73A6E;
}

.banner-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
}

.banner-content p {
  font-size: 24px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  color: #CCCCCC;
}

#countdown {
  font-size: 32px;
  margin-bottom: 30px;
  color: #fff;
}

.buy-btn {
  background-color: #E94584;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.buy-btn:hover {
  background-color: #C73A6E;
}

/* 图片轮播区域 */
.image-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.carousel-images {
  display: flex;
  overflow: hidden;
  width: 400px;
  position: relative;
}

.image-container {
  border-radius: 10px;
  padding: 4px;
  margin: 0 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.carousel-images img {
  width: 160px;
  height: 160px;
  border-radius: 10px;
  display: block;
  transition: opacity 0.3s ease-in-out;
  opacity: 1; /* 移除遮罩效果，显示完整图片 */
}

/* 鼠标悬停效果 */
.image-container:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.image-container:hover img {
  transform: scale(1.1);
}
/* 左右箭头按钮 */
.carousel-arrow {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 6px;
  border-radius: 10%;
  transition: background 0.3s;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.left-arrow {
  margin-right: 10px;
}

.right-arrow {
  margin-left: 10px;
}


/* 标题和高亮文本区域 */
.title-section {
  position: relative; /* 为二维码区域定位提供参考 */
  display: inline-block; /* 确保悬停区域正确 */
}

/* 二维码区域样式 */
.qr-code-section {
  position: absolute;
  top: 50%; /* 放置在标题和高亮文本的下方 */
  left: -35%; /* 水平居中 */
  transform: translateX(-50%); /* 水平居中 */
  opacity: 0; /* 默认隐藏 */
  visibility: hidden; /* 默认隐藏 */
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* 二维码容器样式 */
.qr-code-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* 二维码图片样式 */
.qr-code {
  width: 100px; /* 二维码大小 */
  height: 100px;
  border-radius: 10px;
  transition: transform 0.3s;
}

/* 扫码说明文字样式 */
.qr-code-text {
  margin-left: 10px; /* 文字与二维码的间距 */
  font-size: 5px; /* 文字大小 */
  color: #CCCCCC;
  transition: color 0.3s;
}

/* 鼠标悬停时显示二维码区域 */
.title-section:hover .qr-code-section {
  opacity: 1; /* 显示 */
  visibility: visible; /* 显示 */
  transform: translateX(-50%) translateY(10px); /* 向下移动 */
}

/* 鼠标悬停时二维码容器的动效 */
.title-section:hover .qr-code-container {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 鼠标悬停时二维码图片的动效 */
.title-section:hover .qr-code {
  transform: scale(1.1);
}

/* 鼠标悬停时扫码说明文字的动效 */
.title-section:hover .qr-code-text {
  color: #E94584;
}


/* 第二屏：产品介绍 */
.product-section {
  text-align: center;
  padding: 2rem 0;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 1rem;
}

.product-card {
  width: 250px;
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #fff;
}

.product-card p {
  font-size: 16px;
  color: #CCCCCC;
}

.highlight-text {
  display: inline-block;
  background: rgba(0, 0, 0, 0.5); /* 半透明黑色 */
  color: white; /* 文字颜色 */
  padding: 10px 20px; /* 内边距 */
  border-radius: 15px; /* 圆角 */
  font-size: 18px; /* 字体大小 */
  font-weight: bold; /* 加粗 */
  text-align: center; /* 居中 */
}



/* 第三屏：预购部分 */
.preorder-section {
  padding: 50px 20px;
  text-align: center;
  background: #1A1A2E;
}

.preorder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.preorder-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.preorder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.preorder-card h3 {
  font-size: 24px;
  color: #fff;
}

.preorder-card p {
  font-size: 18px;
  color: #CCCCCC;
}

/* 第四屏：用户评价和视频展示 */
.testimonial-section {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f1a24, #1A1A2E);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 16px;
  color: #CCCCCC;
}

.video-container {
  margin-top: 30px;
}

.video-container video {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
}

/* 第五屏：FAQ 与客服 */
.faq-section {
  padding: 50px 20px;
  text-align: center;
  background: #1A1A2E;
}

.faq-list2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.faq-item2 {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.faq-item h3 {
  font-size: 18px;
  color: #fff;
}

.faq-item p {
  font-size: 16px;
  color: #CCCCCC;
}

/* 第六屏：邮件订阅 */
.subscribe-section {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E, #6a315d);
}

.subscribe-section h2 {
  color: #fff;
}

.subscribe-section form {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.subscribe-section input {
  padding: 10px;
  width: 300px;
  border: none;
  border-radius: 5px;
}

.subscribe-section button {
  background-color: #E94584;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.subscribe-section button:hover {
  background-color: #C73A6E;
}

/* 底部 */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1A1A2E;
}

footer .social-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

footer .social-links a:hover {
  color: #E94584;
}


/* Logo 图片样式 */
.logo-img {
  width: 50px; /* 根据实际图片大小调整 */
  height: 65px; /* 根据实际图片大小调整 */
  vertical-align: middle; /* 图片与文字垂直居中 */
  margin-right: 10px; /* 图片与文字的间距 */
}

/* 顶部 Logo 容器 */
.logo {
  display: flex;
  align-items: center; /* 图片与文字横向对齐 */
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

/* 底部版权信息 */
footer p {
  display: flex;
  align-items: center; /* 图片与文字横向对齐 */
  justify-content: center; /* 内容居中 */
  font-size: 16px;
  color: #fff;
  margin-top: 20px;
}
/* 登录/注册页面样式 */
.auth-section {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E, #1f1a24);
  margin-top: 100px;
}

.auth-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-link {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.tab-link.active {
  color: #E94584;
  border-bottom: 2px solid #E94584;
}

.tab-link:hover {
  color: #E94584;
}

.auth-form {
  display: none;
  max-width: 400px;
  margin: 0 auto;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.auth-btn {
  background-color: #E94584;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  width: 100%;
  transition: background-color 0.3s;
}

.auth-btn:hover {
  background-color: #C73A6E;
}

.auth-link {
  margin-top: 10px;
}

.auth-link a {
  color: #E94584;
  text-decoration: none;
}

.auth-link a:hover {
  text-decoration: underline;
}


/* 订单管理部分 */
.order-management {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E, #1f1a24);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
  font-size: 20px;
  color: #fff;
}

.stat-card p {
  font-size: 24px;
  color: #E94584;
  margin: 10px 0;
}

.order-list, .user-list, .logistics-info {
  margin-top: 30px;
  text-align: left;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

td {
  color: #CCCCCC;
}

button {
  background-color: #E94584;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #C73A6E;
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.logistics-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.logistics-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.logistics-card h4 {
  font-size: 18px;
  color: #fff;
}

.logistics-card p {
  font-size: 14px;
  color: #CCCCCC;
}

/* 搜索功能 */
.search-section {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.search-input {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 250px;
}

.search-btn {
  background-color: #E94584;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #C73A6E;
}


/* 预购玩偶页面 */
.preorder-products {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E, #1f1a24);
}

.product-grid {
  display: flex;
  grid-template-columns: repeat(8, 1fr); /* 每行 4 个产品 */
  gap: 20px;
  margin-top: 30px;
}

.product-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.2); /* 悬停背景变色 */
}

.product-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: #CCCCCC;
  margin-bottom: 10px;
}

.price {
  font-size: 18px;
  color: #E94584;
  font-weight: bold;
  margin-bottom: 15px;
}

.discount {
  color: #E94584;
}

.original-price {
  text-decoration: line-through;
  color: #CCCCCC;
  margin-left: 10px;
}

.preorder-time, .countdown {
  font-size: 14px;
  color: #CCCCCC;
  margin-bottom: 10px;
}

.buy-btn, .consult-btn {
  background-color: #E94584;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  margin: 5px;
}

.buy-btn:hover, .consult-btn:hover {
  background-color: #C73A6E;
}

.consult-btn {
  background-color: #4A90E2;
}

.consult-btn:hover {
  background-color: #357ABD;
}

/* 统计信息 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
  font-size: 20px;
  color: #fff;
}

.stat-card p {
  font-size: 24px;
  color: #E94584;
  margin: 10px 0;
}
/* 支付弹窗 */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #1A1A2E;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
}

.close-btn {
  color: #fff;
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.payment-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s;
}

.payment-btn:hover {
  background-color: #E94584;
}

.payment-btn img {
  width: 24px;
  height: 24px;
}





/* 关于我们页面 */
.about-section {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E, #1f1a24);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
  padding: 20px;
  text-align: left;
}

.about-text h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  color: #CCCCCC;
  line-height: 1.8;
}

.about-image { 
  padding: 20px;
}

.about-image img {
  width: 250px;
  height: 250px;

  border-radius: 10px;
  transition: transform 0.3s;
}

.about-image img:hover {
  transform: scale(1.05);
}






/* 充值服务页面 */
.recharge-section {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E, #1f1a24);
}

.recharge-layout {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 基础功能标题 */
.stats-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E94584;
}
/* 左侧：统计功能菜单 */
.stats-sidebar {
  flex: 1;
  text-align: left;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
  font-size: 18px;
  color: #fff;
}

.stat-card p {
  font-size: 24px;
  color: #E94584;
  margin: 10px 0;
}

.stats-list {
  margin-top: 30px;
}

.stats-list h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
}

.stats-list ul {
  list-style: none;
  padding: 0;
}

.stats-list li {
  margin: 10px 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.stats-list li:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.stats-list li a {
  display: flex;
  align-items: center;
  color: #4A90E2;
  text-decoration: none;
  transition: color 0.3s;
}

.stats-list li a:hover {
  color: #E94584;
}

.stats-list .icon {
  font-size: 18px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.stats-list li:hover .icon {
  transform: scale(1.2);
}

.contact-info {
  margin-top: 30px;
}

.contact-info h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  color: #CCCCCC;
  margin: 5px 0;
}

/* 右侧：充值选项 */
.recharge-options {
  flex: 2;
  text-align: left;
}

.recharge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.recharge-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.recharge-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.recharge-card h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.recharge-card p {
  font-size: 16px;
  color: #CCCCCC;
  margin-bottom: 15px;
}

.buy-btn {
  background-color: #E94584;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.buy-btn:hover {
  background-color: #C73A6E;
}



/* 右侧：统计功能菜单 */
.stats-sidebar {
  flex: 1;
  text-align: left;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
  font-size: 18px;
  color: #fff;
}

.stat-card p {
  font-size: 24px;
  color: #E94584;
  margin: 10px 0;
}

.stats-list {
  margin-top: 30px;
}

.stats-list ul {
  list-style: none;
  padding: 0;
}

.stats-list li {
  margin: 10px 0;
}

.stats-list a {
  color: #4A90E2;
  text-decoration: none;
  transition: color 0.3s;
}

.stats-list a:hover {
  color: #E94584;
}

.contact-info {
  margin-top: 30px;
}

.contact-info h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  color: #CCCCCC;
  margin: 5px 0;
}





/* 常见问题页面 */
.faq-section {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E, #1f1a24);
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.category-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.category-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.category-btn.active {
  background-color: #E94584;
}

*.faq-list1 {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}*

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  width: 100%; /* 确保每个问答内容与页面宽度适配 */
}

.faq-question {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 14px;
  color: #CCCCCC;
  line-height: 1.6;
}





/* 会员中心样式 */

.membership-section {
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E, #1f1a24);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.membership-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.membership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.membership-card h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.membership-card p {
  font-size: 16px;
  color: #CCCCCC;
}

.membership-card button {
  background-color: #E94584;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.membership-card button:hover {
  background-color: #C73A6E;
}

.membership-tasks {
  margin-top: 50px;
}

.task-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.task-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.task-item p {
  font-size: 16px;
  color: #CCCCCC;
}

.task-item button {
  background-color: #4A90E2;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.task-item button:hover {
  background-color: #357ABD;
}


.leaderboard-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.leaderboard-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}


.leaderboard-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 每行显示 4 个用户 */
  gap: 20px;
  margin-top: 20px;
}




/* 会员排行榜样式 */
.membership-leaderboard {
  margin-top: 50px;
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.leaderboard-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.leaderboard-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.leaderboard-item p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.invited-users {
  margin-top: 10px;
}

.invited-users table {
  width: 100%;
  border-collapse: collapse;
}

.invited-users th, .invited-users td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.invited-users th {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.invited-users td {
  color: #CCCCCC;
}


/* 弹窗样式 */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #1A1A2E;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
}

.close-btn {
  color: #fff;
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.upgrade-options, .redeem-options, .withdraw-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.upgrade-option, .redeem-option, .withdraw-option {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.upgrade-option:hover, .redeem-option:hover, .withdraw-option:hover {
  background-color: #E94584;
}

