
        .link-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 16px;
            background-color: white;
            color: #333;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            word-break: keep-all;
            white-space: nowrap;
            min-height: 44px;
            flex: 0 1 auto;
            max-width: 100%;
            text-decoration: none;
        }

        .link-button:hover {
            background-color: #ff9800;
            color: white;
            border-color: #ff9800;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .link-button:active {
            background-color: #e68900;
            border-color: #e68900;
            transform: translateY(0);
        }

        .link-button.long-text {
            white-space: normal;
            word-break: break-word;
            line-height: 1.4;
        }

        .info-panel {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-top: 30px;
            border: 1px solid #eaeaea;
        }

        .info-panel h2 {
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .info-panel ul {
            padding-left: 20px;
        }

        .info-panel li {
            margin-bottom: 8px;
            line-height: 1.5;
        }

        /* 平板设备 */
        @media (max-width: 1024px) {
            .links-container {
                gap: 6px;
            }
            
            .link-button {
                padding: 9px 14px;
                font-size: 13px;
            }
        }

        /* 手机设备 */
        @media (max-width: 768px) {
            .links-container {
                gap: 6px;
            }
            
            .link-button {
                flex: 0 1 calc(50% - 6px);
                padding: 10px 12px;
                font-size: 13px;
            }
            
            .link-button.long-text {
                flex: 1 1 100%;
            }
        }

        /* 小屏手机 */
        @media (max-width: 480px) {
            .links-container {
                gap: 5px;
            }
            
            .link-button {
                flex: 0 1 calc(50% - 5px);
                padding: 8px 10px;
                font-size: 12px;
            }
        }