/* 全局变量 */
:root {




    /* 基础颜色 */
    /* --primary-color: #2563EB;
    --secondary-color: #3B82F6;
    --accent-color: #60A5FA; */


    --primary-color: #1785BB;
    --secondary-color: #1FA2E2;
    --accent-color: #51B3E4;

    --text-color: #1E293B;
    --white: #ffffff;
    --light-bg: #F8FAFC;
    --dark: #0F172A;
    --green: #80b629;
    
    /* 导航栏效果 */
    --navbar-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-blur: blur(20px);
    --navbar-shadow: 0 4px 30px rgba(37, 99, 235, 0.15);
    --navbar-border: 1px solid rgba(37, 99, 235, 0.1);
    
    /* 通用效果 */
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    padding-top: calc(36px + 80px);
    overflow-x: hidden;
}

/* 导航栏基础样式 */
.navbar {
    background: white;
    /* background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px); */
    box-shadow: 0 4px 30px rgba(37, 99, 235, 0.15);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 36px;
    left: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
}

/* Logo样式 */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
    /* filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2)); */
}

/* 导航链接基础样式 */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--navbar-transition);
    border-radius: 8px;
    position: relative;
    background: transparent;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Hot标签样式 */
.hot-label {
    background: #ff4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(30%, -30%);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(255, 68, 68, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(30%, -30%) scale(1);
    }
    50% {
        transform: translate(30%, -30%) scale(1.1);
    }
    100% {
        transform: translate(30%, -30%) scale(1);
    }
}

/* 导航链接悬停效果 */
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 70%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: linear-gradient(145deg, var(--item-hover-bg), rgba(37, 99, 235, 0.05));
    transform: translateY(-1px);
}

/* 桌面端下拉菜单基础样式 */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.8rem 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--navbar-transition);
    border-radius: 8px;
    letter-spacing: 0.3px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    background: linear-gradient(135deg, #1a2942, #2c5282);
    backdrop-filter: var(--navbar-blur);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: var(--navbar-shadow);
    border: var(--navbar-border);
    opacity: 0;
    visibility: hidden;
    transition: var(--navbar-transition);
    z-index: 1000;
    overflow: visible;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* 下拉菜单网格布局 */
.dropdown-grid {
    display: grid;
    gap: 1rem;
    grid-auto-rows: min-content;
    margin: 0 auto;
    max-width: 100vw;
}

.regions-grid,
.gpu-grid {
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    width: min(900px, 95vw);
}

/* 移动端适配 - 统一的媒体查询 */
@media (max-width: 768px) {
    /* 基础布局调整 */
    body {
        padding-top: 60px;
    }

    .navbar {
        top: 0;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.95);
    }

    /* 移动导航基础样式 */
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        padding: 20px;
        display: none;
        flex-direction: column;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* 移动端下拉菜单样式 */
    .dropdown {
        width: 100%;
        position: relative;
    }

    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background: transparent;
        border: none;
    }

    .dropdown-menu {
        position: relative;
        width: 100%;
        background: #fff;
        padding: 10px;
        margin-top: 0;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

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

/* 桌面端下拉菜单项样式 */
@media (min-width: 769px) {
    .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
        white-space: nowrap;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        color: white;
    }

    .dropdown-item i {
        color: rgba(255, 255, 255, 0.9);
    }

    .dropdown-item:hover i {
        color: white;
    }

    /* GPU菜单特定样式 */
    .gpu-grid .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
    }

    .gpu-grid .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .gpu-grid .dropdown-item i {
        color: rgba(255, 255, 255, 0.9);
    }

    .gpu-grid .dropdown-item:hover i {
        color: white;
    }
}

/* 其他响应式样式 */
@media (max-width: 1200px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .qr-code-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* 页脚通用样式 */
footer {
    /* background: var(--dark);
    color: var(--white); */
    background: var(--white);
    color: var(--dark);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 二维码容器样式 */
.qr-code-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.qr-code-item {
    text-align: center;
}

.qr-code-item img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: var(--box-shadow);
    background: var(--white);
    padding: 0.5rem;
}

.qr-code-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: block;
}

