/**
 * 移动端适配样式
 * 适配方案：响应式设计 + 移动端优先
 * 断点设计：
 * - 480px 以下：小屏手机
 * - 481px - 768px：大屏手机/小平板
 * - 769px - 1024px：平板
 * - 1025px 以上：桌面端（保持原设计）
 */

/* ============================================
   基础移动端优化
   ============================================ */

/* 防止iOS横屏时字体放大 */
html {
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
    overflow-x: hidden !important;
    /* 防止横向滚动 */
}

/* 移动端点击高亮去除 */
* {
    -webkit-tap-highlight-color: transparent !important;
    box-sizing: border-box !important;
    /* 确保padding不增加宽度 */
}

/* 移动端滚动优化 */
body {
    -webkit-overflow-scrolling: touch !important;
    overflow-x: hidden !important;
    /* 防止横向滚动 */
    max-width: 100vw !important;
    /* 限制最大宽度 */
}

/* 确保所有图片不会溢出 */
img {
    max-width: 100% !important;
}

/* ============================================
   移动端菜单按钮（默认隐藏）
   ============================================ */
.mobile-menu-btn {
    display: none !important;
    width: 24px !important;
    height: 24px !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    cursor: pointer !important;
    z-index: 10001 !important;
}

.mobile-menu-btn span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: #333 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0 !important;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
}

