/**
 * Goooch Website Styles
 * Extracted from existing GPS website for WordPress BeTheme implementation
 */

/* ============================================
   CSS Variables - 全局变量定义
   ============================================ */
:root {
  /* 字体 */
  --font-primary: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Montserrat', sans-serif;

  /* 品牌色 */
  --color-primary: #9929EA;
  --color-primary-dark: #5808FB;
  --color-secondary: #01C28B;
  --color-accent: #AC2DF3;

  /* 渐变 */
  --gradient-purple: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
  --gradient-pink-orange: linear-gradient(90deg, #FC0FA8 0%, #FE6D3B 100%);

  /* 文字颜色 */
  --color-text: #333333;
  --color-text-dark: #2E2E2E;
  --color-text-light: #666666;

  /* 背景色 */
  --color-bg-light: #F3EFFF;
  --color-bg-pink: #F6EBFE;
  --color-bg-dark: #0B0C13;
}

/* ============================================
   Navigation Styles
   ============================================ */
   .navActive {
    border-radius: 100px;
    background: #AC2DF3;
    color: #fff !important;
    font-weight: bold;
}

.navActive:hover {
    background: #AC2DF3;
    color: #fff !important;
}


/* ============================================
   WordPress Navigation Menu Styles
   Based on original GPS website navigation
   ============================================ */

/* Hide Top Bar / Subheader - Remove Black Top Bar */
#Top_bar,
.top-bar,
#Subheader,
.subheader,
.header-top,
.top-header,
.mfn-top-bar,
.betheme-top-bar,
.topbar-wrapper,
.top-bar-wrapper,
#header-top,
.header-top-bar {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Header Container - Fixed Position */
#Header,
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 9999;
    height: 80px;
    margin-top: 0 !important;
}

/* Adjust for WordPress Admin Bar */
body.admin-bar #Header,
body.admin-bar .header {
    top: 32px !important; /* WordPress admin bar height */
}

/* Header Inner Container */
#Header .header-wrapper,
.header .header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Menu Container */
#Header .menu,
#Header .menu-wrapper,
.header .menu,
.header .menu-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem; /* space-x-8 equivalent (32px) */
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
}

#Header .menu li,
.header .menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Menu Item Links - Match Original Style */
#Header .menu li a,
.header .menu li a {
    color: #666; /* text-gray-600 */
    font-weight: 500; /* font-medium */
    padding: 0.25rem 0.75rem; /* px-3 py-1 */
    border-radius: 100px; /* rounded-full */
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    font-size: 1rem;
}

/* Menu Item Hover - Match Original */
#Header .menu li a:hover,
.header .menu li a:hover {
    color: #1a1a1a !important; /* hover:text-gray-900 */
    background: transparent;
}

/* Current Page Highlight - Match navActive */
#Header .menu li.current-menu-item > a,
#Header .menu li.current-page-ancestor > a,
#Header .menu li.current-menu-parent > a,
.header .menu li.current-menu-item > a,
.header .menu li.current-page-ancestor > a,
.header .menu li.current-menu-parent > a {
    background: #AC2DF3 !important; /* navActive background */
    color: #fff !important; /* navActive color */
    font-weight: bold; /* navActive font-weight */
    border-radius: 100px; /* navActive border-radius */
}

/* Dropdown Menu Arrow */
#Header .menu li.menu-item-has-children > a::after,
.header .menu li.menu-item-has-children > a::after {
    content: "▼";
    font-size: 0.7rem;
    margin-left: 0.3rem;
    display: inline-block;
}

/* Dropdown Sub-menu */
#Header .menu .sub-menu,
#Header .menu ul.sub-menu,
.header .menu .sub-menu,
.header .menu ul.sub-menu {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    min-width: 150px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: none;
    list-style: none;
    margin: 0;
}

#Header .menu li.menu-item-has-children:hover .sub-menu,
#Header .menu li.menu-item-has-children:hover ul.sub-menu,
.header .menu li.menu-item-has-children:hover .sub-menu,
.header .menu li.menu-item-has-children:hover ul.sub-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

#Header .menu .sub-menu li,
.header .menu .sub-menu li {
    margin: 0;
    padding: 0;
}

#Header .menu .sub-menu li a,
.header .menu .sub-menu li a {
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    display: block;
    white-space: nowrap;
}

#Header .menu .sub-menu li a:hover,
.header .menu .sub-menu li a:hover {
    background: #F3EFFF;
    color: #AC2DF3 !important;
}

