/*移动端*/

@media screen and (max-width: 768px) {
    .pc-only { display: none !important; }
    .mobile-only { display: block !important;-webkit-tap-highlight-color: transparent; }
    
    /* ---------- 移动端顶部 ---------- */
    .mobile-header-red {
        background: #C10B00;
        color: white;
        padding: 8px 15px;
    }
    
    .mobile-header-red .top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* margin-bottom: 10px; */
    }
    .mobile-login-entry{
        font-size: 12px;
    }
    .mobile-header-red .location {
        display: flex;
        align-items: center;
        font-size: 12px;
        gap: 5px;
    }
    
    .mobile-header-red .slogan {
        font-size: 12px;
        display: flex;
        justify-content: space-between;
    }
    .mobile-header-red .location svg{
        font-size: 12px;
    }
    .mobile-header-red .slogan img {
        width: 100%;
        margin-top: 4px;
    }
    /* ---------- 页面标题栏（移动端二级页） ---------- */
.mobile-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: white;
    /* border-bottom: 1px solid var(--border-color); */
}

.mobile-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    gap: 10px;
}

.mobile-header-top .back-btn svg {
    margin-top: 8px;
    /* margin-right: 10px; */
}

.mobile-header-top .search-box {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--bg-gray);
    border-radius: 50px;
    padding: 8px 0;
}

.mobile-header-top .search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    margin-left: 20px;
}


.mobile-header-top .search-btn {
    color: var(--text-secondary);
    font-size: 14px;
}
.mobile-header-top h3{
    position: relative;
    left: -200px;
    font-weight: normal;
    font-size: 16px;
}
.mobile-header-white{
    /* border: 1px solid #07c160; */
    background: #fff;
}
    /* 搜索框 */
    .mobile-search-box {
        display: flex;
        align-items: center;
        background: rgba(255,255,255,0.15);
        border-radius: 20px;
        padding: 8px 5px;
    }
    
    .mobile-search-box input {
        flex: 1;
        background: transparent;
        border: none;
        color: white;
        font-size: 12px;
        margin-left: 8px;
    }
    
    .mobile-search-box input::placeholder {
        color: rgba(255,255,255,0.7);
    }
    
    .mobile-search-box .mobile-search-btn {
        color: white;
        font-size: 14px;
    }
    .mobile-header-right{
        display: flex;
        gap: 10px;
        align-items: center;
        font-size: 14px;
    }
    /* ---------- 首页图标导航 ---------- */
.mobile-icon-nav {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 15px;
    box-sizing: border-box;
}


/* 轮播外层 */
.icon-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

/* 滑动轨道 */
.icon-slider {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
}

/* 每屏 - 这才是放 10 个图标的地方 */
.icon-slide {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* 每个图标项 */
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.nav-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 6px;
}

.nav-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-item span {
    font-size: 13px;
    text-align: center;
}

/* 小圆点 */
.icon-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 10px;
}

.icon-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.icon-dots .dot.active {
    background: #C10B00;
}
/* ---------- 二级导航 ---------- */
  /* ---------- 移动端导航（二级页文字导航） ---------- */
.mobile-nav-text {
    display: flex;
    overflow-x: auto;           /* 允许横向滚动 */
    -webkit-overflow-scrolling: touch;  /* iOS 平滑滚动 */
    scrollbar-width: none;      /* Firefox 隐藏滚动条 */
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;        /* 防止文字换行 */
}

/* 隐藏滚动条（Chrome/Safari） */
.mobile-nav-text::-webkit-scrollbar {
    display: none;
}

.mobile-nav-text a {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 5px 15px;          /* 左右 padding 加大一点，方便点击 */
    position: relative;
    flex-shrink: 0;             /* 关键：不允许压缩 */
    white-space: nowrap;
}

.mobile-nav-text a.active {
    color: var(--primary);
    font-weight: 600;
}

