        body {
            font-family: Microsoft YaHei,微软雅黑,PingFang SC,YouYuan,SimSun,Arial,sans-serif!important;
            background: #f8fefe url('/static/img/pagebg.jpg') no-repeat center top / 100% auto;
            color: #1F2937;
            font-size: 0.9rem;
            -webkit-font-smoothing: antialiased;
        }

        /* 通用样式类 */
        .container {
            width: 100%;
            margin: 0 auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        @media (min-width: 640px) {
            .container {
                max-width: 640px;
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }
        
        @media (min-width: 768px) {
            .container {
                max-width: 768px;
            }
        }
        
        @media (min-width: 1024px) {
            .container {
                max-width: 1024px;
            }
        }
        
        @media (min-width: 1280px) {
            .container {
                max-width: 1280px;
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        
        /* 动画定义 */
        @keyframes float {
            0% { transform: translateY(0); }
            100% { transform: translateY(-4px); }
        }
        
        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(-10px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeOut {
            0% { opacity: 1; transform: translateY(0); }
            100% { opacity: 0; transform: translateY(-10px); }
        }
        
        @keyframes toastIn {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
            100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        }
        
        @keyframes toastOut {
            0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            100% { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
        }
        
        /* Toast组件样式 */
        #toast {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 500;
            background-color: white;
            border-radius: 2rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        /* 头部导航样式 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 50;
            transition: all 0.3s ease;
            height: 4rem;
            #background-color: #eef4ff;
            border-bottom: 0px solid #E5E7EB;
        }
        
        .navbar-scrolled {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            background-color: #FFF;
            border-bottom: none;
        }
        
        .navbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            color: #6366F1;
            font-size: 0.9rem;
            margin-right: 0.5rem;
        }
        
        .logo-text {
            font-size: 0.9rem;
            font-weight: 700;
            color: #1F2937;
        }
        
        .navLinks {
            margin-left: 2rem;
        }
        
        .navLinks a {
            padding-right: 1.5rem;
        }
        
        .navLinks a:hover {
            color: #6366F1;
        }
        
        .navLinks i {
            padding-left: 0.5rem;
        }

        .navLink-dropdown {
            position: absolute;
            top: 85%;
            left: 12rem;
            width: 27rem;
            padding: 0.5rem 1.5rem;
            background-color: white;
            border-top: 2px solid #318FF7;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            flex-wrap: wrap;
        }
        
        .navLink-dropdown.show {
            opacity: 1;
            visibility: visible;
        }

        .navLink-dropdown a {
            width: 8rem;
            padding: 0.4rem 0;
        }
        
        .navLink-dropdown a:hover {
            color: #6366F1;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .point-badge {
            display: flex;
            align-items: center;
            padding: 0.5rem 0.95rem;
            #background-color: #F3F4F6;
            border-radius: 9999px;
            transition: background-color 0.2s ease;
            cursor: pointer;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .point-badge:hover {
            background-color: rgba(243, 244, 246, 0.8);
        }
        
        .point-icon {
            color: #6366F1;
            margin-right: 0.25rem;
        }
        
        .point-count {
            font-weight: 500;
            margin: 0 0.3rem;
        }
        
        .point-icon {
            color: #f09800;
            font-size:1rem;
        }
        
        .point-label {
            color: #f09800;
        }
        
        .login-btn {
            padding: 0.3rem 0.9rem;
            background-color: #6366F1;
            color: white;
            border-radius: 2.5rem;
            transition: background-color 0.2s ease;
            border: none;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .login-btn:hover {
            background-color: rgba(99, 102, 241, 0.9);
        }
        
        .user-profile {
            display: none;
            align-items: center;
            cursor: pointer;
            font-size: 0.9rem;
            padding: 0.5rem 0.5rem;
            border-radius: 9999px;
            transition: background-color 0.2s ease;
        }
        
        .user-profile:hover {
            background-color: #F3F4F6;
        }
        
        .avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 9999px;
            object-fit: cover;
            margin-right: 0.5rem;
        }
        
        .username {
            font-weight: 500;
            margin-right: 0.25rem;
        }
        
        .dropdown-icon {
            font-size: 0.9rem;
        }
        
        .mobile-menu-btn {
            display: block;
            color: #1F2937;
            font-size: 0.9rem;
            border: none;
            background: none;
            cursor: pointer;
        }
        
        @media (min-width: 1024px) {
            .mobile-menu-btn {
                display: none;
            }
        }
        
        .user-dropdown {
            position: absolute;
            top: 100%;
            right: 7rem;
            #margin-top: 0.5rem;
            width: 8rem;
            background-color: white;
            border-top: 2px solid #318FF7;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .user-dropdown.show {
            opacity: 1;
            visibility: visible;
        }
        
        .dropdown-menu {
            padding: 0.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        
        .dropdown-item {
            display: block;
            padding: 0.5rem 0.5rem;
            border-radius: 0.5rem;
            transition: background-color 0.2s ease;
            text-decoration: none;
            color: #1F2937;
            font-size: 0.9rem;
        }
        
        .dropdown-item:hover {
            background-color: #F3F4F6;
        }
        
        .dropdown-icon {
            margin-right: 0.5rem;
            color: #6366F1;
        }
        
        .dropdown-divider {
            margin: 0.5rem 0;
            border-top: 1px solid #E5E7EB;
        }
        
        .logout-item {
            color: #EF4444;
        }
        
        .mobile-category-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-top: 1px solid #E5E7EB;
        }
        
        .mobile-category-menu.show {
            display: block;
        }
        
        .mobile-menu-list {
            padding: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }
        
        .mobile-menu-item {
            display: block;
            padding: 0.5rem 0.75rem;
            border-radius: 0.375rem;
            transition: background-color 0.2s ease;
            text-decoration: none;
            color: #1F2937;
        }
        
        .mobile-menu-item:hover {
            background-color: #F3F4F6;
        }
        
        /* 主内容区样式 */
        .main-content {
            padding-top: 5rem;
            min-height: 100vh;
        }
        
        .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        @media (min-width: 1024px) {
            .content-wrapper {
                flex-direction: row;
            }
        }
        
        .category-sidebar {
            display: none;
            width: 10rem;
            flex-shrink: 0;
            height: calc(100vh - 8rem);
            position: sticky;
            top: 5rem;
        }
        
        @media (min-width: 1024px) {
            .category-sidebar {
                display: block;
            }
        }
        
        .sidebar-container {
            background-color: white;
            border-radius: 0.3rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            padding: 1rem 0.5rem;
        }
        
        .category-list {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            font-size: 1rem;
        }
        
        .category-item {
            display: block;
            margin: 0.03rem 0;
            padding: 0.3rem 1rem;
            border-radius: 2rem;
            #border-left: 4px solid transparent;
            transition: background-color 0.2s ease;
            text-decoration: none;
            color: #1F2937;
        }
        
        .category-item:hover {
            background-color: rgba(243, 244, 246, 0.5);
        }
        
        .category-item.active {
            background-color: rgba(99, 102, 241, 0.1);
            color: #6366F1;
            font-weight: 500;
            border-left-color: #6366F1;
        }
        
        .category-icon {
            margin-right: 0.5rem;
            color: #6366F1;
        }
        
        .content-area {
            flex: 1;
        }
        
        .section {
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-size: 1.3rem;
            font-weight: 500;
            padding: 0 0 1rem 0.5rem;
            #border-bottom: 1px solid #E5E7EB;
        }
        
        .card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        @media (min-width: 640px) {
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .card-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .tool-card {
            background: #FFF url('https://hulafei.oss-cn-shenzhen.aliyuncs.com/static/img/cardbg.jpg') no-repeat center bottom / 100% auto;
            border-radius: 1rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            border: 2px solid #EEE;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .tool-card:hover {
            #transform: translateY(-1px);
            box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.1), 0 8px 10px -6px rgba(99, 102, 241, 0.1);
            border-color: #6366F1;
        }
        
        .card-image {
            aspect-ratio: 2 / 1;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .tool-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 0.5rem 0.5rem 0.2rem 0.9rem;
        }
        
        .card-header {
            display: flex;
            align-items: center;
        }
        
        .card-icon {
            color: #6366F1;
            margin-right: 0.5rem;
        }
        
        .card-title {
            font-weight: 600;
        }
        
        .card-desc {
            font-size: 0.9rem;
            color: #6B7280;
            padding-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 2rem;
            color: #9CA3AF;
        }

        .footList {
            text-align: left;
            font-size: 0.9rem;
            color: #d4d4d8;
            line-height: 2rem;
            display: flex;
            flex-wrap: wrap;
        }
        
        .footList b {
            font-size: 1rem;
        }
        
        .footList dl {
            margin: 1rem;
        }
        
        .footList i {
            margin-right: 0.2rem;
            color: #d4d4d8;
        }
        
        .footList a:hover {
            color: #FFF;
        }

        .footList img {
            filter: brightness(10);
        }


        /* 测试区域样式 */
        .test-section {
            margin: 4rem 0;
            background-color: white;
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
        }
        
        .test-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .test-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .test-btn {
            padding: 0.5rem 1rem;
            background-color: rgba(99, 102, 241, 0.1);
            color: #6366F1;
            border-radius: 0.5rem;
            transition: background-color 0.2s ease;
            border: none;
            cursor: pointer;
        }
        
        .test-btn:hover {
            background-color: rgba(99, 102, 241, 0.2);
        }
        
        .test-btn.warning {
            background-color: rgba(249, 115, 22, 0.1);
            color: #F97316;
        }
        
        .test-btn.warning:hover {
            background-color: rgba(249, 115, 22, 0.2);
        }
        
        .test-btn.success {
            background-color: rgba(16, 185, 129, 0.1);
            color: #10B981;
        }
        
        .test-btn.success:hover {
            background-color: rgba(16, 185, 129, 0.2);
        }
        
        /* 底部样式 */
        .footer {
            background-color: #1F2937;
            color: white;
            padding: 1rem 0;
            text-align: center;
        }
        
        .copyright {
            margin-bottom: 0.5rem;
        }
        
        .icp-info {
            font-size: 0.9rem;
            color: #9CA3AF;
        }
        
        /* 模态框通用样式 */
        .modal {
            position: fixed;
            inset: 0;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: center;
            display: none;
        }
        
        .modal.show {
            display: flex;
        }
        
        .modal-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(2px);
        }
        
        .modal-content {
            position: relative;
            z-index: 10;
            background: white url('https://hulafei.oss-cn-shenzhen.aliyuncs.com/static/img/winbg.jpg') no-repeat center top / 100% auto;
            border: 3px solid #e4fdff;
            border-radius: 1rem 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            padding: 1rem 1.5rem;
            width: 90%;
            max-width: 22rem;
            animation: fadeIn 0.3s ease-in-out;
        }
        
        @media (min-width: 768px) {
            .modal-content.large {
                max-width: 35rem;
            }
        }
        
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            color: #9CA3AF;
            transition: color 0.2s ease;
            border: none;
            background: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .modal-close:hover {
            color: #6B7280;
        }
        
        .modal-subtitle {
            font-size: 0.9rem;
            color: #6B7280;
            margin-bottom: 0.5rem;
            text-align: center;
            display: none;
        }

        .Pay-subtitle {
            font-size: 0.9rem;
            color: #6B7280;
            margin-bottom: 0.5rem;
            display: none;
        }

        .modal-subtitle.show {
            display: block;
        }
        
        .modal-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-align: center;
        }
        
        .Pay-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        /* 登录模态框样式 */
        .login-form {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }
        
        .resetPwd {
            font-size: 0.9rem;
            color: #9CA3AF;
            cursor: pointer;
        }
        
        .sendSmsCode {
            font-size: 0.9rem;
            cursor: pointer;
            margin-left: 0.5rem;
        }
        
        .smsCodeInput {
            padding: 0.4rem 1rem;
            margin-bottom: 0.5rem;
            width:50%;
            border: 1px solid #D1D5DB;
            border-radius: 1rem;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .label-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            min-width: 60px;
        }
        
        .form-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: #37415194;
            white-space: nowrap;
        }
        
        .form-input {
            flex: 1;
            padding: 0.4rem 1rem;
            margin-bottom: 0.5rem;
            width:100%;
            border: 1px solid #D1D5DB;
            border-radius: 1rem;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #6366F1;
            box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
        }
        
        .error-message {
            font-size: 0.75rem;
            color: #EF4444;
            display: none;
            white-space: nowrap;
        }
        
        .error-message.show {
            display: inline-block;
        }
        
        .form-group.vertical {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.25rem;
            margin-bottom: 0.1rem;
        }
        
        .form-group.vertical .error-message.show {
            display: block;
        }
        
        .submit-btn {
            width: 100%;
            padding: 0.5rem;
            margin-top: 1rem;
            background: #6366F1 url('https://hulafei.oss-cn-shenzhen.aliyuncs.com/static/img/btnbg.jpg') center bottom / 100% auto;
            color: white;
            border-radius: 2rem;
            transition: background-color 0.2s ease;
            border: none;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feedBack-btn {
            width: 30%;
            height: 2rem;
            padding: 0.2rem;
            margin-left: 1rem;
            background: #6366F1 url('https://hulafei.oss-cn-shenzhen.aliyuncs.com/static/img/btnbg.jpg') center bottom / 100% auto;
            color: white;
            border-radius: 2rem;
            transition: background-color 0.2s ease;
            border: none;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .faqText textarea {
            padding: 0.5rem;
            margin: 0.5rem 0;
            width: 100%;
            height: 7rem;
            border: 1px solid #D1D5DB;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            outline: none; /* 清除浏览器默认的聚焦轮廓（可选） */
            resize: none; /* 禁止调整textarea大小（可选） */
        }
        
        .faqText textarea:focus {
            outline: none;
            resize: none;
            border-color: #6366F1;
            box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
        }
        
        .faqLink {
            font-size: 0.9rem;
        }
        
        .faqLink b,i,a {
            color: #8e8e8e;
        }
        
        .faqLink a {
            padding: 0.1rem 0.3rem;
            white-space: nowrap;
            color: #8e8e8e;
        }
        
        .faqLink a:hover {
            color: #6366F1;
        }
        
        .pay-btn {
            width: 80%;
            padding: 0.5rem;
            margin-top: 1rem;
            background: #12aa0e url('https://hulafei.oss-cn-shenzhen.aliyuncs.com/static/img/paybtbg.jpg') no-repeat center bottom / 100% auto;
            color: white;
            border-radius: 2rem;
            transition: background-color 0.2s ease;
            border: none;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .payBtnIcon {
            margin-right: 0.5rem;
            color: #FFF;
        }
        
        .submit-btn:hover {
            background-color: rgba(99, 102, 241, 0.9);
        }
        
        .submit-btn:disabled {
            background-color: rgba(99, 102, 241, 0.7);
            cursor: not-allowed;
        }
        
        .loading-icon {
            margin: 0 0.5rem;
            color: #FFF;
            display: none;
        }
        
        .loading-icon.show {
            display: inline-block;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 充值模态框样式 */
        .Pay-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .Pay-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .Pay-options {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .option-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .point-option {
            border: 1px solid #E5E7EB;
            border-radius: 2rem;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            cursor: pointer;
            transition: border-color 0.2s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .point-option:hover {
            border-color: #FFF;
        }
        
        .point-option.active {
            border-color: #FFF;
            background: #FFF url('https://hulafei.oss-cn-shenzhen.aliyuncs.com/static/img/btnbg.jpg') center bottom / 100% auto;
            color: #fff;
            border: 0;
        }
        
        .option-label {
            font-weight: 500;
        }
        
        .bonus-label {
            font-size: 0.75rem;
            margin-left: 0.5rem;
        }
        
        .bonus-label.active {
            color: #fff;
        }
        
        .amt-label {
            color: #FD5B58;
            font-weight: 600;
        }

        .point-option.active .amt-label {
            color: #FFF;
            font-weight: 600;
        }
        
        .qr-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            #border: 1px solid #E5E7EB;
            #border-radius: 0.5rem;
            #padding: 1rem;
        }
        
        .qr-placeholder {
            width: 10rem;
            height: 10rem;
            background-color: #FFF;
            border-radius: 0.9rem;
            padding: 0.3rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.2rem;
        }
        
        .qr-icon {
            font-size: 6rem;
            color: #9CA3AF;
        }
        
        .qr-text {
            font-size: 0.875rem;
            color: #6B7280;
            #margin-bottom: 0.25rem;
            text-align: center;
        }
        
        .amt-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: #FD5B58;
            text-align: center;
            margin-top: 0.5rem;
        }
        
        /* 免费领豌豆模态框样式 */
        .free-point-modal .modal-content {
            max-width: 22rem;
            padding: 1rem;
        }
        
        .free-point-modal .modal-title {
            font-size: 1rem;
            text-align: center;
            margin-bottom: 1rem;
        }
        
        .claim-btn {
            width: 50%;
            margin: 0 auto 1rem auto; /* 上下边距保持，左右auto实现水平居中 */
            padding: 0.5rem;
            background: #6366F1 url('https://hulafei.oss-cn-shenzhen.aliyuncs.com/static/img/btnbg.jpg') center bottom / 100% auto;
            color: white;
            border-radius: 2rem;
            transition: background-color 0.2s ease;
            border: none;
            cursor: pointer;
            font-weight: 500;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .claim-btn:hover {
            background-color: rgba(99, 102, 241, 0.9);
        }
        
        .claim-btn:disabled {
            background-color: rgba(99, 102, 241, 0.7);
            cursor: not-allowed;
        }
        
        .countdown-text {
            text-align: center;
            color: #6B7280;
            margin-bottom: 1rem;
        }
        
        .rules-list {
            font-size: 0.9rem;
            color: #6B7280;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        /* 提示弹窗样式 */
        .alert-modal .modal-content {
            max-width: 22rem;
        }
        
        .alert-content {
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.8rem;
            color: #374151;
            text-align: center;
        }
        
        .alert-actions {
            display: flex;
            justify-content: center;
        }
        
        .alert-btn {
            color: #6366F1;
            font-weight: 500;
            transition: color 0.2s ease;
            border: none;
            background: none;
            cursor: pointer;
        }
        
        .alert-btn:hover {
            color: rgba(99, 102, 241, 0.8);
        }