/* ========== 页脚样式 ========== */
/* rem单位计算：1rem = 屏幕宽度/192，假设设计稿1920px，则1rem = 10px */
.page-footer {
    background: #18233b;
    color: #fff;
    width: 100%;
    padding: 3.4rem 26rem 2rem; /* 上34px=3.4rem, 左右260px=26rem, 下20px=2rem */
    box-sizing: border-box;
}
.ft-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
}
.ft-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ft-left img {
    margin-bottom: 0.5rem;
    width: 10rem;
    height: 10.5rem;
}
.ft-left p {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}
.ft-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ft-right p {
    margin: 0 0 0.5rem 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.ft-right p:last-child {
    margin-bottom: 0;
}
/* 图标样式 */
.ft-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    flex-shrink: 0;
}
.ft-label {
    font-size: 1.2rem; /* 12px = 1.2rem */
    color: #fff;
    margin-right: 0.5rem;
    width: 8rem; /* 固定宽度，让标签对齐（联系电话: 最长，约5个字符） */
    display: inline-block;
    text-align: justify; /* 两端对齐 */
    text-align-last: justify; /* 最后一行也两端对齐 */
    flex-shrink: 0;
}
.ft-value {
    font-size: 1.8rem; /* 18px = 1.8rem */
    line-height: 2.8rem; /* 28px = 2.8rem */
    color: #fff;
}
.ft-copy {
    text-align: left;
    padding: 2rem 0;
    margin-top: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255,1);
    font-size: 1.6rem;
    color: #fff;
}

/* 合作伙伴和页脚合并后的页脚样式 */
.fullpage-section.slide-partner-footer .page-footer {
    flex: 0 0 auto;
    margin-top: 0;
    width: 100%;
    position: relative;
}

/* 移动端样式 */
@media(max-width:768px) {
    .page-footer {
        padding: 1.4rem 1rem 1rem !important;
        margin-top: 2rem !important;
    }
    .ft-main {
        flex-direction: column;
    }
    .ft-left img {
        display: none;
    }
    .ft-left,
    .ft-right {
        width: 100%;
    }
    .ft-right p {
        /* flex-direction: column; */
        gap: 0.5rem;
        align-items: flex-start;
    }
    .ft-label {
        width: 10rem;
        font-size: 1.4rem;
    }
    .ft-value {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }
    .ft-copy {
        text-align: center;
        font-size: 1.2rem;
        padding: 1.5rem 0;
    }
}

