        /* 标签切换系统 */
        .tab-container {
            margin: 30px 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .tab-buttons {
            display: flex;
            background: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
        }
        
        .tab-button {
            flex: 1;
            padding: 15px 20px;
            background: #f8f9fa;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: #555;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .tab-button:hover {
            background: #e9ecef;
            color: #df4d7b;
        }
        
        .tab-button.active {
            background: white;
            color: rgba(246, 83, 188, 0.873);
            box-shadow: 0 -2px 0 rgba(206, 103, 135, 0.3) inset;
        }
        
        .tab-button i {
            font-size: 18px;
        }
        
        /* 内容区域样式 */
        .tab-content {
            padding: 25px;
            min-height: 400px;
            transition: all 0.3s ease;
        }
        
        .tab-panel {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .tab-panel.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* 提示信息样式 */
        .tab-hint {
            background: #ecd0d9;
            border: 1px solid #da8aa3;
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: pulse 2s infinite;
        }
        
        .tab-hint i {
            color: #da8aa3;
            font-size: 20px;
        }
        
        .tab-hint p {
            margin: 0;
            color: #BB4B79;
            font-weight: 500;
        }
        
        .tab-hint .hint-buttons {
            display: flex;
            gap: 10px;
            margin-left: auto;
        }
        
        .hint-button {
            padding: 8px 15px;
            background: #d87292;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .hint-button:hover {
            background: #BB4B79;
            transform: translateY(-2px);
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(177, 73, 115, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(177, 73, 115, 0); }
            100% { box-shadow: 0 0 0 0 rgba(177,73,115, 0); }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .tab-buttons {
                flex-direction: column;
            }
            
            .tab-hint {
                flex-direction: column;
                text-align: center;
            }
            
            .tab-hint .hint-buttons {
                margin-left: 0;
                width: 100%;
                justify-content: center;
            }
        }
        