body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            background-color: #f5f5f5;
            margin: 0;
            padding: 20px;
            color: #333;
        }
        .container {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
            font-weight: 600;
        }
        .notice {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            font-size: 14px;
            border-left: 4px solid #4e73df;
        }
        .address-list {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .address-item {
            text-align: center;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background: linear-gradient(135deg, #ffcc00, #ff9900);
            color: #333;
            text-decoration: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            width: 80%;
            max-width: 280px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: none;
            border-bottom: 4px solid #e67300;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(78, 115, 223, 0.4);
            background: linear-gradient(135deg, #224abe, #4e73df);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0));
            opacity: 0;
            transition: opacity 0.3s;
        }
        .btn:hover::after {
            opacity: 1;
        }
        .footer {
            text-align: center;
            margin-top: 40px;
            font-size: 12px;
            color: #6c757d;
        }
        .notice {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            font-size: 14px;
            border-left: 4px solid #4e73df;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-align: center;
        }
        /* 紧凑型资讯列表样式 */
        .news-section {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .news-section h2 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 14px;
            font-weight: 600;
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .news-item {
            display: flex;
            align-items: center;
            padding: 10px 12px;
            background-color: #fafafa;
            border-radius: 6px;
            transition: all 0.2s ease;
            border-left: 2px solid transparent;
        }
        .news-item:hover {
            background-color: #f0f4ff;
            border-left-color: #4e73df;
        }
        .news-type {
            display: inline-block;
            padding: 2px 8px;
            background: #e0e7ff;
            color: #4e73df;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 10px;
            font-weight: 500;
            white-space: nowrap;
        }
        .news-title {
            font-size: 14px;
            color: #444;
            flex-grow: 1;
            line-height: 1.4;
        }
        .news-item:hover .news-title {
            color: #224abe;
        }
        .news-arrow {
            color: #ccc;
            font-size: 14px;
            margin-left: 8px;
            transition: all 0.2s;
        }
        .news-item:hover .news-arrow {
            color: #4e73df;
            transform: translateX(2px);
        }
        
        /* 友情链接样式 */
        .friend-links {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .friend-links h2 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 14px;
            font-weight: 600;
        }
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        .friend-link {
            display: inline-block;
            padding: 6px 12px;
            background-color: #f0f0f0;
            color: #555;
            border-radius: 4px;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .friend-link:hover {
            background-color: #e0e7ff;
            color: #4e73df;
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 20px;
            }
            .news-item {
                padding: 8px 10px;
            }
            .news-type {
                font-size: 11px;
                margin-right: 8px;
            }
            .news-title {
                font-size: 13px;
            }
            .links-container {
                gap: 8px;
            }
            .friend-link {
                font-size: 12px;
                padding: 5px 10px;
            }
        }