
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 桌面端：总宽度1460px，左右布局 */
        .container {
            width: 1460px;
            max-width: 100%; /* 关键：允许在小屏幕上自适应 */
            margin: 50px auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 60px;
            padding: 0 20px; /* 左右留白，避免贴边 */
        }

        /* 左侧文字区域 */
        .left-section {
            flex: 1;
        }

        /* 大标题样式 */
        .main-title {
            font-size: 42px;
            color: #333333;
            margin: 0 0 25px 0;
            font-weight: 600;
        }

        /* 正文样式 */
        .description {
            font-size: 18px;
            color: #555555;
            line-height: 1.7;
            margin: 0;
        }

        /* 超链接：增加下划线 */
        .description a {
            color: #555555;
            text-decoration: underline; /* 显示下划线 */
        }

        .description a:hover {
            color: #0066cc;
        }

        /* 右侧灰色卡片 */
        .right-section {
            width: 420px;
            flex-shrink: 0;
            background-color: #F6F6F6;
            border-radius: 5px;
            padding: 35px;
        }

        /* 对勾列表 */
        .feature-list {
            list-style: none;
        }

        .feature-list li {
            font-size: 18px;
            color: #555555;
            line-height: 2;
            display: flex;
            align-items: center;
        }

        .feature-list li::before {
            content: "√";
            margin-right: 20px;
            color: #555555;
            font-weight: bold;
        }

        /* ======================
           手机端响应式：上下布局
        ====================== */
        @media (max-width: 768px) {
            .container {
                flex-direction: column; /* 垂直排列 */
                gap: 30px;
                width: 100%;
            }

            .right-section {
                width: 100%; /* 手机端全屏宽度 */
            }

            .main-title {
                font-size: 32px; /* 手机端标题缩小一点更美观 */
            }
        }
    