.mobile-nav-text a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
}

    /* ---------- 轮播图 ---------- */
    .prev-btn { left: 12px; }
    .next-btn { right: 12px; }

    /* ---------- 最新动态 ---------- */
    .mobile-section {
        padding: 15px;
        background: white;
        /* margin-top: 20px; */
        /* margin-bottom: 10px; */
    }
    
    .mobile-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* margin-bottom: 15px; */
    }
    
    .mobile-section-title {
        font-size: 16px;
        font-weight: bold;
        color: var(--text-primary);
        margin-bottom: 5px;
    }
    
    .mobile-section-more {
        font-size: 13px;
        color: var(--text-muted);
    }
    
    .mobile-news-content {
        align-items: stretch;
        box-sizing: border-box;
        display: flex;
        gap: 5px;
        margin: 0;
        padding: 0;
    }
    .mobile-news-left{
        width: 50%;
        max-height: 160px;
        overflow-y: scroll;
        border-radius: 5px;
        padding: 10px;
        background: #eee;
        border: 1px solid #d4d4d4;
        flex: 1;
    }
    
    .mobile-news-list {
        flex: 1;
    }
    
    .mobile-news-list li {
        display: flex;
        gap: 6px;
        font-size: 13px;
        color: var(--text-secondary);
        padding: 5px 0;
        line-height: 1.5;
    }
    
    .mobile-news-list li::before {
        content: "●";
        color: #666;
        font-size: 6px;
        margin-top: 6px;
        flex-shrink: 0;
    }
    
    .mobile-news-img {
        width: 100%;
        max-height: 160px;
        border-radius: 6px;
        overflow: hidden;
        flex-shrink: 0;
        flex: 1;
    }
    
    .mobile-news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mobile-newsDetail-btn{
        margin-top: 10px;
        font-size: 12px;
        color: #999;
        width: 100%;
        overflow-x: hidden;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }
    .mobile-newsDetail-btn a{
        height: 36px;
        line-height: 36px;
    }
    
    /* ---------- 作品案例/设计理念等区块 ---------- */
    .mobile-works-filter {
        color: #666;
       position: relative;
        display: inline-block;
        text-align: center;
        margin-right: 5px;
        margin-bottom: 10px;
        border-radius: 20px; 
        padding: 0 10px;
        border:1px solid #DA251E;
         background:#fff;
    }
    .mobile-works-filter select{
        color: #DA251E;
        appearance:none;
        -webkit-appearance:none;
        border:0;
        font-size:14px;
        padding:5px 0;
        outline:none;
        cursor:pointer;
        background: #fff;
    }
    .mobile-works-filter select option{
        color: #333;
    }