/* 主题样式 */
.dropdown-menu.style1 {
    background: linear-gradient(135deg, #1a2942, #2c5282);
}

.dropdown-menu.style1 .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu.style1 .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

/* 控制台按钮样式 */
.console-btn {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 0.9rem 2.2rem !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 6px -1px rgba(37, 99, 235, 0.2),
        0 2px 4px -2px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.console-btn i {
    font-size: 1.15rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    color: var(--white) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.console-btn span {
    position: relative;
    z-index: 2;
    color: var(--white) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.console-btn:hover {
    background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 15px -3px rgba(37, 99, 235, 0.25),
        0 4px 6px -4px rgba(37, 99, 235, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.console-btn:hover i {
    transform: rotate(10deg) scale(1.1);
    color: white;
}

.console-btn:hover span {
    color: white;
}

/* 特别提醒区域样式 */
.special-notice {
    background-color: #ff4444;
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.special-notice .notice-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-notice .notice-content i {
    margin-right: 8px;
}

.special-notice .notice-close {
    cursor: pointer;
    margin-left: 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.special-notice .notice-close:hover {
    opacity: 1;
}

/* 动画效果 */
@keyframes console-glow {
    0%, 100% {
        box-shadow: 
            0 4px 6px -1px rgba(37, 99, 235, 0.2),
            0 2px 4px -2px rgba(37, 99, 235, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 6px 12px -2px rgba(37, 99, 235, 0.25),
            0 3px 6px -3px rgba(37, 99, 235, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.console-btn {
    animation: console-glow 3s ease-in-out infinite;
}

/* 英雄区域通用样式 */
.hero,
.pricing-hero,
.activity-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -116px;
    padding-top: 116px;
}

.hero::before,
.pricing-hero::before,
.activity-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/map.png') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content,
.pricing-hero-content,
.activity-hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* 英雄区域按钮样式 */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.cta-button i {
    font-size: 1.2rem;
}

/* 英雄区域统计数据样式 */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* 移动导航按钮样式 */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: 15px;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    transform-origin: left;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* 移动菜单遮罩层 */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        padding: 20px;
        flex-direction: column;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .dropdown {
        width: 100%;
        position: relative !important;
    }

    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background: transparent;
        border: none;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        background: var(--white);
        padding: 10px;
        margin: 0;
        border: none;
        box-shadow: var(--box-shadow);
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
    }

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

    /* 移动端网格布局 */
    .dropdown-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .regions-grid,
    .gpu-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .dropdown-item,
    .gpu-grid .dropdown-item {
        background: var(--white);
        color: var(--dark);
        padding: 12px;
        margin: 0;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 14px;
        white-space: normal;
        width: 100%;
    }

    .dropdown-item span {
        white-space: normal;
        word-break: break-word;
        flex: 1;
    }

    .dropdown-item i,
    .dropdown-item .region-icon,
    .gpu-grid .dropdown-item i {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
    }

    .dropdown-item:hover,
    .gpu-grid .dropdown-item:hover {
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary-color);
    }

    .dropdown-item:hover i,
    .dropdown-item:hover .region-icon,
    .gpu-grid .dropdown-item:hover i {
        color: var(--primary-color);
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* 桌面端下拉菜单项样式 */
@media (min-width: 769px) {
    .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
        white-space: nowrap;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        color: white;
    }

    .dropdown-item i {
        color: rgba(255, 255, 255, 0.9);
    }

    .dropdown-item:hover i {
        color: white;
    }

    /* GPU菜单特定样式 */
    .gpu-grid .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
    }

    .gpu-grid .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .gpu-grid .dropdown-item i {
        color: rgba(255, 255, 255, 0.9);
    }

    .gpu-grid .dropdown-item:hover i {
        color: white;
    }
}

/* 其他响应式样式 */
@media (max-width: 1200px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .qr-code-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* 页脚通用样式 */
footer {
    /* background: var(--dark);
    color: var(--white); */
    background: var(--white);
    color: var(--dark);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 二维码容器样式 */
.qr-code-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.qr-code-item {
    text-align: center;
}

.qr-code-item img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: var(--box-shadow);
    background: var(--white);
    padding: 0.5rem;
}

.qr-code-label {
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.9rem;
    display: block;
}

/* 主题样式 */
.dropdown-menu.style1 {
    background: linear-gradient(135deg, #1a2942, #2c5282);
}

.dropdown-menu.style1 .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu.style1 .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

/* 控制台按钮样式 */
.console-btn {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 0.9rem 2.2rem !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 6px -1px rgba(37, 99, 235, 0.2),
        0 2px 4px -2px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.console-btn i {
    font-size: 1.15rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    color: var(--white) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.console-btn span {
    position: relative;
    z-index: 2;
    color: var(--white) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.console-btn:hover {
    background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 15px -3px rgba(37, 99, 235, 0.25),
        0 4px 6px -4px rgba(37, 99, 235, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.console-btn:hover i {
    transform: rotate(10deg) scale(1.1);
    color: white;
}

.console-btn:hover span {
    color: white;
}

/* 特别提醒区域样式 */
.special-notice {
    background-color: #ff4444;
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.special-notice .notice-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-notice .notice-content i {
    margin-right: 8px;
}

.special-notice .notice-close {
    cursor: pointer;
    margin-left: 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.special-notice .notice-close:hover {
    opacity: 1;
}

/* 动画效果 */
@keyframes console-glow {
    0%, 100% {
        box-shadow: 
            0 4px 6px -1px rgba(37, 99, 235, 0.2),
            0 2px 4px -2px rgba(37, 99, 235, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 6px 12px -2px rgba(37, 99, 235, 0.25),
            0 3px 6px -3px rgba(37, 99, 235, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.console-btn {
    animation: console-glow 3s ease-in-out infinite;
}

/* 英雄区域通用样式 */
.hero,
.pricing-hero,
.activity-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -116px;
    padding-top: 116px;
}

.hero::before,
.pricing-hero::before,
.activity-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/map.png') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content,
.pricing-hero-content,
.activity-hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* 英雄区域按钮样式 */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.cta-button i {
    font-size: 1.2rem;
}

/* 英雄区域统计数据样式 */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* 移动导航按钮样式 */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: 15px;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    transform-origin: left;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* 移动菜单遮罩层 */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        padding: 20px;
        flex-direction: column;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .dropdown {
        width: 100%;
        position: relative !important;
    }

    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background: transparent;
        border: none;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        background: var(--white);
        padding: 10px;
        margin: 0;
        border: none;
        box-shadow: var(--box-shadow);
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
    }

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

    /* 移动端网格布局 */
    .dropdown-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .regions-grid,
    .gpu-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .dropdown-item,
    .gpu-grid .dropdown-item {
        background: var(--white);
        color: var(--dark);
        padding: 12px;
        margin: 0;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 14px;
        white-space: normal;
        width: 100%;
    }

    .dropdown-item span {
        white-space: normal;
        word-break: break-word;
        flex: 1;
    }

    .dropdown-item i,
    .dropdown-item .region-icon,
    .gpu-grid .dropdown-item i {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
    }

    .dropdown-item:hover,
    .gpu-grid .dropdown-item:hover {
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary-color);
    }

    .dropdown-item:hover i,
    .dropdown-item:hover .region-icon,
    .gpu-grid .dropdown-item:hover i {
        color: var(--primary-color);
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* 桌面端下拉菜单项样式 */
@media (min-width: 769px) {
    .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
        white-space: nowrap;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        color: white;
    }

    .dropdown-item i {
        color: rgba(255, 255, 255, 0.9);
    }

    .dropdown-item:hover i {
        color: white;
    }

    /* GPU菜单特定样式 */
    .gpu-grid .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
    }

    .gpu-grid .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .gpu-grid .dropdown-item i {
        color: rgba(255, 255, 255, 0.9);
    }

    .gpu-grid .dropdown-item:hover i {
        color: white;
    }
}

/* 其他响应式样式 */
@media (max-width: 1200px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .qr-code-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* 页脚通用样式 */
footer {
    /* background: var(--dark);
    color: var(--white); */
    background: var(--white);
    color: var(--dark);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 二维码容器样式 */
.qr-code-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.qr-code-item {
    text-align: center;
}

.qr-code-item img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: var(--box-shadow);
    background: var(--white);
    padding: 0.5rem;
}

.qr-code-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: block;
}

/* 主题样式 */
.dropdown-menu.style1 {
    background: linear-gradient(135deg, #1a2942, #2c5282);
}

.dropdown-menu.style1 .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu.style1 .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

/* 控制台按钮样式 */
.console-btn {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 0.9rem 2.2rem !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 6px -1px rgba(37, 99, 235, 0.2),
        0 2px 4px -2px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.console-btn i {
    font-size: 1.15rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    color: var(--white) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.console-btn span {
    position: relative;
    z-index: 2;
    color: var(--white) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.console-btn:hover {
    background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 15px -3px rgba(37, 99, 235, 0.25),
        0 4px 6px -4px rgba(37, 99, 235, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.console-btn:hover i {
    transform: rotate(10deg) scale(1.1);
    color: white;
}

.console-btn:hover span {
    color: white;
}

/* 特别提醒区域样式 */
.special-notice {
    background-color: #ff4444;
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.special-notice .notice-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-notice .notice-content i {
    margin-right: 8px;
}

.special-notice .notice-close {
    cursor: pointer;
    margin-left: 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.special-notice .notice-close:hover {
    opacity: 1;
}

/* 动画效果 */
@keyframes console-glow {
    0%, 100% {
        box-shadow: 
            0 4px 6px -1px rgba(37, 99, 235, 0.2),
            0 2px 4px -2px rgba(37, 99, 235, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 6px 12px -2px rgba(37, 99, 235, 0.25),
            0 3px 6px -3px rgba(37, 99, 235, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.console-btn {
    animation: console-glow 3s ease-in-out infinite;
}

/* 英雄区域通用样式 */
.hero,
.pricing-hero,
.activity-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -116px;
    padding-top: 116px;
}

.hero::before,
.pricing-hero::before,
.activity-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/map.png') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content,
.pricing-hero-content,
.activity-hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* 英雄区域按钮样式 */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.cta-button i {
    font-size: 1.2rem;
}

/* 英雄区域统计数据样式 */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* 移动导航按钮样式 */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: 15px;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    transform-origin: left;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* 移动菜单遮罩层 */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        padding: 20px;
        flex-direction: column;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .dropdown {
        width: 100%;
        position: relative !important;
    }

    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background: transparent;
        border: none;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        background: var(--white);
        padding: 10px;
        margin: 0;
        border: none;
        box-shadow: var(--box-shadow);
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
    }

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

    /* 移动端网格布局 */
    .dropdown-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .regions-grid,
    .gpu-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .dropdown-item,
    .gpu-grid .dropdown-item {
        background: var(--white);
        color: var(--dark);
        padding: 12px;
        margin: 0;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 14px;
        white-space: normal;
        width: 100%;
    }

    .dropdown-item span {
        white-space: normal;
        word-break: break-word;
        flex: 1;
    }

    .dropdown-item i,
    .dropdown-item .region-icon,
    .gpu-grid .dropdown-item i {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
    }

    .dropdown-item:hover,
    .gpu-grid .dropdown-item:hover {
        background: rgba(37, 99, 235, 0.1);
        color: var(--primary-color);
    }

    .dropdown-item:hover i,
    .dropdown-item:hover .region-icon,
    .gpu-grid .dropdown-item:hover i {
        color: var(--primary-color);
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* 桌面端下拉菜单项样式 */
@media (min-width: 769px) {
    .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
        white-space: nowrap;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        color: white;
    }

    .dropdown-item i {
        color: rgba(255, 255, 255, 0.9);
    }

    .dropdown-item:hover i {
        color: white;
    }

    /* GPU菜单特定样式 */
    .gpu-grid .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
    }

    .gpu-grid .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .gpu-grid .dropdown-item i {
        color: rgba(255, 255, 255, 0.9);
    }

    .gpu-grid .dropdown-item:hover i {
        color: white;
    }
}

/* 其他响应式样式 */
@media (max-width: 1200px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .qr-code-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* 页脚通用样式 */
footer {
        /* background: var(--dark);
        color: var(--white); */
        background: var(--white);
        color: var(--dark);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom a{
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
/* 二维码容器样式 */
.qr-code-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.qr-code-item {
    text-align: center;
}

.qr-code-item img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: var(--box-shadow);
    background: var(--white);
    padding: 0.5rem;
}

.qr-code-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: block;
}

/* 主题样式 */
.dropdown-menu.style1 {
    background: linear-gradient(135deg, #1a2942, #2c5282);
}

.dropdown-menu.style1 .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu.style1 .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

/* 控制台按钮样式 */
.console-btn {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 0.9rem 2.2rem !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 6px -1px rgba(37, 99, 235, 0.2),
        0 2px 4px -2px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.console-btn i {
    font-size: 1.15rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    color: var(--white) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.console-btn span {
    position: relative;
    z-index: 2;
    color: var(--white) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.console-btn:hover {
    background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 15px -3px rgba(37, 99, 235, 0.25),
        0 4px 6px -4px rgba(37, 99, 235, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.console-btn:hover i {
    transform: rotate(10deg) scale(1.1);
    color: white;
}

.console-btn:hover span {
    color: white;
}

/* 特别提醒区域样式 */
.special-notice {