
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

        .container {
            width: 100%;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        h1, h2 {
            text-align: center;
            color: #d80c18;
        }

        h1 {
            font-size: 40px;
            margin-bottom: 20px;
        }

        p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .content-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ccc; /* 分隔线 */
            flex-wrap: wrap; /* 确保在小屏幕上内容可以换行 */
        }

        .content-section:last-child {
            border-bottom: none; /* 最后一个不需要分隔线 */
        }

        .content-section:nth-child(even) {
            flex-direction: row-reverse;
        }

        .text {
            width: 55%;
            padding: 10px;
        }

        .image {
            width: 40%;
            padding: 10px;
            position: relative;
            overflow: hidden;
        }

        .image::before {
            content: "";
            display: block;
            padding-top: 50%; /* 设置2:1比例 */
        }

        .image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保持图片比例 */
            border-radius: 8px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* 为图片增加阴影效果 */
        }

        .btn {
            display: block;
            width: 264px; /* 调整后的宽度为原来的120% */
            padding: 10px 0;
            text-align: center;
            background-color: #d80c18;
            color: #fff;
            text-decoration: none; /* 去掉下划线 */
            border-radius: 20px;
            margin: 30px auto;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: #a60b14; /* 悬停时背景颜色变化 */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 增加阴影效果 */
            transform: translateY(-3px); /* 轻微上移效果 */
        }

        /* 移动端优化 */
        @media (max-width: 768px) {
            h1 {
                font-size: 32px;
            }
            p {
                font-size: 14px;
            }
            .content-section {
                flex-direction: column; /* 改为垂直布局 */
                align-items: center;
                margin-bottom: 30px;
                padding-bottom: 30px;
            }
            .text, .image {
                width: 100%; /* 全宽显示 */
                padding: 5px;
            }
            .container {
                width: 90%; /* 容器在小屏幕上更宽 */
            }
        }
    