/* CSS绘制红色倒三角（右侧下拉箭头） */
.mobile-works-filter::after{
        font-size: 12px;
        content:"▼";
        color: #DA251E;
        transform:translateY(-50%);
        width:0;
        height:0;
    }
    
    .mobile-works-filter::-webkit-scrollbar {
        display: none;
    }
    
    .mobile-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    .mobile-grid-2 .card{
        position: relative;
    }
    .mobile-grid-2 .card-img {
        aspect-ratio: 16/12;
        border-radius: 6px 6px 0 0;
    }
    .mobile-grid-2 .card-title{
        font-size: 14px;
    }
    .mobile-video .card-title {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.7));
        color: white;
        /* padding: 30px 15px 15px; */
    }
    .mobile-only .card:hover{
        background: inherit !important;
        color: inherit !important;
        transform: none !important;
        box-shadow: none !important;
        /* 把所有可能在 hover 里变的属性都还原 */
    }
    
    /* ---------- 全国合伙人 ---------- */
    .mobile-partners-map {
        padding: 15px;
        text-align: center;
    }
    
    .mobile-partners-map img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .mobile-partners-map .legend {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .mobile-partners-map .legend-item {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .mobile-partners-map .legend-color {
        width: 16px;
        height: 12px;
        border-radius: 2px;
    }
    
    /* ---------- 底部固定栏 ---------- */
/* 浮动容器基础样式 */
    .mobile-bottom-fixed {
      width: 100%;
      background: #fff;
        position:fixed;
        bottom: 0;
        border-top: 1px solid #eee;
    }

.mobile-bottom-bar {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 10px;
  box-sizing: border-box;
}
.mobile-bottom-bar img{
    width: 20px;
    position: relative;
    top: -1px;
}
    .mobile-bottom-fixed p{
        text-align: center;
        padding-bottom: 15px;
    }
    
    .mobile-bottom-bar a:first-child{
        max-width: 130px;
    }
    .mobile-bottom-bar .btn{
        height: 36px;        
        flex: 1;
        font-size: 12px;
        padding:0 10px;
        border-radius: 20px;
    }
    .backtop{
        width: 36px;
        height: 36px;
        text-align: center;
        border: 1px solid #C10B00;
        border-radius: 100%;
    }
    .backtop svg{
        color: #C10B00;
        position: relative;
        top: 5px;
        height: 20px;
        width: 20px;
    }
        .mobile-zb-footer{
            font-size: 12px;
            background: #FBF1F0;
            text-align: center;
            margin-bottom: 60px;
            /* border: 1px solid #07c160; */
            /* padding: 10px 0; */
        }
        .mobile-contact-info{
            font-family: "仿宋", "FangSong", "宋体", "SimSun", "PingFang SC", serif;
        }
        .mobile-qrcode{
            display: flex;
            padding-top: 5px;
            justify-content:center;
            gap: 15px;
        }
        .mobile-qrcode img{
            max-height: 80px;
            text-align: center;
        }
        .mobile-footer-adress{
            padding: 5px;
        }
        .mobile-copyright{
            font-size: 12px;
            display: block;
            padding: 5px;
            background: #C10B00;
            color: #fff;
            text-align: center;
            /* border: 1px solid #07c160; */
        }
    /* ---------- 列表页 ---------- */
    .mobile-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .mobile-list-item {
        padding:15px 15px 0 15px;
        background: #fff;
        /* margin-bottom: 10px; */
    }
    
    .mobile-list-item .title {
        font-size: 15px;
        color: var(--text-primary);
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    .mobile-list-item .img-wrap {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 10px;
        display: flex;
        gap: 5px;
    }
    .mobile-list-item .img-more img{
        width: 112px;
        height: 63px;
    }
    .mobile-list-item .img-wrap img {
        aspect-ratio: 16/9;
        border-radius: 8px;
        object-fit: cover;
    }
    
    .mobile-list-item .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--text-secondary);
    }
    
    .mobile-list-item .meta {
        display: flex;
        gap: 20px;
        color: var(--text-muted);
        font-size: 13px;
    }
    
    .mobile-list-item .meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .mobile-list-actions {
        display: flex;
        justify-content: left;
        gap: 25px;
        margin-top: 10px;
        padding-bottom: 5px;
        border-bottom: 1px solid var(--border-color);
    }
    .mobile-list-actions .action{
        font-size: 12px;
        color: #999;
    }
    /* ---------- 详情页（detail.jpg） ---------- */
    .mobile-detail {
        padding: 15px;
        padding-bottom: 20px;
        background: white;
    }
    
    .mobile-detail h1 {
        font-size: 20px;
        font-weight: bold;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .mobile-detail .content {
        font-size: 15px;
        line-height: 1.8;
        color: var(--text-secondary);
    }
    
    .mobile-detail .content p {
        margin-bottom: 15px;
        /* text-indent: 2em; */
    }
    
    .mobile-detail .content img {
        max-width: 100%;
        border-radius: 8px;
        margin: 15px auto;
    }
    
    .mobile-detail-actions {
        display: flex;
        justify-content: right;
        gap: 25px;
        padding-top: 15px;
        /* padding: 20px 0; */
        /* border-top: 1px solid var(--border-color); */
        /* margin: 20px 0; */
    }
    
    .mobile-detail-actions .action {
        display: flex;
        align-items: center;
        gap: 5px;
        color: var(--text-muted);
        font-size: 14px;
    }
    
    .mobile-detail-actions .action .num {
        color: var(--text-muted);
    }
    
    .mobile-detail-actions .action.liked {
        color: var(--primary);
    }
    
    .mobile-detail-actions .action.liked .num {
        color: var(--primary);
    }
    
    /* 留言框 */
 
    .mobile-comment-box {
        background: white;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 60px;
    }
    .mobile-comment-title{
        display: block;
        width: 100%;
    }
    .mobile-comment-box textarea {
        padding: 10px 15px;
        background: var(--bg-gray);
        border: none;
        border-radius: 5px;
        font-size: 14px;
        width: 100%;
        height: 120px;
        overflow-y: auto;
        margin: 5px 0;
    }
    
    .mobile-comment-box .send-btn {
        flex-direction: end;
        padding: 8px 16px;
        background: #fff;
        color: var(--text-muted);
        border-radius: 5px;
        font-size: 14px;
        float: right;
        border: 1px solid #C10B00;
        color: #C10B00;
    }
    
    /* ---------- 登录页（login.jpg） ---------- */
    .mobile-login {
        min-height: 100vh;
        background: var(--bg-gray);
        padding: 15px;
        display: flex;
        flex-direction: column;
    }
    
    .mobile-login-header {
        text-align: center;
        padding: 20px 0;
        font-size: 18px;
        position: relative;
    }
    
    .mobile-login-header .back {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        padding: 10px;
    }
    
    .mobile-login-box {
        background: white;
        border-radius: var(--border-radius);
        padding: 40px 25px;
        margin-top: 20px;
        flex: 1;
    }
    
    .mobile-login-logo {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .mobile-login-logo h2 {
        font-size: 32px;
        font-family: "STXingkai", "KaiTi", serif;
        margin-bottom: 8px;
    }
    
    .mobile-login-logo p {
        color: var(--primary);
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .mobile-form-group {
        margin-bottom: 25px;
    }
    
    .mobile-form-group label {
        display: block;
        margin-bottom: 10px;
        font-size: 16px;
        color: var(--text-primary);
    }
    
    .mobile-form-group input {
        width: 100%;
        padding: 14px 20px;
        border: 1px solid var(--border-color);
        border-radius: 30px;
        font-size: 16px;
        transition: border-color 0.3s;
    }
    
    .mobile-form-group input:focus {
        border-color: var(--primary);
    }
    
    .mobile-form-group .input-row {
        display: flex;
        gap: 10px;
    }
    
    .mobile-form-group .input-row input {
        flex: 1;
    }
    
    .mobile-form-group .input-row button {
        padding: 14px 16px;
        background: var(--bg-gray);
        border-radius: 30px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .mobile-form-check {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 30px;
        font-size: 14px;
        color: var(--text-secondary);
    }
    
    .mobile-form-check input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: var(--primary);
    }
    
    .mobile-form-check a {
        color: var(--primary);
    }
    
    .mobile-btn-submit {
        width: 100%;
        padding: 15px;
        background: var(--primary);
        color: white;
        border-radius: 30px;
        font-size: 17px;
    }
    
    .mobile-login-divider {
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 40px 0 20px;
        color: var(--text-muted);
        font-size: 14px;
    }
    
    .mobile-login-divider::before,
    .mobile-login-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: var(--border-color);
    }
    
    .mobile-login-wechat {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .mobile-login-wechat a {
        width: 50px;
        height: 50px;
        background: #07c160;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }
    
    /* ---------- 提交页（tijiao.jpg） ---------- */
    .mobile-tijiao {
        min-height: 100vh;
        background: var(--bg-gray);
    }
    
    .mobile-tijiao-header {
        text-align: center;
        padding: 15px;
        font-size: 18px;
        position: relative;
        background: white;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-tijiao-header .back {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
    }
    
    .mobile-tijiao-box {
        padding: 15px;
    }
    
    .mobile-tijiao-phone {
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: var(--border-radius);
        margin-bottom: 15px;
    }
    
    .mobile-tijiao-phone .phone-num {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 6px;
    }
    
    .mobile-tijiao-phone .phone-num::before {
        content: "📞 ";
    }
    
    .mobile-tijiao-phone p {
        font-size: 13px;
        color: var(--text-muted);
    }
    
    .mobile-tijiao-form {
        background: white;
        border-radius: var(--border-radius);
        padding: 20px;
    }
    
    .mobile-tijiao-form .form-row {
        margin-bottom: 20px;
    }
    
    .mobile-tijiao-form .form-row label {
        display: block;
        margin-bottom: 10px;
        font-size: 15px;
        color: var(--text-primary);
    }
    
    .mobile-tijiao-form .radio-group {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .mobile-tijiao-form .radio-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 15px;
    }

    .mobile-tijiao-form .radio-item span{
        position: relative;
        top: -3px;
    }
    
    .mobile-tijiao-form .radio-item input[type="radio"] {
        width: 18px;
        height: 18px;
        accent-color: var(--primary);
    }
    
    .mobile-tijiao-form input[type="text"],
    .mobile-tijiao-form textarea,
    .mobile-tijiao-form select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        font-size: 15px;
    }
    
    .mobile-tijiao-form textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .mobile-tijiao-form select {
        width: auto;
        min-width: 150px;
    }
    
    .mobile-tijiao-form .submit-btn {
        display: block;
        width: 160px;
        margin: 30px auto 0;
        padding: 12px;
        background: var(--bg-gray);
        color: var(--text-secondary);
        border-radius: var(--border-radius);
        font-size: 16px;
        text-align: center;
    }

    /* 图纸详情 */
    .tuzhi_tags{
        padding-bottom: 10px;
        /* border-bottom: 10px solid #f7f7f7; */
    }
    .tuzhi_tags a{
        font-size: 12px;
        padding:2px 5px;
        color: #666;
        margin-left: 5px;
        border: 1px solid #999;
    }
    .tuzhi_tags .active{
        border: none;
        color: #fff;
        background: #C10B00;
    }
    .tuzhi_price{
        margin-top: 10px;
        font-size: 24px;
        font-weight: bold;
        color: #C10B00;
    }
    .fengexian{
         width: 100vw;
        margin-left: calc(-50vw + 50%);
        height: 10px;
        background: #f7f7f7;
    }
    .tuzhi_table{
        margin: 15px 0;
    }
    .tuzhi_table table{
        font-size: 14px;
        text-align: center;
        width: 100%;
        border-collapse: collapse; /* 合并相邻边框，不出现粗线 */

    }
    .tuzhi_detail_title{
        margin: 10px 0;
        font-size: 16px;
    }
    .tuzhi_table th{
        color: #333;
        height: 36px;
        line-height: 36px;
        background: #eee;
        border: 1px solid #ddd;
    }
    .tuzhi_table td{
        color: #666;
        height: 36px;
        line-height: 36px;
        border: 1px solid #ddd;
    }
    .tuzhi_detail_img{
        margin-top: 10px;
        text-align: center;
        font-size:14px
    }
    .tuzhi_detail_img img{
        width: 100%;
        height: auto;
    }
    /* 图纸列表 */
    .mobile-tuzhi{
        max-width: 1200px;
        margin: 0 auto;
    }
    .mobile-tuzhi {
      /* 列数 */
      column-count: 3;
      /* 列之间的间距 */
      column-gap: 16px;
    }

    /* 搜索框 */
     .mobile-search-wrap {
            position: relative;
            width: 30px;
            height: 30px;
            transition: width 0.2s ease;
            overflow: hidden;
            border-radius: 20px;
            
        }
        /* 展开状态 */
        .mobile-search-wrap.active{
            width: 150px;
            background: #fff;
        }
        .mobile-search-wrap span{
             /* 替换display:none，改用透明度+可视性，支持动画同步 */
            visibility: hidden;
            width: 0;
            /* margin-left: 0; */
            transition: all 0.4s ease; /* 和容器动画时长保持一致 */
            color:#666;
            cursor:pointer;
            white-space: nowrap; /* 文字不换行 */
        }
        .mobile-search-wrap.active span{
            visibility: visible;
            width: 40px; /* 给按钮固定宽度占位 */
            margin-left: 5px;
            /* border: 1px solid #07c160; */
        }
        .mobile-search-wrap.active .mobile-search-icon{
            color: #999;
        }
        .mobile-search-input {
            width: 100px;
            height: 100%;
            border: none;
            outline: none;
            color: #666;
            padding-left: 30px;
            font-size: 14px;
            background: none;
            /* border: 1px solid #07c160; */
        }
        .mobile-search-icon {
            position: absolute;
            top: 5px;
            left: 5px;
            color: #fff;
            width: 20px;
            height: 20px;
            text-align: center;
            font-size: 12px;
            cursor: pointer;
        }
       .mobile-nomore{
        text-align: center;
        font-size: 12px;
        color: #ccc;
        padding: 10px 0;
       }
       .mobile-map2{
        width: 100%;
        height: 340px;
       }
             /* 瀑布流容器 */
    .mobile-videolist{
        padding: 12px;
    }
    .waterfall-wrap {
      max-width: 768px;
      margin: 0 auto;
      position: relative;
    }
    .waterfall-column {
      float: left;
      width: calc(50%);
      padding: 0 3px;
      /* border: 1px solid #f39; */
    }
    /* 笔记卡片 */
    .mobile-videocard {
      background: #eee;
      border-radius: 5px;
      overflow: hidden;
      margin-bottom: 6px;
      transition: transform 0.2s ease;
      cursor: pointer;
    }
    .mobile-videoimg-box{
        position:relative;
    }
    .mobile-videoimg-box .play-icon{
        width: 32px;
        height: 32px;
        position: absolute;
        top: 50%;
    }
    .mobile-videoimg-box .play-icon::after {
      content: "";
      /* CSS绘制三角形 */
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 8px 0 8px 14px;
      border-color: transparent transparent transparent #fff;
    }
    .mobile-videoimg {
      width: 100%;
      display: block;
      object-fit: cover;
    }
    .mobile-videotitle {
      font-size: 14px;
      color: #333;
      overflow: hidden;
      padding: 0 10px;
      /* margin-bottom: 8px; */
    }
    /* 清除浮动 */
    .clearfix::after {
      content: "";
      display: block;
      clear: both;
    }
    /* 响应式适配 */
      .waterfall-column {
        width: calc(50%);
      }
    .mobile-only .text-two-line{
        line-height: 1.4;
        /* 两行高度，如需三行改成4.2em，自行调整 */
        overflow: hidden;
        /* 取消省略号，不需要截断标识 */
        text-overflow: unset;
        white-space: normal;
        /* 可选：文字顶部对齐，避免底部留白突兀 */
        display: block;
    }
    
       /* 合伙人 */
    .mobile-hehuoren{
        font-size: 14px;
        width: 100%;
        margin: 0 auto;
        padding:0 15px;
        /* border: 1px solid #07c160; */
    }
    .mobile-new-hehuoren a{
        display: block;
        width: 100%;
         height: 40px;
         line-height: 40px;
         border-radius: 40px;
        text-align: center;
        font-size: 16px;
        color: #fff;
        background: #DA251E;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .mobile-hehuoren-title{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 10px 0;
    }
    .mobile-hehuoren-left{
        font-size: 14px;
        color: #333;
    }
    .mobile-hehuoren-left.province span{
        font-weight: normal;
        color: #DA251E;
    }
    .mobile-hehuoren-left span{
        font-weight: bold;
        color: #DA251E;
    }
    .mobile-hehuoren-right{
        font-size: 14px;
        color: #333;
    }
    .mobile-hehuoren-right span{
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #DA251E;
        margin:0 3px;
    }
    .mobile-hehuoren-areatag{
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .mobile-hehuoren-areatag a{
        min-width: 76px;
        padding: 0 5px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        border-radius: 5px;
    }
    .mobile-hehuoren-areatag a.status1{
        border: 1px solid #333;
    }
    .mobile-hehuoren-areatag a.status2{
        background: #DA251E;
        color: #fff;
        border: none;
    }
    /* 移动端二维码弹框提示 */
    .mask {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.9);
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 9999;
      padding: 20px;
      overflow: auto;
    }
    #bigQrImg {
      max-width: 90%;
      max-height: 75vh;
    }
    .guide-text {
      color: #fff;
      margin-top: 24px;
      text-align: center;
      line-height: 1.6;
      font-size: 14px;
    }
    /* 弹窗开启时锁定页面，隐藏底层滚动条 */
    body.lock-scroll {
      overflow: hidden !important;
      /* 隐藏原生滚动条 */
      -ms-overflow-style: none;
      scrollbar-width: none;
      /* iOS防回弹、防穿透滑动 */
      position: fixed;
      width: 100%;
      height: 100%;
    }
    /* 隐藏webkit浏览器滚动条（Chrome/手机浏览器） */
    body.lock-scroll::-webkit-scrollbar {
      display: none;
    }
}