/* ===================帝王云 ==================== */
/* ============= www.diwangyun.com ================ */
/* ============= www.diwangyun.cn ================= */
/* ============== 代码有价，版权无价 ================= */
/* =======帝王云模板为帝王云自行开发，已办理源码著作权 ========== */
/* =======未经允许 仿站或扒站 发现必究，请尊重开发者心血 ========== */
/* ==========="愿你走完山水万城 仍与理想重逢" ============ */
/* ============模板作者：江遇:QQ 1481234828=========== */


/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #c9a227;
  --secondary-color: #7c3aed;
  --accent-color: #dc2626;
  --text-dark: #1a202c;
  --text-gray: #4a5568;
  --text-light: #718096;
  --bg-light: #f8fafc;
  --bg-dark: #0a0a0a;
  --white: #ffffff;
  --gold: #d4af37;
  --royal-purple: #4a1a7a;
  --imperial-red: #8b0000;
  --gradient: linear-gradient(135deg, #c9a227 0%, #f5d67a 25%, #7c3aed 50%, #c9a227 100%);
  --gradient-gold: linear-gradient(135deg, #b8860b 0%, #daa520 50%, #ffd700 100%);
  --gradient-purple: linear-gradient(135deg, #4a1a7a 0%, #7c3aed 50%, #9333ea 100%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.3);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: var(--text-gray);
  background: var(--bg-light);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 导航栏样式 - 帝王尊贵版 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  border-bottom: 2px solid;
  border-image: var(--gradient-gold) 1;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.logo-img {
  width: 180px;
  height: auto;
  object-fit: contain;
  animation: logoBreathing 2s ease-in-out infinite;
}

@keyframes logoBreathing {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.8;
    filter: brightness(0.9);
  }
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-weight: 800;
  font-size: 22px;
  box-shadow: var(--shadow-gold);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-link {
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cart-link:hover {
  color: var(--gold);
}

.cart-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  stroke: #e5e5e5;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  border-top: 2px solid var(--gold);
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--gold);
  padding-left: 10px;
}

/* 页脚样式 - 帝王尊贵版 */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: #e5e5e5;
  padding: 80px 0 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.footer::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 215, 0, 0.3);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.footer::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 215, 0, 0.3);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-gold);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
}

.footer-desc {
  font-size: 15px;
  line-height: 2;
  color: #a0a0a0;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 14px;
}

.footer-section a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-section a::before {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
  margin-right: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-section a:hover::before {
  opacity: 1;
}

.footer-bottom {
  background: #050505;
  padding: 25px 0;
  border-top: 2px solid;
  border-image: var(--gradient-gold) 1;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.footer-bottom p {
  color: #808080;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.footer-links a {
  color: #909090;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links a:hover::after {
  width: 100%;
}

/* 按钮样式 - 帝王尊贵版 */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-white {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}

/* 卡片样式 - 帝王尊贵版 */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 162, 39, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201, 162, 39, 0.3);
}

.card:hover::before {
  opacity: 1;
}

/* 章节样式 - 帝王尊贵版 */
.section {
  padding: 100px 0;
}

.section-dark {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.4);
}

.section-title p {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 25px auto 0;
  line-height: 1.8;
}

/* 渐变文字 */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 响应式设计 */
@media (max-width: 1360px) {
  .nav-links {
    gap: 14px;
  }

  .nav-link {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 960px;
    padding: 0 20px;
  }

  .section-title h2 {
    font-size: 42px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    gap: 40px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 12px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    padding: 60px 0 0;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-bottom p {
    font-size: 12px;
    text-align: center;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .section-title h2 {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .section-title h2::after {
    width: 60px;
  }

  .section-title p {
    font-size: 15px;
    max-width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
    padding: 14px 28px;
  }

  .card {
    padding: 24px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .mobile-menu {
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
  }

  .mobile-nav-link {
    padding: 16px 0;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .logo {
    font-size: 20px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 14px;
  }

  .section {
    padding: 40px 0;
  }

  .card {
    padding: 20px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-desc {
    font-size: 14px;
  }

  .footer-links a {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .logo {
    font-size: 18px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* 动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* 工具类 */
.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

/* 表单样式 */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-color);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* 图标样式 */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* 标签 */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: #e9d8fd;
  color: #6b46c1;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
}

.tag-green {
  background: #c6f6d5;
  color: #2f855a;
}

.tag-blue {
  background: #bee3f8;
  color: #2b6cb0;
}

/* ==================== Footer 页脚样式 ==================== */

.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: #e5e5e5;
  padding: 80px 0 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.footer-section {
  flex: 1;
  min-width: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #1a0a2e;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
}

.footer-section a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.footer-bottom {
  background: #050505;
  padding: 25px 0;
  border-top: 2px solid;
  border-image: var(--gradient-gold) 1;
  position: relative;
}

.footer-bottom p {
  color: #808080;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd700;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-section {
    flex: 1 1 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-links {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 25px;
  }

  .footer-section {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-desc {
    text-align: center;
  }

  .footer-section h3 {
    text-align: center;
  }

  .footer-section ul {
    text-align: center;
  }
}

/* 返回顶部按钮样式 */
.back-to-top-button {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  color: #0a0a0a;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top-button.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-button:hover {
  background: var(--gradient-purple);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.back-to-top-button:active {
  transform: translateY(-2px);
}

/* 移动端返回顶部按钮样式调整 */
@media (max-width: 768px) {
  .back-to-top-button {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 90px;
    right: 20px;
  }
}

/* 分享按钮样式 */
.share-button {
  position: fixed;
  bottom: 140px;
  right: 30px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(184, 134, 11, 0.95) 100%);
  border: none;
  border-radius: 28px;
  color: #0a0a0a;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
}

.share-button:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95) 0%, rgba(147, 51, 234, 0.95) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
}

.share-button:active {
  transform: translateY(-1px);
}

/* 移动端分享按钮样式调整 */
@media (max-width: 768px) {
  .share-button {
    bottom: 100px;
    right: 20px;
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* 分享提示框样式 */
.share-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10001;
  backdrop-filter: blur(10px);
}

.share-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.share-toast-success {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(184, 134, 11, 0.95) 100%);
  color: #0a0a0a;
}

.share-toast-error {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(185, 28, 28, 0.95) 100%);
  color: #fff;
}

/* 移动端分享提示框样式调整 */
@media (max-width: 768px) {
  .share-toast {
    padding: 16px 32px;
    font-size: 14px;
  }
}
