/* =========================================================
   右侧客服
========================================================= */

.service-float {
    position: fixed;

    right: 0;
    top: 42%;

    z-index: 2000;
}


/* =========================================================
   客服触发按钮（保持不变）
========================================================= */

.service-trigger {
    width: 48px;

    min-height: 76px;

    padding: 8px 4px;

    border: 0;

    background: #0076c8;

    color: #fff;

    cursor: pointer;

    border-radius: 5px 0 0 5px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .12);
}


/* =========================================================
   客服图标与文字
========================================================= */

.service-icon {
    font-size: 20px;
    line-height: 20px;
}

.service-text {
    margin-top: 5px;
    font-size: 11px;
    writing-mode: vertical-rl;
    letter-spacing: 1px;
}


/* =========================================================
   客服面板（加宽防拥挤，保持原有交互）
========================================================= */

.service-panel {
    position: absolute;

    right: 48px;
    top: 50%;

    width: 260px; /* 由 235px 加宽，容纳更大的字体 */

    padding: 20px;

    background: #fff;

    border: 1px solid #e3e8ed;

    box-shadow: 0 6px 24px rgba(0, 0, 0, .14);

    transform: translateY(-50%) translateX(10px);

    opacity: 0;
    visibility: hidden;

    transition: .2s ease;
}

.service-float.open .service-panel,
.service-float:hover .service-panel,
.service-float:focus-within .service-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}


/* =========================================================
   【放大字号】内容居中
========================================================= */

.service-panel-title {
    margin-bottom: 15px;

    padding-bottom: 12px;

    border-bottom: 1px solid #eeeeee;

    color: #0076c8;

    font-size: 17px; /* 由 15px 放大 */

    font-weight: 600;

    text-align: center;
}


.service-panel-item {
    display: flex;

    flex-direction: column;

    padding: 14px 0; /* 间距稍微加宽 */

    border-bottom: 1px solid #eeeeee;

    align-items: center;
}

.service-panel-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}


.service-panel-item strong {
    margin-bottom: 8px;

    font-size: 14px; /* 由 13px 放大 */

    text-align: center;
}


.service-panel-item span {
    color: #777;

    font-size: 14px; /* 由 12px 放大 */

    line-height: 1.8;

    text-align: center;
}

/* 客服电话：重点放大 */
.phone-number {
    font-weight: 600;
    font-size: 18px; /* 由 13px 大幅放大 */
    color: #333;
}

/* 工作时间：保持排列整齐 */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}