 .info-list-section {
            background-color: #ffffff;
            padding: 3rem 0 4rem;
        }
        .info-container {
            max-width: 900px;
            margin: 0 auto;
            background: #fff;
            border-radius: 32px;
            padding: 0.5rem 1rem;
        }
        /* 每条信息样式：左侧小图标，右侧内容 */
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            padding: 1.2rem 0.5rem;
        }
        .info-item:last-of-type {
            border-bottom: none;
        }
        /* 左侧图标圆形柔和背景 */
        .info-icon {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: start;
            justify-content: center;
            font-size: 1.5rem;
            color: #20477c;
            transition: transform 0.2s, background 0.2s;
        }
      
        /* 右侧内容区域 */
        .info-content {
            flex: 1;
        }
        .info-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1f2f4e;
            margin-bottom: 0.35rem;
            letter-spacing: -0.2px;
        }
        .info-desc {
            font-size: 0.93rem;
            color: #4a5568;
            line-height: 1.45;
            margin-bottom: 0;
        }
        /* 按钮样式：背景 #20477c，白色字体，圆润大气 */
        .btn-wrapper {
            text-align: center;
            margin-top: 2.5rem;
        }
        .custom-btn {
            display: inline-block;
            background-color: #20477c;
            color: white;
            font-weight: 600;
            padding: 0.9rem 2.5rem;
            border-radius: 60px;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(32, 71, 124, 0.2);
        }
        .custom-btn:hover {
            background-color: #0f355c;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(32, 71, 124, 0.25);
        }
        /* 响应式适配手机/平板 */
        @media (max-width: 767.98px) {
            .info-list-section {
                padding: 2rem 0;
            }
            .info-container {
                padding: 0 0.5rem;
            }
            .info-item {
                gap: 0.9rem;
                padding: 1rem 0;
            }
            .info-icon {
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }
            .info-title {
                font-size: 1rem;
            }
            .info-desc {
                font-size: 0.85rem;
            }
            .custom-btn {
                padding: 0.7rem 1.8rem;
                font-size: 0.9rem;
            }
        }
        @media (min-width: 768px) and (max-width: 991.98px) {
            .info-container {
                max-width: 720px;
            }
            .info-title {
                font-size: 1.1rem;
            }
        }
        /* 可选平滑过渡 */
        .info-item {
            transition: background 0.2s;
        }
     