img {
    display: block
}

/* ============================================
   SEO 备用内容样式 - 用于组件化页面的 SEO 优化
   这些样式仅在 noscript 环境下显示
   ============================================ */

/* SEO 备用导航 - 默认隐藏 */
.seo-nav {
    display: none;
}

noscript .seo-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: #1f1570;
}

noscript .seo-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* SEO 备用页脚 - 默认隐藏 */
.seo-footer {
    display: none;
}

noscript .seo-footer {
    display: block;
    background: #2f3033;
    color: #d1d1d1;
    padding: 40px 20px;
}

noscript .seo-footer-nav {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto 30px;
}

noscript .seo-footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

noscript .seo-footer-col a,
noscript .seo-footer-col span {
    display: block;
    color: #d1d1d1;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
}

noscript .seo-footer-copy {
    text-align: center;
    font-size: 12px;
    color: #888;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}
.w1160{
    width: 1160px;
    margin: 0 auto;
}
.w1163{
    width: 1163px;
    margin: 0 auto;
}
h2 {
    font-size: 30px;
    font-weight: 400;
    color: #333
}

.floating-boxes {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-box {
    width: 70px;
    height: 70px;
    background-color: #0148A4;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 16px;
    color:#ffffff;
    white-space: nowrap;
}

.floating-boxes:hover .floating-box {
    background-color: #0148A4;
}

.floating-boxes.active .floating-box:not(:last-child) {
    width: 230px;
    height: 70px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.floating-boxes.active .floating-box:last-child {
    width: 230px;
    height: 286px;
    align-items: center;
}

.floating-box-content {
    display: none;
}

.floating-boxes.active .floating-box-content {
    display: block;
    color: #fff;
}

.floating-boxes.active .floating-box.floating-box-phone {
    height: 150px;
    align-items: flex-start;
}

.floating-boxes.active .floating-box.floating-box-phone .floating-box-content {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    align-items: flex-start;
    justify-content: center;
}

.floating-boxes.active .floating-box.floating-box-phone p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    color: #fff;
}


.floating-boxes.active .floating-box.floating-box-phone p:first-child {
    margin-bottom: 10px;
}

.floating-boxes.active .floating-box.floating-box-phone a {
    color: #fff;
    text-decoration: none;
}

.floating-boxes.active .floating-box:last-child .floating-box-content {
    margin-left: 0;
}

.floating-box-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.floating-boxes .icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}
.floating-boxes .floating-box .icon.icon-go-top {
    background: url("../../assets/image/pc/icon/icon-go-top.png") no-repeat;
    background-size: 100% 100%;
}
.floating-boxes .floating-box .icon.icon-phone {
    background: url("../../assets/image/pc/icon/icon-phone.png") no-repeat;
    background-size: 100% 100%;
}
.floating-boxes .floating-box .icon.icon-email {
    background: url("../../assets/image/pc/icon/icon-email.png") no-repeat;
    background-size: 100% 100%;
}
.floating-boxes .floating-box .icon.icon-qrcode {
    background: url("../../assets/image/pc/icon/icon-qrocde.png") no-repeat;
    background-size: 100% 100%;
}
.floating-boxes .floating-box .icon.icon-online-service {
    background: url("../../assets/image/pc/icon/icon-online-service.png") no-repeat;
    background-size: 100% 100%;
}
.floating-boxes .floating-box .fh-qy-qrcode {
    width: 198px;
    height: 198px;
    background: url("../../assets/image/pc/icon/fh-qy-qrcode.png") no-repeat;
    background-size: 100% 100%;
    margin-top: 10px;
    display: none;
}
.floating-boxes.active .floating-box:last-child .fh-qy-qrcode {
    display: block;
}

.online-kefu-btn {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 290px;
    z-index: 1000;
    width: 55px;
    height: 55px;
    background: url("../../assets/image/pc/icon/icon-online-kefu.png") no-repeat;
    background-size: 100% 100%;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.online-kefu-btn:hover {
    transform: translateY(-50%) scale(1.1);
}