/* Shop/Button Style - Match Original "Free 7-Day Trial" Button */
#Header .menu .shop-button a,
.header .menu .shop-button a,
.menu .shop-button a,
#Header .menu .trial-button a,
.header .menu .trial-button a {
    background: linear-gradient(90deg, #FF5555 0%, #6025F5 100%) !important; /* from-[#FF5555] to-[#6025F5] */
    color: #fff !important;
    border-radius: 100px; /* rounded-full */
    padding: 0.5rem 1rem; /* px-4 py-2 */
    font-weight: 500; /* font-medium */
    font-size: 0.875rem; /* text-sm */
    transition: all 0.3s ease;
}

#Header .menu .shop-button a:hover,
.header .menu .shop-button a:hover,
.menu .shop-button a:hover,
#Header .menu .trial-button a:hover,
.header .menu .trial-button a:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Login Button Style */
#Header .menu .login-button a,
.header .menu .login-button a,
.menu .login-button a {
    background: #fff;
    color: #333;
    border: 1px solid #AC2DF3;
    border-radius: 100px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

#Header .menu .login-button a:hover,
.header .menu .login-button a:hover,
.menu .login-button a:hover {
    background: #AC2DF3;
    color: #fff !important;
    border-color: #AC2DF3;
}

/* Logo Style - Match Original h-12 (48px) */
#Header .logo img,
.header .logo img {
    height: 48px; /* h-12 */
    width: auto;
}

/* Responsive Menu - Match Original hidden md:flex */
@media (max-width: 768px) {
    #Header .menu,
    .header .menu {
        display: none; /* hidden on mobile */
    }
    
    /* Mobile menu toggle button */
    #Header .menu-toggle,
    .header .menu-toggle {
        display: block;
    }
}

@media (min-width: 768px) {
    #Header .menu,
    .header .menu {
        display: flex; /* flex on desktop */
    }
}

/* Dropdown Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Body Padding to Account for Fixed Header */
body.admin-bar #Header,
body.admin-bar .header {
    top: 32px; /* WordPress admin bar height */
}

body {
    padding-top: 80px; /* Account for fixed header */
}

body.admin-bar {
    padding-top: 112px; /* 80px header + 32px admin bar */
}

/* ============================================
   Color Scheme
   ============================================ */
:root {
    --goooch-primary: #AC2DF3;
    --goooch-secondary: #01C28B;
    --goooch-gradient-start: #FC0FA8;
    --goooch-gradient-end: #FE6D3B;
    --goooch-purple-gradient-start: #DA22FF;
    --goooch-purple-gradient-end: #9733EE;
    --goooch-bg-light: #F3EFFF;
    --goooch-bg-step: #F6EBFE;
    --goooch-text-gray: #2E2E2E;
}

/* ============================================
   Homepage Colorful Gradient Background
   Page ID: 598
   ============================================ */
/* body.page-id-598 {
    background: 
        linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 45%),
        linear-gradient(131deg, #F4F1F8 0%, #F3F4F6 16%, #FFF8EE 47%, #CEF3FF 100%);
    background-attachment: fixed;
    min-height: 100vh;
} 
body.page-id-797  {  
background:linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 45%),linear-gradient(131deg, #F5E4FF 0%, #FFF8EE 47%, #CEF3FF 100%);
background-repeat: no-repeat;
background-size: 100% 5008px, 100% 2753px;
background-position: top center;
min-height: 100vh;
}
*/

/* ============================================
   Button Styles
   ============================================ */
.buybtn {
    border-radius: 7.5px;
    border: 3px solid #FC0FA8;
    background: linear-gradient(90deg, rgba(252, 15, 168, 0.05) 0%, rgba(254, 109, 59, 0.05) 100%);
}

.buybtn span {
    font-weight: bold;
    font-size: 1.2rem;
    background: linear-gradient(90deg, #FC0FA8 0%, #FE6D3B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.maibtn {
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 7.5px;
    background: linear-gradient(90deg, #DA22FF 0%, #9733EE 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maibtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 41, 234, 0.4);
}

/* maibtn 微光效果 */
.maibtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 60%,
        transparent 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.maibtn span,
.maibtn * {
    position: relative;
    z-index: 2;
}

.border-buy {
    border-radius: 7.5px;
    border: 3px solid #FC0FA8;
    background: linear-gradient(90deg, rgba(252, 15, 168, 0.05) 0%, rgba(254, 109, 59, 0.05) 100%);
}

.border-buy span {
    background: linear-gradient(90deg, #FC0FA8 0%, #FE6D3B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   Background Styles
   ============================================ */
.bg-white_two {
    background: #F3EFFF;
}

.stepBg {
    background: linear-gradient(0deg, #F6EBFE 0%, #F6EBFE 100%), #FFF;
}

.bdrds {
    border-radius: 1rem;
}

.dragActive {
    background: #fff;
    fill: #FFF;
    border-radius: 1rem;
    filter: drop-shadow(16px 16px 0 rgba(152, 71, 229, 0.90));
}

.Safewap {
    background: linear-gradient(95deg, #9C47E6 0.18%, #6F4ADD 99.55%);
    height: 22rem;
}

.pkabg {
    border-radius: 0 0 60px 60px;
    background: #F0E2FF;
    padding-top: 18rem;
}

/* ============================================
   Collapsible Panel Styles
   ============================================ */
.collapsible-panel.active {
    background: #01C28B;
}

.collapsible-panel.active .collapsible-content {
    display: block;
}

.collapsible-panel.active h3 {
    color: #fff;
}

.collapsible-panel.active p {
    color: #fff;
}

.collapsible-content {
    display: none;
}

/* ============================================
   FAQ Styles
   ============================================ */
.faqActive {
    background: #01C28B;
}

.faqActive .qbg {
    background: #fff !important;
}

.faqActive .qbg span {
    color: #01C28B !important;
}

.faqActive h3 {
    color: #fff;
}

.faqActive img {
    height: 3px;
}

.faqActive .zhanshi {
    display: block;
}

.zhanshi {
    display: none;
    border-color: #fff;
}

/* ============================================
   Swiper/Carousel Styles
   ============================================ */
.rollSwiper .swiper-pagination {
    width: 100% !important;
}

.rollSwiper .swiper-pagination-bullet {
    margin: 0 0.5rem !important;
    background: #01C28B;
    opacity: 0.2;
    width: 0.6rem !important;
    height: 0.6rem !important;
}

.rollSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.rollSwiper .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 2rem !important;
}

.swiper-paginationfest .swiper-pagination-bullet {
    width: 30px !important;
    height: 10px !important;
    border-radius: 2px !important;
    background: #7ea2f3 !important;
}

.swiper-paginationfest .swiper-pagination-bullet-active {
    background: #795FF3 !important;
}

/* ============================================
   Step/Tracking Styles
   ============================================ */
.stepimg {
    display: none;
}

.showStep {
    display: block;
}

.stepActive h3 {
    color: #000 !important;
    opacity: 1 !important;
}

.stepActive p {
    color: #000 !important;
    opacity: 1 !important;
}

.heiLine {
    border-left: 3px solid #9847E5;
    height: 8rem;
    position: absolute;
    left: 1.4rem;
    top: 2rem;
}

.buzhouli.stepCompleted h3,
.buzhouli.stepCompleted p {
    color: #01C28B !important;
    opacity: 1 !important;
}

.tracking-left div:nth-child(2) {
    border-left: 2px dotted #9847E5;
    opacity: 0.5;
    height: auto;
    min-height: 7rem;
    margin-left: 1.3rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.tracking-left div:nth-child(1) {
    margin-top: -0.5rem;
}

.stepActive .xian {
    border-color: #9847E5;
    opacity: 1 !important;
}

.tracking-right {
    padding: 0 0 0px 20px;
    width: 100%;
}

.tracking-view {
    margin-top: 0 !important;
}

.tracking-view:last-child .tracking-left .xian {
    display: none !important;
}

.tracking-view img {
    opacity: 0.5 !important;
}

.stepActive img {
    opacity: 1 !important;
}

.selected-img {
    display: none;
}

.unselected-img {
    display: block;
}

.stepActive .selected-img {
    display: block;
}

.stepActive .unselected-img {
    display: none;
}

/* ============================================
   Image Display Toggle
   ============================================ */
.simulate_img {
    display: none;
}

.showimg {
    display: block;
}

/* ============================================
   Text Styles
   ============================================ */
.text-gray-400 {
    color: #333 !important;
    opacity: 0.6 !important;
}

.jiemk {
    color: #2E2E2E;
    opacity: 0.6;
}

.zhuse {
    color: #AC2DF3;
    font-weight: 600;
}

.xieti {
    font-style: italic;
    color: #00C278;
}

.anzhuobg {
    color: #fff;
    border-radius: 16px 20px 20px 4px !important;
    background: linear-gradient(90deg, #C10FFC 0%, #FC0FA8 56.01%, #FE6D3B 100%), 
                linear-gradient(90deg, #FC0FA8 0%, #FE6D3B 100%), 
                linear-gradient(99deg, #F55 1.15%, #6025F5 100%), 
                linear-gradient(90deg, #FC4A1A 0%, #F7B733 100%);
}

.gpsyuan {
    background: linear-gradient(90deg, #DA22FF 0%, #9733EE 100%);
}

.maibgse {
    background: linear-gradient(90deg, #DA22FF 0%, #9733EE 100%);
}

/* ============================================
   Layout Utilities
   ============================================ */
.py50 {
    padding: 10rem 0;
}

.lbse {
    padding-top: 1.88rem;
}

.dingab {
    width: 100% !important;
}

.pilogo {
    left: 1rem;
    bottom: 0.5rem;
}

.zhiImg {
    width: 6.8rem;
    height: 6.8rem;
}

.qipaoimg {
    width: 2.8rem;
    height: auto;
    bottom: 1%;
    right: -4rem;
}

/* ============================================
   Footer Styles
   ============================================ */
.backdi {
    background-color: #1A1C29;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

.dicolor a {
    color: #F0F0F0;
    opacity: 0.5;
    font-weight: normal;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    .py50 {
        padding: 5rem 0;
    }
    
    .Safewap {
        height: auto;
        padding: 2rem 0;
    }
    
    .pkabg {
        padding-top: 5rem;
    }
}

/* ============================================
   Animation Styles (for future enhancements)
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================
   Goooch Custom Navigation Styles
   Based on navigation-demo.html
   ============================================ */

/* Alpine.js cloak */
[x-cloak] {
    display: none !important;
}

/* 导航栏主容器 */
.goooch-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 1px 8px 0 rgba(46, 33, 74, 0.08) !important;
}

/* 增强磨砂玻璃效果 */
@supports (backdrop-filter: blur(12px)) {
    .goooch-nav {
        background: rgba(255, 255, 255, 0.75) !important;
    }
}

@supports not (backdrop-filter: blur(12px)) {
    .goooch-nav {
        background: rgba(255, 255, 255, 0.95) !important;
    }
}

/* WordPress Admin Bar 适配 */
body.admin-bar .goooch-nav {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar .goooch-nav {
        top: 46px !important;
    }
}

/* 导航栏内部容器 */
.goooch-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.goooch-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

/* Logo */
.goooch-logo {
    flex-shrink: 0;
}

.goooch-logo img {
    height: 48px;
    width: auto;
}

/* 桌面端菜单容器 */
.goooch-desktop-menu {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
}

/* 左侧菜单 */
.goooch-menu-left {
    display: flex;
    align-items: center;
}

.goooch-menu-items {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.goooch-menu-items > li {
    position: relative;
    margin: 0;
    padding: 0;
}

/* 导航链接样式 */
.goooch-nav-link {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #181818;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 510;
    line-height: 24px;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.goooch-nav-link:hover {
    color: #9929EA !important;
}

.goooch-nav-link:hover span {
    color: #9929EA !important;
}

.goooch-nav-link:hover svg path {
    stroke: #9929EA !important;
}

/* 激活状态 */
.goooch-nav-link.navActive,
.goooch-nav-link.navActive span {
    color: #9929EA !important;
    background: transparent !important;
}

.goooch-nav-link.navActive svg path {
    stroke: #9929EA !important;
}

/* 下拉箭头 */
.dropdown-arrow {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.dropdown-arrow.rotate-180 {
    transform: rotate(180deg);
}

/* 右侧菜单区域 */
.goooch-menu-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* 搜索按钮 */
.goooch-search-btn {
    position: relative;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.search-icon-circle {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 5.25px;
    top: 4.89px;
    border-radius: 9999px;
    border: 1.5px solid #181818;
}

.search-icon-handle {
    position: absolute;
    width: 6px;
    height: 1.5px;
    left: 17.09px;
    top: 17.46px;
    transform: rotate(50deg);
    transform-origin: top left;
    background: #181818;
}

.goooch-search-btn:hover .search-icon-circle {
    border-color: #9929EA;
}

.goooch-search-btn:hover .search-icon-handle {
    background: #9929EA;
}

/* 按钮组 */
.goooch-btn-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Shop 按钮 */
.goooch-btn-shop {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 73px;
    height: 31px;
    background: linear-gradient(133deg, #FF5555 0%, #6025F5 100%), linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.goooch-btn-shop span {
    color: #F0F0F0;
    font-size: 12px;
    font-family: var(--font-primary);
    font-weight: 510;
    line-height: 20.25px;
}

.goooch-btn-shop:hover {
    opacity: 0.9;
}

/* Login 按钮 */
.goooch-btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 73px;
    height: 31px;
    border-radius: 6px;
    border: 1px solid #9929EA;
    background: transparent;
    text-decoration: none;
    transition: background 0.3s ease;
}

.goooch-btn-login span {
    color: #9929EA;
    font-size: 12px;
    font-family: var(--font-primary);
    font-weight: 510;
    line-height: 20.25px;
}

.goooch-btn-login:hover {
    background: rgba(153, 41, 234, 0.05);
}

/* 下拉菜单通用样式 */
.goooch-dropdown-menu {
    position: absolute;
    right: 0;
    margin-top: 8px;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px;
    box-shadow: 0px 2px 10px 0px rgba(46, 33, 74, 0.08);
    padding: 12px 0;
    z-index: 100;
}

@supports (backdrop-filter: blur(12px)) {
    .goooch-dropdown-menu {
        background: rgba(255, 255, 255, 0.92) !important;
    }
}

/* 语言下拉菜单 */
.goooch-lang-dropdown {
    width: 160px;
}

.goooch-lang-dropdown a,
.goooch-lang-list a,
.lang-item {
    display: block;
    padding: 8px 16px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.goooch-lang-dropdown a:hover,
.goooch-lang-list a:hover,
.lang-item:hover {
    background: rgba(153, 41, 234, 0.05);
    color: #9929EA;
}

/* Support 下拉菜单 */
.goooch-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.goooch-submenu li {
    margin: 0;
}

.goooch-submenu a {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.goooch-submenu a:hover {
    background: rgba(153, 41, 234, 0.05);
}

.menu-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.menu-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
}

.menu-item-desc {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    display: block;
}

.goooch-submenu a:hover .menu-item-title {
    color: #9929EA;
}

.menu-item-arrow {
    width: 20px;
    height: 20px;
    margin-left: auto;
    opacity: 0;
    transition: all 0.3s ease;
}

.goooch-submenu a:hover .menu-item-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Product 下拉菜单 - 全宽样式 */
.goooch-product-dropdown {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    top: 88px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0px 2px 10px 0px rgba(46, 33, 74, 0.08);
}

body.admin-bar .goooch-product-dropdown {
    top: 120px !important;
}

/* 桥接区域 */
.goooch-bridge-area {
    position: fixed;
    left: 0;
    right: 0;
    height: 12px;
    top: 76px;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(1px);
}

body.admin-bar .goooch-bridge-area {
    top: 108px;
}

/* 产品网格 */
.goooch-product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* 产品卡片 - 磨砂玻璃效果 */
.goooch-product-card {
    position: relative;
    width: 372px;
    height: 90px;

    /* 磨砂玻璃背景 */
    background: rgba(245, 243, 249, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* 微妙边框增加层次感 */
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    text-decoration: none;
    font-family: var(--font-primary);

    /* 柔和多层阴影 */
    box-shadow:
        0 4px 24px rgba(153, 41, 234, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);

    /* 平滑过渡 */
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.3s ease,
        border-color 0.3s ease;
}

.goooch-product-card:hover {
    transform: translateY(-4px);
    background: rgba(245, 243, 249, 0.95);
    border-color: rgba(153, 41, 234, 0.2);

    /* 悬停阴影增强 */
    box-shadow:
        0 12px 32px rgba(153, 41, 234, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.goooch-product-card .product-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    left: 16px;
    top: 12px;
    border-radius: 6px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.goooch-product-card:hover .product-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(153, 41, 234, 0.3));
}

.goooch-product-card .product-title {
    position: absolute;
    left: 60px;
    top: 16px;
    color: #2E2E2E;
    font-size: 20px;
    font-weight: 510;
    line-height: 22.5px;
    transition: color 0.3s ease;
}

.goooch-product-card:hover .product-title {
    color: #9929EA;
}

.goooch-product-card .product-desc {
    position: absolute;
    left: 16px;
    top: 58px;
    width: 340px;
    color: #333333;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.goooch-product-card:hover .product-desc {
    opacity: 0.8;
}

.goooch-product-card .product-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 339px;
    top: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0.6;
}

.goooch-product-card:hover .product-arrow {
    transform: translateX(6px);
    opacity: 1;
}

/* 不支持 backdrop-filter 的浏览器回退 */
@supports not (backdrop-filter: blur(20px)) {
    .goooch-product-card {
        background: #F5F3F9;
    }
}

/* View All Products 链接 */
.goooch-product-footer {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 12px;
}

.goooch-view-all {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(to left, #9929ea, #5808fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.goooch-view-all:hover {
    opacity: 0.8;
}

.goooch-view-all svg {
    stroke: #9929ea;
}

/* 搜索模态框 */
.goooch-search-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 99999;
}

.goooch-search-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 16px 0;
}

.goooch-search-box {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.goooch-search-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    transition: background 0.2s ease;
    z-index: 10;
}

.goooch-search-close:hover {
    background: #f3f4f6;
}

.goooch-search-form {
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.goooch-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.goooch-search-input-wrapper .search-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.goooch-search-input {
    width: 100%;
    padding: 16px 48px;
    font-size: 18px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
}

.goooch-search-input:focus {
    border-color: #9929EA;
    box-shadow: 0 0 0 3px rgba(153, 41, 234, 0.1);
}

.goooch-search-clear {
    position: absolute;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    transition: background 0.2s ease;
}

.goooch-search-clear:hover {
    background: #f3f4f6;
}

.goooch-search-suggestions {
    padding: 24px;
    max-height: 400px;
    overflow-y: auto;
}

.goooch-search-section {
    margin-bottom: 24px;
}

.goooch-search-section:last-child {
    margin-bottom: 0;
}

.goooch-search-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.goooch-search-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.goooch-search-links a {
    display: block;
    padding: 8px 0;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
}

.goooch-search-links a:hover {
    color: #9929EA;
}

/* 导航栏占位符 */
.goooch-nav-placeholder {
    height: 80px;
}

body.admin-bar .goooch-nav-placeholder {
    height: 80px;
}

/* 移动端菜单按钮 */
.goooch-mobile-toggle {
    display: none;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #374151;
}

.goooch-mobile-toggle:hover {
    color: #111827;
}

/* 移动端菜单 */
.goooch-mobile-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 16px;
}

.goooch-mobile-menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.goooch-mobile-menu-items li {
    margin: 0;
}

.goooch-mobile-link {
    display: block;
    padding: 12px 16px;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.goooch-mobile-link:hover,
.goooch-mobile-link.active {
    color: #9929EA;
    background: rgba(153, 41, 234, 0.05);
}

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

.goooch-mobile-expand {
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #6b7280;
}

.goooch-mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 16px;
    display: none;
}

[x-data] .goooch-mobile-submenu {
    display: block;
}

.goooch-mobile-submenu a {
    display: block;
    padding: 8px 16px;
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
}

.goooch-mobile-submenu a:hover {
    color: #9929EA;
}

.goooch-mobile-btns {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    margin-top: 16px;
}

.goooch-mobile-btns .goooch-btn-shop,
.goooch-mobile-btns .goooch-btn-login {
    flex: 1;
    text-align: center;
}

/* 响应式 */
@media (max-width: 1024px) {
    .goooch-menu-items {
        gap: 32px;
    }
    
    .goooch-product-card {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .goooch-desktop-menu {
        display: none;
    }
    
    .goooch-mobile-toggle {
        display: block;
    }
    
    .goooch-mobile-menu {
        display: block;
    }
    
    .goooch-nav-inner {
        gap: 16px;
    }
}
/* ============================================
   Global Typography
   ============================================ */

/* 基础排版 */
html {
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--goooch-text-gray);
}

/* H1 - 页面主标题（比如 Banner 主标题） */
h1,
.mcb-column-inner h1 {
    font-size: 2.5rem;       /* 约 40px */
    line-height: 1.2;
    font-weight: 700;
    color: #000000;
}

/* H2 - 区块标题：Who We Are / What We Offer 等 */
h2,
.mcb-column-inner h2,
h2.title,
.mcb-item-heading .title {
    font-size: 2rem;         /* 约 32px */
    line-height: 1.3;
    font-weight: 600;
    color: #000000;
}

/* H3 - 卡片标题、小模块标题 */
h3,
.mcb-column-inner h3 {
    font-size: 1.5rem;       /* 约 24px */
    line-height: 1.4;
    font-weight: 600;
    color: #000000;
}

/* H4~H6 按需稍微弱一点 */
h4,
.mcb-column-inner h4 {
    font-size: 1.25rem;      /* 约 20px */
    line-height: 1.4;
    font-weight: 500;
    color: #000000;
}
h4 a{
    color: #000000;
}

h5,
.mcb-column-inner h5,
h6,
.mcb-column-inner h6 {
    font-size: 1rem;         /* 约 16px */
    line-height: 1.4;
    font-weight: 500;
    color: #000000;
}

/* ============================================
   Testimonials Section Styles
   客户评价/推荐组件样式 - 按设计稿还原
   ============================================ */

.goooch-testimonials-section {
    padding: 20px 20px 20px;
    overflow: visible !important;
    background: transparent;
}

.goooch-testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    padding: 20px 0;
}

/* 标题样式 - 按设计稿 */
.goooch-testimonials-title {
    font-size: 38px;
    font-weight: 590;
    text-align: center;
    margin-bottom: 40px;
    color: #2E2E2E;
    line-height: 45.6px;
    font-family: var(--font-primary);
}

/* 整体布局：左按钮 | 轮播 | 右按钮 */
.goooch-testimonials-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 确保按钮顺序正确 */
.goooch-testimonials-wrapper .goooch-testimonials-prev {
    order: 1;
}

.goooch-testimonials-wrapper .goooch-testimonials-swiper {
    order: 2;
}

.goooch-testimonials-wrapper .goooch-testimonials-next {
    order: 3;
}

/* Navigation Arrows - 磨砂玻璃效果 */
.goooch-testimonials-nav {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    border-radius: 9999px;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    
    /* 磨砂玻璃背景 */
    background: #F5F3F9;
    
    
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    
    border: none;
    
    /* 平滑过渡 */
    transition: 
        transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.goooch-testimonials-nav:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.08);
    
    box-shadow: 
        0 8px 24px rgba(153, 41, 234, 0.18),
        0 4px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.goooch-testimonials-nav:active {
    transform: scale(0.95);
}

.goooch-testimonials-nav svg {
    width: 45px;
    height: 45px;
    color: #333333;
    stroke-width: 2.5px;
    transition: transform 0.2s ease;
}

.goooch-testimonials-nav:hover svg {
    transform: scale(1.1);
}

.goooch-testimonials-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: none;
}

/* Swiper Container */
.goooch-testimonials-swiper {
    flex: 1 1 auto !important;
    min-width: 0;
    max-width: calc(100% - 176px); /* 减去两个按钮宽度和间距 */
    overflow: hidden;
    padding: 20px 0;
}

.goooch-testimonials-swiper .swiper-wrapper {
    align-items: center;
}

/* 分页点默认隐藏，仅移动端显示 */
.goooch-testimonials-swiper .swiper-pagination {
    display: none;
    position: relative;
    margin-top: 10px;
}

.goooch-testimonials-swiper .swiper-slide {
    /* 给每个 slide 添加 padding，让悬停效果有空间 */
    padding: 15px 10px 25px;
    box-sizing: border-box;
}

/* Testimonial Card - 磨砂玻璃效果 + 柔和阴影 */
.goooch-testimonial-card {
    /* 磨砂玻璃背景 */
    background: #F5F3F9;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* 微妙的边框增加层次感 */
    border: 1px solid rgba(255, 255, 255, 0.6);
    
    border-radius: 21px;
    padding: 28px 20px 32px;
    height: 358px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    
    /* 柔和的多层阴影 */
    box-shadow: 
        0 4px 24px rgba(153, 41, 234, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    
    /* 平滑过渡 */
    transition: 
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.3s ease;
}

.goooch-testimonial-card:hover {
    transform: translateY(-4px);
    
    /* 悬停时阴影 - 减小范围 */
    box-shadow: 
        0 8px 16px rgba(153, 41, 234, 0.1),
        0 3px 6px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    
    /* 悬停时背景更实 */
    background: rgba(245, 243, 249, 0.95);
}

/* Header: Avatar + Info */
.goooch-testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

/* 头像 - 80x80 带光晕效果 */
.goooch-testimonial-avatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.goooch-testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 200px;
    object-fit: cover;
    /* 头像边框渐变 */
    border: 3px solid transparent;
    background: 
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(172, 45, 243, 0.3), rgba(88, 8, 251, 0.3)) border-box;
    /* 柔和阴影 */
    box-shadow: 0 4px 12px rgba(153, 41, 234, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goooch-testimonial-card:hover .goooch-testimonial-avatar img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(153, 41, 234, 0.25);
}

.goooch-testimonial-avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 200px;
    background: linear-gradient(135deg, #AC2DF3 0%, #5808FB 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(153, 41, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goooch-testimonial-card:hover .goooch-testimonial-avatar-placeholder {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(153, 41, 234, 0.4);
}

.goooch-testimonial-info {
    flex: 1;
}

/* 姓名样式 - 按设计稿 24px, #2E2E2E, font-weight: 590 */
.goooch-testimonial-name {
    font-size: 24px;
    font-weight: 590;
    color: #2E2E2E;
    margin: 0 0 8px 0;
    line-height: 27px;
    font-family: var(--font-primary);
}

.goooch-testimonial-location {
    font-weight: 590;
    color: #2E2E2E;
}

/* Star Rating */
.goooch-testimonial-rating {
    display: flex;
    gap: 3px;
}

.goooch-testimonial-rating .star {
    font-size: 22px;
    color: #ddd;
}

.goooch-testimonial-rating .star.filled {
    color: #F2CB51;
}

/* Content - 按设计稿 16px, #333333, opacity: 0.9, line-height: 24px */
.goooch-testimonial-content {
    flex: 1;
    overflow: hidden;
}

.goooch-testimonial-content p {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
    font-family: var(--font-primary);
    /* 限制显示行数，超出显示省略号 */
    display: -webkit-box;
    -webkit-line-clamp: 7; /* 最多显示7行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .goooch-testimonials-wrapper {
        padding: 0 74px;
    }
    
    .goooch-testimonials-nav {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 1024px) {
    .goooch-testimonials-title {
        font-size: 32px;
        margin-bottom: 40px;
        line-height: 38px;
    }
    
    .goooch-testimonials-wrapper {
        padding: 0 64px;
    }
    
    .goooch-testimonials-nav {
        width: 48px;
        height: 48px;
    }
    
    .goooch-testimonials-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .goooch-testimonial-card {
        padding: 24px 18px 28px;
        height: 320px;
    }
    
    .goooch-testimonial-avatar {
        width: 64px;
        height: 64px;
    }
    
    .goooch-testimonial-name {
        font-size: 20px;
        line-height: 24px;
    }
    
    .goooch-testimonial-content p {
        -webkit-line-clamp: 6;
    }
}

@media (max-width: 768px) {
    .goooch-testimonials-section {
        padding: 40px 15px;
    }
    
    .goooch-testimonials-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .goooch-testimonials-wrapper {
        padding: 0 50px;
    }
    
    .goooch-testimonials-nav {
        width: 40px;
        height: 40px;
    }
    
    .goooch-testimonials-nav svg {
        width: 16px;
        height: 16px;
    }
    
    .goooch-testimonial-card {
        padding: 20px 16px 24px;
        height: 300px;
    }
    
    .goooch-testimonial-avatar {
        width: 56px;
        height: 56px;
    }
    
    .goooch-testimonial-name {
        font-size: 18px;
    }
    
    .goooch-testimonial-content p {
        font-size: 15px;
        line-height: 22px;
        -webkit-line-clamp: 5;
    }
}

@media (max-width: 480px) {
    .goooch-testimonials-section {
        padding: 30px 0;
    }

    .goooch-testimonials-wrapper {
        padding: 0;
        gap: 0;
    }

    .goooch-testimonials-nav {
        display: none !important;
    }

    /* 移动端轮播全宽显示 */
    .goooch-testimonials-swiper {
        max-width: 100% !important;
        padding: 10px 0 40px; /* 底部留空间给分页点 */
    }

    .goooch-testimonials-swiper .swiper-slide {
        padding: 10px 16px 20px;
    }

    .goooch-testimonials-title {
        font-size: 24px;
        padding: 0 20px;
    }

    .goooch-testimonial-card {
        height: auto;
        min-height: 280px;
        margin: 0 auto;
        max-width: 340px; /* 限制最大宽度保持美观 */
    }

    .goooch-testimonial-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .goooch-testimonial-content p {
        -webkit-line-clamp: 6;
    }

    /* 移动端显示分页点 */
    .goooch-testimonials-swiper .swiper-pagination {
        display: block !important;
        bottom: 0 !important;
    }

    .goooch-testimonials-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ddd;
        opacity: 1;
        margin: 0 4px !important;
    }

    .goooch-testimonials-swiper .swiper-pagination-bullet-active {
        background: linear-gradient(135deg, #AC2DF3 0%, #5808FB 100%);
        width: 24px;
        border-radius: 4px;
    }
}

/* ============================================
   Goooch Custom FAQ Styles
   Design: Two-column grid with purple cards
   ============================================ */

/* FAQ Section Container - Apply to parent wrapper */
.goooch-faq-section .faq,
.goooch-faq-section .mfn-toggle {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* FAQ Item Styling */
.goooch-faq-section .faq .question,
.goooch-faq-section .mfn-toggle .mfn-toggle-item {
    background: #F5F3F9 !important;
    border-radius: 8px !important;
    border: none !important;
    margin-bottom: 24px !important;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height:96px;
}

.goooch-faq-section .faq .question:hover,
.goooch-faq-section .mfn-toggle .mfn-toggle-item:hover {
    background: #F5F3F9 !important;
    box-shadow: 0 2px 8px rgba(98, 71, 170, 0.1);
}

/* Hide the number box/indicator on the left */
.goooch-faq-section .faq .question:before,
.goooch-faq-section .faq .question:after,
.goooch-faq-section .faq .question .num,
.goooch-faq-section .mfn-toggle .toggle-bar-icon {
    display: none !important;
}

/* Question title styling */
.goooch-faq-section .faq .question > .title,
.goooch-faq-section .mfn-toggle .toggle-bar {
    padding: 18px 50px 18px 24px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #1B1139 !important;
    opacity: 0.88;
    background: transparent !important;
    box-shadow: none !important;
    position: relative;
    line-height: 1.5;
}

.goooch-faq-section .mfn-toggle .toggle-bar .toggle-heading {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #2D2A4A !important;
}

/* Hide default plus/minus icons */
.goooch-faq-section .faq .question > .title > .acc-icon-plus,
.goooch-faq-section .faq .question > .title > .acc-icon-minus,
.goooch-faq-section .mfn-toggle .toggle-icon {
    display: none !important;
}

/* Add custom arrow indicator (▶) */
.goooch-faq-section .faq .question > .title::after,
.goooch-faq-section .mfn-toggle .toggle-bar::after {
    content: "▶";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #2D2A4A;
    transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.goooch-faq-section .faq .question.active > .title::after,
.goooch-faq-section .mfn-toggle .mfn-toggle-item.active .toggle-bar::after {
    transform: translateY(-50%) rotate(90deg);
}

/* Answer section styling */
.goooch-faq-section .faq .question > .answer,
.goooch-faq-section .mfn-toggle .toggle-content {
    padding: 0 24px 18px 24px !important;
    color: #5A5676 !important;
    font-size: 14px;
    line-height: 1.7;
}

/* Active state styling */
.goooch-faq-section .faq .question.active,
.goooch-faq-section .mfn-toggle .mfn-toggle-item.active {
    background: #F5F3F9 !important;
}

.goooch-faq-section .faq .question.active > .title {
    border-width: 0 !important;
}

/* Divider styling - hide dividers in grid layout */
.goooch-faq-section .mfn-toggle .toggle-divider {
    display: none !important;
}

/* Responsive - Single column on mobile */
@media (max-width: 768px) {
    .goooch-faq-section .faq,
    .goooch-faq-section .mfn-toggle {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .goooch-faq-section .faq .question > .title,
    .goooch-faq-section .mfn-toggle .toggle-bar {
        padding: 16px 45px 16px 20px !important;
        font-size: 14px !important;
    }
    
    .goooch-faq-section .faq .question > .answer,
    .goooch-faq-section .mfn-toggle .toggle-content {
        padding: 0 20px 16px 20px !important;
    }
}

/* ============================================
   Alternative: Apply globally to all FAQ elements
   Use class .goooch-faq-grid on the wrapper
   ============================================ */

.goooch-faq-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.goooch-faq-grid > * {
    background: #F5F0FF !important;
    border-radius: 8px !important;
    border: none !important;
    padding: 18px 50px 18px 24px !important;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2D2A4A !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.goooch-faq-grid > *:hover {
    background: #EDE5FF !important;
}

.goooch-faq-grid > *::after {
    content: "▶";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #2D2A4A;
}

@media (max-width: 768px) {
    .goooch-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Goooch 高度可配置 FAQ/Accordion 系统
   Version: 2.0
   支持：自定义主题、SVG图标、灵活布局
   ============================================ */

/* ==========================================
   1. 基础样式和 CSS 变量定义
   ========================================== */

.goooch-faq {
    /* 颜色配置 */
    --faq-bg-default: #F5F0FF;
    --faq-bg-active: #AC2DF3;
    --faq-bg-hover: #EDE5FF;
    --faq-text-default: #2E2E2E;
    --faq-text-active: #FFFFFF;
    --faq-icon-color: #AC2DF3;
    --faq-icon-bg: #AC2DF3;
    --faq-shadow: rgba(172, 45, 243, 0.2);

    /* 尺寸配置 */
    --faq-border-radius: 20px;
    --faq-padding-v: 20px;
    --faq-padding-h: 30px;
    --faq-padding-left: 85px;
    --faq-font-size: 18px;
    --faq-font-weight: 600;
    --faq-line-height: 1.5;
    --faq-spacing: 15px;

    /* 左侧图标配置 */
    --faq-left-icon-display: flex;
    --faq-left-icon-content: "Q";
    --faq-left-icon-size: 50px;
    --faq-left-icon-font-size: 20px;
    --faq-left-icon-radius: 50%;
    --faq-left-icon-position: 20px;
    --faq-left-icon-bg: var(--faq-icon-bg);
    --faq-left-icon-color: #FFFFFF;

    /* 右侧图标配置 */
    --faq-right-icon-display: block;
    --faq-right-icon-size: 28px;
    --faq-right-icon-position: 25px;
    --faq-right-icon-color: var(--faq-icon-color);

    /* 内容配置 */
    --faq-answer-padding-left: var(--faq-padding-left);
    --faq-answer-color: #5A5676;
    --faq-answer-line-height: 1.8;
}

/* FAQ 容器基础样式 */
.goooch-faq .accordion,
.goooch-faq .faq,
.goooch-faq .mfn-accordion {
    display: block !important;
}

/* FAQ 单项基础样式 */
.goooch-faq .accordion .question,
.goooch-faq .faq .question,
.goooch-faq .mfn-accordion .question {
    margin-bottom: var(--faq-spacing) !important;
    border-radius: var(--faq-border-radius) !important;
    border: none !important;
    background: var(--faq-bg-default) !important;
    overflow: visible !important;
    transition: all 0.3s ease;
    position: relative;
}

/* 激活状态 */
.goooch-faq .accordion .question.active,
.goooch-faq .faq .question.active {
    background: var(--faq-bg-active) !important;
    box-shadow: 0 8px 20px var(--faq-shadow) !important;
}

/* 悬停状态 */
.goooch-faq .accordion .question:not(.active):hover,
.goooch-faq .faq .question:not(.active):hover {
    background: var(--faq-bg-hover) !important;
    transform: translateY(-2px);
}

/* 标题样式 */
.goooch-faq .accordion .question > .title,
.goooch-faq .faq .question > .title {
    padding: var(--faq-padding-v) var(--faq-padding-h) var(--faq-padding-v) var(--faq-padding-left) !important;
    font-size: var(--faq-font-size) !important;
    font-weight: var(--faq-font-weight) !important;
    color: var(--faq-text-default) !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    line-height: var(--faq-line-height);
}

.goooch-faq .accordion .question.active > .title,
.goooch-faq .faq .question.active > .title {
    color: var(--faq-text-active) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* 隐藏默认的数字和图标 */
.goooch-faq .accordion .question:after,
.goooch-faq .accordion .question > .num,
.goooch-faq .faq .question:after,
.goooch-faq .faq .question > .num {
    display: none !important;
}

/* 隐藏 BeTheme Accordion 的默认数字序号 */
.goooch-faq .accordion .question:before,
.goooch-faq .faq .question:before {
    display: none !important;
}

/* ==========================================
   2. 左侧图标样式
   ========================================== */

/* 左侧图标基础 - 文本模式（默认） */
.goooch-faq .accordion .question > .title:before,
.goooch-faq .faq .question > .title:before {
    content: var(--faq-left-icon-content) !important;
    display: var(--faq-left-icon-display) !important;
    width: var(--faq-left-icon-size) !important;
    height: var(--faq-left-icon-size) !important;
    border-radius: var(--faq-left-icon-radius) !important;
    background: var(--faq-left-icon-bg) !important;
    color: var(--faq-left-icon-color) !important;
    font-size: var(--faq-left-icon-font-size) !important;
    font-weight: 700 !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    left: var(--faq-left-icon-position) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border: none !important;
    box-shadow: 0 4px 10px var(--faq-shadow) !important;
}

/* 激活状态下的左侧图标 */
.goooch-faq .accordion .question.active > .title:before,
.goooch-faq .faq .question.active > .title:before {
    background: #FFFFFF !important;
    color: var(--faq-icon-bg) !important;
}

/* ==========================================
   3. 右侧图标样式
   ========================================== */

/* 默认隐藏原生的 +/- 图标，使用自定义的 */
.goooch-faq .accordion .question > .title > .acc-icon-plus,
.goooch-faq .accordion .question > .title > .acc-icon-minus,
.goooch-faq .faq .question > .title > .acc-icon-plus,
.goooch-faq .faq .question > .title > .acc-icon-minus {
    display: var(--faq-right-icon-display) !important;
    right: var(--faq-right-icon-position) !important;
    left: auto !important;
    width: auto !important;
    font-size: var(--faq-right-icon-size) !important;
    color: var(--faq-right-icon-color) !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.goooch-faq .accordion .question.active > .title > .acc-icon-minus,
.goooch-faq .faq .question.active > .title > .acc-icon-minus {
    color: var(--faq-text-active) !important;
}

/* ==========================================
   4. 答案区域样式
   ========================================== */

.goooch-faq .accordion .question > .answer,
.goooch-faq .faq .question > .answer {
    padding: 0 var(--faq-padding-h) 25px var(--faq-answer-padding-left) !important;
    background: transparent !important;
    color: var(--faq-answer-color) !important;
    line-height: var(--faq-answer-line-height) !important;
}

.goooch-faq .accordion .question.active > .answer,
.goooch-faq .faq .question.active > .answer {
    color: var(--faq-text-active) !important;
}

/* ==========================================
   5. 主题颜色配置
   ========================================== */

/* 主题1：绿色 */
.goooch-faq.theme-green {
    --faq-bg-default: linear-gradient(135deg, #E8F8F0 0%, #F0FDF8 100%);
    --faq-bg-active: linear-gradient(135deg, #00C27A 0%, #16A34A 100%);
    --faq-bg-hover: linear-gradient(135deg, #D4F4E6 0%, #E8F8F0 100%);
    --faq-icon-color: #00C27A;
    --faq-icon-bg: #00C27A;
    --faq-shadow: rgba(0, 194, 122, 0.2);
}

/* 主题2：蓝色 */
.goooch-faq.theme-blue {
    --faq-bg-default: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
    --faq-bg-active: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    --faq-bg-hover: linear-gradient(135deg, #BAE6FD 0%, #E0F2FE 100%);
    --faq-icon-color: #0EA5E9;
    --faq-icon-bg: #0EA5E9;
    --faq-shadow: rgba(14, 165, 233, 0.2);
}

/* 主题3：紫色（默认） */
.goooch-faq.theme-purple {
    --faq-bg-default: linear-gradient(135deg, #FAE8FF 0%, #FCF4FF 100%);
    --faq-bg-active: linear-gradient(135deg, #AC2DF3 0%, #8B1FD9 100%);
    --faq-bg-hover: linear-gradient(135deg, #F3E8FF 0%, #FAE8FF 100%);
    --faq-icon-color: #AC2DF3;
    --faq-icon-bg: #AC2DF3;
    --faq-shadow: rgba(172, 45, 243, 0.2);
}

/* 主题4：橙色 */
.goooch-faq.theme-orange {
    --faq-bg-default: linear-gradient(135deg, #FFEDD5 0%, #FFF7ED 100%);
    --faq-bg-active: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    --faq-bg-hover: linear-gradient(135deg, #FED7AA 0%, #FFEDD5 100%);
    --faq-icon-color: #F97316;
    --faq-icon-bg: #F97316;
    --faq-shadow: rgba(249, 115, 22, 0.2);
}

/* 主题5：红色 */
.goooch-faq.theme-red {
    --faq-bg-default: linear-gradient(135deg, #FEE2E2 0%, #FEF2F2 100%);
    --faq-bg-active: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    --faq-bg-hover: linear-gradient(135deg, #FECACA 0%, #FEE2E2 100%);
    --faq-icon-color: #EF4444;
    --faq-icon-bg: #EF4444;
    --faq-shadow: rgba(239, 68, 68, 0.2);
}

/* 主题6：灰色/中性 */
.goooch-faq.theme-gray {
    --faq-bg-default: linear-gradient(135deg, #F3F4F6 0%, #F9FAFB 100%);
    --faq-bg-active: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
    --faq-bg-hover: linear-gradient(135deg, #E5E7EB 0%, #F3F4F6 100%);
    --faq-icon-color: #6B7280;
    --faq-icon-bg: #6B7280;
    --faq-shadow: rgba(107, 114, 128, 0.2);
}

/* 自定义主题 - 使用内联 CSS 变量 */
.goooch-faq.theme-custom {
    /* 由用户通过 style 属性传入自定义颜色 */
}

/* ==========================================
   6. 左侧图标配置类
   ========================================== */

/* 隐藏左侧图标 */
.goooch-faq.icon-left-none {
    --faq-left-icon-display: none;
    --faq-padding-left: var(--faq-padding-h);
    --faq-answer-padding-left: var(--faq-padding-h);
}

/* SVG 图标模式 */
.goooch-faq.icon-left-svg .accordion .question > .title:before,
.goooch-faq.icon-left-svg .faq .question > .title:before {
    content: "" !important;
    background-image: var(--faq-left-icon-svg);
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

/* 自定义文本内容（通过 CSS 变量） */
.goooch-faq.icon-left-custom .accordion .question > .title:before,
.goooch-faq.icon-left-custom .faq .question > .title:before {
    content: var(--faq-left-icon-content) !important;
}

/* ==========================================
   7. 右侧图标配置类
   ========================================== */

/* 隐藏右侧图标 */
.goooch-faq.icon-right-none .accordion .question > .title > .acc-icon-plus,
.goooch-faq.icon-right-none .accordion .question > .title > .acc-icon-minus,
.goooch-faq.icon-right-none .faq .question > .title > .acc-icon-plus,
.goooch-faq.icon-right-none .faq .question > .title > .acc-icon-minus {
    display: none !important;
}

/* 箭头图标模式 */
.goooch-faq.icon-right-arrow .accordion .question > .title::after,
.goooch-faq.icon-right-arrow .faq .question > .title::after {
    content: "▶" !important;
    position: absolute;
    right: var(--faq-right-icon-position);
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--faq-right-icon-color);
    transition: transform 0.3s ease;
    display: block;
}

.goooch-faq.icon-right-arrow .accordion .question.active > .title::after,
.goooch-faq.icon-right-arrow .faq .question.active > .title::after {
    transform: translateY(-50%) rotate(90deg);
    color: var(--faq-text-active);
}

.goooch-faq.icon-right-arrow .accordion .question > .title > .acc-icon-plus,
.goooch-faq.icon-right-arrow .accordion .question > .title > .acc-icon-minus {
    display: none !important;
}

/* Chevron 图标模式（V形） */
.goooch-faq.icon-right-chevron .accordion .question > .title::after,
.goooch-faq.icon-right-chevron .faq .question > .title::after {
    content: "∨" !important;
    position: absolute;
    right: var(--faq-right-icon-position);
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--faq-right-icon-color);
    transition: transform 0.3s ease;
    display: block;
}

.goooch-faq.icon-right-chevron .accordion .question.active > .title::after,
.goooch-faq.icon-right-chevron .faq .question.active > .title::after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--faq-text-active);
}

.goooch-faq.icon-right-chevron .accordion .question > .title > .acc-icon-plus,
.goooch-faq.icon-right-chevron .accordion .question > .title > .acc-icon-minus {
    display: none !important;
}

/* SVG 图标模式 */
.goooch-faq.icon-right-svg .accordion .question > .title::after,
.goooch-faq.icon-right-svg .faq .question > .title::after {
    content: "" !important;
    position: absolute;
    right: var(--faq-right-icon-position);
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: var(--faq-right-icon-svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    display: block;
}

.goooch-faq.icon-right-svg .accordion .question.active > .title::after,
.goooch-faq.icon-right-svg .faq .question.active > .title::after {
    transform: translateY(-50%) rotate(180deg);
}

.goooch-faq.icon-right-svg .accordion .question > .title > .acc-icon-plus,
.goooch-faq.icon-right-svg .accordion .question > .title > .acc-icon-minus {
    display: none !important;
}

/* ==========================================
   8. 布局配置类
   ========================================== */

/* 紧凑布局 */
.goooch-faq.layout-compact {
    --faq-padding-v: 16px;
    --faq-padding-h: 24px;
    --faq-padding-left: 75px;
    --faq-spacing: 12px;
    --faq-border-radius: 12px;
}

/* 宽松布局 */
.goooch-faq.layout-spacious {
    --faq-padding-v: 24px;
    --faq-padding-h: 40px;
    --faq-padding-left: 95px;
    --faq-spacing: 20px;
    --faq-border-radius: 24px;
}

/* 极简布局 */
.goooch-faq.layout-minimal {
    --faq-border-radius: 8px;
    --faq-padding-v: 16px;
    --faq-padding-h: 20px;
    --faq-spacing: 8px;
}

.goooch-faq.layout-minimal .accordion .question,
.goooch-faq.layout-minimal .faq .question {
    box-shadow: none !important;
}

.goooch-faq.layout-minimal .accordion .question.active,
.goooch-faq.layout-minimal .faq .question.active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* ==========================================
   9. 尺寸配置类
   ========================================== */

/* 小尺寸 */
.goooch-faq.size-small {
    --faq-font-size: 14px;
    --faq-left-icon-size: 40px;
    --faq-left-icon-font-size: 16px;
    --faq-right-icon-size: 22px;
    --faq-padding-left: 70px;
}

/* 中等尺寸（默认） */
.goooch-faq.size-medium {
    --faq-font-size: 16px;
    --faq-left-icon-size: 45px;
    --faq-left-icon-font-size: 18px;
    --faq-right-icon-size: 26px;
    --faq-padding-left: 80px;
}

/* 大尺寸 */
.goooch-faq.size-large {
    --faq-font-size: 18px;
    --faq-left-icon-size: 50px;
    --faq-left-icon-font-size: 20px;
    --faq-right-icon-size: 28px;
    --faq-padding-left: 85px;
}

/* 超大尺寸 */
.goooch-faq.size-xlarge {
    --faq-font-size: 20px;
    --faq-left-icon-size: 55px;
    --faq-left-icon-font-size: 22px;
    --faq-right-icon-size: 32px;
    --faq-padding-left: 95px;
}

/* ==========================================
   10. 响应式设计
   ========================================== */

@media (max-width: 768px) {
    .goooch-faq {
        --faq-font-size: 16px;
        --faq-padding-v: 18px;
        --faq-padding-h: 20px;
        --faq-padding-left: 75px;
        --faq-left-icon-size: 45px;
        --faq-left-icon-font-size: 18px;
        --faq-left-icon-position: 15px;
        --faq-right-icon-size: 24px;
        --faq-right-icon-position: 20px;
    }

    .goooch-faq .accordion .question > .answer,
    .goooch-faq .faq .question > .answer {
        padding: 0 20px 20px 75px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    .goooch-faq {
        --faq-font-size: 14px;
        --faq-padding-v: 16px;
        --faq-padding-h: 16px;
        --faq-padding-left: 65px;
        --faq-left-icon-size: 40px;
        --faq-left-icon-font-size: 16px;
        --faq-left-icon-position: 12px;
        --faq-spacing: 12px;
    }
}

/* ==========================================
   11. 向后兼容 - 旧类名别名
   ========================================== */

/* 绿色主题别名 */
.goooch-faq-green {
    /* 使用新系统的绿色主题 */
    --faq-bg-default: linear-gradient(135deg, #E8F8F0 0%, #F0FDF8 100%);
    --faq-bg-active: linear-gradient(135deg, #00C27A 0%, #16A34A 100%);
    --faq-bg-hover: linear-gradient(135deg, #D4F4E6 0%, #E8F8F0 100%);
    --faq-icon-color: #00C27A;
    --faq-icon-bg: #00C27A;
    --faq-shadow: rgba(0, 194, 122, 0.2);
}

.goooch-faq-green .accordion,
.goooch-faq-green .faq {
    all: unset;
}

/* 隐藏 BeTheme 默认数字序号 */
.goooch-faq-green .accordion .question:before,
.goooch-faq-green .faq .question:before,
.goooch-faq-green .accordion .question:after,
.goooch-faq-green .faq .question:after,
.goooch-faq-green .accordion .question .num,
.goooch-faq-green .faq .question .num {
    display: none !important;
}

.goooch-faq-green .accordion .question,
.goooch-faq-green .faq .question {
    margin-bottom: 15px !important;
    border-radius: 20px !important;
    border: none !important;
    background: var(--faq-bg-default) !important;
    overflow: visible !important;
    transition: all 0.3s ease;
}

.goooch-faq-green .accordion .question.active,
.goooch-faq-green .faq .question.active {
    background: var(--faq-bg-active) !important;
    box-shadow: 0 8px 20px var(--faq-shadow) !important;
}

.goooch-faq-green .accordion .question > .title,
.goooch-faq-green .faq .question > .title {
    padding: 20px 30px 20px 85px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #2E2E2E !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.goooch-faq-green .accordion .question.active > .title,
.goooch-faq-green .faq .question.active > .title {
    color: #FFFFFF !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.goooch-faq-green .accordion .question > .title:before,
.goooch-faq-green .faq .question > .title:before {
    content: "Q" !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    /* background: var(--faq-icon-bg) !important; */
    background: #fff;
    color: #01C28B !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border: none !important;
    box-shadow: 0 4px 10px var(--faq-shadow) !important;
}

.goooch-faq-green .accordion .question.active > .title:before,
.goooch-faq-green .faq .question.active > .title:before {
    background: #FFFFFF !important;
    color: var(--faq-icon-bg) !important;
}

.goooch-faq-green .accordion .question > .title > .acc-icon-plus,
.goooch-faq-green .faq .question > .title > .acc-icon-plus {
    right: 25px !important;
    left: auto !important;
    width: auto !important;
    font-size: 28px !important;
    color: var(--faq-icon-color) !important;
}

.goooch-faq-green .accordion .question > .title > .acc-icon-minus,
.goooch-faq-green .faq .question > .title > .acc-icon-minus {
    right: 25px !important;
    left: auto !important;
    width: auto !important;
    font-size: 28px !important;
    color: #FFFFFF !important;
}

.goooch-faq-green .accordion .question > .answer,
.goooch-faq-green .faq .question > .answer {
    padding: 20px 30px 25px 85px !important;
    background: transparent !important;
    color: #2E2E2E !important;
    line-height: 1.8 !important;
}

.goooch-faq-green .accordion .question.active > .answer,
.goooch-faq-green .faq .question.active > .answer {
    color: #FFFFFF !important;
}

.goooch-faq-green .accordion .question:not(.active):hover,
.goooch-faq-green .faq .question:not(.active):hover {
    background: var(--faq-bg-hover) !important;
    transform: translateY(-2px);
}

/* 蓝色和紫色主题别名（同样的结构） */
.goooch-faq-blue {
    --faq-bg-default: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
    --faq-bg-active: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    --faq-bg-hover: linear-gradient(135deg, #BAE6FD 0%, #E0F2FE 100%);
    --faq-icon-color: #0EA5E9;
    --faq-icon-bg: #0EA5E9;
    --faq-shadow: rgba(14, 165, 233, 0.2);
}

.goooch-faq-purple {
    --faq-bg-default: linear-gradient(135deg, #FAE8FF 0%, #FCF4FF 100%);
    --faq-bg-active: linear-gradient(135deg, #AC2DF3 0%, #8B1FD9 100%);
    --faq-bg-hover: linear-gradient(135deg, #F3E8FF 0%, #FAE8FF 100%);
    --faq-icon-color: #AC2DF3;
    --faq-icon-bg: #AC2DF3;
    --faq-shadow: rgba(172, 45, 243, 0.2);
}

/* 隐藏 BeTheme 默认数字序号（蓝色和紫色主题） */
.goooch-faq-blue .accordion .question:before,
.goooch-faq-blue .faq .question:before,
.goooch-faq-blue .accordion .question:after,
.goooch-faq-blue .faq .question:after,
.goooch-faq-blue .accordion .question .num,
.goooch-faq-blue .faq .question .num,
.goooch-faq-purple .accordion .question:before,
.goooch-faq-purple .faq .question:before,
.goooch-faq-purple .accordion .question:after,
.goooch-faq-purple .faq .question:after,
.goooch-faq-purple .accordion .question .num,
.goooch-faq-purple .faq .question .num {
    display: none !important;
}

/* 复用绿色主题的所有样式规则 */
.goooch-faq-blue .accordion .question,
.goooch-faq-blue .faq .question,
.goooch-faq-purple .accordion .question,
.goooch-faq-purple .faq .question {
    margin-bottom: 15px !important;
    border-radius: 20px !important;
    border: none !important;
    background: var(--faq-bg-default) !important;
    overflow: visible !important;
    transition: all 0.3s ease;
}

.goooch-faq-blue .accordion .question.active,
.goooch-faq-blue .faq .question.active,
.goooch-faq-purple .accordion .question.active,
.goooch-faq-purple .faq .question.active {
    background: var(--faq-bg-active) !important;
    box-shadow: 0 8px 20px var(--faq-shadow) !important;
}

.goooch-faq-blue .accordion .question > .title,
.goooch-faq-blue .faq .question > .title,
.goooch-faq-purple .accordion .question > .title,
.goooch-faq-purple .faq .question > .title {
    padding: 20px 30px 20px 85px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #2E2E2E !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.goooch-faq-blue .accordion .question.active > .title,
.goooch-faq-blue .faq .question.active > .title,
.goooch-faq-purple .accordion .question.active > .title,
.goooch-faq-purple .faq .question.active > .title {
    color: #FFFFFF !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.goooch-faq-blue .accordion .question > .title:before,
.goooch-faq-blue .faq .question > .title:before,
.goooch-faq-purple .accordion .question > .title:before,
.goooch-faq-purple .faq .question > .title:before {
    content: "Q" !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: var(--faq-icon-bg) !important;
    color: #FFFFFF !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border: none !important;
    box-shadow: 0 4px 10px var(--faq-shadow) !important;
}

.goooch-faq-blue .accordion .question.active > .title:before,
.goooch-faq-blue .faq .question.active > .title:before,
.goooch-faq-purple .accordion .question.active > .title:before,
.goooch-faq-purple .faq .question.active > .title:before {
    background: #FFFFFF !important;
    color: var(--faq-icon-bg) !important;
}

.goooch-faq-blue .accordion .question > .title > .acc-icon-plus,
.goooch-faq-blue .faq .question > .title > .acc-icon-plus,
.goooch-faq-purple .accordion .question > .title > .acc-icon-plus,
.goooch-faq-purple .faq .question > .title > .acc-icon-plus {
    right: 25px !important;
    left: auto !important;
    width: auto !important;
    font-size: 28px !important;
    color: var(--faq-icon-color) !important;
}

.goooch-faq-blue .accordion .question > .title > .acc-icon-minus,
.goooch-faq-blue .faq .question > .title > .acc-icon-minus,
.goooch-faq-purple .accordion .question > .title > .acc-icon-minus,
.goooch-faq-purple .faq .question > .title > .acc-icon-minus {
    right: 25px !important;
    left: auto !important;
    width: auto !important;
    font-size: 28px !important;
    color: #FFFFFF !important;
}

.goooch-faq-blue .accordion .question > .answer,
.goooch-faq-blue .faq .question > .answer,
.goooch-faq-purple .accordion .question > .answer,
.goooch-faq-purple .faq .question > .answer {
    padding: 20px 30px 25px 85px !important;
    background: transparent !important;
    color: #2E2E2E !important;
    line-height: 1.8 !important;
}

.goooch-faq-blue .accordion .question.active > .answer,
.goooch-faq-blue .faq .question.active > .answer,
.goooch-faq-purple .accordion .question.active > .answer,
.goooch-faq-purple .faq .question.active > .answer {
    color: #FFFFFF !important;
}

.goooch-faq-blue .accordion .question:not(.active):hover,
.goooch-faq-blue .faq .question:not(.active):hover,
.goooch-faq-purple .accordion .question:not(.active):hover,
.goooch-faq-purple .faq .question:not(.active):hover {
    background: var(--faq-bg-hover) !important;
    transform: translateY(-2px);
}

/* 移动端响应式（旧类名） */
@media (max-width: 768px) {
    .goooch-faq-green .accordion .question > .title,
    .goooch-faq-blue .accordion .question > .title,
    .goooch-faq-purple .accordion .question > .title,
    .goooch-faq-green .faq .question > .title,
    .goooch-faq-blue .faq .question > .title,
    .goooch-faq-purple .faq .question > .title {
        padding: 18px 50px 18px 75px !important;
        font-size: 16px !important;
    }

    .goooch-faq-green .accordion .question > .title:before,
    .goooch-faq-blue .accordion .question > .title:before,
    .goooch-faq-purple .accordion .question > .title:before,
    .goooch-faq-green .faq .question > .title:before,
    .goooch-faq-blue .faq .question > .title:before,
    .goooch-faq-purple .faq .question > .title:before {
        width: 45px !important;
        height: 45px !important;
        left: 15px !important;
        font-size: 18px !important;
    }

    .goooch-faq-green .accordion .question > .answer,
    .goooch-faq-blue .accordion .question > .answer,
    .goooch-faq-purple .accordion .question > .answer,
    .goooch-faq-green .faq .question > .answer,
    .goooch-faq-blue .faq .question > .answer,
    .goooch-faq-purple .faq .question > .answer {
        padding: 15px 20px 20px 75px !important;
        font-size: 15px !important;
    }
}


/* ============================================
     Goooch 交互式步骤展示组件
     ============================================ */

  /* 容器 */
  .goooch-interactive-steps-custom {
    width: 100%;
    padding: 40px 0;
    font-family: 'Alexandria', sans-serif;
  }

  /* 主布局 - 左右两栏 */
  .steps-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ==========================================
     左侧 - 图片区域
     ========================================== */

  .steps-images {
    flex: 1;
    position: relative;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
  }

  .step-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .step-image.active {
    opacity: 1;
    visibility: visible;
    position: relative;
  }

  /* ==========================================
     右侧 - 步骤列表
     ========================================== */

  .steps-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* 每个步骤项 */
  .step-item {
    background: #E9F8F4;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* 激活状态 */
  .step-item.active {
    background: #01C28B;
    box-shadow: 0 4px 15px rgba(1, 194, 139, 0.25);
  }

  /* 步骤头部 */
  .step-header {
    padding: 16px 24px;
  }

  /* 步骤标题 */
  .step-title {
    color: #528879;
    font-size: 24px;
    font-weight: 500;
    line-height: 37.73px;
    margin: 0;
    transition: color 0.3s ease;
  }

  .step-item.active .step-title {
    color: #FFFFFF;
  }

  /* 步骤内容区域 */
  .step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
  }

  .step-item.active .step-content {
    max-height: 300px;
    padding: 0 24px 24px;
  }

  /* 步骤内容文字 */
  .step-content p {
    /*color: #FFFFFF;*/
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.15px;
    margin: 10px 0 0;
  }

  /* Hover效果 - 只对非激活项 */
  .step-item:not(.active):hover {
    background: #D4F4EC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 194, 139, 0.15);
  }

  /* ==========================================
     下载按钮
     ========================================== */

  .download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 44px;
    background: linear-gradient(180deg, #FF8000 0%, #FF8000 100%);
    box-shadow: 0px -6px 0px rgba(0, 0, 0, 0.15) inset;
    border-radius: 7.5px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.09px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-weight: bold;
  }

  .download-button:hover {
    background: linear-gradient(180deg, #FF9020 0%, #FF9020 100%);
    transform: translateY(-2px);
    box-shadow: 0px -6px 0px rgba(0, 0, 0, 0.15) inset,
                0 6px 20px rgba(255, 128, 0, 0.4);
    color: #FFFFFF;
  }

  .download-button svg {
    width: 18px;
    height: 18px;
  }

  /* ==========================================
     响应式设计
     ========================================== */

  @media (max-width: 1024px) {
    .steps-container {
      gap: 40px;
    }

    .step-title {
      font-size: 20px;
      line-height: 30px;
    }

    .step-content p {
      font-size: 15px;
      line-height: 23px;
    }
  }

  @media (max-width: 768px) {
    .steps-container {
      flex-direction: column;
      gap: 30px;
    }

    .steps-images {
      width: 100%;
      min-height: 300px;
    }

    .steps-list {
      width: 100%;
    }

    .step-title {
      font-size: 18px;
      line-height: 28px;
    }

    .step-header {
      padding: 12px 20px;
    }

    .step-content p {
      font-size: 14px;
      line-height: 22px;
    }

    .step-item.active .step-content {
      padding: 0 20px 20px;
    }

    .download-button {
      padding: 16px 32px;
      font-size: 16px;
    }
  }
/* ============================================
   交互式步骤组件 - 多主题系统
   ============================================ */

/* CSS变量基础（用于自定义主题） */
.goooch-interactive-steps-custom.theme-custom {
  --primary-color: var(--custom-primary, #01C28B);
  --light-bg: var(--custom-light, #E9F8F4);
  --text-color: var(--custom-text, #528879);
}

/* ==========================================
   主题1：绿色（默认）
   ========================================== */

.goooch-interactive-steps-custom.theme-green .step-item {
  background: #E9F8F4;
}

.goooch-interactive-steps-custom.theme-green .step-item.active {
  background: #01C28B;
  box-shadow: 0 4px 15px rgba(1, 194, 139, 0.25);
}
.goooch-interactive-steps-custom.theme-green.style-cards .step-item.active{
  background: #00CA73;
  box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.05);
}
.goooch-interactive-steps-custom.theme-green.style-cards .steps-images{
    margin-left:3%;
    margin-top: 2.2%;
}

.goooch-interactive-steps-custom.theme-green .step-title {
  /*color: #528879;*/
  color: #000000;
}

.goooch-interactive-steps-custom.theme-green .step-item.active .step-title {
  color: #FFFFFF;
}
.goooch-interactive-steps-custom.theme-green .step-item.active .step-content p {
  color: #FFFFFF;
}


.goooch-interactive-steps-custom.theme-green .download-button {
  background: linear-gradient(180deg, #FF8000 0%, #FF8000 100%);
  width: 16rem;
}

/* ==========================================
   主题2：蓝色
   ========================================== */

.goooch-interactive-steps-custom.theme-blue .step-item {
  background: #E0F2FE;
}

.goooch-interactive-steps-custom.theme-blue .step-item.active {
  background: #0EA5E9;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
}

.goooch-interactive-steps-custom.theme-blue .step-title {
  color: #0C7DB8;
}

.goooch-interactive-steps-custom.theme-blue .step-item.active .step-title {
  color: #FFFFFF;
}

.goooch-interactive-steps-custom.theme-blue .download-button {
  background: linear-gradient(180deg, #0EA5E9 0%, #0284C7 100%);
}

/* ==========================================
   主题3：紫色
   ========================================== */

.goooch-interactive-steps-custom.theme-purple .step-item {
  background: #FAE8FF;
}

.goooch-interactive-steps-custom.theme-purple .step-item.active {
  background: #AC2DF3;
  box-shadow: 0 4px 15px rgba(172, 45, 243, 0.25);
}

.goooch-interactive-steps-custom.theme-purple .step-title {
  color: #8B1FD9;
}

.goooch-interactive-steps-custom.theme-purple .step-item.active .step-title {
  color: #FFFFFF;
}

.goooch-interactive-steps-custom.theme-purple .download-button {
  background: linear-gradient(180deg, #AC2DF3 0%, #8B1FD9 100%);
}

/* ==========================================
   主题4：橙色
   ========================================== */

.goooch-interactive-steps-custom.theme-orange .step-item {
  background: #FFEDD5;
}

.goooch-interactive-steps-custom.theme-orange .step-item.active {
  background: #F97316;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.goooch-interactive-steps-custom.theme-orange .step-title {
  color: #C2410C;
}

.goooch-interactive-steps-custom.theme-orange .step-item.active .step-title {
  color: #FFFFFF;
}

.goooch-interactive-steps-custom.theme-orange .download-button {
  background: linear-gradient(180deg, #F97316 0%, #EA580C 100%);
}

/* ==========================================
   主题5：红色
   ========================================== */

.goooch-interactive-steps-custom.theme-red .step-item {
  background: #FEE2E2;
}

.goooch-interactive-steps-custom.theme-red .step-item.active {
  background: #EF4444;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}

.goooch-interactive-steps-custom.theme-red .step-title {
  color: #B91C1C;
}

.goooch-interactive-steps-custom.theme-red .step-item.active .step-title {
  color: #FFFFFF;
}

.goooch-interactive-steps-custom.theme-red .download-button {
  background: linear-gradient(180deg, #EF4444 0%, #DC2626 100%);
}

/* ==========================================
   主题6：自定义（使用CSS变量）
   ========================================== */

.goooch-interactive-steps-custom.theme-custom .step-item {
  background: var(--light-bg);
}

.goooch-interactive-steps-custom.theme-custom .step-item.active {
  background: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.goooch-interactive-steps-custom.theme-custom .step-title {
  color: var(--text-color);
}

.goooch-interactive-steps-custom.theme-custom .step-item.active .step-title {
  color: #FFFFFF;
}

.goooch-interactive-steps-custom.theme-custom .download-button {
  background: var(--primary-color);
}

/* ==========================================
   布局变体：图片在右侧
   ========================================== */

.goooch-interactive-steps-custom.layout-image-right .steps-container {
  flex-direction: row-reverse;
}

/* ==========================================
   布局变体：紧凑型（减少间距）
   ========================================== */

.goooch-interactive-steps-custom.layout-compact .steps-container {
  gap: 30px;
}

.goooch-interactive-steps-custom.layout-compact .steps-list {
  gap: 10px;
}

.goooch-interactive-steps-custom.layout-compact .step-header {
  padding: 12px 20px;
}

.goooch-interactive-steps-custom.layout-compact .step-title {
  font-size: 18px;
}

/* ==========================================
   布局变体：垂直堆叠（移动端优先）
   ========================================== */

.goooch-interactive-steps-custom.layout-vertical .steps-container {
  flex-direction: column;
}

.goooch-interactive-steps-custom.layout-vertical .steps-images,
.goooch-interactive-steps-custom.layout-vertical .steps-list {
  width: 100%;
}

/* ==========================================
   样式变体：卡片式（无手风琴效果）
   ========================================== */

.goooch-interactive-steps-custom.style-cards .step-content {
  max-height: none !important;
  display: block !important;
  padding: 0 24px 20px !important;
}

.goooch-interactive-steps-custom.style-cards .step-item {
  cursor: default;
  background: #fff;
  background: #FFF;
  box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.05);
}
.goooch-interactive-steps-custom.style-cards .step-header{
    padding-bottom: 10px;
}
/* ==========================================
   样式变体：标签页式
   ========================================== */

.goooch-interactive-steps-custom.style-tabs .step-item {
  border-radius: 8px 8px 0 0;
}

.goooch-interactive-steps-custom.style-tabs .step-item:not(.active) {
  opacity: 0.7;
}

.goooch-interactive-steps-custom.style-tabs .steps-list {
  border-bottom: 2px solid #E5E7EB;
}
/* ============================================
   News Page Styles - Based on Figma Design
   ============================================ */

/* 覆盖BeTheme默认样式 - 新闻页面 */
#goooch-news-page #Content {
  padding: 0 !important;
  margin: 0 !important;
}

#goooch-news-page .content_wrapper {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

#goooch-news-page .sections_group {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

#goooch-news-page .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* 新闻页面全局包装器 */
.goooch-news-wrapper {
  width: 100%;
  background: #FDFDFD;
  font-family: var(--font-primary);
  overflow-x: hidden;
}

/* Hero区域 - 渐变背景 */
.news-hero-section {
  position: relative;
  width: 100%;
  min-height: 611px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 60px;
  overflow: visible;
}

/* 渐变背景层 */
.news-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(131deg, #F5E4FF 0%, #FFF8EE 47%, #CEF3FF 100%);
  z-index: 1;
}

/* 白色渐变叠加层 */
.news-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 45%);
  z-index: 2;
  pointer-events: none;
}

/* 紫色渐变叠加层 - 移除 */
.news-hero-section .container::before {
  display: none;
}

.news-hero-section .container {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  width: 100%;
  padding: 0 195px;
  margin: 0 auto;
}

.news-hero-section .page-title {
  color: #2E2E2E;
  font-size: 40px;
  font-weight: 590;
  line-height: 1.125;
  text-align: left;
  margin: 0;
}

/* 特色新闻容器 - 在 Hero 内 */
.featured-news-container {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  width: 100%;
  padding: 0 195px;
  margin: 60px auto 0;
}

.featured-news-card {
  display: flex;
  gap: 0;
  align-items: stretch;
}

/* 特色图片 */
.featured-image {
  width: 618px;
  height: 410px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0;
}

.featured-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-image:hover img {
  transform: scale(1.05);
}

.featured-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* 特色内容 */
.featured-content {
  width: 430px;
  flex-shrink: 0;
  background: white;
  padding: 24px 20px 40px 20px;
  border-radius: 0;
  display: flex !important;
  flex-direction: column !important;
  position: relative;
}

/* 特色分类标签 */
.featured-category-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
  color: #F0F0F0;
  font-size: 12px;
  font-weight: 510;
  line-height: 13.50px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 30px;
  order: 1 !important;
}

.featured-title {
  color: #333333;
  font-size: 24px;
  font-weight: 590;
  line-height: 1.125;
  margin: 0 0 auto 0;
  order: 2 !important;
}

.featured-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-title a:hover {
  color: #9929EA;
}

.featured-date {
  opacity: 0.60;
  color: #333333;
  font-size: 16px;
  font-weight: 510;
  line-height: 25.15px;
  margin-top: 20px;
  order: 3 !important;
}

/* 最新新闻区域 */
.latest-news-section {
  width: 100%;
  padding: 80px 0 100px;
  background: transparent;
}

.latest-news-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 160px;
}

.section-title {
  text-align: center;
  color: #2E2E2E;
  font-size: 40px;
  font-weight: 590;
  margin: 0 0 40px 0;
}

/* 分类筛选器 */
.news-category-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
  padding: 0 20px;
}

.filter-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #FFFFFF;
  color: #333333;
  font-size: 16px;
  font-weight: 510;
  line-height: 1.5;
  text-decoration: none;
  border-radius: 25px;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover {
  background: #F3EFFF;
  border-color: #9929EA;
  color: #9929EA;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(153, 41, 234, 0.15);
}

.filter-btn.active {
  background: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(153, 41, 234, 0.3);
}

.filter-btn.active:hover {
  background: linear-gradient(270deg, #AC2DF3 0%, #6E25E8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(153, 41, 234, 0.4);
}

/* 新闻网格 - 3列布局 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 330px);
  gap: 29px;
  justify-content: center;
  margin-bottom: 60px;
}

/* 新闻卡片 */
.news-card {
  width: 330px;
  min-height: 339px;
  background: white;
  box-shadow: 0px 2px 32px rgba(51, 51, 51, 0.12);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 40px rgba(51, 51, 51, 0.18);
}

/* 新闻卡片图片 */
.news-card-image {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.news-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* 新闻卡片内容 */
.news-card-content {
  padding: 20px 12px 12px 12px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-title {
  color: #333333;
  font-size: 20px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  margin: 0 0 auto 0;
  width: 306px;
  max-width: 100%;
  height: 72px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex-shrink: 0;
}

.news-card-date {
  opacity: 0.80;
  color: #333333;
  font-size: 14px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.4;
  margin-top: 16px;
}

/* 新闻卡片摘要 */
.news-card-excerpt {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-card-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.25s ease;
  font-weight: inherit;
  font-family: inherit;
}

.news-card-title a:hover {
  color: #9929EA;
}

/* 新闻卡片图片容器 - 为标签定位做准备 */
.news-card-image {
  position: relative;
}

/* 新闻卡片分类标签 - 图片左下角 (top: 169px, 图片高度190px) */
.news-card-category-badge {
  position: absolute;
  bottom: 0px; /* 190 - 169 = 21 */
  left: 0;
  height: 23px;
  padding: 0 12px 0 6px;
  background: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
  color: #F3EBFF;
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 400;
  line-height: 23px;
  border-top-right-radius: 6px;
  z-index: 2;
  white-space: nowrap;
}

/* 分页导航包装器 */
.news-pagination-wrapper {
  width: 100%;
  padding-top: 40px;
}

/* 分页导航 */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* 页码容器 */
.page-numbers {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 页码按钮 */
.page-number {
  color: #333333;
  font-size: 24px;
  font-weight: 400;
  line-height: 27px;
  text-decoration: none;
  transition: color 0.3s ease, font-weight 0.3s ease;
  min-width: 32px;
  text-align: center;
}

.page-number:hover {
  color: #9929EA;
}

.page-number.active {
  color: #6E25E8;
  font-weight: 510;
}

/* 省略号 */
.page-ellipsis {
  color: #333333;
  font-size: 24px;
  font-weight: 400;
  line-height: 27px;
}

/* 上一页/下一页按钮 */
.page-nav-btn {
  color: #333333;
  font-size: 24px;
  font-weight: 510;
  line-height: 27px;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.page-nav-btn:hover {
  color: #9929EA;
}

.page-nav-btn.disabled {
  opacity: 0.40;
  cursor: not-allowed;
  pointer-events: none;
}

/* 无文章时的显示 */
.no-posts {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-posts p {
  font-size: 18px;
  margin: 0;
}

/* ==========================================
   响应式设计 - 移动端优化
   ========================================== */

@media (max-width: 1440px) {
  .news-hero-section .container,
  .featured-news-section .container,
  .latest-news-section .container {
    padding: 0 80px;
  }
}

@media (max-width: 1200px) {
  /* 调整容器内边距 */
  .news-hero-section .container,
  .featured-news-section .container,
  .latest-news-section .container {
    padding: 0 40px;
  }

  /* 新闻网格改为2列 */
  .news-grid {
    grid-template-columns: repeat(2, 330px);
  }

  /* 特色卡片调整 */
  .featured-image {
    width: 55%;
    height: auto;
    min-height: 350px;
  }

  .featured-content {
    width: 45%;
  }
}

@media (max-width: 992px) {
  /* Hero标题调整 */
  .news-hero-section .page-title {
    font-size: 32px;
    line-height: 36px;
  }

  /* 特色新闻容器 - 减少内边距 */
  .featured-news-container {
    padding: 0 40px;
    margin-top: 40px;
  }

  /* 特色卡片垂直布局 */
  .featured-news-card {
    flex-direction: column;
  }

  .featured-image {
    width: 100%;
    height: 300px;
  }

  .featured-content {
    width: 100%;
    padding: 30px;
  }

  /* 章节标题调整 */
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  /* 新闻网格改为1列，但保持卡片宽度 */
  .news-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .news-card {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  /* 容器内边距 */
  .news-hero-section .container,
  .featured-news-section .container,
  .latest-news-section .container {
    padding: 0 20px;
  }

  /* Hero区域 */
  .news-hero-section {
    height: 400px;
  }

  .news-hero-section .page-title {
    font-size: 28px;
    line-height: 32px;
  }

  /* 特色新闻区域 */
  .featured-news-section {
    padding: 40px 0;
  }

  .featured-image {
    height: 250px;
  }

  .featured-title {
    font-size: 20px;
    line-height: 24px;
  }

  /* 特色新闻容器 - 移动端减少内边距 */
  .featured-news-container {
    padding: 0 20px;
    margin-top: 30px;
  }

  .featured-content {
    padding: 20px 16px 30px;
  }

  /* 最新新闻区域 */
  .latest-news-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  /* 分类筛选器 */
  .news-category-filter {
    gap: 8px;
    margin-bottom: 30px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  /* 新闻网格 */
  .news-grid {
    gap: 20px;
  }

  /* 分页导航 */
  .news-pagination {
    gap: 20px;
    flex-wrap: wrap;
  }

  .page-numbers {
    gap: 20px;
  }

  .page-number,
  .page-ellipsis,
  .page-nav-btn {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  /* Hero区域 */
  .news-hero-section {
    height: 300px;
  }

  .news-hero-section .page-title {
    font-size: 24px;
    line-height: 28px;
  }

  /* 特色内容 */
  .featured-content {
    padding: 20px;
  }

  .featured-title {
    font-size: 18px;
    line-height: 22px;
  }

  /* 章节标题 */
  .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  /* 分类筛选器 */
  .news-category-filter {
    gap: 6px;
    margin-bottom: 24px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* 新闻卡片高度自适应 */
  .news-card {
    height: auto;
  }

  /* 分页导航 */
  .page-number,
  .page-ellipsis,
  .page-nav-btn {
    font-size: 16px;
  }
}

/* ============================================
   News Page Animations - 克制而精致的动画效果
   ============================================ */

/* 基础动画定义 */
@keyframes newsRevealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes newsRevealFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes newsRevealScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 标题入场动画 - 淡入上移 */
.news-hero-section .page-title {
  animation: newsRevealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

/* 特色新闻卡片入场动画 */
.featured-news-card {
  animation: newsRevealScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.25s;
  opacity: 0;
}

/* Latest News 标题入场 */
.latest-news-section .section-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.latest-news-section .section-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 新闻卡片 - 交错入场动画 */
.news-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
}

.news-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 卡片悬停增强 - 精致的微交互 */
.news-card:hover,
.news-card.is-visible:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(51, 51, 51, 0.14),
              0 4px 12px rgba(153, 41, 234, 0.08);
}

/* 卡片激活状态 - 点击时的反馈 */
.news-card:active {
  transform: translateY(-3px);
  transition-duration: 0.1s;
}

/* 特色图片悬停 - 渐进式缩放 */
.featured-image img,
.news-card-image img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-image:hover img,
.news-card:hover .news-card-image img {
  transform: scale(1.04);
}

/* 标题链接悬停 - 优雅的颜色过渡 */
.featured-title a,
.news-card-title a {
  transition: color 0.25s ease;
  position: relative;
}

/* 分类标签微动画 */
.featured-category-badge,
.news-card-category-badge {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-news-card:hover .featured-category-badge {
  transform: translateX(2px);
  box-shadow: -2px 2px 8px rgba(153, 41, 234, 0.2);
}

.news-card:hover .news-card-category-badge {
  box-shadow: 2px 0 8px rgba(153, 41, 234, 0.25);
}

/* 分页按钮微交互 */
.page-number,
.page-nav-btn {
  transition: color 0.25s ease, transform 0.2s ease;
}

.page-number:hover,
.page-nav-btn:not(.disabled):hover {
  transform: translateY(-2px);
}

.page-number:active,
.page-nav-btn:not(.disabled):active {
  transform: translateY(0);
}

/* 当前页码强调动画 */
.page-number.active {
  position: relative;
}

.page-number.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
  border-radius: 50%;
  animation: newsRevealScale 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* 特色内容区域悬停效果 */
.featured-content {
  transition: box-shadow 0.3s ease;
}

.featured-news-card:hover .featured-content {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* 日期文字悬停效果 */
.featured-date,
.news-card-date {
  transition: opacity 0.25s ease;
}

.featured-news-card:hover .featured-date,
.news-card:hover .news-card-date {
  opacity: 1;
}

/* 减少动画偏好 - 尊重用户设置 */
@media (prefers-reduced-motion: reduce) {
  .news-hero-section .page-title,
  .featured-news-card,
  .news-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .news-card.is-visible,
  .latest-news-section .section-title.is-visible {
    opacity: 1;
    transform: none;
  }

  .featured-image img,
  .news-card-image img,
  .news-card,
  .page-number,
  .page-nav-btn {
    transition: none;
  }
}

/* ============================================
   News Page - 标准版动效增强
   与 FAQ 页面风格一致
   方案 A: 磨砂玻璃效果 (Glassmorphism)
   方案 B: 卡片悬浮效果 (Hover Elevation)
   方案 D: 微交互动效 (Micro-interactions)
   ============================================ */

/* ----------------------------------------
   字体排版优化 - 使用 Inter 字体
   ---------------------------------------- */

/* 页面标题优化 */
.news-hero-section .page-title {
  font-family: var(--font-elegant);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

/* Section 标题优化 */
.latest-news-section .section-title {
  font-family: var(--font-elegant);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

/* 特色文章标题优化 */
.featured-title {
  font-family: var(--font-elegant);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.featured-title a {
  color: #2a2a2a;
}

/* 特色文章日期优化 */
.featured-date {
  font-family: var(--font-elegant);
  font-size: 14px;
  font-weight: 400;
  color: #888;
  opacity: 1;
}

/* 特色分类标签优化 */
.featured-category-badge {
  font-family: var(--font-elegant);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 14px;
}

/* 新闻卡片标题优化 */
.news-card-title {
  font-family: var(--font-elegant);
  font-size: 17px;
  font-weight: 450;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: #2a2a2a;
}

.news-card-title a {
  color: #2a2a2a;
}

/* 新闻卡片日期优化 */
.news-card-date {
  font-family: var(--font-elegant);
  font-size: 13px;
  font-weight: 400;
  color: #888;
  opacity: 1;
}

/* 新闻卡片分类标签优化 */
.news-card-category-badge {
  font-family: var(--font-elegant);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* 分页按钮优化 */
.page-number,
.page-nav-btn {
  font-family: var(--font-elegant);
  font-size: 14px;
  font-weight: 450;
}

/* ----------------------------------------
   方案 A: 磨砂玻璃效果 (Glassmorphism)
   ---------------------------------------- */

/* 新闻卡片磨砂玻璃效果 */
.news-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 4px 24px rgba(51, 51, 51, 0.08),
    0 1px 3px rgba(51, 51, 51, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* 特色新闻卡片磨砂效果 */
.featured-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 4px 32px rgba(51, 51, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* 分页容器磨砂效果 */
.news-pagination {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 12px rgba(51, 51, 51, 0.06);
}

/* ----------------------------------------
   方案 B: 卡片悬浮效果 (Hover Elevation)
   ---------------------------------------- */

/* 新闻卡片悬浮效果 */
.news-card {
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(153, 41, 234, 0.12);
  box-shadow:
    0 16px 48px rgba(51, 51, 51, 0.12),
    0 6px 16px rgba(51, 51, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* 特色新闻悬浮效果 */
.featured-news-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-news-card:hover {
  transform: translateY(-4px);
}

.featured-news-card:hover .featured-content {
  border-color: rgba(153, 41, 234, 0.1);
  box-shadow:
    0 12px 40px rgba(51, 51, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* 分页按钮悬浮效果 */
.page-number {
  transition:
    all 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s ease;
  border-radius: 8px;
  padding: 8px 14px;
}

.page-number:hover {
  background: rgba(153, 41, 234, 0.08);
  transform: translateY(-2px);
}

.page-number.active {
  background: linear-gradient(135deg, #9929EA, #5808FB);
  color: #fff;
  box-shadow: 0 4px 12px rgba(153, 41, 234, 0.3);
}

.page-nav-btn {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  padding: 8px 16px;
}

.page-nav-btn:not(.disabled):hover {
  background: rgba(153, 41, 234, 0.08);
  color: #9929EA;
}

/* ----------------------------------------
   方案 D: 微交互动效 (Micro-interactions)
   ---------------------------------------- */

/* 1. 卡片点击涟漪效果 */
.news-card {
  position: relative;
  overflow: hidden;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(153, 41, 234, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

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

/* 2. 标题悬浮效果 - 已禁用下划线 */
.news-card-title a {
  position: relative;
  display: inline;
  background-image: none;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-title a {
  color: #9929EA;
}

.featured-title a {
  position: relative;
  display: inline;
  background-image: none;
  transition: color 0.3s ease;
}

.featured-news-card:hover .featured-title a {
  color: #9929EA;
}

/* 3. 分类标签闪光效果 */
.featured-category-badge {
  position: relative;
  overflow: hidden;
}

.news-card-category-badge {
  overflow: hidden;
  /* 保持 position: absolute 不变 */
}

.featured-category-badge::after,
.news-card-category-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.featured-news-card:hover .featured-category-badge::after,
.news-card:hover .news-card-category-badge::after {
  left: 100%;
}

/* 4. 图片缩放优化 */
.news-card-image {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.news-card-image img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card-image img {
  transform: scale(1.06);
}

.featured-image {
  overflow: hidden;
}

.featured-image img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-news-card:hover .featured-image img {
  transform: scale(1.04);
}

/* 5. 日期文字悬浮效果 */
.news-card-date,
.featured-date {
  transition: color 0.25s ease, transform 0.25s ease;
}

.news-card:hover .news-card-date {
  color: #9929EA;
  transform: translateX(4px);
}

.featured-news-card:hover .featured-date {
  color: #9929EA;
}

/* 6. 分页点击效果 */
.page-number:active,
.page-nav-btn:not(.disabled):active {
  transform: scale(0.95);
}

/* ----------------------------------------
   响应式适配 - 字体大小调整
   ---------------------------------------- */
@media (max-width: 1200px) {
  .news-hero-section .page-title {
    font-size: 34px;
  }

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

@media (max-width: 768px) {
  .news-hero-section .page-title {
    font-size: 28px;
  }

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

  .featured-title {
    font-size: 18px;
  }

  .news-card-title {
    font-size: 15px;
  }

  .news-card:hover {
    transform: translateY(-4px);
  }

  /* 移动端禁用标题下划线效果 */
  .news-card-title a,
  .featured-title a {
    background-image: none;
  }
}

@media (max-width: 480px) {
  .news-hero-section .page-title {
    font-size: 24px;
  }

  .latest-news-section .section-title {
    font-size: 20px;
  }

  .featured-title {
    font-size: 16px;
  }

  .news-card-title {
    font-size: 14px;
  }

  .news-card-date,
  .featured-date {
    font-size: 12px;
  }
}

/* 减少动画偏好 - 新闻增强部分 */
@media (prefers-reduced-motion: reduce) {
  .news-card,
  .featured-news-card {
    transition: none;
    transform: none !important;
  }

  .news-card::before {
    display: none;
  }

  .news-card-title a,
  .featured-title a {
    background-image: none;
  }

  .featured-category-badge::after,
  .news-card-category-badge::after {
    display: none;
  }
}

/* ============================================
   Hero Banner Styles
   响应式 + 入场动画 + 浮动动画
   ============================================ */

/* 浮动动画 keyframes */
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* 入场动画 keyframes */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Banner 容器 */
.goooch-hero-banner {
  width: 100%;
  min-height: 500px;
  background: linear-gradient(180deg, #F6EBFE 0%, #FFFFFF 100%);
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* 左侧内容区 */
.hero-content {
  flex: 1;
  max-width: 600px;
  animation: heroFadeInUp 0.8s ease-out forwards;
}

/* 标题样式 */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero-title-main {
  display: block;
  background: linear-gradient(90deg, #9929EA 0%, #AC2DF3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-title-sub {
  display: block;
  background: linear-gradient(90deg, #9929EA 0%, #AC2DF3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* 描述文字 */
.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
  animation: heroFadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

/* 高亮引用 */
.hero-highlight {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: #9929EA;
  margin-bottom: 28px;
  animation: heroFadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

/* 按钮样式 */
.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(270deg, #9929EA 0%, #7B1FD4 100%);
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(153, 41, 234, 0.35);
  transition: all 0.3s ease;
  animation: heroFadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(153, 41, 234, 0.45);
  background: linear-gradient(270deg, #AC2DF3 0%, #9929EA 100%);
}

.hero-button-icon {
  transition: transform 0.3s ease;
}

.hero-button:hover .hero-button-icon {
  transform: translateX(3px);
}

/* 右侧图片区 */
.hero-image-wrapper {
  flex: 0 0 auto;
  max-width: 500px;
  animation: heroFadeInRight 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  animation: heroFloat 3s ease-in-out infinite;
}

/* ============================================
   Hero Banner 响应式
   ============================================ */

/* 平板横屏 */
@media (max-width: 1024px) {
  .goooch-hero-banner {
    padding: 60px 0 50px;
    min-height: 450px;
  }

  .hero-container {
    gap: 30px;
  }

  .hero-content {
    max-width: 500px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-image-wrapper {
    max-width: 380px;
  }
}

/* 平板竖屏 */
@media (max-width: 768px) {
  .goooch-hero-banner {
    padding: 50px 0 40px;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-highlight {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-button {
    padding: 12px 24px;
    font-size: 15px;
  }

  .hero-image-wrapper {
    max-width: 320px;
    order: 2;
  }
}

/* 手机端 */
@media (max-width: 480px) {
  .goooch-hero-banner {
    padding: 40px 0 30px;
  }

  .hero-container {
    padding: 0 16px;
    gap: 30px;
  }

  .hero-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-highlight {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-button {
    padding: 11px 22px;
    font-size: 14px;
  }

  .hero-image-wrapper {
    max-width: 260px;
  }

  /* 手机端减小浮动幅度 */
  .hero-image {
    animation: heroFloat 3s ease-in-out infinite;
  }

  @keyframes heroFloat {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-12px);
    }
  }
}

/* ============================================
   News Detail Page Styles - 新闻详情页
   Based on Figma Design
   ============================================ */

/* 单篇文章页面 - 移除 BeTheme 默认顶部间距 */
body.single-post #Content,
body.single #Content,
body.single-format-standard #Content {
  padding-top: 0 !important;
  margin-top: 0 !important;
  padding: 0 !important;
}

body.single-post .content_wrapper,
body.single .content_wrapper {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.single-post .sections_group,
body.single .sections_group {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.single-post .entry-content,
body.single .entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* BeTheme #Content 默认有 30px padding-top，强制移除 */
#Content {
  padding-top: 0 !important;
  background: #fff!important;
}
#Wrapper {
  background: #fff!important;
}
#goooch-products-page{
    background: linear-gradient(rgb(245, 228, 255) 0%, rgba(255, 248, 238, 0.8) 30%, rgba(206, 243, 255, 0.5) 60%, rgba(255, 255, 255, 0) 100%), linear-gradient(105deg, rgb(245, 228, 255) 0%, rgb(255, 248, 238) 47%, rgb(206, 243, 255) 2400px);
}


/* 覆盖 BeTheme 默认样式 */
.goooch-news-detail #Content {
  padding: 0 !important;
  margin: 0 !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* 移除 BeTheme 默认的顶部间距 */
.single-post.goooch-news-detail #Content,
.single.goooch-news-detail #Content {
  padding-top: 0 !important;
}

/* 如果 BeTheme 在 body 上添加间距 */
body.single-post #Content {
  padding-top: 0 !important;
}

/* 移除 BeTheme hooks 产生的空间 */
.goooch-news-detail #mfn_hook_top,
.goooch-news-detail #mfn_hook_content_before,
.goooch-news-detail .mfn-hook-content-before {
  display: none !important;
}

/* 确保 article 紧贴顶部 */
article.goooch-news-detail {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.goooch-news-detail .content_wrapper {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.goooch-news-detail .sections_group {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

.goooch-news-detail .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* 页面整体渐变背景 */
.goooch-news-detail {
  background: linear-gradient(180deg, rgba(121, 24, 243, 0.10) 0%, rgba(11, 12, 19, 0.10) 100%);
  min-height: 100vh;
}

/* Hero 区域 */
.news-detail-hero {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero 装饰背景 */
.news-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: url('images/news_banner_bg.jpg') center center / cover no-repeat;
  z-index: 1;
}

/* 装饰形状 */
.news-detail-hero::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 10%;
  width: 170px;
  height: 130px;
  background: rgba(129, 185, 255, 0.2);
  transform: rotate(45deg);
  z-index: 2;
}

.news-detail-hero .container {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  width: 100%;
  padding: 0 160px;
  margin: 0 auto;
}

.news-detail-hero .hero-title {
  color: #2E2E2E;
  font-size: 44px;
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  animation: faqFadeInUp 0.6s ease-out forwards;
}

/* 面包屑导航 */
.news-breadcrumb {
  background: transparent;
  padding: 24px 0;
}

.news-breadcrumb .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 160px;
}

.news-breadcrumb a,
.news-breadcrumb span {
  color: #333333;
  font-size: 20px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 22.5px;
  text-decoration: none;
}

.news-breadcrumb a:hover {
  color: #9929EA;
}

.news-breadcrumb .separator {
  margin: 0 8px;
  color: #333;
}

.news-breadcrumb .current {
  text-decoration: none;
}

/* 主体内容区域 */
.news-detail-main {
  background: transparent;
  padding: 0 0 80px;
}

.news-detail-main .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 160px;
}

/* 两栏网格布局 */
.news-detail-grid {
  display: grid;
  grid-template-columns: 1fr 363px;
  gap: 40px;
  align-items: start;
}

/* 左侧：文章内容 */
.news-detail-content {
  min-width: 0;
}

/* 文章卡片 */
.article-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0px 1px 24px rgba(51, 51, 51, 0.10);
  padding: 30px 20px;
  animation: faqFadeInUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
}

/* 文章标题 */
.article-title {
  color: #2E2E2E;
  font-size: 30px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 16px 0;
}

/* 文章日期 */
.article-date {
  color: #2E2E2E;
  font-size: 14px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 24px;
}

/* 特色图片 */
.article-featured-image {
  width: 618px;
  max-width: 100%;
  margin: 0 auto 24px;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 文章正文 */
.article-body {
  color: #333333;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 300;
  line-height: 1.7;
  max-width: 610px;
}

.article-body p {
  margin-bottom: 1.5em;
  font-weight: 300;
}

.article-body h2,
.article-body h3,
.article-body h4,
.article-body strong {
  color: #333333;
  font-weight: 510;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.article-body h2 {
  font-size: 20px;
}

.article-body h3 {
  font-size: 18px;
}

.article-body h4 {
  font-size: 16px;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

.article-body li {
  margin-bottom: 0.5em;
}

.article-body a {
  color: #9929EA;
  text-decoration: underline;
}

.article-body a:hover {
  color: #5808FB;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5em 0;
}

.article-body blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  background: #F9F5FF;
  border-left: 4px solid #9929EA;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #5A5676;
}

/* 右侧：侧边栏 */
.news-detail-sidebar {
  position: sticky;
  top: 100px;
  background: white;
  border-radius: 20px;
  padding: 24px 16px;
}

.sidebar-title {
  color: #2E2E2E;
  font-size: 24px;
  font-family: var(--font-primary);
  font-weight: 400;
  margin: 0 0 24px 0;
  animation: newsRevealUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

/* 侧边栏文章列表 */
.sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

/* 侧边栏新闻卡片 */
.sidebar-news-card {
  width: 330px;
  max-width: 100%;
  min-height: 339px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 1px 24px rgba(51, 51, 51, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: newsRevealUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: flex;
  flex-direction: column;
}

.sidebar-news-card:nth-child(1) { animation-delay: 0.3s; }
.sidebar-news-card:nth-child(2) { animation-delay: 0.4s; }
.sidebar-news-card:nth-child(3) { animation-delay: 0.5s; }

.sidebar-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 32px rgba(51, 51, 51, 0.15);
}

/* 侧边栏卡片图片 */
.sidebar-card-image {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.sidebar-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.sidebar-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sidebar-news-card:hover .sidebar-card-image img {
  transform: scale(1.05);
}

.sidebar-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* 侧边栏分类标签 */
.sidebar-category-badge {
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 25px;
  padding: 0 12px 0 6px;
  background: linear-gradient(270deg, #9929EA 0%, #5808FB 100%);
  color: #FFFFFF;
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 400;
  line-height: 25px;
  border-top-right-radius: 6px;
}

/* 侧边栏卡片内容 */
.sidebar-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sidebar-card-title {
  color: #333333;
  font-size: 20px;
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.2px;
  margin: 0 0 auto 0;
  min-height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-card-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.25s ease;
}

.sidebar-card-title a:hover {
  color: #9929EA;
}

.sidebar-card-date {
  color: #333333;
  font-size: 14px;
  font-family: var(--font-primary);
  font-weight: 400;
  opacity: 0.8;
  margin-top: 12px;
}

.no-related {
  color: #666;
  font-size: 14px;
}

/* ==========================================
   响应式设计 - 新闻详情页
   ========================================== */

@media (max-width: 1440px) {
  .news-detail-hero .container,
  .news-breadcrumb .container,
  .news-detail-main .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (max-width: 1200px) {
  .news-detail-hero .container,
  .news-breadcrumb .container,
  .news-detail-main .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .news-detail-hero .hero-title {
    font-size: 38px;
  }

  .news-detail-grid {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .news-detail-hero {
    height: 160px;
  }

  .news-detail-hero .hero-title {
    font-size: 32px;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 992px) {
  .news-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .news-detail-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  .news-detail-hero .container,
  .news-breadcrumb .container,
  .news-detail-main .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .news-detail-hero {
    height: 140px;
  }

  .news-detail-hero .hero-title {
    font-size: 26px;
  }

  .article-card {
    padding: 20px;
  }

  .article-title {
    font-size: 22px;
  }

  .sidebar-posts {
    grid-template-columns: 1fr;
  }

  .sidebar-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .news-detail-hero {
    height: 120px;
  }

  .news-detail-hero .hero-title {
    font-size: 22px;
    letter-spacing: 0;
  }

  .article-title {
    font-size: 20px;
  }

  .news-breadcrumb .current {
    display: block;
    margin-top: 4px;
  }
}

/* ============================================
   FAQ Page Styles - Based on Figma Design
   Responsive: PC (two-column) / Mobile (tabs)
   ============================================ */

/* 覆盖 BeTheme 默认样式 - FAQ页面 */
#goooch-faq-page #Content {
  padding: 0 !important;
  margin: 0 !important;
}

#goooch-faq-page .content_wrapper {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

#goooch-faq-page .sections_group {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

#goooch-faq-page .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* FAQ 页面全局包装器 */
.goooch-faq-wrapper {
  width: 100%;
  font-family: var(--font-primary);
  overflow-x: hidden;
  background: linear-gradient(100deg, rgba(245, 228, 255, 0.6) 4%, rgba(255, 248, 238, 0.6) 50%, rgba(206, 243, 255, 0.6) 100%);
  min-height: 100vh;
}

/* ==========================================
   FAQ Banner 区域
   ========================================== */

.faq-banner {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.faq-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FFE4E5 0%, #FFE1F5 50%, #FFF9D7 100%);
  z-index: 1;
}

/* 装饰问号 - 左侧 */
.faq-decor {
  position: absolute;
  z-index: 2;
}

.faq-decor-left {
  top: 27px;
  left: 81px;
}

.faq-decor-right {
  top: 6px;
  right: -52px;
}

.decor-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 50%, #FEB692 100%);
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  transform: rotate(-10deg);
  box-shadow: 0 4px 20px rgba(255, 154, 158, 0.3);
}

.decor-circle-large {
  width: 232px;
  height: 232px;
  font-size: 186px;
  transform: rotate(15deg);
  opacity: 0.6;
}

/* Banner 内容 */
.faq-banner-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
}

.faq-banner-title {
  color: #2E2E2E;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  font-family: var(--font-primary);
}

/* ==========================================
   面包屑导航
   ========================================== */

.faq-breadcrumb {
  padding: 20px 0 40px;
}

.faq-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 160px;
}

.breadcrumb-nav {
  font-size: 20px;
  font-weight: 500;
  color: #2E2E2E;
  font-family: 'Montserrat', var(--font-primary);
}

.breadcrumb-nav a {
  color: #2E2E2E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--color-primary);
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #2E2E2E;
}

.breadcrumb-current {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================
   主内容区域
   ========================================== */

.faq-main-section {
  padding-bottom: 80px;
}

.faq-layout {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

/* ==========================================
   移动端 Tabs (默认隐藏)
   ========================================== */

.faq-mobile-tabs {
  display: none;
  gap: 8px;
  margin-bottom: 16px;
  padding: 0 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.faq-tab-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.faq-tab-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.faq-tab-btn.active {
  background: var(--gradient-purple);
  color: #fff;
  border-color: transparent;
}

/* ==========================================
   左侧边栏 (PC)
   ========================================== */

.faq-sidebar {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 1px 24px rgba(51, 51, 51, 0.1);
  overflow: hidden;
  margin-bottom: 0;
}

.sidebar-card:first-child {
  border-radius: 8px 8px 0 0;
}

.sidebar-card:last-child {
  border-radius: 0 0 8px 8px;
}

.sidebar-card:not(:last-child) {
  border-bottom: 2px solid rgba(51, 51, 51, 0.1);
}

/* 边栏卡片头部 */
.sidebar-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-card-header.active {
  background: var(--gradient-purple);
  border-radius: 8px 8px 0 0;
}

.sidebar-card-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #2E2E2E;
  font-family: var(--font-primary);
  transition: color 0.3s ease;
}

.sidebar-card-header.active h3 {
  color: #fff;
}

.sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #2E2E2E;
  transition: all 0.3s ease;
}

.sidebar-card-header.active .sidebar-icon {
  color: #fff;
  transform: rotate(180deg);
}

.sidebar-icon.rotated {
  transform: rotate(180deg);
}

/* 边栏卡片内容 */
.sidebar-card-body {
  padding: 0 16px 24px;
}

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

.sidebar-submenu li {
  margin-bottom: 0;
}

.sidebar-submenu a {
  display: block;
  padding: 12px 8px;
  font-size: 24px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.sidebar-submenu a:hover {
  color: var(--color-primary);
}

.sidebar-submenu a.active {
  color: var(--color-primary);
  font-weight: 500;
}

.sidebar-submenu .bullet {
  margin-right: 8px;
  font-size: 28px;
}

/* ==========================================
   移动端子分类 (默认隐藏)
   ========================================== */

.faq-mobile-subcats {
  display: none;
  margin-bottom: 20px;
}

.subcats-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0;
}

.subcat-btn {
  flex-shrink: 0;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-primary);
}

.subcat-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.subcat-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ==========================================
   右侧 FAQ 内容区域
   ========================================== */

.faq-content {
  flex: 1;
  min-width: 0;
  max-width: 700px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ 单项 */
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 1px 24px rgba(51, 51, 51, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0px 4px 32px rgba(51, 51, 51, 0.15);
}

/* FAQ 问题按钮 */
.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 28px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.faq-question:hover {
  background: rgba(153, 41, 234, 0.02);
}

.faq-icon-star {
  flex-shrink: 0;
  font-size: 16px;
  color: #2E2E2E;
  letter-spacing: -0.4px;
}

.faq-question-text {
  flex: 1;
  font-size: 17px;
  font-weight: 500;
  color: #2E2E2E;
  line-height: 1.4;
}

.faq-toggle-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.faq-toggle-icon svg {
  display: block;
}

.faq-toggle-icon .icon-vertical {
  transition: opacity 0.2s ease;
}

/* 当 FAQ 展开时，隐藏竖线变成 - 号 */
.faq-item.expanded .faq-toggle-icon .icon-vertical {
  opacity: 0;
}

.icon-minus,
.icon-plus {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ 答案区域 */
.faq-answer {
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 32px 28px 62px;
  font-size: 17px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  font-family: var(--font-primary);
}

.faq-answer-content p {
  margin: 0 0 16px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer-content a:hover {
  color: var(--color-primary-dark);
}

/* ==========================================
   响应式设计 - 平板
   ========================================== */

@media (max-width: 1440px) {
  .faq-container {
    padding: 0 80px;
  }
}

@media (max-width: 1200px) {
  .faq-container {
    padding: 0 40px;
  }

  .faq-sidebar {
    width: 280px;
  }

  .sidebar-submenu a {
    font-size: 18px;
  }

  .sidebar-card-header h3 {
    font-size: 20px;
  }
}

/* ==========================================
   响应式设计 - 移动端
   ========================================== */

@media (max-width: 1024px) {
  /* 显示移动端 Tabs */
  .faq-mobile-tabs {
    display: flex;
  }

  /* 显示移动端子分类 */
  .faq-mobile-subcats {
    display: block;
  }

  /* 隐藏 PC 端边栏 */
  .faq-sidebar {
    display: none;
  }

  /* 布局调整 */
  .faq-layout {
    flex-direction: column;
  }

  .faq-content {
    max-width: 100%;
    width: 100%;
  }

  /* Banner 调整 */
  .faq-banner {
    height: 160px;
  }

  .faq-banner-title {
    font-size: 36px;
  }

  .decor-circle {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .faq-decor-left {
    top: 20px;
    left: 30px;
  }

  .decor-circle-large {
    width: 160px;
    height: 160px;
    font-size: 120px;
  }

  .faq-decor-right {
    right: -60px;
    top: 0;
  }

  /* 面包屑调整 */
  .breadcrumb-nav {
    font-size: 16px;
  }
}

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

  /* Banner 调整 */
  .faq-banner {
    height: 140px;
  }

  .faq-banner-title {
    font-size: 28px;
  }

  .faq-decor-left {
    display: none;
  }

  .decor-circle-large {
    width: 120px;
    height: 120px;
    font-size: 90px;
  }

  .faq-decor-right {
    right: -40px;
    top: 10px;
  }

  /* 面包屑调整 */
  .faq-breadcrumb {
    padding: 16px 0 24px;
  }

  .breadcrumb-nav {
    font-size: 14px;
  }

  /* FAQ 内容调整 */
  .faq-question {
    padding: 20px 16px;
    gap: 10px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-answer-content {
    padding: 0 16px 20px 42px;
    font-size: 15px;
  }

  .faq-accordion {
    gap: 12px;
  }

  /* Tabs 调整 */
  .faq-tab-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* 主区域调整 */
  .faq-main-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  /* Banner 调整 */
  .faq-banner {
    height: 120px;
  }

  .faq-banner-title {
    font-size: 24px;
  }

  .faq-decor-right {
    display: none;
  }

  /* 面包屑调整 */
  .breadcrumb-nav {
    font-size: 12px;
  }

  /* FAQ 内容调整 */
  .faq-question {
    padding: 16px 12px;
  }

  .faq-question-text {
    font-size: 14px;
  }

  .faq-icon-star {
    font-size: 14px;
  }

  .faq-answer-content {
    padding: 0 12px 16px 34px;
    font-size: 14px;
  }

  .faq-toggle-icon {
    width: 14px;
    height: 14px;
  }

  /* Tabs 调整 */
  .faq-tab-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .subcat-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .subcats-scroll {
    gap: 8px;
  }
}

/* ==========================================
   FAQ 页面动画效果
   ========================================== */

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

.faq-banner-title {
  animation: faqFadeInUp 0.6s ease-out forwards;
}

.faq-sidebar {
  animation: faqFadeInUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
}

.faq-content {
  animation: faqFadeInUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

.faq-item {
  animation: faqFadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
  .faq-banner-title,
  .faq-sidebar,
  .faq-content,
  .faq-item {
    animation: none;
    opacity: 1;
  }
}

/* ============================================
   FAQ Page - 标准版动效增强
   方案 A: 磨砂玻璃效果 (Glassmorphism)
   方案 B: 卡片悬浮效果 (Hover Elevation)
   方案 D: 微交互动效 (Micro-interactions)
   ============================================ */

/* ----------------------------------------
   方案 A: 磨砂玻璃效果 (Glassmorphism)
   ---------------------------------------- */

/* 侧边栏卡片磨砂玻璃效果 */
.faq-sidebar .sidebar-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 4px 24px rgba(51, 51, 51, 0.08),
    0 1px 2px rgba(51, 51, 51, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* FAQ 项目磨砂玻璃效果 */
.faq-accordion .faq-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 4px 24px rgba(51, 51, 51, 0.06),
    0 1px 3px rgba(51, 51, 51, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* 移动端标签磨砂效果 */
.faq-mobile-tabs {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 16px rgba(51, 51, 51, 0.06);
}

/* 移动端子分类按钮磨砂效果 */
.faq-mobile-subcats .subcat-btn {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(153, 41, 234, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-mobile-subcats .subcat-btn.active {
  background: linear-gradient(135deg, rgba(153, 41, 234, 0.95), rgba(88, 8, 251, 0.95));
  border-color: transparent;
  box-shadow:
    0 4px 16px rgba(153, 41, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------
   方案 B: 卡片悬浮效果 (Hover Elevation)
   ---------------------------------------- */

/* 侧边栏卡片悬浮效果 */
.faq-sidebar .sidebar-card {
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
}

.faq-sidebar .sidebar-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(51, 51, 51, 0.12),
    0 2px 8px rgba(51, 51, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(153, 41, 234, 0.15);
}

/* 展开状态的卡片高亮边框 */
.faq-sidebar .sidebar-card.expanded {
  border-color: rgba(153, 41, 234, 0.2);
  box-shadow:
    0 8px 32px rgba(153, 41, 234, 0.1),
    0 2px 8px rgba(51, 51, 51, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* FAQ 项目悬浮效果 */
.faq-accordion .faq-item {
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
}

.faq-accordion .faq-item:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(51, 51, 51, 0.1),
    0 4px 12px rgba(51, 51, 51, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(153, 41, 234, 0.12);
}

/* 展开的 FAQ 项目特殊样式 */
.faq-accordion .faq-item.expanded {
  transform: translateY(-2px);
  border-color: rgba(153, 41, 234, 0.2);
  box-shadow:
    0 12px 48px rgba(153, 41, 234, 0.12),
    0 4px 16px rgba(51, 51, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* 移动端标签按钮悬浮效果 */
.faq-tab-btn {
  transition:
    all 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s ease;
}

.faq-tab-btn:hover:not(.active) {
  background: rgba(153, 41, 234, 0.08);
  transform: translateY(-1px);
}

.faq-tab-btn:active {
  transform: translateY(0) scale(0.98);
}

/* ----------------------------------------
   方案 D: 微交互动效 (Micro-interactions)
   ---------------------------------------- */

/* 1. 点击涟漪效果 */
.faq-question,
.faq-tab-btn,
.subcat-btn,
.sidebar-card-header {
  position: relative;
  overflow: hidden;
}

.faq-question::after,
.faq-tab-btn::after,
.subcat-btn::after,
.sidebar-card-header::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(153, 41, 234, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.faq-question:active::after,
.faq-tab-btn:active::after,
.subcat-btn:active::after,
.sidebar-card-header:active::after {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}

/* 2. +/- 图标旋转动画 */
.faq-toggle-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 展开时不旋转整个图标，仅通过隐藏竖线来切换 +/- */
.faq-item.expanded .faq-toggle-icon {
  transform: none;
}

.faq-toggle-icon .icon-vertical {
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 当 FAQ 展开时，隐藏竖线变成 - 号 */
.faq-item.expanded .faq-toggle-icon .icon-vertical {
  opacity: 0;
}

/* 3. FAQ 答案内容滑入动画 */
.faq-answer-content {
  animation: none;
}

.faq-item.expanded .faq-answer-content {
  animation: contentSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes contentSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 答案内容逐行延迟动画 - 仅在用户交互时触发 */
.faq-item.expanded .faq-answer-content p {
  opacity: 1;
  transform: translateX(0);
}

/* 使用 JavaScript 添加 .animating 类来触发动画 */
.faq-item.animating .faq-answer-content p {
  animation: lineSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.faq-item.animating .faq-answer-content p:nth-child(1) { animation-delay: 0.05s; }
.faq-item.animating .faq-answer-content p:nth-child(2) { animation-delay: 0.1s; }
.faq-item.animating .faq-answer-content p:nth-child(3) { animation-delay: 0.15s; }
.faq-item.animating .faq-answer-content p:nth-child(4) { animation-delay: 0.2s; }

@keyframes lineSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 4. 星标图标闪烁效果 */
.faq-icon-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    text-shadow 0.3s ease;
}

.faq-question:hover .faq-icon-star {
  transform: scale(1.15) rotate(15deg);
  text-shadow:
    0 0 8px rgba(153, 41, 234, 0.5),
    0 0 16px rgba(153, 41, 234, 0.3);
}

.faq-item.expanded .faq-icon-star {
  animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 4px rgba(153, 41, 234, 0.3);
  }
  50% {
    transform: scale(1.1);
    text-shadow:
      0 0 12px rgba(153, 41, 234, 0.6),
      0 0 24px rgba(153, 41, 234, 0.3);
  }
}

/* 5. 侧边栏箭头旋转动画增强 */
.sidebar-icon {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sidebar-icon.rotated {
  transform: rotate(180deg);
}

.sidebar-card-header:hover .sidebar-icon {
  transform: translateY(2px);
}

.sidebar-card-header:hover .sidebar-icon.rotated {
  transform: rotate(180deg) translateY(-2px);
}

/* 6. 侧边栏子菜单项悬浮效果 */
.sidebar-submenu li a {
  transition:
    all 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    padding-left 0.25s ease;
}

.sidebar-submenu li a:hover {
  padding-left: 8px;
  background: rgba(153, 41, 234, 0.04);
}

.sidebar-submenu li a .bullet {
  transition:
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.25s ease;
}

.sidebar-submenu li a:hover .bullet {
  transform: scale(1.5);
  color: #9929EA;
}

.sidebar-submenu li a.active .bullet {
  animation: bulletPulse 1.5s ease-in-out infinite;
}

@keyframes bulletPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* 7. 问题文字悬浮下划线效果 */
.faq-question-text {
  position: relative;
  transition: color 0.3s ease;
}

.faq-question-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #9929EA, #5808FB);
  border-radius: 0.5px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover .faq-question-text::after {
  width: 100%;
}

/* 8. 面包屑导航悬浮效果 */
.breadcrumb-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.breadcrumb-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #9929EA;
  transition: width 0.25s ease;
}

.breadcrumb-nav a:hover::after {
  width: 100%;
}

/* 9. Banner 装饰圆圈呼吸效果 */
.decor-circle {
  animation: decorBreathe 4s ease-in-out infinite;
}

.decor-circle-large {
  animation: decorBreathe 4s ease-in-out infinite 1s;
}

@keyframes decorBreathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* ----------------------------------------
   响应式适配 - 移动端微调
   ---------------------------------------- */
@media (max-width: 768px) {
  /* 移动端降低动效强度以提升性能 */
  .faq-accordion .faq-item:hover {
    transform: translateY(-2px);
  }

  /* 移动端保持图标不旋转，仅通过竖线隐藏来切换 +/- */
  .faq-item.expanded .faq-toggle-icon {
    transform: none;
  }

  /* 移动端禁用部分复杂动画 */
  .faq-question-text::after {
    display: none;
  }

  /* 简化星标动画 */
  .faq-item.expanded .faq-icon-star {
    animation: none;
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(153, 41, 234, 0.4);
  }
}

/* 减少动画偏好 - 动效增强部分 */
@media (prefers-reduced-motion: reduce) {
  .faq-sidebar .sidebar-card,
  .faq-accordion .faq-item,
  .faq-tab-btn,
  .subcat-btn {
    transition: none;
    transform: none !important;
  }

  .faq-toggle-icon,
  .sidebar-icon,
  .faq-icon-star,
  .decor-circle {
    animation: none !important;
    transition: none !important;
  }

  .faq-question::after,
  .faq-tab-btn::after,
  .subcat-btn::after {
    display: none;
  }
}

/* ============================================
   FAQ Page - 字体排版优化
   更优雅、精致、符合品牌气质
   ============================================ */

/* 引入 Inter 字体 - 现代优雅的无衬线字体 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --font-elegant: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* 主标题优化 - 更轻盈优雅 */
.faq-banner-title {
  font-family: var(--font-elegant);
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

/* 面包屑导航优化 - 更小巧精致 */
.breadcrumb-nav {
  font-family: var(--font-elegant);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #666;
}

.breadcrumb-nav a {
  color: #666;
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: #9929EA;
}

.breadcrumb-separator {
  color: #ccc;
  margin: 0 8px;
  font-weight: 300;
}

.breadcrumb-current {
  color: #1a1a1a;
  font-weight: 500;
}

/* 侧边栏分类标题优化 */
.sidebar-card-header h3 {
  font-family: var(--font-elegant);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #2a2a2a;
}

.sidebar-card-header.active h3 {
  color: #fff;
  font-weight: 500;
}

/* 侧边栏子菜单优化 */
.sidebar-submenu li a {
  font-family: var(--font-elegant);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #555;
}

.sidebar-submenu li a:hover {
  color: #9929EA;
}

.sidebar-submenu li a.active {
  color: #9929EA;
  font-weight: 500;
}

.sidebar-submenu li a .bullet {
  font-size: 8px;
  opacity: 0.6;
}

/* FAQ 问题文字优化 - 更清晰易读 */
.faq-question-text {
  font-family: var(--font-elegant);
  font-size: 16px;
  font-weight: 450;
  letter-spacing: 0.01em;
  color: #2a2a2a;
  line-height: 1.5;
}

/* 星标图标优化 */
.faq-icon-star {
  font-size: 14px;
  color: #9929EA;
  opacity: 0.7;
}

.faq-item.expanded .faq-icon-star {
  opacity: 1;
}

/* FAQ 答案内容优化 */
.faq-answer-content {
  font-family: var(--font-elegant);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #555;
  line-height: 1.75;
}

.faq-answer-content a {
  color: #9929EA;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.faq-answer-content a:hover {
  border-bottom-color: #9929EA;
}

/* 移动端标签按钮优化 */
.faq-tab-btn {
  font-family: var(--font-elegant);
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0.02em;
}

.faq-tab-btn.active {
  font-weight: 500;
}

/* 子分类按钮优化 */
.subcat-btn {
  font-family: var(--font-elegant);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.subcat-btn.active {
  font-weight: 500;
}

/* +/- 图标优化 - 更细腻 */
.faq-toggle-icon svg rect {
  fill: #888;
  transition: fill 0.2s ease;
}

.faq-item:hover .faq-toggle-icon svg rect {
  fill: #9929EA;
}

.faq-item.expanded .faq-toggle-icon svg rect {
  fill: #9929EA;
}

/* 响应式字体调整 */
@media (max-width: 1200px) {
  .faq-banner-title {
    font-size: 38px;
  }
}

@media (max-width: 1024px) {
  .faq-banner-title {
    font-size: 32px;
    letter-spacing: -0.01em;
  }

  .sidebar-card-header h3 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .faq-banner-title {
    font-size: 26px;
  }

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

  .faq-question-text {
    font-size: 15px;
    font-weight: 400;
  }

  .faq-answer-content {
    font-size: 14px;
  }

  .faq-tab-btn {
    font-size: 13px;
  }

  .subcat-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .faq-banner-title {
    font-size: 22px;
    letter-spacing: 0;
  }

  .breadcrumb-nav {
    font-size: 12px;
  }

  .faq-question-text {
    font-size: 14px;
  }

  .faq-answer-content {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* ============================================
   移动端 Tabs 样式优化
   更美观、易辨识的设计
   ============================================ */

/* 移动端 Tabs 容器优化 */
@media (max-width: 1024px) {
  .faq-mobile-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 6px;
    margin-bottom: 20px;
    background: rgba(245, 245, 247, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  /* Tab 按钮基础样式 */
  .faq-tab-btn {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-family: var(--font-elegant);
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
  }

  /* Tab 按钮悬浮状态 */
  .faq-tab-btn:hover:not(.active) {
    color: #9929EA;
    background: rgba(153, 41, 234, 0.05);
  }

  /* Tab 按钮激活状态 - 现代感凸起效果 */
  .faq-tab-btn.active {
    background: #fff;
    color: #9929EA;
    font-weight: 600;
    box-shadow:
      0 2px 8px rgba(0, 0, 0, 0.08),
      0 1px 2px rgba(0, 0, 0, 0.04);
    transform: none;
  }

  /* 激活状态底部指示条 */
  .faq-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, #9929EA, #5808FB);
    border-radius: 2px;
  }
}

/* 更小屏幕的优化 */
@media (max-width: 480px) {
  .faq-mobile-tabs {
    padding: 4px;
    border-radius: 10px;
    margin-bottom: 16px;
  }

  .faq-tab-btn {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 6px;
  }

  .faq-tab-btn.active::after {
    width: 16px;
    height: 2px;
    bottom: 5px;
  }
}

/* ============================================
   Newsletter Form Fix - Force Horizontal Layout
   ============================================ */
.goooch-footer-wrapper .goooch-newsletter-form,
.goooch-footer .goooch-newsletter-form,
form.goooch-newsletter-form {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 9px !important;
}

.goooch-footer-wrapper .goooch-newsletter-input,
.goooch-footer .goooch-newsletter-input,
input.goooch-newsletter-input,
input[name="newsletter_email"].goooch-newsletter-input {
    width: 130px !important;
    max-width: 130px !important;
    height: 30px !important;
    flex: 0 0 130px !important;
    margin-bottom: 0 !important;
    margin: 0 !important;
}

.goooch-footer-wrapper .goooch-newsletter-button,
.goooch-footer .goooch-newsletter-button,
button.goooch-newsletter-button {
    width: 75px !important;
    max-width: 75px !important;
    height: 30px !important;
    flex: 0 0 75px !important;
    margin: 0 !important;
}

/* ============================================
   Scroll Reveal Animations - 滚动触发动画
   ============================================ */

/* 动画初始状态 - 默认隐藏 */
.reveal-on-scroll {
    opacity: 0;
    transition: 
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 从下方淡入 */
.reveal-up {
    transform: translateY(40px);
}

/* 从左侧淡入 */
.reveal-left {
    transform: translateX(-40px);
}

/* 从右侧淡入 */
.reveal-right {
    transform: translateX(40px);
}

/* 缩放淡入 */
.reveal-scale {
    transform: scale(0.9);
}

/* 淡入（无位移） */
.reveal-fade {
    transform: none;
}

/* 激活状态 - 显示 */
.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* 交错动画延迟 - 用于列表/网格 */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* 自动交错 - 用于grid/flex子元素 */
.reveal-stagger > .reveal-on-scroll:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > .reveal-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > .reveal-on-scroll:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger > .reveal-on-scroll:nth-child(7) { transition-delay: 0.6s; }
.reveal-stagger > .reveal-on-scroll:nth-child(8) { transition-delay: 0.7s; }

/* 标题专用动画 */
.reveal-title {
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-title.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 数字计数动画容器 */
.reveal-counter {
    opacity: 0;
    transform: translateY(20px);
    transition: 
        opacity 0.5s ease,
        transform 0.5s ease;
}

.reveal-counter.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .reveal-title,
    .reveal-counter {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   CTA Button Shimmer Effect - 按钮微光效果
   ============================================ */

/* 微光效果基础类 */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 60%,
        transparent 100%
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Hero Button 微光效果 */
.hero-button {
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 60%,
        transparent 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    animation-delay: 1s;
    pointer-events: none;
    z-index: 1;
}

.hero-button span,
.hero-button svg,
.hero-button img {
    position: relative;
    z-index: 2;
}

/* 导航栏按钮微光 */
.goooch-btn-shop {
    position: relative;
    overflow: hidden;
}

.goooch-btn-shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%,
        transparent 100%
    );
    animation: shimmer 4s ease-in-out infinite;
    animation-delay: 2s;
    pointer-events: none;
    z-index: 1;
}

.goooch-btn-shop span {
    position: relative;
    z-index: 2;
}

/* BeTheme 按钮微光（渐变背景按钮） */
.button-love a[style*="gradient"],
a.button[style*="gradient"],
.mfn-btn[style*="gradient"] {
    position: relative;
    overflow: hidden;
}

.button-love a[style*="gradient"]::before,
a.button[style*="gradient"]::before,
.mfn-btn[style*="gradient"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%,
        transparent 100%
    );
    animation: shimmer 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

/* 通用 CTA 按钮类 */
.cta-shimmer {
    position: relative;
    overflow: hidden;
}

.cta-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 60%,
        transparent 100%
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

/* Hover 时加速动画 */
.btn-shimmer:hover::before,
.hero-button:hover::before,
.goooch-btn-shop:hover::before,
.cta-shimmer:hover::before {
    animation-duration: 1.5s;
}

/* 暂停动画 - 可选（用于性能优化） */
.btn-shimmer.pause-shimmer::before,
.hero-button.pause-shimmer::before {
    animation-play-state: paused;
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
    .btn-shimmer::before,
    .hero-button::before,
    .goooch-btn-shop::before,
    .cta-shimmer::before,
    .button-love a[style*="gradient"]::before,
    a.button[style*="gradient"]::before,
    .mfn-btn[style*="gradient"]::before {
        animation: none;
        display: none;
    }
}

/* ============================================
   Global Link Styles - 移除下划线
   ============================================ */
a,
a:hover,
a:focus,
a:active,
a:visited,
.featured-title a,
.featured-title a:hover,
.news-card-title a,
.news-card-title a:hover,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
.entry-title a,
.entry-title a:hover,
.post-title a,
.post-title a:hover,
#Content a,
#Content a:hover {
    text-decoration: none !important;
}
#iosFaq .faq .question.active{
    background: #00CA73!important;

}
#EraserWap .step-item {
    border: 2px solid #ccc;
    border-radius: 16px;
}
#EraserWap .step-item.active{
border: 2px solid #2DC996;
background: #C3F2CF;
}
#EraserWap .step-item.active .step-title{
    color: #2E2E2E;
}
#EraserWap .step-item.active .step-content p{
    color: #2E2E2E;
}
#EraserWap .steps-images{
    margin-top: 3%;
}
#changeGps .step-item{
    background: linear-gradient(0deg, #F6EBFE 0%, #F6EBFE 100%), #FFF;
    border-radius: 16px;
    margin-bottom: 30px;
}
#changeGps .step-item.active{
    background:#FFF;
    fill: #FFF;
    filter: drop-shadow(16px 16px 0 rgba(152, 71, 229, 0.90));
}
#changeGps .step-item.active .step-title{
    color: #333;
}
#changeGps .step-item .step-content p{
    color: rgba(51, 51, 51, 0.60);
}
/*#changeGps .step-item.active .step-content p{*/
/*    color: rgba(51, 51, 51, 0.60);*/
/*}*/
#changeGps .steps-images{
    margin-right: 0%;
    margin-left: 0;
}
#changeGps .step-item:nth-child(2){
    margin-bottom: 0;
}
#changeGps .step-item:nth-child(3){
    display: none;
}
#changeGps .steps-list{
    flex: 1.3;
}
#changeGps .steps-container{
    align-items:center;
}
#changeGps .step-content{
    padding: 0 30px 30px !important;
}
#changeGps .step-header{
    padding: 30px 30px 10px 30px;
}
#userGpsStpe .steps-list{
    flex: 1.3;
}
#userGpsStpe .step-item{
    box-shadow:none!important;
    background: none!important;
    margin-bottom:3%;
}
#userGpsStpe .step-item:nth-child(3){
    margin-bottom:0!important;
}

#userGpsStpe .step-item.active .step-content p{
    color: #2E2E2E;
}
#userGpsStpe .step-item.active .step-title{
    color: #2E2E2E;
}
#userGpsStpe .step-content p{
    color: rgba(46,46,46,0.5);
}
#userGpsStpe .step-title{
    color: rgba(46,46,46,0.5);
}

#userGpsStpe  .step-content{
    padding: 0!important;
}
#userGpsStpe  .step-header{
    padding: 0px 0px 0px 0px;
}
#userGpsStpe .steps-container{
    align-items:center;
}
#userGpsStpe.goooch-interactive-steps-custom{
    padding: 0;
}
#userGpsStpe .steps-images{
    min-height: auto;
}
.wwo-navigation{
    justify-content: left!important;
    margin-left: 5%!important;
    
}


