/* ===== 公共样式：reset / 基础类 / 头部 / 底部 / 版本切换 ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.base-width {
    width: 1190px;
    margin: 0 auto;
}

.flex {
    display: flex;
    align-items: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top24 {
    margin-top: 24px;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

/* 公共头部样式 */
.header {
    width: 100%;
    height: 80px;
    background: #fff;
    position: relative;
    z-index: 100;
}

.header .left {
    display: flex;
    align-items: center;
}

.header .left img {
    width: 244px;
    height: 32px;
    margin-right: 16px;
}

.header .left .title {
    padding-left: 16px;
    border-left: 1px solid rgba(229, 229, 229, 1);
    font-family: Alibaba PuHuiTi;
    font-weight: 700;
    font-size: 17px;
    color: rgba(26, 26, 26, 1);
}

.header .right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header .phone-box {
    display: flex;
    align-items: center;
    color: #666;
}

.header .phone-box img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.header .phone-box .phone-num {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 27px;
    color: rgba(26, 26, 26, 1);
}

/* 版本切换按钮 */
.version-switch {
    height: 34px;
    padding: 7px 13px;
    box-sizing: border-box;
    background: rgba(255, 246, 240, 1);
    border: 1px solid rgba(255, 110, 0, 1);
    border-radius: 32px;
    cursor: pointer;
}

.version-switch .switch-icon {
    width: 15px;
    height: 15px;
    margin-right: 6px;
}

.version-switch .switch-text {
    font-family: PingFang SC;
    font-weight: 500;
    font-style: Medium;
    font-size: 13px;
    color: rgba(255, 110, 0, 1);
}

/* 底部版权 */
.footer{
    width: 980px;
    margin: 24px auto 24px;
    padding:20px 35px 40px;
    background: #fff;;
}
.footer .footer-title{
    width: 159px;height:auto;
}
.footer .footer-desc{
    font-family: PingFang SC;
    font-weight: 400;
    font-size: 13.66px;
    color: rgba(175, 126, 4, 1);
    letter-spacing: 4.27px;
}
/* 荣誉图片轮播 */
.footer .footer-banner{
    position: relative;
    width: 880px;
    margin: 38px auto 0;
    overflow: hidden;
}
.footer .footer-banner-list{
    display: flex;
    transition: transform .5s ease;
}
.footer .footer-banner-list .footer-banner-img{
    flex: 0 0 100%;
    width: 100%;
    height: auto;
}
/* 底部 6 张资质图片：平铺一行 */
/* 底部 6 张资质图片：独立块，与 .footer 同级，6 张平铺同一行 */
.footer-creds{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 980px;
    margin: 0 auto 136px;
}
.footer-cred{
    display: inline-flex;
    flex-shrink: 0;
}
.footer-cred-img{
    width: 153px;
    height: 56px;
    display: block;
    cursor: pointer;
}
