/**
 * 移动端完整适配样式
 * 断点: 768px
 */

/* ========== 移动端头部 ========== */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 0 15px;
    align-items: center;
    justify-content: space-between;
}

.mobile-header .mobile-logo {
    height: 36px;
}

.mobile-header .mobile-logo img {
    height: 100%;
    width: auto;
    max-width: 150px;
}

.mobile-header .mobile-menu-btn {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mobile-header .mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s;
}

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

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

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

/* ========== 侧边栏导航 ========== */
.mobile-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0,0,0,0.2);
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    padding: 10px;
    color: #fff;
    border-bottom: 1px solid #ccc;
}

.mobile-sidebar-header .logo {
    height: 40px;
}

.mobile-sidebar-header .logo img {
    height: 100%;
}

.mobile-sidebar-nav {
    padding: 10px 0;
}

.mobile-sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-sidebar-nav li {
    border-bottom: 1px solid #eee;
}

.mobile-sidebar-nav li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-size: 15px;
    text-decoration: none;
}

.mobile-sidebar-nav li a:hover,
.mobile-sidebar-nav li a.active {
    background: #960001;
    color: #fff;
}

.mobile-sidebar-nav li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.mobile-sidebar-nav .sub-menu {
    display: none;
    background: #f9f9f9;
}

.mobile-sidebar-nav .sub-menu li {
    border-bottom: none;
}

.mobile-sidebar-nav .sub-menu li a {
    padding-left: 50px;
    font-size: 14px;
    color: #666;
}

.mobile-sidebar-nav .has-sub > a::after {
    content: '\f107';
    font-family: FontAwesome;
    float: right;
    transition: transform 0.3s;
}

.mobile-sidebar-nav .has-sub.open > a::after {
    transform: rotate(180deg);
}

.mobile-sidebar-nav .has-sub.open .sub-menu {
    display: block;
}

/* 侧边栏遮罩 */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
}

/* ========== 底部固定导航 ========== */
.mobile-footer-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55px;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-footer-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.mobile-footer-nav li {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-footer-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 0;
    width: 100%;
}

.mobile-footer-nav li a img {
    width:20px;
    height:20px;
    margin-bottom: 3px;
}

.mobile-footer-nav li a.active,
.mobile-footer-nav li a:hover {
    color: #960001;
}

/* ========== 移动端轮播图样式 ========== */
.mobile-swiper {
    display: none;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.mobile-swiper .swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease-out;
}

.mobile-swiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

.mobile-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 180px;
    object-fit: cover;
}

.mobile-swiper .swiper-slide a {
    display: block;
}

.mobile-swiper .swiper-dots {
    display: none;
}