/* 移动端遮罩层 */
.mobile-overlay {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.mobile-overlay.active {
    display: block !important;
    opacity: 1 !important;
}

.mobile-nav-divider,
.mobile-nav-item {
    display: none !important;
}

/* ============================================
   平板适配 (1024px 及以下)
   ============================================ */
@media screen and (max-width: 1024px) {

    /* 容器宽度调整 - 增加内边距防止贴边 */
    .container {
        max-width: 100% !important;
        padding: 0 24px !important;
        box-sizing: border-box !important;
    }

    /* 列表网格调整为2列 */
    .caseList {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-gap: 15px !important;
    }

    .caseList .item {
        width: 100% !important;
    }

    .caseList .item .picture {
        width: 100% !important;
        height: auto !important;

    }

    /* Banner高度调整 */
    .banner,
    .banner .el-carousel,
    .banner .el-carousel__container {}

    /* 广告位调整 */
    .ad {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 20px !important;
        height: auto !important;

    }

    .flexbox {
        height: auto;
    }

}

/* ============================================
   移动端适配 (768px 及以下)
   ============================================ */
@media screen and (max-width: 768px) {
    .search-cell .title {
        margin-bottom: 0 !important;
    }

    .index .newitem .newtitle {
        padding-top: 22px !important;
    }

    .mobile-nav-divider,
    .mobile-nav-item {
        display: block !important;
    }

    /* 显示移动端菜单按钮 - 增大点击区域 */
    .mobile-menu-btn {
        display: flex !important;
    }

    .caseBox .moreBtn::before {
        display: none !important;
    }

    .header .rows {
        height: 56px !important;
        position: relative !important;

    }

    /* Logo调整 */
    .header .logo .cn {
        font-size: 15px !important;
        line-height: 20px !important;
        letter-spacing: 1px !important;
        margin-top: 0 !important;
        max-width: 200px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* 导航改为侧边栏抽屉 */
    .header .nav {
        position: fixed !important;
        top: 0 !important;
        right: -280px !important;
        width: 280px !important;
        height: 100vh !important;
        background: #fff !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 80px 20px 20px !important;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
        transition: right 0.3s ease !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        /* 允许导航内容滚动 */
        -webkit-overflow-scrolling: touch !important;
    }

    .header .nav.active {
        right: 0 !important;
    }

    .header .nav .item {
        width: 100% !important;
        padding: 0 !important;
        line-height: 48px !important;
        padding: 0px !important;
        font-size: 16px !important;
        border-bottom: 1px solid #f0f0f0 !important;
        min-height: 48px !important;
        /* 确保点击区域足够大 */
    }

    /* others区域调整 - 隐藏登录和使用说明，移到侧边栏 */
    .header .others {
        display: none !important;
        gap: 12px !important;
    }

    /* 移动端顶部隐藏使用说明、登录按钮和用户下拉菜单 */
    .header .explain {
        display: none !important;
    }

    .header .others .button {
        display: none !important;
    }

    .header .others .el-dropdown {
        display: none !important;
    }

    /* 侧边栏导航中的移动端特殊项 */
    .header .nav .mobile-nav-divider {
        height: 1px !important;
        background: #f0f0f0 !important;
        margin: 15px 0 !important;
    }

    .header .nav .mobile-nav-item {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        min-height: 48px !important;
    }

    .header .nav .mobile-nav-item .icon {
        width: 22px !important;
        height: 22px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #1890ff !important;
        color: #fff !important;
        border-radius: 50% !important;
        font-size: 12px !important;
        font-weight: bold !important;
        flex-shrink: 0 !important;
    }

    /* 移动端 nav 内的搜索框 */
    .header .nav .mobile-search {
        width: 100%;
        border-bottom: 1px solid #f0f0f0 !important;
        display: block !important;
        padding: 8px 0 !important;
        min-height: 48px !important;
    }

    .header .nav .mobile-search .mobileIptBox {
        width: 100% !important;
        height: 36px !important;
        border-radius: 18px !important;
        border: 1px solid #ccc !important;
        margin-right: 0 !important;
        padding: 0 12px !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        transition: border-color 0.2s ease !important;
    }

    .header .nav .mobile-search .mobileIptBox:focus-within {
        border-color: #046AF6 !important;
    }

    .header .nav .mobile-search #mobileIpt {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        font-size: 14px !important;
        border: none !important;
        background: transparent !important;
        outline: none !important;
        color: #333 !important;
        flex: 1 !important;
        min-width: 0 !important;
    }

    .header .nav .mobile-search #mobileIpt::placeholder {
        color: #999 !important;
    }

    .header .nav .mobile-search #mobileSearch {
        width: 16px !important;
        height: 16px !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        padding-right: 0 !important;
    }

    /* 移动端 nav 内的联系电话 */
    .header .nav .mobile-tel {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        width: calc(100% - 40px) !important;
        min-height: 48px !important;
        color: #046AF6 !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        letter-spacing: 0.5px !important;
        justify-content: center !important;
        cursor: pointer !important;
        text-decoration: none !important;
        position: absolute;
        bottom: 0;
        padding: 0 !important;
    }

    .header .nav .mobile-tel::before {
        content: "" !important;
        display: inline-block !important;
        width: 16px !important;
        height: 16px !important;
        background: url("/web/imgs/phone.png") no-repeat center / contain !important;
        flex-shrink: 0 !important;
    }

    .header .nav .mobile-tel:active {
        opacity: 0.7 !important;
    }

    .header .nav .mobile-explain {
        color: #666 !important;
    }

    .header .nav .mobile-logout {
        padding-top: 0 !important;
    }

    .header .nav .mobile-logout .icon {
        background: #ff4d4f !important;
    }

    /* 移动端登录状态项显隐控制 */
    .header .nav .mobile-login,
    .header .nav .mobile-logout,
    .header .nav .mobile-user {
        transition: opacity 0.2s ease !important;
    }

    .header .nav .mobile-login.is-hidden,
    .header .nav .mobile-logout.is-hidden,
    .header .nav .mobile-user.is-hidden {
        display: none !important;
    }

    /* 移动端用户名按钮样式 */
    .header .nav .mobile-user {
        color: #333 !important;
        font-weight: 500 !important;
    }

    .header .nav .mobile-user .icon {
        background: #52c41a !important;
        margin-right: 8px !important;
    }

    .header .nav .mobile-user .user-nickname {
        display: inline-block !important;
        vertical-align: middle !important;
    }

    /* 已登录用户信息显示 */
    .header .nav .mobile-user-info {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 0 !important;
        color: #333 !important;
        font-weight: 500 !important;
    }

    .header .nav .mobile-user-info img {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
    }

    .header .others .user .avatar {
        width: 40px !important;
        /* 增大头像点击区域 */
        height: 40px !important;
    }

    /* 确保header内的元素不溢出 */
    .header .rows {
        overflow: hidden !important;
    }

    /* 防止文字过长导致的布局问题 */
    .header .logo {
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }

    /* #app顶部间距调整 */
    #app {
        padding-top: 56px !important;
    }

    /* Banner调整为移动端高度 - 使用更合理的高度 */
    .banner,
    .banner .el-carousel,
    .banner .el-carousel__container {
        max-height: 30vh !important;
        /* 限制最大高度为视口的30% */
    }


    /* 确保banner图片正常显示 */
    .banner .el-carousel__item img,
    .list-banner .el-carousel__item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        /* 保持比例填充 */
    }

    /* 搜索区域调整 - 优化间距和点击区域 */
    .search-cell {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 16px 0 !important;
    }

    .search-cell .title {
        font-size: 18px !important;
        line-height: 26px !important;
        font-weight: 600 !important;
    }

    .search-cell .search {
        width: 100% !important;
        height: 48px !important;
        /* 增大输入框高度 */
        border-radius: 24px !important;
    }

    .search-cell .search .el-input__inner {
        height: 48px !important;
        line-height: 48px !important;
        font-size: 15px !important;
    }

    .search-cell .searchBtn {
        width: 80px !important;
        /* 增大按钮 */
        height: 40px !important;
        line-height: 40px !important;
        border-radius: 20px !important;
        right: 4px !important;
    }

    .search-cell .searchBtn .txt {
        font-size: 14px !important;
        font-weight: 500 !important;
    }

    /* 筛选框调整 */
    .searchBox {
        padding: 15px !important;
        border-radius: 12px !important;
    }

    .searchBox .type {
        gap: 10px 15px !important;
    }

    .searchBox .type .item {
        font-size: 14px !important;
        height: 32px !important;
        line-height: 32px !important;
    }

    .searchBox .type .item.on {
        padding: 0 12px !important;
    }

    .searchBox .place,
    .searchBox .format {
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }

    .searchBox .place .label,
    .searchBox .format .label {
        font-size: 14px !important;
        text-align: left !important;
    }

    .searchBox.color {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 15px !important;
        margin: 15px 0 !important;
    }

    .searchBox.color .value {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .color .value .item {
        width: 30px !important;
        height: 18px !important;
    }

    .color .value .tips {
        font-size: 11px !important;
        width: 100% !important;
        margin-top: 5px !important;
    }

    /* 列表调整为单列 - 优化图片显示 */
    .caseList {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        /* 增加间距 */
    }

    .caseList .item {
        box-sizing: border-box !important;
    }

    .caseList .item .picture {
        width: 100% !important;
        height: auto !important;

        /* 统一的图片比例 */
        overflow: hidden !important;
        border-radius: 8px !important;
    }

    .caseList .item .picture img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        /* 保持比例填充 */
    }

    .caseBox {
        padding-bottom: 40px !important;
    }

    .service .content {
        padding: 20px !important;
    }

    .caseList .item {
        padding: 10px !important;
        border-radius: 12px !important;
    }

    .caseList .item .picture {
        border-radius: 8px !important;
    }

    .infoBox .preview .id {
        left: 20px !important;
        bottom: 20px !important;
    }

    .caseList .item .title {
        line-height: 20px !important;
    }

    .caseList .item .timer .txt,
    .caseList .item .download .txt,
    .caseList .item .collect .txt,
    .caseList .item .seeCount .txt {
        font-size: 11px !important;
    }

    .caseList .item .rows .group {
        gap: 8px !important;
    }

    /* 加载更多按钮 */
    .caseBox .moreBtn {
        margin-top: 20px !important;
    }

    .caseBox .moreBtn::before {
        top: -80px !important;
        height: 100px !important;
    }

    /* 底部分页调整 */
    .pagination {
        padding: 30px 0 !important;
    }

    /* ================================
       底部Footer样式 - 手机端优化
       ================================ */
    .footer {
        height: auto !important;
    }

    /* 隐藏桌面端 ::before 灰色背景块（移动端由 .nav 自带背景） */
    .footer .nav::before {
        display: none !important;
    }

    /* 底部导航栏 - 灰色背景 */
    .footer .nav {
        height: auto !important;
        min-height: 50px !important;
        flex-wrap: wrap !important;
        padding: 10px 12px !important;
        gap: 4px 0 !important;
        background: #8c8c8c !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer .nav .item {
        padding: 6px 8px !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        color: #fff !important;
        white-space: nowrap !important;
        border-radius: 4px !important;
        transition: background 0.2s ease !important;
    }

    .footer .nav .item:active {
        background: rgba(255, 255, 255, 0.2) !important;
    }

    .footer .nav .and {
        font-size: 12px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        padding: 0 2px !important;
    }

    /* 底部信息区域 - 蓝色背景 + 隐藏桌面端左右圆角块 */
    .footer .info {
        height: auto !important;
        padding: 24px 16px 22px !important;
        background: #173fb8 !important;
    }

    .footer .info::before,
    .footer .info::after {
        display: none !important;
    }

    .infoItem {
        width: 100% !important;
        max-width: 100% !important;
        padding-top: 0 !important;
        margin: 0 !important;
    }

    /* 顶部标题图片 */
    .footerTitle {
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto 18px !important;
    }

    .footerTitle img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* 中部主体：左右排布 → 上下堆叠 */
    .footerCenter {
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        padding: 20px 0 22px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
        gap: 18px !important;
    }

    .footerLeft {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footerTop {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;

    }

    .footerTopLeft {
        width: 100% !important;
        text-align: center !important;
    }

    /* 联系方式区：电话 div */
    .footerTopLeft>div {
        margin-bottom: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    .footerTopLeft>div img {
        width: 16px !important;
        height: 16px !important;
        margin-right: 4px !important;
    }

    .footerTopLeft>div p {
        font-size: 15px !important;
        line-height: 22px !important;
        margin-bottom: 0 !important;
        font-weight: bold !important;
        letter-spacing: 1px !important;
        color: #ffffff !important;
        display: inline-block !important;
    }

    /* 友情链接 */
    .footerTopLeft>p {
        font-size: 13px !important;
        line-height: 20px !important;
        color: rgba(255, 255, 255, 0.85) !important;
        margin-bottom: 10px !important;
        letter-spacing: 0.5px !important;
    }

    .footerTopLeft>p:last-child {
        margin-bottom: 0 !important;
    }

    .footerTopLeft a {
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #ffffff !important;
        display: inline-block !important;
        padding: 2px 4px !important;
    }

    .footerTopLeft a:nth-of-type(1) {
        margin-right: 8px !important;
    }

    .footerTopLeft a:active {
        opacity: 0.75 !important;
    }

    .footerTopRight {
        margin-left: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footerTopRight>p {
        font-size: 14px !important;
        font-weight: bold !important;
        margin-bottom: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 22px !important;
        letter-spacing: 1px !important;
        color: #ffffff !important;
        text-align: center !important;
    }

    .footerTopRight>p img.footerItem1 {
        margin-left: 8px !important;
        width: 22px !important;
        height: 18px !important;
    }

    .footerTopRight>img.ewm {
        width: 110px !important;
        height: 110px !important;
        margin: 0 !important;
        display: block !important;
    }

    /* 地址 */
    .footerBottom {
        margin-top: 20px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .footerBottom p {
        font-size: 15px !important;
        font-weight: bold !important;
        line-height: 22px !important;
        margin-bottom: 8px !important;
        letter-spacing: 1px !important;
        color: #ffffff !important;
    }

    .footerBottom span {
        font-size: 13px !important;
        font-weight: 400 !important;
        line-height: 20px !important;
        color: rgba(255, 255, 255, 0.85) !important;
        display: block !important;
        padding: 0 8px !important;
    }

    /* 地图图片：移动端放到底部全宽 */
    .footerRight {
        width: 100% !important;
        height: auto !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        background: #fff !important;
    }

    .footerRight img {
        width: 100% !important;
        height: 100% !important;
        max-height: 200px !important;
        display: block !important;
        object-fit: cover !important;
    }

    /* 兼容旧版 footer 的 .rows / .txt（如有遗留） */
    .footer .info .rows {
        flex-direction: column !important;
        gap: 6px !important;
    }

    .footer .info .rows:last-child {
        margin-bottom: 0 !important;
    }

    .footer .info .txt {
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .footer .info .txt strong {
        color: #fff !important;
        font-weight: 500 !important;
    }

    /* 底部链接样式 */
    .footer a {
        color: inherit !important;
        text-decoration: none !important;
    }

    .footer a:active {
        opacity: 0.8 !important;
    }

    .el-pagination__total {
        display: none !important;
    }

    .el-pagination__jump {
        display: none !important;
    }

    .el-pagination.is-background .btn-next,
    .el-pagination.is-background .btn-prev,
    .el-pagination.is-background .el-pager li {
        width: 40px !important;
        min-width: auto !important;
        line-height: 40px !important;
        height: 40px !important;
    }

    .footer .info .txt {
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .footer .info .txt strong {
        color: #fff !important;
        font-weight: 500 !important;
    }

    /* 底部链接样式 */
    .footer a {
        color: inherit !important;
        text-decoration: none !important;
    }

    .footer a:active {
        opacity: 0.8 !important;
    }

    .el-dialog {
        margin: 0 !important;
    }

    .explainPage .content {
        padding: 20px !important;
    }

    .infoPage::before {
        display: none !important;
    }

    /* ================================
       联系客服悬浮按钮 - 移动端
       ================================ */
    .serviceFloat {
        right: 16px !important;
        bottom: 70px !important;
        width: 60px !important;
        height: 60px !important;
    }

    .serviceFloat svg {
        width: 26px !important;
        height: 26px !important;
    }

    /* ================================
       联系客服弹窗 - 移动端
       ================================ */
    .serviceDialog .el-dialog {
        max-width: 92% !important;
        width: 340px !important;
    }

    .servicePopup.app {
        width: 100% !important;
        height: 440px !important;
        padding-top: 40px !important;
        padding-bottom: 26px !important;
    }

    .servicePopup.app .close {
        top: 10px !important;
        right: 10px !important;
    }

    .servicePopup .title {
        font-size: 18px !important;
        margin-bottom: 18px !important;
    }

    .servicePopup.app .qrArea {
        padding: 0 !important;
        margin-bottom: 14px !important;
    }

    .servicePopup.app .qrArea .qr {
        width: 260px !important;
        height: 260px !important;
    }

    .servicePopup.app .qrArea .tip {
        font-size: 16px !important;
    }

    .servicePopup.app .phone {
        padding: 0px 14px !important;
    }

    .servicePopup .phone .num {
        font-size: 15px !important;
    }

    .textInfo .infoBox .richBox p {
        font-size: 14px !important;
    }

    .infoBox .richBox p {
        font-size: 14px !important;
    }

    /* 面包屑调整 */
    .breadcrumb {
        margin: 0 0 15px !important;
        padding-top: 15px !important;
    }

    .breadcrumb .icon {
        width: 16px !important;
        height: 16px !important;
    }

    .breadcrumb .txt {
        font-size: 12px !important;
        line-height: 18px !important;
        padding: 0 !important;
    }

    /* 底部导航 */
    .footer .nav {
        padding: 8px 10px !important;
        min-height: 44px !important;
        gap: 2px 0 !important;
    }

    .footer .nav .item {
        padding: 5px 6px !important;
        line-height: 1.4 !important;
    }

    .footer .nav .and {
        font-size: 11px !important;
    }

    /* 底部信息区域 */
    .footer .info {
        padding: 20px 14px 18px !important;
        height: auto !important;
    }

    .footer {
        height: auto !important;
    }

    /* 标题图 */
    .footerTitle {
        max-width: 300px !important;
        margin-bottom: 16px !important;
    }

    /* 主体区 */
    .footerCenter {
        padding: 16px 0 18px !important;
        gap: 16px !important;
    }

    /* 联系方式区 */
    .footerTopLeft>div {
        margin-bottom: 14px !important;
    }

    .footerTopLeft>div img {
        width: 15px !important;
        height: 15px !important;
    }

    .footerTopLeft>div p {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    /* 友情链接标题 + 链接 */
    .footerTopLeft>p {
        font-size: 12px !important;
        line-height: 18px !important;
        margin-bottom: 8px !important;
    }

    .footerTopLeft a {
        font-size: 13px !important;
        color: #fff !important;
        padding: 2px 4px !important;
    }

    .footerTopLeft a:nth-of-type(1) {
        margin-right: 6px !important;
    }

    /* 微信二维码 */
    .footerTopRight>p {
        font-size: 13px !important;
        line-height: 20px !important;
        margin-bottom: 10px !important;
    }

    .footerTopRight>p img.footerItem1 {
        width: 20px !important;
        height: 16px !important;
        margin-left: 6px !important;
    }

    .footerTopRight>img.ewm {
        width: 100px !important;
        height: 100px !important;
    }

    /* 地址 */
    .footerBottom {
        margin-top: 16px !important;
    }

    .footerBottom p {
        font-size: 14px !important;
        line-height: 20px !important;
        margin-bottom: 6px !important;
    }

    .footerBottom span {
        font-size: 12px !important;
        line-height: 18px !important;
        padding: 0 4px !important;
    }

    /* 地图 */
    .footerRight {
        border-radius: 8px !important;
    }


    /* 兼容旧版 footer 的 .rows / .txt（如有遗留） */
    .footer .info .rows {
        gap: unset !important;
    }

    /* 空状态调整 */
    .emptyBox {
        padding: 30px 0 !important;
    }
}

/* ============================================
   小屏手机适配 (480px 及以下)
   ============================================ */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 12px !important;
    }

    /* 移动端 nav 内的搜索框/电话 - 小屏微调 */
    .header .nav .mobile-search .mobileIptBox {
        height: 34px !important;
    }

    .header .nav .mobile-search #mobileIpt {
        font-size: 13px !important;
    }

    .header .nav .mobile-tel {
        font-size: 14px !important;
    }

    /* Banner进一步缩小 */
    .banner,
    .banner .el-carousel,
    .banner .el-carousel__container {}

    /* 搜索框更紧凑 */
    .search-cell .title {
        font-size: 18px !important;
    }

    .search-cell .search {
        height: 40px !important;
    }

    .search-cell .search .el-input__inner {
        height: 40px !important;
        line-height: 40px !important;
        padding-left: 15px !important;
    }

    .search-cell .searchBtn {
        width: 60px !important;
        height: 32px !important;
        line-height: 32px !important;
    }

    .search-cell .searchBtn .icon {
        display: none !important;
    }

    /* 筛选框更紧凑 */
    .searchBox {
        padding: 12px !important;
    }

    .searchBox .type .item {
        font-size: 13px !important;
        height: 28px !important;
        line-height: 28px !important;
    }

    .searchBox .type .item.on {
        padding: 0 10px !important;
    }

    .searchBox .place .label,
    .searchBox .format .label {
        font-size: 13px !important;
    }

    /* 颜色选择器调整 */
    .searchBox.color {
        padding: 12px !important;
        margin: 12px 0 !important;
    }

    .color .value .item {
        width: 26px !important;
        height: 16px !important;
    }

    .color .value .tips {
        font-size: 10px !important;
    }

    /* 列表项优化 - 增加间距和可读性 */
    .caseList {
        gap: 12px !important;
    }

    .caseList .item {
        padding: 12px !important;
        border-radius: 12px !important;
    }

    .caseList .item .title {
        font-size: 14px !important;
        padding-top: 10px !important;
        padding-bottom: 6px !important;
        line-height: 1.4 !important;
    }

    .caseList .item .timer .txt,
    .caseList .item .download .txt,
    .caseList .item .collect .txt,
    .caseList .item .seeCount .txt {
        font-size: 11px !important;
    }

    .caseList .item .rows .group {
        gap: 12px !important;
    }

    /* 底部分页 - 增大点击区域 */
    .pagination {
        padding: 24px 0 !important;
    }

    .el-pager li {
        font-size: 14px !important;
        line-height: 40px !important;
    }

    .el-pagination.is-background .btn-next,
    .el-pagination.is-background .btn-prev,
    .el-pagination.is-background .el-pager li {
        min-width: 40px !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 8px !important;
    }

    /* 弹窗适配 - 确保居中且合适大小 */
    .el-dialog {
        max-width: 92% !important;
        max-width: 340px !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .loginPopup,
    .registerPopup {
        width: 100% !important;
        padding: 0 24px !important;
        padding-top: 40px !important;
        min-height: auto !important;
    }

    .loginPopup .inputBox,
    .registerPopup .inputBox {
        height: 48px !important;
        /* 增大输入框 */
        border-radius: 24px !important;
        margin-bottom: 16px !important;
    }

    .loginPopup .loginBtn,
    .registerPopup .loginBtn {
        height: 44px !important;
        line-height: 44px !important;
        font-size: 16px !important;
    }

    .registerPopup .inputBox.codeBox .el-input__inner {
        padding-right: 100px !important;
    }

    .registerPopup .inputBox .sendCodeBtn {
        height: 36px !important;
        padding: 0 14px !important;
        font-size: 13px !important;
    }

    /* 底部Footer - 小屏紧凑布局 */
    .footer .nav {
        padding: 8px 8px !important;
        min-height: 42px !important;
        gap: 0 !important;
    }

    .footer .nav .item {
        padding: 4px 5px !important;
    }

    .footer .nav .and {
        font-size: 10px !important;
    }

    .footer .info {
        padding: 16px 12px 14px !important;
    }

    .footerTitle {
        max-width: 260px !important;
        margin-bottom: 12px !important;
    }

    .footerCenter {
        padding: 14px 0 16px !important;
        gap: 14px !important;
    }

    /* 联系方式 */
    .footerTopLeft>div {
        margin-bottom: 12px !important;
        flex-direction: row !important;
        gap: 4px !important;
    }

    .footerTopLeft>div img {
        width: 14px !important;
        height: 14px !important;
        margin-right: 3px !important;
    }

    .footerTopLeft>div p {
        font-size: 13px !important;
        line-height: 18px !important;
    }

    /* 友情链接 */
    .footerTopLeft>p {
        font-size: 11px !important;
        line-height: 16px !important;
        margin-bottom: 6px !important;
    }

    .footerTopLeft a {
        font-size: 12px !important;
        padding: 2px 4px !important;
    }

    .footerTopLeft a:nth-of-type(1) {
        margin-right: 4px !important;
    }

    /* 微信二维码 */
    .footerTopRight>p {
        font-size: 12px !important;
        line-height: 18px !important;
        margin-bottom: 8px !important;
    }

    .footerTopRight>p img.footerItem1 {
        width: 18px !important;
        height: 14px !important;
        margin-left: 4px !important;
    }

    .footerTopRight>img.ewm {
        width: 88px !important;
        height: 88px !important;
    }

    /* 地址 */
    .footerBottom {
        margin-top: 14px !important;
    }

    .footerBottom p {
        font-size: 13px !important;
        line-height: 18px !important;
        margin-bottom: 4px !important;
    }

    .footerBottom span {
        font-size: 11px !important;
        line-height: 16px !important;
        padding: 0 !important;
    }

    /* 地图 */
    .footerRight {
        border-radius: 6px !important;
    }

    /* 兼容旧版 footer 的 .rows / .txt */
    .footer .info .rows {
        gap: 6px !important;
    }

    .footer .info .txt {
        font-size: 12px !important;
        line-height: 1.6 !important;
    }

    /* 小屏手机 - 联系客服悬浮按钮 */
    .serviceFloat {
        right: 12px !important;
        bottom: 70px !important;
        width: 60px !important;
        height: 60px !important;
    }

    .serviceFloat svg {
        width: 24px !important;
        height: 24px !important;
    }

    /* 小屏手机 - 联系客服弹窗 */
    .serviceDialog .el-dialog {
        max-width: 90% !important;
        width: 300px !important;
    }

    .servicePopup {
        padding-top: 36px !important;
        padding-bottom: 24px !important;
    }

    .servicePopup .title {
        font-size: 17px !important;
        margin-bottom: 16px !important;
    }

    .servicePopup .qrArea {
        padding: 14px !important;
        margin-bottom: 12px !important;
    }

    .servicePopup .qrArea .qr {
        width: 140px !important;
        height: 140px !important;
    }

    .servicePopup .phone {
        padding: 9px 12px !important;
    }

    .servicePopup .phone .label {
        font-size: 13px !important;
    }

    .servicePopup .phone .num {
        font-size: 14px !important;
    }

    /* 积分不足弹窗 - 移动端 */
    .pointsShortPopup {
        width: 100% !important;
    }

    .pointsShortPopup .warnIcon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 8px !important;
    }

    .pointsShortPopup .warnIcon svg {
        width: 22px !important;
        height: 22px !important;
    }

    .pointsShortPopup .title {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    .pointsShortPopup .msg {
        font-size: 12px !important;
        line-height: 18px !important;
        margin-bottom: 14px !important;
    }

    .pointsShortPopup .confirmBtn {
        height: 32px !important;
        line-height: 32px !important;
        font-size: 13px !important;
    }
}

/* ============================================
   安全区域适配（iPhone刘海屏等）
   ============================================ */
@supports (padding-top: env(safe-area-inset-top)) {
    .header {
        padding-top: env(safe-area-inset-top) !important;
    }

    .header .rows {
        height: calc(75px + env(safe-area-inset-top)) !important;
        padding-bottom: env(safe-area-inset-top) !important;
    }

    #app {
        padding-top: calc(75px + env(safe-area-inset-top)) !important;
    }
}

/* ============================================
   详情页移动端适配
   ============================================ */
@media screen and (max-width: 1024px) {
    .infoPage {
        min-height: auto !important;
    }

    .infoBox {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .infoBox .previewBox {
        width: 100% !important;
        padding: 15px !important;
        border-radius: 16px !important;
    }

    .infoBox .preview,
    .infoBox .picbox {
        width: 100% !important;
        height: auto !important;

        border-radius: 12px !important;
    }

    .infoBox .richBox {
        width: 100% !important;
        margin-top: 15px !important;
    }

    .textInfo {
        min-height: auto !important;
    }

    .infoBox .info {
        width: 100% !important;
        height: auto !important;
        min-height: 400px !important;
        padding: 15px !important;
        border-radius: 16px !important;
    }

    .recommend .toprows {
        margin: 30px 0 20px !important;
    }

    .recommend .toprows .title {
        font-size: 22px !important;
    }
}

@media screen and (max-width: 768px) {
    .infoBox .previewBox .rows {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .infoBox .previewBox .way {
        font-size: 12px !important;
    }

    .infoBox .previewBox .group {
        gap: 10px !important;
    }

    .infoBox .info .title {
        font-size: 16px !important;
        width: 100% !important;
    }

    .infoBox .info .cell {
        padding: 8px 0 !important;
    }

    .infoBox .info .cell .label,
    .infoBox .info .cell .value {
        font-size: 13px !important;
    }

    .infoBox .info .downloadBtn {
        margin-top: 30px !important;
        height: 44px !important;
    }

    .infoBox .info .downloadBtn .txt {
        font-size: 16px !important;
    }

    .downloadPopup {
        width: 90% !important;
        max-width: 283px !important;
        padding: 0 15px !important;
        padding-top: 30px !important;
    }

    .recommend {
        padding-bottom: 30px !important;
    }

    .recommend .toprows {
        margin: 20px 0 15px !important;
    }

    .recommend .toprows .title {
        font-size: 18px !important;
        line-height: 26px !important;
    }

    .recommend .toprows .moreBtn .txt {
        font-size: 13px !important;
    }
}

/* ============================================
   个人中心移动端适配
   ============================================ */
@media screen and (max-width: 1024px) {
    .mine {
        min-height: calc(100vh - 56px - 150px) !important;
    }

    .mineContent {
        max-width: 100% !important;
        padding: 20px !important;
        padding-top: 20px !important;
        margin-bottom: 0 !important;
    }

    .rightBottom>div {
        width: 50% !important;
        margin-right: 0 !important;
    }

    .mineItem {
        max-width: 100% !important;
        padding: 0 20px !important;
        flex-direction: column !important;
        padding-bottom: 40px !important;
    }

    .itemLeft,
    .itemLeft1 {
        width: 100% !important;
        height: auto !important;
        display: flex !important;
        flex-wrap: wrap !important;
        padding: 10px !important;
        margin-bottom: 15px !important;
    }

    .itemLeft div {
        flex: 1 !important;
        line-height: 48px !important;
        height: 48px !important;
        border-bottom: none !important;
    }

    .itemLeft .active::before {
        width: 100% !important;
        height: 3px !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
    }

    .itemRight,
    .itemRight1 {
        width: 100% !important;
        margin-left: 0 !important;
        padding-bottom: 20px !important;
        height: auto !important;
        min-height: 500px !important;
    }
}

@media screen and (max-width: 768px) {
    .mine {
        min-height: calc(100vh - 56px - 120px) !important;
    }

    .mineContent {
        padding: 15px !important;
        flex-wrap: wrap !important;
    }

    .mineContent img {
        width: 16px !important;
        height: 16px !important;
        margin-right: 5px !important;
    }

    .mineContent p,
    .mineContent span {
        font-size: 12px !important;
        line-height: 18px !important;
    }

    .mineItem {
        padding: 0 15px !important;
        padding-bottom: 30px !important;
    }

    .itemLeft,
    .itemLeft1 {
        padding: 5px !important;
        border-radius: 6px !important;
    }

    .itemLeft div {
        font-size: 14px !important;
        line-height: 40px !important;
        height: 40px !important;
    }

    .itemRight,
    .itemRight1 {
        min-height: 400px !important;
        border-radius: 6px !important;
    }

    .rightTop {
        margin: 0 20px !important;
        padding: 25px 0 !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    .touxiang {
        width: 60px !important;
        height: 60px !important;
    }

    .rightTop p {
        margin-left: 0 !important;
        font-size: 18px !important;
    }

    .rightTop1 {
        margin: 0 15px !important;
        padding-top: 20px !important;
        font-size: 20px !important;
    }

    .textInfo::before {
        display: none !important;
    }

    .textInfo .infoBox .previewBox {
        width: 100% !important;
    }

    .textInfo .infoBox .richBox {
        width: 100% !important;
    }

    .selectBox {
        margin: 10px 15px !important;
        flex-wrap: wrap !important;
    }

    .selectBox div {
        padding: 0 8px !important;
        line-height: 26px !important;
        font-size: 13px !important;
    }

    .rightBottom {
        margin: 20px !important;
        flex-wrap: wrap !important;
        justify-content: space-around !important;
    }

    .rightBottom1 {
        height: auto !important;
        margin: 0 15px !important;
    }

    .rightBottom1Item {
        width: 100% !important;
        margin-right: 0 !important;
        padding-bottom: 11px !important;
        margin-top: 10px !important;
        border-radius: 12px !important;
    }

    .mineContent p,
    .mineContent span {
        margin: 0 !important;
    }

    .rightBottom1Item:nth-child(3n + 3) {
        margin-right: 0 !important;
    }

    .rightBottom1Item:nth-child(2n) {
        margin-right: 0 !important;
    }

    .rightBottom p {
        font-size: 14px !important;
    }

    .rightBottom div div {
        font-size: 12px !important;
    }

    .rightBottom1Item:nth-child(1) {
        margin-top: 0 !important;
    }

    .itemImg {
        height: 100px !important;
        margin: 0 10px 8px 10px !important;
        border-radius: 8px !important;
    }

    .rightBottom1Item p {
        margin-bottom: 10px !important;
        font-size: 14px !important;
    }

    .itemBottomLeft {
        font-size: 12px !important;
    }

    .itemBottomRight {
        font-size: 12px !important;
        gap: 8px !important;
    }

    .itemBottomRight div {
        margin-left: 0 !important;
    }

}

/* ============================================
   底部安全区域
   ============================================ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .footer .info {
        padding-bottom: env(safe-area-inset-bottom) !important;
    }
}

/* ============================================
   充值页 recharge 移动端适配
   ============================================ */

/* 平板及以下：双栏改为单栏 */
@media screen and (max-width: 1024px) {
    .rechargePage {
        padding: 20px 0 40px 0 !important;
        min-height: auto !important;
    }

    .rechargePage .rechargeBox {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .rechargePage .rechargeMain {
        width: 100% !important;
        padding: 24px !important;
    }

    /* 侧栏在 1024 以下取消 sticky，避免遮挡主体内容 */
    .rechargePage .rechargeAside {
        width: 100% !important;
        position: static !important;
        top: auto !important;
    }
}

/* 手机端：紧凑布局 + 底部 sticky 支付按钮 */
@media screen and (max-width: 768px) {
    .rechargePage {
        padding: 10px 0 0 0 !important;
    }

    .rechargePage .rechargeMain {
        padding: 18px 16px 8px 16px !important;
        border-radius: 16px !important;
    }

    /* 余额卡片：紧凑 */
    .rechargePage .balanceCard {
        padding: 16px 18px !important;
        border-radius: 14px !important;
        margin-bottom: 22px !important;
    }

    .rechargePage .balanceCard .left .label {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }

    .rechargePage .balanceCard .left .amount {
        font-size: 30px !important;
    }

    .rechargePage .balanceCard .left .amount .unit {
        font-size: 14px !important;
    }

    .rechargePage .balanceCard .right .historyBtn {
        padding: 6px 14px !important;
        font-size: 12px !important;
    }

    /* 余额卡片装饰圆在小屏缩小，避免遮挡文字 */
    .rechargePage .balanceCard::after {
        width: 120px !important;
        height: 120px !important;
        right: -30px !important;
        top: -30px !important;
    }

    .rechargePage .balanceCard::before {
        width: 80px !important;
        height: 80px !important;
        right: 20px !important;
        bottom: -40px !important;
    }

    /* 区块标题 */
    .rechargePage .rechargeSection {
        margin-bottom: 22px !important;
    }

    .rechargePage .sectionTitle {
        font-size: 16px !important;
        margin-bottom: 14px !important;
    }

    /* 金额网格：4 列 → 3 列 */
    .rechargePage .amountGrid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }

    .rechargePage .amountOption {
        padding: 16px 6px !important;
        border-radius: 12px !important;
    }

    .rechargePage .amountOption .price {
        font-size: 20px !important;
    }

    .rechargePage .amountOption .price .unit {
        font-size: 13px !important;
    }

    .rechargePage .amountOption .desc {
        font-size: 11px !important;
        margin-top: 4px !important;
        line-height: 16px !important;
    }

    /* 角标在窄列中适当调整位置 */
    .rechargePage .amountOption .badge {
        font-size: 10px !important;
        padding: 1px 6px !important;
        top: -6px !important;
        right: 6px !important;
    }

    /* 自定义金额 */
    .rechargePage .customAmount {
        padding: 12px 14px !important;
        border-radius: 12px !important;
        margin-top: 12px !important;
    }

    .rechargePage .customAmount .label {
        font-size: 13px !important;
        margin-right: 8px !important;
    }

    .rechargePage .customAmount .el-input__inner {
        font-size: 16px !important;
    }

    /* 支付方式 */
    .rechargePage .payMethodList {
        gap: 10px !important;
    }

    .rechargePage .payMethod {
        padding: 12px 14px !important;
        border-radius: 12px !important;
    }

    .rechargePage .payMethod .icon {
        width: 30px !important;
        height: 30px !important;
        margin-right: 12px !important;
        font-size: 14px !important;
        border-radius: 7px !important;
    }

    .rechargePage .payMethod .info .name {
        font-size: 14px !important;
    }

    .rechargePage .payMethod .info .desc {
        font-size: 11px !important;
        line-height: 16px !important;
    }

    .rechargePage .payMethod .radio {
        width: 16px !important;
        height: 16px !important;
        border-width: 1.5px !important;
    }

    .rechargePage .payMethod.on .radio::after {
        width: 7px !important;
        height: 7px !important;
    }

    /* 提交区：sticky 固定在 rechargeMain 底部（避免遮挡 footer） */
    .rechargePage .submitBox {
        position: sticky !important;
        bottom: 0 !important;
        z-index: 50 !important;
        margin: 18px 0 0 0 !important;
        padding: 12px 0 !important;
        background: #FFFFFF !important;
        border-top: 1px solid #F1F1F1 !important;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
    }

    .rechargePage .submitBox .total {
        font-size: 12px !important;
        line-height: 1.2 !important;
        flex-shrink: 0 !important;
    }

    .rechargePage .submitBox .total .num {
        font-size: 22px !important;
        margin: 0 2px !important;
        display: inline-block !important;
        vertical-align: middle !important;
    }

    .rechargePage .submitBox .submitBtn {
        min-width: 0 !important;
        flex: 1 !important;
        height: 44px !important;
        font-size: 15px !important;
        border-radius: 22px !important;
    }

    /* 侧栏 */
    .rechargePage .rechargeAside {
        padding: 18px 16px !important;
        border-radius: 16px !important;
    }

    .rechargePage .rechargeAside .tipTitle {
        font-size: 15px !important;
        margin-bottom: 12px !important;
    }

    .rechargePage .rechargeAside .tipItem {
        font-size: 12px !important;
        line-height: 18px !important;
        margin-bottom: 8px !important;
    }

    .rechargePage .rechargeAside .divider {
        margin: 16px 0 !important;
    }

    .rechargePage .rechargeAside .contactInfo {
        font-size: 12px !important;
    }

    /* 弹窗：宽度贴合屏幕 */
    .rechargePage .el-dialog {
        width: 92vw !important;
        max-width: 360px !important;
        margin: 0 auto !important;
    }

    /* 仅支付弹窗本体去除内边距，让 rechargePopup 真正占满（不影响"充值记录"弹窗） */
    .rechargePage .rechargePayDialog .el-dialog__body {
        padding: 0 !important;
    }

    .rechargePopup {
        width: 100% !important;
        padding: 0 20px !important;
        padding-top: 36px !important;
        padding-bottom: 24px !important;
    }

    .rechargePopup .title {
        font-size: 17px !important;
        margin-bottom: 18px !important;
    }

    .rechargePopup .qrArea {
        padding: 14px !important;
        gap: 14px !important;
    }

    .rechargePopup .qrArea .qr {
        width: 100px !important;
        height: 100px !important;
    }

    .rechargePopup .qrArea .info .amount {
        font-size: 22px !important;
    }

    /* 充值记录弹窗：宽度贴合屏幕 */
    .rechargePage .el-dialog__wrapper:nth-of-type(2) .el-dialog,
    .rechargePage .el-dialog:not(.is-fullscreen) {
        max-width: 92vw !important;
    }
}

/* iPhone 底部安全区适配（与提交栏配合） */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    @media screen and (max-width: 768px) {
        .rechargePage .submitBox {
            padding-bottom: calc(12px + env(safe-area-inset-bottom)) !important;
        }
    }
}

/* 小屏手机：进一步压缩 */
@media screen and (max-width: 480px) {
    .rechargePage .rechargeMain {
        padding: 14px 12px !important;
    }

    .rechargePage .balanceCard {
        padding: 14px 16px !important;
    }

    .rechargePage .balanceCard .left .amount {
        font-size: 26px !important;
    }

    .rechargePage .balanceCard .left .label {
        font-size: 11px !important;
    }

    .rechargePage .balanceCard .right .historyBtn {
        padding: 5px 12px !important;
        font-size: 11px !important;
    }

    /* 金额网格：3 列 → 2 列 */
    .rechargePage .amountGrid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .rechargePage .amountOption {
        padding: 14px 6px !important;
    }

    .rechargePage .amountOption .price {
        font-size: 18px !important;
    }

    .rechargePage .amountOption .desc {
        font-size: 10px !important;
        line-height: 14px !important;
    }

    .rechargePage .amountOption .badge {
        font-size: 9px !important;
        padding: 1px 5px !important;
    }

    /* 支付方式 */
    .rechargePage .payMethod {
        padding: 10px 12px !important;
    }

    .rechargePage .payMethod .icon {
        width: 28px !important;
        height: 28px !important;
        margin-right: 10px !important;
        font-size: 13px !important;
    }

    .rechargePage .payMethod .info .name {
        font-size: 13px !important;
    }

    .rechargePage .payMethod .info .desc {
        font-size: 10px !important;
    }

    .rechargePage .payMethod .radio {
        width: 14px !important;
        height: 14px !important;
    }

    .rechargePage .payMethod.on .radio::after {
        width: 6px !important;
        height: 6px !important;
    }

    /* 提交栏 */
    .rechargePage .submitBox {
        padding: 10px 12px !important;
    }

    .rechargePage .submitBox .total {
        font-size: 11px !important;
    }

    .rechargePage .submitBox .total .num {
        font-size: 20px !important;
    }

    .rechargePage .submitBox .submitBtn {
        height: 42px !important;
        font-size: 14px !important;
    }

    /* 侧栏 */
    .rechargePage .rechargeAside {
        padding: 16px 14px !important;
    }
}

/* ============================================
   我的积分 / 积分记录 移动端适配
   ============================================ */

/* 平板：左右分栏 → 上下结构 */
@media screen and (max-width: 1024px) {

    .balancePage .rightTop1,
    .pointsPage .rightTop1 {
        margin: 0 24px 18px 24px !important;
    }

    .pointsCard {
        margin: 0 24px 20px 24px !important;
        padding: 22px 26px !important;
    }

    .pointsCard .pointsAmount {
        font-size: 32px !important;
    }

    .pointsCard .pointsAmount .num {
        font-size: 36px !important;
    }

    .pointsPage .recordSection {
        margin: 0 24px 24px 24px !important;
    }
}

/* 手机端：紧凑 + 单列堆叠 */
@media screen and (max-width: 768px) {

    .balancePage .rightTop1,
    .pointsPage .rightTop1 {
        margin: 0 15px 14px 15px !important;
        font-size: 18px !important;
        padding-bottom: 10px !important;
    }

    /* 积分卡片：竖排紧凑 */
    .pointsCard {
        margin: 0 15px 18px 15px !important;
        padding: 18px 20px !important;
        border-radius: 14px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }

    .pointsCard .pointsLabel {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }

    .pointsCard .pointsAmount {
        font-size: 30px !important;
        margin-bottom: 8px !important;
    }

    .pointsCard .pointsAmount .num {
        font-size: 34px !important;
    }

    .pointsCard .pointsAmount .unit {
        font-size: 14px !important;
    }

    .pointsCard .pointsLevel {
        font-size: 11px !important;
        line-height: 18px !important;
    }

    .pointsCard .pointsStats {
        width: 100% !important;
        justify-content: space-between !important;
        gap: 0 !important;
        padding-top: 12px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
    }

    .pointsCard .statLabel {
        font-size: 11px !important;
    }

    .pointsCard .statValue {
        font-size: 18px !important;
    }

    .pointsCard .statDivider {
        height: 28px !important;
    }

    /* 积分明细块：标题、筛选 */
    .pointsPage .recordSection {
        margin: 0 15px 24px 15px !important;
    }

    .pointsPage .recordTitle {
        font-size: 16px !important;
        margin-bottom: 12px !important;
        padding-left: 12px !important;
    }

    .pointsPage .recordTitle::before {
        height: 16px !important;
        width: 3px !important;
    }

    .pointsPage .recordFilter {
        gap: 8px !important;
        margin-bottom: 12px !important;
    }

    .pointsPage .recordFilter div {
        padding: 5px 14px !important;
        font-size: 12px !important;
        border-radius: 16px !important;
    }

    /* 列表项：紧凑 */
    .pointsPage .pointsItem {
        padding: 12px 14px !important;
    }

    .pointsPage .pointsName {
        font-size: 13px !important;
        line-height: 20px !important;
        margin-bottom: 3px !important;
    }

    .pointsPage .pointsTime {
        font-size: 11px !important;
    }

    .pointsPage .pointsRight {
        margin-left: 12px !important;
    }

    .pointsPage .pointsChange {
        font-size: 15px !important;
        line-height: 22px !important;
    }

    .pointsPage .pointsTag {
        font-size: 11px !important;
        padding: 1px 6px !important;
    }
}

/* 小屏手机：进一步压缩 */
@media screen and (max-width: 480px) {

    .pointsCard {
        padding: 16px 18px !important;
        border-radius: 12px !important;
        gap: 14px !important;
    }

    .pointsCard .pointsAmount {
        font-size: 26px !important;
    }

    .pointsCard .pointsAmount .num {
        font-size: 30px !important;
    }

    .pointsCard .pointsAmount .unit {
        font-size: 13px !important;
    }

    .pointsCard .pointsLevel {
        font-size: 10px !important;
        line-height: 16px !important;
    }

    .pointsCard .statValue {
        font-size: 16px !important;
    }

    .pointsCard .statLabel {
        font-size: 10px !important;
    }

    .pointsCard .statDivider {
        height: 24px !important;
    }

    .pointsPage .pointsItem {
        padding: 11px 12px !important;
    }

    .pointsPage .pointsName {
        font-size: 12px !important;
        line-height: 18px !important;
    }

    .pointsPage .pointsChange {
        font-size: 14px !important;
    }
}

/* ============================================
   完善信息页 perfectInfo 移动端适配
   ============================================ */

/* 平板：双栏改为单栏 */
@media screen and (max-width: 1024px) {
    .perfectPage {
        padding: 20px 0 40px 0 !important;
        min-height: auto !important;
    }

    .perfectPage .perfectBox {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .perfectPage .perfectMain {
        padding: 24px !important;
        width: 100% !important;
    }

    .perfectPage .perfectAside {
        width: 100% !important;
        position: static !important;
        top: auto !important;
    }
}

/* 手机端：紧凑布局 */
@media screen and (max-width: 768px) {
    .perfectPage {
        padding: 10px 0 0 0 !important;
    }

    .perfectPage .perfectMain {
        padding: 18px 16px !important;
        border-radius: 16px !important;
    }

    .perfectPage .perfectSection {
        margin-bottom: 22px !important;
    }

    .perfectPage .sectionTitle {
        font-size: 16px !important;
        margin-bottom: 14px !important;
    }

    .perfectPage .formCard {
        padding: 18px 16px 18px !important;
    }

    .perfectPage .el-form-item {
        margin-bottom: 18px !important;
    }

    .perfectPage .el-form-item__label {
        font-size: 13px !important;
        line-height: 18px !important;
        text-align: left !important;
        margin-bottom: 10px !important;
        padding: 0 !important;
    }

    .perfectPage .el-form-item__content {
        margin-left: 0 !important;
    }

    .perfectPage .fullInput {
        max-width: 100% !important;
    }

    .perfectPage .el-form-item__content .unit {
        font-size: 13px !important;
    }

    .perfectPage .radioGroup {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .perfectPage .radioGroup .el-radio__label {
        font-size: 13px !important;
    }

    .perfectPage .submitBox {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        margin-top: 18px !important;
    }

    .perfectPage .submitBox .tip {
        text-align: center !important;
    }

    .perfectPage .submitBtn {
        min-width: 0 !important;
        width: 100% !important;
        height: 44px !important;
        font-size: 15px !important;
    }

    .perfectPage .perfectAside {
        padding: 18px 16px !important;
    }

    .perfectPage .perfectAside .tipTitle {
        font-size: 15px !important;
        margin-bottom: 12px !important;
    }

    .perfectPage .perfectAside .tipItem {
        font-size: 12px !important;
        line-height: 18px !important;
    }

    .perfectPage .perfectAside .divider {
        margin: 16px 0 !important;
    }

    /* mine1 完善信息按钮在移动端调整为单独一行 */
    .rightTop .perfectBtn {
        margin: auto !important;
        margin-top: 12px !important;
        align-self: flex-start !important;
    }
}

/* 小屏手机：进一步压缩 */
@media screen and (max-width: 480px) {
    .perfectPage .perfectMain {
        padding: 16px 12px !important;
    }

    .perfectPage .formCard {
        padding: 14px 12px 14px !important;
    }

    .perfectPage .sectionTitle {
        font-size: 15px !important;
    }

    .perfectPage .el-form-item {
        margin-bottom: 16px !important;
    }

    .perfectPage .perfectAside {
        padding: 16px 14px !important;
    }
}

/* ============================================
   service 服务页 移动端 H5 适配
   ============================================ */

/* 平板 (≤1024px)：双栏 → 单栏 + 缩小整体尺寸 */
@media screen and (max-width: 1024px) {
    .swiper-container {
        height: auto !important;
    }

    /* ================================
       serviceItem1 - 项目分析与规划
       ================================ */
    .serviceItem1 {
        padding: 36px 24px 40px !important;
        margin-left: 0 !important;
        width: 100% !important;
    }

    .item1Top {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .item1Top .first {
        margin-left: 0 !important;
        margin-top: 0 !important;
        width: 130px !important;
        height: 88px !important;
    }

    .item1Top .divForm {
        width: 100% !important;
        max-width: 480px !important;
        height: auto !important;
        padding: 24px 22px 28px 20px !important;
        margin-right: 0 !important;
    }

    .item1Top .divForm p {
        font-size: 22px !important;
        line-height: 30px !important;
        margin-left: 60px !important;
        padding-top: 26px !important;
        margin-bottom: 18px !important;
        letter-spacing: 1.5px !important;
    }

    .item1Top .divForm div {
        font-size: 15px !important;
        line-height: 22px !important;
        margin-left: 80px !important;
        margin-top: 12px !important;
        letter-spacing: 1px !important;
    }

    .item1Top .divForm div::before {
        left: -16px !important;
        width: 7px !important;
        height: 7px !important;
        top: 7px !important;
    }

    .item1Bottom {
        margin-top: 20px;
        flex-direction: column-reverse !important;
        align-items: center !important;
        gap: 18px !important;
    }

    .item1Bottom .btn {
        margin: 0 !important;
        width: 200px !important;
        height: 52px !important;
        line-height: 52px !important;
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }

    .item1Bottom .swiper-container {
        width: 100% !important;
        max-width: 600px !important;
        margin: 0 auto !important;

    }

    /* ================================
       serviceItem2 - 思路输出与呈现
       ================================ */
    .serviceItem2 {
        padding: 50px 24px 50px !important;
    }

    .serviceItem2Form {
        flex-direction: column !important;
        margin-left: 0 !important;
        align-items: center !important;
        gap: 24px !important;
    }

    .serviceItem2Form>div {
        width: 100% !important;
    }

    .serviceItem2Form>div>.swiper-container {
        width: 100% !important;
        margin-left: 0 !important;

    }

    .swiperText {
        width: 100% !important;
        margin-top: -0 !important;
        height: 160px !important;
    }

    .swiperText .swiper-container {
        padding-top: 95px !important;
    }

    .swiperText .swiper-slide {
        font-size: 30px !important;
        line-height: 36px !important;
        padding-left: 28px !important;
        letter-spacing: 4px !important;
    }

    .serviceItem2Form .text {
        margin-left: 0 !important;
        margin-top: 28px !important;
        text-align: center !important;
    }

    .serviceItem2FormRight {
        display: flex !important;
        flex-direction: column !important;
    }

    .serviceItem2FormRight .first {
        margin-left: 0 !important;
        width: 130px !important;
        height: 88px !important;
    }

    .serviceItem2FormRight .divForm {
        margin-left: 0 !important;
        margin-top: 20px !important;
        width: 100% !important;
        max-width: 480px !important;
    }

    .serviceItem2FormRight .divForm p {
        font-size: 22px !important;
        line-height: 28px !important;
        margin-bottom: 22px !important;
        letter-spacing: 1.5px !important;
    }

    .serviceItem2FormRight .divForm div {
        font-size: 15px !important;
        line-height: 22px !important;
        margin-top: 14px !important;
        margin-left: 16px !important;
        letter-spacing: 1px !important;
    }

    .serviceItem2FormRight .divForm div::before {
        left: -14px !important;
        width: 7px !important;
        height: 7px !important;
        top: 7px !important;
    }

    .serviceItem2FormRight .btn {
        margin-left: 0 !important;
        margin-top: 28px !important;
        width: 200px !important;
        height: 52px !important;
        line-height: 52px !important;
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }

    /* ================================
       serviceItem3 - 高标准高质量落地
       ================================ */
    .serviceItem3 {
        flex-direction: column !important;
        padding: 50px 24px !important;
        width: 100% !important;
        margin-left: 0 !important;
        gap: 28px !important;
    }

    .serviceItem3left {
        display: flex !important;
        flex-direction: column !important;
    }

    .serviceItem3left .first {
        width: 130px !important;
        height: 88px !important;
    }

    .serviceItem3left .divForm {
        margin-top: 20px !important;
        width: 100% !important;
        max-width: 480px !important;
    }

    .serviceItem3left .divForm p {
        font-size: 22px !important;
        line-height: 28px !important;
        margin-bottom: 22px !important;
        letter-spacing: 1.5px !important;
    }

    .serviceItem3left .divForm div {
        font-size: 15px !important;
        line-height: 22px !important;
        margin-top: 12px !important;
        margin-left: 18px !important;
        letter-spacing: 1px !important;
    }

    .serviceItem3left .divForm div::before {
        left: -14px !important;
        width: 7px !important;
        height: 7px !important;
        top: 7px !important;
    }

    .serviceItem3left .btn {
        margin-top: 28px !important;
        width: 200px !important;
        height: 52px !important;
        line-height: 52px !important;
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }

    .serviceItem3right {
        padding-top: 40px !important;
        width: 100% !important;
        max-width: 600px !important;
        position: relative !important;
    }

    .serviceItem3right::before {
        width: 100% !important;
        max-width: 460px !important;
        height: 40px !important;
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .serviceItem3right .swiper-container {
        width: 100% !important;
        margin-right: 0 !important;

    }

    .formtext {
        width: 90% !important;
        max-width: 380px !important;
        height: 130px !important;
        margin: -80px auto 0 !important;
    }

    .formtext p {
        padding-top: 84px !important;
        margin-left: 0 !important;
        text-align: center !important;
        font-size: 30px !important;
        line-height: 36px !important;
        letter-spacing: 4px !important;
    }

    /* ================================
       serviceItem4 - 服务支撑协同保障
       ================================ */
    .serviceItem4 {
        padding: 50px 24px !important;
    }

    .serviceItem4Form {
        flex-direction: column !important;
        margin-left: 0 !important;
        align-items: center !important;
        gap: 24px !important;
    }

    .serviceItem4Form>div {
        width: 100% !important;
    }

    .serviceItem4Form>div>.swiper-container {
        width: 100% !important;
        margin-left: 0 !important;

    }

    .serviceItem4 .swiperText {
        width: 100% !important;
        margin-top: -0 !important;
        height: 160px !important;
    }

    .serviceItem4Form .text {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto 28px !important;
    }

    .serviceItem4FormRight {
        margin-left: 0 !important;
        margin-top: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .serviceItem4FormRight .first {
        margin-left: 0 !important;
        margin-bottom: 20px !important;
        width: 130px !important;
        height: 88px !important;
    }

    .serviceItem4FormRight .divForm {
        width: 100% !important;
        max-width: 480px !important;
    }

    .serviceItem4FormRight .divForm p {
        font-size: 22px !important;
        line-height: 28px !important;
        margin-bottom: 22px !important;
        letter-spacing: 1.5px !important;
    }

    .serviceItem4FormRight .divForm div {
        font-size: 15px !important;
        line-height: 22px !important;
        margin-top: 12px !important;
        margin-left: 18px !important;
        letter-spacing: 1px !important;
    }

    .serviceItem4FormRight .divForm div::before {
        left: -16px !important;
        width: 7px !important;
        height: 7px !important;
        top: 7px !important;
    }

    .serviceItem4FormRight .btn {
        margin-top: 28px !important;
        margin-left: 0 !important;
        width: 200px !important;
        height: 52px !important;
        line-height: 52px !important;
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }

    /* ================================
       serviceItem5 - 选择我们的理由
       ================================ */
    .serviceItem5 {
        padding: 50px 24px !important;
    }

    .serviceItemTitle1,
    .serviceItemTitle2,
    .serviceItemTitle3 {
        font-size: 30px !important;
        line-height: 36px !important;
        margin-bottom: 32px !important;
        letter-spacing: 0 !important;
    }

    .serviceItemTitle1::before,
    .serviceItemTitle2::before,
    .serviceItemTitle3::before {
        font-size: 28px !important;
        top: -8px !important;
        letter-spacing: 0 !important;
    }

    .liyouBox {
        flex-wrap: wrap !important;
        margin-bottom: 50px !important;
        gap: 16px 14px !important;
        justify-content: center !important;
    }

    .liyouBox div {
        width: calc(50% - 7px) !important;
        height: 150px !important;
        margin-right: 0 !important;
    }

    .liyouBox div p {
        padding-top: 20px !important;
        margin-left: 26px !important;
        margin-bottom: 14px !important;
        font-size: 20px !important;
        line-height: 24px !important;
        letter-spacing: 1px !important;
    }

    .liyouBox div span {
        margin-left: 38px !important;
        font-size: 13px !important;
        line-height: 20px !important;
        letter-spacing: 1px !important;
    }

    .liyouBox div span::before {
        width: 5px !important;
        height: 5px !important;
        left: -12px !important;
    }

    .serviceHint {
        font-size: 16px !important;
        line-height: 24px !important;
        padding: 0 16px !important;
    }

    .serviceImg5 {
        width: 100% !important;
        margin: 28px auto 0 !important;
        max-width: 1000px !important;
    }

    /* ================================
       serviceItem6 - 中心拼图：改为居中+四图排布
       关键：避免拼图左右溢出屏幕
       ================================ */
    .serviceItem6 {
        padding: 50px 24px 50px !important;
    }

    .serviceItem6 .serviceItemTitle3 {
        margin-bottom: 30px !important;
    }

    .serviceItemItem {
        width: 90% !important;
        position: relative !important;
    }


    .serviceItem6Img1 {
        left: -210px !important;
        top: 0 !important;
    }

    .serviceItem6Img2 {
        right: -210px !important;
        top: 0 !important;
    }

    .serviceItem6Img3 {
        left: -210px !important;
        bottom: 30px !important;
    }

    .serviceItem6Img4 {
        right: -210px !important;
        bottom: 30px !important;
    }

    /* ================================
       serviceItem7 - 联系我们
       ================================ */
    .serviceItem7 {
        padding: 50px 24px 60px !important;
    }

    .serviceItemTitle4 {
        font-size: 36px !important;
        line-height: 44px !important;
        letter-spacing: 0 !important;
    }

    .serviceItemTitle4::before {
        font-size: 32px !important;
        letter-spacing: 0 !important;
    }

    .serviceItemTitle4 span {
        line-height: 44px !important;
    }

    .lxwmBtn {
        width: 90% !important;
        max-width: 380px !important;
        height: 60px !important;
        margin: 40px auto 0 !important;
    }

    .lxwmLeft p {
        font-size: 15px !important;
        line-height: 20px !important;
    }

    .serviceItem7Icon {
        margin-top: 4px !important;
    }

    .serviceItem7Icon img {
        width: 14px !important;
        height: 14px !important;
    }

    .serviceItem7Icon span {
        font-size: 15px !important;
        line-height: 18px !important;
    }

    .lxwmRight {
        font-size: 26px !important;
        line-height: 22px !important;
        letter-spacing: 1.5px !important;
    }

    .banner {
        max-height: 30vh !important;
    }

    .banner img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
}

/* ============================================
   手机端 (≤768px)
   ============================================ */
@media screen and (max-width: 768px) {

    /* serviceItem1：隐藏桌面端的装饰 text 图，避免干扰排版 */
    .serviceItem1::before {
        display: none !important;
    }

    .serviceItem1 {
        padding: 28px 16px 30px !important;
    }

    .item1Top {
        gap: 16px !important;
    }

    .item1Top .first {
        width: 100px !important;
        height: 68px !important;
    }

    .item1Top .divForm {
        padding: 20px 16px 22px !important;
    }

    .item1Top .divForm p {
        font-size: 18px !important;
        line-height: 26px !important;
        margin-left: 48px !important;
        padding-top: 20px !important;
        margin-bottom: 14px !important;
        letter-spacing: 1px !important;
    }

    .item1Top .divForm div {
        font-size: 13px !important;
        line-height: 20px !important;
        margin-left: 60px !important;
        margin-top: 10px !important;
        letter-spacing: 0.5px !important;
    }

    .item1Top .divForm div::before {
        left: -14px !important;
        width: 6px !important;
        height: 6px !important;
        top: 7px !important;
    }

    .item1Bottom .btn {
        width: 160px !important;
        height: 44px !important;
        line-height: 44px !important;
        font-size: 13px !important;
    }

    .item1Bottom .swiper-container {}

    /* serviceItem2：轮播统一比例 16/10 */
    .serviceItem2 {
        padding: 32px 16px 30px !important;
    }

    .serviceItem2Form {
        padding: 0 !important;
        gap: 16px !important;
    }

    .serviceItem2Form>div>.swiper-container {}

    .swiperText {
        margin-top: -0 !important;
        height: 120px !important;
    }

    .swiperText .swiper-container {
        padding-top: 70px !important;
    }

    .serviceFloat span {
        display: none !important;
    }

    .swiperText .swiper-slide {
        font-size: 22px !important;
        line-height: 26px !important;
        padding-left: 18px !important;
        letter-spacing: 3px !important;
    }

    .serviceItem2Form .text {
        margin-top: 20px !important;
    }

    .serviceItem2FormRight .first {
        width: 100px !important;
        height: 68px !important;
    }

    .serviceItem2FormRight .divForm {
        margin-top: 16px !important;
    }

    .serviceItem2FormRight .divForm p {
        font-size: 18px !important;
        line-height: 24px !important;
        margin-bottom: 14px !important;
        letter-spacing: 1px !important;
    }

    .serviceItem2FormRight .divForm div {
        font-size: 13px !important;
        line-height: 20px !important;
        margin-top: 10px !important;
        margin-left: 14px !important;
        letter-spacing: 0.5px !important;
    }

    .serviceItem2FormRight .divForm div::before {
        left: -12px !important;
        width: 6px !important;
        height: 6px !important;
        top: 7px !important;
    }

    .serviceItem2FormRight .btn {
        width: 160px !important;
        height: 44px !important;
        line-height: 44px !important;
        font-size: 13px !important;
        margin-top: 20px !important;
    }

    /* serviceItem3 */
    .serviceItem3 {
        padding: 32px 16px !important;
        gap: 22px !important;
    }

    .serviceItem3left .first {
        width: 100px !important;
        height: 68px !important;
    }

    .serviceItem3left .divForm {
        margin-top: 16px !important;
    }

    .serviceItem3left .divForm p {
        font-size: 18px !important;
        line-height: 24px !important;
        margin-bottom: 14px !important;
        letter-spacing: 1px !important;
    }

    .serviceItem3left .divForm div {
        font-size: 13px !important;
        line-height: 20px !important;
        margin-top: 10px !important;
        margin-left: 16px !important;
        letter-spacing: 0.5px !important;
    }

    .serviceItem3left .divForm div::before {
        left: -12px !important;
        width: 6px !important;
        height: 6px !important;
        top: 7px !important;
    }

    .serviceItem3left .btn {
        width: 160px !important;
        height: 44px !important;
        line-height: 44px !important;
        font-size: 13px !important;
        margin-top: 18px !important;
    }

    .serviceItem3right {
        padding-top: 40px !important;
    }

    .serviceItem3right::before {
        height: 28px !important;
    }

    .serviceItem3right .swiper-container {}

    .formtext {
        width: 100% !important;
        height: auto !important;
        margin-top: -0 !important;
    }

    .formtext p {
        padding-top: 52px !important;
        font-size: 22px !important;
        line-height: 26px !important;
        letter-spacing: 3px !important;
    }

    /* serviceItem4 */
    .serviceItem4 {
        padding: 32px 16px !important;
    }

    .serviceItem4Form {
        padding: 0 !important;
        gap: 16px !important;
    }

    .serviceItem4Form>div>.swiper-container {}

    .serviceItem4 .swiperText {
        margin-top: 0 !important;
        height: auto !important;
    }

    .serviceItem4Form .text {
        margin-bottom: 20px !important;
    }

    .serviceItem4FormRight .first {
        width: 100px !important;
        height: 68px !important;
        margin-bottom: 14px !important;
    }

    .serviceItem4FormRight .divForm p {
        font-size: 18px !important;
        line-height: 24px !important;
        margin-bottom: 14px !important;
        letter-spacing: 1px !important;
    }

    .serviceItem4FormRight .divForm div {
        font-size: 13px !important;
        line-height: 20px !important;
        margin-top: 10px !important;
        margin-left: 16px !important;
        letter-spacing: 0.5px !important;
    }

    .serviceItem4FormRight .divForm div::before {
        left: -14px !important;
        width: 6px !important;
        height: 6px !important;
        top: 7px !important;
    }

    .serviceItem4FormRight .btn {
        width: 160px !important;
        height: 44px !important;
        line-height: 44px !important;
        font-size: 13px !important;
        margin-top: 18px !important;
    }

    /* serviceItem5 */
    .serviceItem5 {
        padding: 32px 16px !important;
    }

    .serviceItemTitle1,
    .serviceItemTitle2,
    .serviceItemTitle3 {
        font-size: 24px !important;
        line-height: 30px !important;
        margin-bottom: 22px !important;
    }

    .serviceItemTitle1::before,
    .serviceItemTitle2::before,
    .serviceItemTitle3::before {
        font-size: 22px !important;
        top: -6px !important;
    }

    .liyouBox {
        margin-bottom: 30px !important;
        padding: 0 4px !important;
        gap: 12px 10px !important;
    }

    .liyouBox div {
        width: calc(50% - 5px) !important;
        height: 130px !important;
    }

    .liyouBox div p {
        padding-top: 16px !important;
        margin-left: 20px !important;
        margin-bottom: 10px !important;
        font-size: 16px !important;
        line-height: 20px !important;
        letter-spacing: 0.5px !important;
    }

    .liyouBox div span {
        margin-left: 30px !important;
        font-size: 11px !important;
        line-height: 16px !important;
        letter-spacing: 0.5px !important;
    }

    .liyouBox div span::before {
        width: 4px !important;
        height: 4px !important;
        left: -10px !important;
    }

    .serviceHint {
        font-size: 13px !important;
        line-height: 20px !important;
        padding: 0 !important;
    }

    .serviceImg5 {
        margin-top: 22px !important;
    }

    /* serviceItem6：手机端改为上下排布
       中心图在上，四张周围图改为 2x2 网格，彻底解决溢出 */
    .serviceItem6 {
        padding: 30px 16px !important;
        overflow: visible !important;
    }

    .serviceItem6 .serviceItemTitle3 {
        margin-bottom: 22px !important;
    }

    .serviceItemItem {
        position: static !important;
        width: 100% !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto 1fr auto !important;
        gap: 12px !important;
        align-items: stretch !important;
    }

    .serviceItemItem .serviceItem6Img {
        grid-column: 1 / 3 !important;
        grid-row: 2 !important;
        position: static !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .serviceItemItem .serviceItem6Img img {
        max-width: 130px !important;
        max-height: 130px !important;
    }

    .serviceItem6Img1,
    .serviceItem6Img2,
    .serviceItem6Img3,
    .serviceItem6Img4 {
        position: static !important;
        width: 100% !important;
        height: auto !important;
    }

    .serviceItem6Img1 {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .serviceItem6Img2 {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    .serviceItem6Img3 {
        grid-column: 1 !important;
        grid-row: 3 !important;
    }

    .serviceItem6Img4 {
        grid-column: 2 !important;
        grid-row: 3 !important;
    }

    .serviceItem6Img1 img,
    .serviceItem6Img2 img,
    .serviceItem6Img3 img,
    .serviceItem6Img4 img {
        width: 100% !important;
        height: 100% !important;
    }

    /* serviceItem7 */
    .serviceItem7 {
        padding: 30px 16px 40px !important;
    }

    .serviceItemTitle4 {
        font-size: 24px !important;
        line-height: 32px !important;
        padding: 0 8px !important;
        letter-spacing: 0 !important;
    }

    .serviceItemTitle4::before {
        font-size: 20px !important;
        white-space: nowrap !important;
        letter-spacing: 0 !important;
    }

    .serviceItemTitle4 span {
        line-height: 32px !important;
    }

    .lxwmBtn {
        height: 54px !important;
        margin-top: 30px !important;
    }

    .lxwmLeft p {
        font-size: 13px !important;
        line-height: 18px !important;
        margin-bottom: 3px !important;
    }

    .serviceItem7Icon {
        margin-top: 2px !important;
    }

    .serviceItem7Icon img {
        width: 12px !important;
        height: 12px !important;
    }

    .serviceItem7Icon span {
        font-size: 13px !important;
        line-height: 16px !important;
    }

    .lxwmRight {
        font-size: 20px !important;
        line-height: 20px !important;
        letter-spacing: 1px !important;
    }

    .banner {
        max-height: 24vh !important;
    }
}

/* ============================================
   小屏手机 (≤480px)
   ============================================ */
@media screen and (max-width: 480px) {

    .serviceItem1 {
        padding: 24px 14px 26px !important;
    }

    .item1Top .first {
        width: 90px !important;
        height: 60px !important;
    }

    .item1Top .divForm {
        padding: 18px 14px 20px !important;
    }

    .item1Top .divForm p {
        font-size: 16px !important;
        line-height: 22px !important;
        margin-left: 42px !important;
        padding-top: 16px !important;
        margin-bottom: 10px !important;
    }

    .item1Top .divForm div {
        font-size: 12px !important;
        line-height: 18px !important;
        margin-left: 54px !important;
        margin-top: 8px !important;
    }

    .item1Bottom .btn {
        width: 150px !important;
        height: 42px !important;
        line-height: 42px !important;
        font-size: 12px !important;
    }

    .item1Bottom .swiper-container {}

    .serviceItem2,
    .serviceItem3,
    .serviceItem4 {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .serviceItem2FormRight .first,
    .serviceItem3left .first,
    .serviceItem4FormRight .first {
        width: 90px !important;
        height: 60px !important;
    }

    .serviceItem2FormRight .divForm p,
    .serviceItem3left .divForm p,
    .serviceItem4FormRight .divForm p {
        font-size: 16px !important;
        line-height: 22px !important;
        margin-bottom: 12px !important;
    }

    .serviceItem2FormRight .divForm div,
    .serviceItem3left .divForm div,
    .serviceItem4FormRight .divForm div {
        font-size: 12px !important;
        line-height: 18px !important;
        margin-top: 8px !important;
    }

    .serviceItem2FormRight .btn,
    .serviceItem3left .btn,
    .serviceItem4FormRight .btn {
        width: 150px !important;
        height: 42px !important;
        line-height: 42px !important;
        font-size: 12px !important;
    }

    .swiperText {
        height: auto !important;
    }

    .swiperText .swiper-container {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .swiperText .swiper-slide {
        font-size: 18px !important;
        line-height: 22px !important;
        padding-left: 14px !important;
        letter-spacing: 2px !important;
    }

    .formtext {
        margin-top: -0 !important;
    }

    .formtext p {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        font-size: 18px !important;
        line-height: 22px !important;
        letter-spacing: 2px !important;
    }

    /* serviceItem5：单列布局（卡片堆叠） */
    .serviceItemTitle1,
    .serviceItemTitle2,
    .serviceItemTitle3 {
        font-size: 20px !important;
        line-height: 26px !important;
        margin-bottom: 18px !important;
    }

    .serviceItemTitle1::before,
    .serviceItemTitle2::before,
    .serviceItemTitle3::before {
        font-size: 18px !important;
    }

    .liyouBox {
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 0 !important;
    }

    .liyouBox div {
        height: 110px !important;
    }

    .liyouBox div p {
        font-size: 15px !important;
        line-height: 20px !important;
        padding-top: 16px !important;
        margin-left: 18px !important;
    }

    .liyouBox div span {
        font-size: 12px !important;
        line-height: 18px !important;
        margin-left: 28px !important;
    }

    /* serviceItem6：中心图缩小 */
    .serviceItem6 {
        padding: 24px 14px !important;
    }

    .serviceItemItem {
        gap: 8px !important;
    }


    /* serviceItem7 */
    .serviceItem7 {
        padding: 24px 14px 36px !important;
    }

    .serviceItemTitle4 {
        font-size: 20px !important;
        line-height: 28px !important;
    }

    .serviceItemTitle4::before {
        font-size: 16px !important;
    }

    .serviceItemTitle4 span {
        line-height: 28px !important;
    }

    .lxwmBtn {
        height: auto !important;
        padding: 10px 14px !important;
        gap: 4px !important;
        border-radius: 14px !important;
    }

    .lxwmLeft {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .lxwmLeft p {
        margin-bottom: 0 !important;
    }

    .lxwmRight {
        font-size: 18px !important;
        margin-left: 0 !important;
        line-height: 22px !important;
    }
}

/* ============================================
   service 页 滚动入场动画（IntersectionObserver 触发）
   ============================================ */

/* 初始状态：透明 + 略微下移 */
.sv-anim {
    opacity: 0 !important;
    transform: translate3d(0, 28px, 0) !important;
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
    will-change: opacity, transform !important;
}

/* 触发后状态 */
.sv-anim.is-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
}

/* 不同方向入场 */
.sv-anim.sv-from-left {
    transform: translate3d(-32px, 0, 0) !important;
}

.sv-anim.sv-from-left.is-visible {
    transform: translate3d(0, 0, 0) !important;
}

.sv-anim.sv-from-right {
    transform: translate3d(32px, 0, 0) !important;
}

.sv-anim.sv-from-right.is-visible {
    transform: translate3d(0, 0, 0) !important;
}

.sv-anim.sv-zoom {
    transform: scale(0.92) !important;
}

.sv-anim.sv-zoom.is-visible {
    transform: scale(1) !important;
}

/* 顺序延迟（同一容器内逐个出现） */
.sv-stagger>.sv-anim:nth-child(1) {
    transition-delay: 0s !important;
}

.sv-stagger>.sv-anim:nth-child(2) {
    transition-delay: 0.12s !important;
}

.sv-stagger>.sv-anim:nth-child(3) {
    transition-delay: 0.24s !important;
}

.sv-stagger>.sv-anim:nth-child(4) {
    transition-delay: 0.36s !important;
}

.sv-stagger>.sv-anim:nth-child(5) {
    transition-delay: 0.48s !important;
}

.sv-stagger>.sv-anim:nth-child(6) {
    transition-delay: 0.6s !important;
}

/* 减少动画：尊重用户系统偏好 */
@media (prefers-reduced-motion: reduce) {

    .sv-anim,
    .sv-anim.is-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}