﻿        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* 主容器样式 */
        .container {
            max-width: 1200px;
            margin: 20px auto;
            background: rgba(15, 32, 39, 0.8);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 0 30px rgba(0, 200, 255, 0.3);
            border: 1px solid rgba(0, 200, 255, 0.2);
        }

        /* 渐变标题效果 */
        .gradient-header {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin: 25px 0;
            background: linear-gradient(to right, #00c6ff, #0072ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
        }

        /* 科技感表格样式 */
        .tech-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            background: rgba(32, 58, 67, 0.7);
            border-radius: 10px;
            overflow: hidden;
        }

        .tech-table th {
            background: linear-gradient(to right, #00394b, #006a7d);
            color: #fff;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 15px;
        }

        .tech-table td {
            border: 1px solid rgba(0, 200, 255, 0.3);
            padding: 15px;
            text-align: left;
            vertical-align: middle;
        }

        .tech-table tr:nth-child(even) {
            background: rgba(44, 83, 100, 0.5);
        }

        .tech-table tr:hover {
            background: rgba(0, 100, 150, 0.3);
            transition: background 0.3s ease;
        }

        /* 下载按钮样式 */
        .download-btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: bold;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
            transition: all 0.3s ease;
            font-size: 14px;
            text-align: center;
            cursor: pointer;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 242, 254, 0.6);
        }

        /* 动态边框效果 */
        @keyframes borderGlow {
            0% { box-shadow: 0 0 5px rgba(0, 242, 254, 0.6); }
            50% { box-shadow: 0 0 20px rgba(0, 242, 254, 0.8); }
            100% { box-shadow: 0 0 5px rgba(0, 242, 254, 0.6); }
        }

        .software-title {
            font-size: 18px;
            font-weight: bold;
            color: #00f2fe;
            margin-bottom: 8px;
        }

        .update-time {
            color: #a8a8a8;
            font-size: 14px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
                margin: 10px;
            }
            
            .tech-table td {
                display: block;
                width: 100%;
                padding: 10px;
            }
            
            .tech-table td:first-child {
                margin-bottom: 10px;
            }
            
            .download-btn {
                width: 100%;
                margin-top: 10px;
            }
        }