
        /* 基础样式重置与全局设置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", sans-serif;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        /* 选项卡样式 */
   /* 选项卡样式优化 */
.tabs {
    display: flex;
    margin-bottom: 20px;
    gap: 5px; /* 页签之间的间距 */
    border-bottom: none; /* 移除原底部边框 */
}
.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    border: none; /* 移除原底部边框 */
    border-radius: 8px 8px 0 0; /* 顶部圆角效果 */
    transition: all 0.3s ease;
    background-color: #f5f5f5; /* 非选中状态背景色 */
    position: relative;
}
.tab.active {
    color: white;
    font-weight: bold;
    background-color: #EF8A35; /* 选中状态背景色 */
    /* 增加选中状态的细微阴影提升层次感 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* 可选：添加底部指示线效果 */
.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #EF8A35;
}
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        /* 第一部分样式 */
        .title-section {
            margin-bottom: 20px;
        }
        .title-section h1 {
            font-size: 28px;
            color: #333;
            margin-bottom: 10px;
        }
        .title-section hr {
            border: none;
            height: 2px;
            background-color: #999999;
            margin-bottom: 15px;
        }
        .title-section p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
        /* 图片部分样式 */
        .image-section {
            margin-bottom: 20px;
        }
        .image-section img {
            width: 100%;
            height: auto;
            border: none;
            border-radius: 4px;
        }
        /* 提示文字样式 */
        .tips-section {
            margin-bottom: 20px;
        }
        .tips-section p {
            font-size: 14px;
            color: #EF8A35;
            line-height: 1.5;
        }
    