/* ===== 全局文本统一变量（推荐方式）===== */
:root {
    /* 基础文本颜色和字号（可在此统一修改） */
    --text-color: #A69AAE;
    --text-size: clamp(1.8vw, 2.5vw, 3.0vw); /* 你只需改这一行就能全局生效 */
    --link-color: #0077cc;
}

.baozhang-container {
    width: 100%;
    height: 45vw;
    box-shadow: 0 0.267vw 1.067vw rgba(0, 0, 0, 0.05);
    position: relative;
    padding: 4vw;
    box-sizing: border-box;
    text-align: center;
}

/* 所有文字使用统一样式 */
.company-name,
.baozhang-text,
.feature-item span {
    font-size: var(--text-size);
    color: var(--text-color);
    line-height: 1.4;
    margin: 0;
}

.company-name {
    font-weight: 500;
    margin-bottom: clamp(1.2vw, 1.333vw, 16px);
    font-size: clamp(12px, 3.5vw, 35px); /* 再增大一号 */
}

.baozhang-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1.4vw, 1.6vw, 18px);
    gap: clamp(1.0vw, 1.067vw, 12px); /* 替代 margin-right */
}

.baozhang-icon {
    width: 2.4vw;
    height: 2.4vw;
    background-color: var(--link-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: calc(var(--text-size) * 0.8); /* 图标内文字略小，可选 */
    flex-shrink: 0;
}

.baozhang-link {
    font-size: var(--text-size);      /* 统一字号 */
    color: var(--link-color);         /* 统一链接色 */
    text-decoration: none;
    font-weight: 500;
}

.baozhang-link:hover {
    text-decoration: underline;
}

.features {
    display: flex;
    gap: clamp(1.8vw, 2.133vw, 24px);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: clamp(1.0vw, 1.067vw, 12px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: clamp(0.4vw, 0.533vw, 6px);
    color: var(--text-color); /* 确保 span 继承不到时也有颜色 */
}

.feature-icon {
    width: 1.867vw;
    height: 1.867vw;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(var(--text-size) * 0.75);
    color: white;
}

.check-icon { background-color: #00b874; }
.warning-icon { background-color: #ff9900; }
.money-icon { background-color: #ff5c00; }

.shadow-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}