/**
 * 联系信息文本样式
 * 替代原来的电话号码图片，保持视觉一致
 */

/* --- 导航栏右侧电话 --- */
.zdhcs-tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    margin-right: 15px;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .zdhcs-tel {
        display: none;
    }
}

.zdhcs-tel-label {
    font-size: 13px;
    color: #333;
}

.zdhcs-tel-number {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: var(--zdhcs-accent, #c30d23);
}

/* --- 侧边栏电话（蓝底白字 + 黄色号码）--- */
/* background/color/padding 由 style.css 定义（含 prolistfbg.png 背景图），此处仅补充间距 */
.sidebar-contact {
    margin-top: 20px;
}

.sidebar-contact span {
    display: block;
    margin-bottom: 5px;
}

.sidebar-contact b {
    display: block;
    font-size: 26px;
    color: var(--zdhcs-highlight, #fcf90a);
}

/* --- 产品详情页电话 --- */
.main-pro-tel {
    margin-top: 15px;
    line-height: 1.3;
}

.main-pro-tel .zdhcs-tel-label {
    display: block;
    font-size: 14px;
    color: #333;
}

.main-pro-tel .zdhcs-tel-number {
    display: block;
    font-size: 26px;
    color: var(--zdhcs-accent, #c30d23);
}

/* --- 首页优势条电话（红底条，白标签 + 黄色号码）--- */
.adv-title .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.adv-tel {
    text-align: right;
    flex-shrink: 0;
}

.adv-tel span {
    display: block;
    font-size: 18px;
    color: #fff;
}

.adv-tel b {
    display: block;
    font-size: 28px;
    margin-top: 5px;
    line-height: 1.2;
    color: var(--zdhcs-highlight, #fcf90a);
}

/* --- 移动端适配 --- */
@media (max-width: 767px) {
    /* 关闭 flex，配合 style.css 的 float:none width:100% 实现垂直堆叠 */
    .adv-title .container {
        display: block;
    }

    .adv-tel {
        text-align: center;
        margin-top: 15px;
    }

    /* 号码不换行，适当缩小 */
    .adv-tel b {
        font-size: 22px;
        white-space: nowrap;
    }
}