/* ========== 768px以下显示移动端 ========== */
@media screen and (max-width: 768px) {
    /* ===== 显示移动端元素 ===== */
    .mobile-header {
        display: flex;
    }
    
    .mobile-sidebar {
        display: block;
    }
    
    .mobile-footer-nav {
        display: block;
    }
    
    /* ===== 隐藏PC端元素 ===== */
    #header-links,
    .top_header,
    .header,
    .floatBox,
    .pc-banner {
        display: none !important;
    }
    
    /* ===== 显示移动端轮播图 ===== */
    .mobile-swiper {
        display: block !important;
        margin-top: 0;
    }
    
    /* ===== 基础布局调整 ===== */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        padding-top: 50px;
        padding-bottom: 60px;
    }
    
    * {
        box-sizing: border-box;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* ===== Banner轮播图 - 重要 ===== */
    #banner,
    #banner_main {
        width: 100% !important;
        margin-top: 0 !important;
        overflow: hidden;
    }
    
    #banner .slide_img,
    .bannerlist {
        width: 100% !important;
    }
    
    #banner .slide_img li,
    .bannerlist li {
        width: 100% !important;
        float: none !important;
    }
    
    #banner .slide_img li img,
    .bannerlist li img {
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    
    #banner .prev,
    #banner .next,
    #banner_main .hd {
        display: none !important;
    }
    
    /* ===== 主体内容容器 ===== */
    .main-content {
        padding: 0;
        width: 100%;
    }
    
    .tem_inner,
    .index_mian {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* ===== 首页通用标题 - 完全覆盖PC端 ===== */
    .tem_index_title {
        font-size: 22px !important;
        padding: 25px 15px 20px !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    .tem_index_title span {
        display: block !important;
        position: static !important;
        top: auto !important;
        height: auto !important;
        padding: 0 !important;
        border: none !important;
        border-right: none !important;
        text-align: center !important;
        line-height: 1.4 !important;
        color: #333 !important;
        font-weight: bold !important;
        font-size: 22px !important;
    }
    
    .tem_index_title p {
        font-size: 11px !important;
        color: #999 !important;
        margin-top: 5px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: normal !important;
        line-height: 1.4 !important;
    }
    
    .index_tit_line {
        position: static !important;
        width: 40px !important;
        height: 3px !important;
        background: #960001 !important;
        margin: 12px auto 0 !important;
        display: block !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    /* 关于我们标题特殊处理 */
    .main_ab_right .tem_index_title {
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .index_mian {
        text-align: center !important;
    }
    
    /* ===== 首页-主要产品分类 - 完全重写 ===== */
    .tem_index_about {
        padding: 0 0 15px !important;
        width: 100%;
        background: #fff;
    }
    
    .tem_index_about_cont {
        padding: 0 10px !important;
        width: 100% !important;
    }
    
    .tem_index_about_cont ul.class_list {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
    }
    
    .tem_index_about_cont ul.class_list li {
        width: 50% !important;
        height: auto !important;
        padding: 5px !important;
        float: none !important;
        position: relative;
    }
    
    /* 只显示前4个产品分类 */
    .tem_index_about_cont ul.class_list li:nth-child(n+5) {
        display: none !important;
    }
    
    .tem_index_about_cont ul.class_list li a {
        display: block !important;
        height: auto !important;
        padding: 0 !important;
        background: #f8f8f8;
        border-radius: 8px;
        overflow: hidden;
        position: relative !important;
    }
    
    .tem_index_about_cont ul.class_list li .cat_img {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        overflow: hidden;
        display: block !important;
    }
    
    /* 图片样式 - 完全重置 */
    .tem_index_about_cont ul.class_list li img {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        display: none !important;
    }
    
    /* 只显示第一张图片，隐藏hover图片 */
    .tem_index_about_cont ul.class_list li .cat_img .img1 {
        display: block !important;
    }
    
    .tem_index_about_cont ul.class_list li .cat_img .img2 {
        display: none !important;
    }
    
    /* 隐藏hover效果 */
    .tem_index_about_cont ul.class_list li:hover .img1 {
        display: block !important;
    }
    
    .tem_index_about_cont ul.class_list li:hover .img2 {
        display: none !important;
    }
    
    /* 隐藏文字覆盖层 */
    .tem_index_about_cont ul.class_list li .class_txt,
    .tem_index_about_cont ul.class_list li .class_bg,
    .tem_index_about_cont ul.class_list li a .class_txt,
    .tem_index_about_cont ul.class_list li a .class_bg {
        display: none !important;
    }
    
    .met_clear {
        clear: both;
    }
    
    /* ===== 首页-推荐产品 - 一排两个 ===== */
    .tem_index_product {
        padding: 0 0 20px !important;
        width: 100%;
        background: #f5f5f5;
    }
    
    .tem_index_product .tem_inner {
        padding: 0 10px !important;
    }
    
    .tem_index_product > .tem_inner > ul,
    .tem_index_product .tem_inner ul {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
        width: 100% !important;
    }
    
    .tem_index_product .index_pro_li {
        width: 50% !important;
        padding: 5px !important;
        float: none !important;
        margin: 0 !important;
        position: relative;
        height: auto !important;
    }
    
    .tem_index_product .index_pro_li a {
        display: block !important;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        width: 100% !important;
        height: auto !important;
    }
    
    .tem_index_product .index_pro_li img,
    .tem_index_product a img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    .tem_index_product .index_pro_li .pro_libg {
        display: none !important;
    }
    
    .tem_index_product .index_pro_li h2 {
        font-size: 12px !important;
        padding: 8px 5px !important;
        margin: 0;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #333;
        background: #fff;
    }
    
    /* ===== 首页-关于我们 - 优化设计 ===== */
    .home-intro {
        padding: 25px 15px !important;
        width: 100% !important;
        background: #fff;
    }
    
    .home-intro .main_cont {
        padding: 0 !important;
        width: 100% !important;
    }
    
    .home-intro .main_ab_left,
    .home-intro .main_ab_right {
        width: 100% !important;
        float: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .home-intro .main_ab_left {
        margin-bottom: 20px !important;
    }
    
    .home-intro .main_ab_left .ab_cont {
        width: 100%;
    }
    
    .home-intro .main_ab_left img {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
    }
    
    .home-intro .main_ab_right .ab_cont {
        font-size: 14px;
        line-height: 1.8;
        color: #666;
        text-align: justify;
    }
    
    .home-intro .ab_more {
        display: inline-block;
        margin-top: 15px;
        background: #960001;
        color: #fff !important;
        border-radius: 4px;
        font-size: 14px;
    }
    
    /* ===== 首页-公司优势 - 简洁设计 ===== */
    .tem_index_yous {
        padding: 0 0 20px !important;
        width: 100%;
        background: #fff;
    }
    
    .tem_index_yous_cont {
        padding: 0;
    }
    
    .tem_index_yous_cont .yous_list {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none;
    }
    
    .tem_index_yous_cont .yous_list .yous_li1,
    .tem_index_yous_cont .yous_list .yous_li2 {
        width: 100% !important;
        display: block !important;
        float: none !important;
        margin-bottom: 15px !important;
        padding: 0 !important;
        background: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        height: auto;
    }
    
    .tem_index_yous_cont .yous_txt {
        width: 100% !important;
        float: none !important;
        padding: 0 !important;
        position: relative;
        z-index: 100;
        background: rgba(0, 0, 0, 0.68);
        height: 100%;
        color: #fff;
        padding: 15px !important;
        border-left: none !important;
    }
    
    .tem_index_yous_cont .yous_img {
        width: 100% !important;
        height: 100%;
        margin: 0; 
        padding:0;
        bottom: 0;
        position: absolute;
    }
    
    .tem_index_yous_cont .yous_img img {
        width: 100% !important;
        height: 100%;
        border-radius: 0 !important;
        border: none !important;
        object-fit: cover;
    }
    
    .tem_index_yous_cont .txt_tit {
        font-size: 16px !important;
        margin-bottom: 6px !important;
        color: #fff !important;
        font-weight: bold;
        
    }
    
    .tem_index_yous_cont .txt_tit span {
        display: none !important;
    }
    
    .tem_index_yous_cont .txt_tit span img {
        display: none !important;
    }
    
    .tem_index_yous_cont .txt_cont {
        font-size: 13px !important;
        line-height: 1.6;
        color: #fff;
    }
    
    /* ===== 首页-新闻资讯 - 简洁设计 ===== */
    .tem_index_news {
        padding: 0 0 20px !important;
        width: 100%;
        background: #f8f8f8;
    }
    
    .tem_index_news_slides {
        display: block !important;
        padding-top:0;
        margin-top:0;
    }
    
    .tem_index_news_slides .news_left {
        width: 100% !important;
        float: none !important;
        margin-bottom: 15px;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .tem_index_news_slides .news_left .news_le_img {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .tem_index_news_slides .news_left .news_le_img img {
        width: 100% !important;
        height: auto !important;
        border-radius: 4px;
        object-fit: cover;
    }
    
    .tem_index_news_slides .news_left .news_tit {
        font-size: 15px;
        margin: 0 0 8px;
        color: #333;
        padding:0 10px;
    }
    
    .tem_index_news_slides .news_left .news_le_date {
        font-size: 12px;
        color: #999;
        margin: 0 0 8px;
        padding:0 10px;
    }
    
    .tem_index_news_slides .news_left .news_le_txt {
        font-size: 13px;
        line-height: 1.6;
        color: #666;
        margin: 0 0 10px;
        padding:0 10px;
    }
    
    .tem_index_news_slides .news_left .news_le_more {
        display: block;
        color: #fff;
        font-size: 13px;
        margin: 0 auto;
        border-radius: 8px;
    }
    
    .tem_index_news_slides .news_right {
        width: 100% !important;
        float: none !important;
        padding: 0 !important;
    }
    
    .tem_index_news_slides .news_right ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .tem_index_news_slides .news_right li {
        padding: 10px !important;
        margin-bottom: 10px;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        border-bottom: none !important;
    }
    
    /* 隐藏日期红色方块 */
    .tem_index_news_slides .news_right .time {
        display: none !important;
    }
    
    .tem_index_news_slides .news_right .conts {
        margin-left: 0 !important;
        width: 100%;
    }
    
    .tem_index_news_slides .news_right .conts .title {
        font-size: 14px !important;
        color: #333;
        margin-bottom: 5px;
        line-height: 1.4;
    }
    
    .tem_index_news_slides .news_right .conts .title a {
        color: #333;
    }
    
    .tem_index_news_slides .news_right .conts .abstract {
        font-size: 12px !important;
        color: #999;
        line-height: 1.5;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .news_more {
        text-align: center;
        padding: 15px 0;
    }
    
    .news_more a {
        display: inline-block;
        background: #960001;
        color: #fff !important;
        border-radius: 4px;
        font-size: 14px;
    }
    
    /* ===== 产品分类选择器 ===== */
    .pro_side_main {
        padding:5px !important;
        width: 100% !important;
    }
    
    .pro_side_main .left_body2 .subchannellist li a {
        height: auto !important;
        line-height: unset !important;
    }
    .subchannellist li.active a, .subchannellist li a:hover{
        color:#fff !important;
    }
    
    .pro_selecter {
        width: 100% !important;
        margin: 5px auto 5px;
        border: none;
    }
    
    .pro_selecter .indexTits {
        text-align: center;
        margin-bottom: 15px;
        display: none;
    }
    
    .pro_selecter .indexTits .tit {
        font-size: 18px !important;
        display: block;
    }
    
    .pro_selecter .indexTits .en {
        font-size: 12px !important;
        display: block;
        margin-top: 5px;
        color: #999;
    }
    
    .pro_selecter .catelist {
        width: 100% !important;
        padding-left:0;
        height: auto !important;
    }
    
    .pro_selecter .catelist ul {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none;
    }
    
    .pro_selecter .catelist li {
        margin: 5px !important;
        float: none !important;
        width: auto !important;
    }
    
    .pro_selecter .catelist .procate {
        padding: 8px 15px !important;
        font-size: 13px !important;
        display: block;
        border: 1px solid #ddd;
        border-radius: 3px;
        line-height: unset;
        font-weight: normal;
    }
    
    .pro_selecter .catelist .procate.on {
        background: #960001;
        color: #fff;
        border-color: #960001;
    }
    
    /* ===== 产品列表页 ===== */
    .product {
        padding: 0 15px !important;
        width: 100% !important;
        margin: 0px auto !important;
    }
    
    .pro_main,
    #left2 {
        width: 100% !important;
        float: none !important;
        padding: 0 !important;
        border: none !important;
    }
    
    .right_body {
        width: 100% !important;
        float: none !important;
        padding: 0 !important;
    }
    
    .right_title,
    .right_title2 {
        padding: 10px 0 !important;
        font-size: 14px !important;
        line-height:unset !important;
    }
    
    .right_title h2 {
        font-size: 16px !important;
        color: #960001 !important;
        float: none !important;
    }
    
    .right_title .more {
        float: right;
        font-size: 13px;
        color: #960001;
    }
    
    /* 产品网格列表 */
    .gridlist {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 -5px !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .gridlist li {
        width: 50% !important;
        padding: 5px !important;
        float: none !important;
        margin: 0 !important;
        list-style: none;
    }
    
    .gridlist li > div {
        width: 100%;
        position: relative;
    }
    
    .gridlist li .pro_list_img {
        display: block;
        width: 100%;
    }
    
    .gridlist li .pro_list_img img {
        width: 100% !important;
        height: auto !important;
    }
    
    .gridlist li .pg-border-color {
        display: none;
    }
    
    .gridlist li .pro_list_tit {
        display: block;
        padding: 8px 5px !important;
        font-size: 13px !important;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    /* 产品详情 */
    .info_product_detail_wrap {
        padding: 15px 0;
    }
    
    .InfoTitle h1 {
        font-size: 18px !important;
        line-height: 1.4;
    }
    
    .Pro_Content {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .Pro_Content img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* 产品图片集 */
    .pro_param_img,
    .pro_mian_img {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 -5px !important;
    }
    
    .pro_param_img .pro_img_li,
    .pro_mian_img .pro_img_li {
        width: 50% !important;
        padding: 5px !important;
        float: none !important;
    }
    
    .pro_param_img .pro_img_li img,
    .pro_mian_img .pro_img_li img {
        width: 100% !important;
        height: auto !important;
    }
    
    /* ===== 新闻列表页 ===== */
    .article {
        padding: 0 15px !important;
        width: 100% !important;
        margin: 15px auto !important;
    }
    
    .news_main {
        width: 100% !important;
        float: none !important;
        border: none !important;
        padding: 0 !important;
    }
    
    /* 新闻子栏目导航 */
    .left_body2 {
        width: 100% !important;
        float: none !important;
        margin-bottom: 0px !important;
        padding: 0 !important;
    }
    
    .subchannellist {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .subchannellist li {
        margin: 5px !important;
        float: none !important;
        border: none !important;
        line-height: normal !important;
    }
    
    .subchannellist li span {
        display: none !important;
    }
    
    .subchannellist li a {
        padding: 8px 15px !important;
        font-size: 13px !important;
        display: block;
        border: 1px solid #ddd;
        border-radius: 3px;
        background: #fff;
    }
    
    .subchannellist li.active a,
    .subchannellist li a:hover {
        background: #960001;
        color: #fff;
        border-color: #960001;
    }

    
    /* 新闻文章列表 */
    .textlist {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .textlist li {
        padding: 15px 0 0!important;
        display: block !important;
        overflow: hidden;
        height: auto !important;
        width: 100% !important;
    }
    
    .textlist .art_img {
        width: 100px !important;
        height: auto !important;
        float: left !important;
        margin-right: 15px !important;
        position: relative !important;
    }
    
    .textlist .art_img img {
        width: 100% !important;
        height: auto !important;
    }
    
    .textlist .art_text,
    .textlist .art_have_img {
        overflow: hidden;
        width: auto !important;
        float: none !important;
        height: auto !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: none !important;
    }
    
    .textlist .art_text h3 {
        font-size: 15px !important;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
        line-height: 1.4;
        color: #333 !important;
        margin-bottom: 0px !important;
    }
    
    .textlist .art_text p {
        font-size: 12px !important;
        color: #999 !important;
        line-height: 1.2 !important;
        margin: 5px 0 5px 0 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .textlist .art_text .InfoTime {
        display: none !important;
        position: static !important;
        font-size: 12px !important;
        color: #999;
        margin-top: 8px !important;
    }
    
    .textlist .more {
        display: none !important;
    }
    
    /* 新闻详情 */
    .info_from_wrap {
        font-size: 12px !important;
        color: #999;
        padding: 10px 0 !important;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
    }
    
    .article-content {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .article-content img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* ===== 单页内容 ===== */
    .ChannelContent {
        font-size: 14px;
        line-height: 1.8;
        max-width: 100%;
    }
    
    .ChannelContent img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* ===== 百度地图 ===== */
    .baidumap-container {
        margin-top: 20px;
    }
    
    .baidumap-container #baiduMap {
        height: 280px !important;
    }
    
    /* ===== 分页 ===== */
    .page,
    .pager {
        padding: 15px 0 !important;
        text-align: center;
    }
    
    .page a,
    .page span,
    .pager a,
    .pager span {
        display: inline-block !important;
        padding: 8px 12px !important;
        margin: 2px !important;
        font-size: 13px !important;
    }
    
    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* ===== 底部信息 ===== */
    .foot_message {
        padding-bottom: 10px !important;
    }
    
    .foot_main {
        padding: 20px 15px !important;
        display: block !important;
        width: 100% !important;
    }
    
    .foot_info_li {
        width: 100% !important;
        float: none !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
    }
    .fast_footer{
        display: none !important;
    }
    
    .foot_info_li .title,
    .foot_info_li .title2 {
        font-size: 16px !important;
        margin-bottom: 10px;
    }
    
    .foot_info_li .foot_cont_txt {
        font-size: 13px !important;
        line-height: 2;
        margin: 0;
    }
    
    .foot_info_li .foot_cont_txt p {
        margin: 5px 0 !important;
    }
    
    .foot_logo,
    .foot_center,
    .foot_nav {
        width: 100% !important;
        float: none !important;
        margin-bottom: 20px !important;
    }
    
    .footEwm {
        display: flex;
        justify-content: center;
    }
    
    .footEwm .footImg {
        margin: 0 10px;
        text-align: center;
    }
    
    .footEwm .footImg img {
        width: 100px !important;
        height: auto !important;
    }
    
    .footer {
        padding: 15px !important;
        padding-bottom: 10px !important;
        font-size: 12px !important;
        text-align: center;
        background: #222;
    }
    
    /* ===== 搜索页 ===== */
    .search_box {
        padding: 15px !important;
    }
    
    .search_box input[type="text"] {
        width: calc(100% - 80px) !important;
        padding: 10px !important;
        font-size: 14px !important;
    }
    
    .search_box input[type="submit"] {
        width: 70px !important;
        padding: 10px !important;
    }
    
    /* ===== 通用隐藏左侧栏 ===== */
    .left_body {
        display: none !important;
    }
}

/* ========== 480px以下更小屏幕 ========== */
@media screen and (max-width: 480px) {
    .mobile-header {
        height: 45px;
    }
    
    .mobile-header .mobile-logo {
        height: 28px;
    }
    
    body {
        padding-top: 45px;
    }
    
    .mobile-footer-nav {
        height: 50px;
    }
    
    .mobile-footer-nav li a {
        font-size: 11px;
    }
    
    .mobile-footer-nav li a i {
        font-size: 18px;
    }
    
    .tem_index_title {
        font-size: 18px !important;
    }
    
    .InfoTitle h1 {
        font-size: 16px !important;
    }
    
    .textlist .art_img {
        width: 80px !important;
    }
    
    .textlist .art_text h3 {
        font-size: 14px !important;
    }
    
    /* 产品列表单列改为两列保持 */
    .tem_index_about_cont ul.class_list li,
    .tem_index_product .index_pro_li,
    .gridlist li {
        width: 50% !important;
    }
}
