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

    body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    }

    /* 头部导航 */
    .mobile-header {
    background: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .mobile-header img {
    width: 70%;
    }

    .mobile-logo {
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    }

    .mobile-logo i {
    font-size: 20px;
    }

    .menu-toggle {
    background: none;
    border: none;
    color: #ff6b35;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    }

    /* 主要内容区域 */
    .main-content {
    /* margin-top: 70px;
    padding-bottom: 20px; */
    }

    /* 轮播图区域 */
    .hero-section {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    }

    .banner-slider {
    position: relative;
    width: 100%;
    
    }

    .banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;  
    }

    .banner-slide.active {
    opacity: 1;
    position: relative;
    z-index: 2;
    }

    /* .banner-slide:first-child {
    position: relative;
    opacity: 1;
    } */

    .banner-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    }

    .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .indicator.active {
    background: #ff6b35;
    transform: scale(1.2);
    }

    .banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
    }

    .banner-nav:hover {
    background: rgba(0, 0, 0, 0.6);
    }

    .banner-prev {
    left: 15px;
    }

    .banner-next {
    right: 15px;
    }

    .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    }

    .hero-content {
    text-align: center;
    color: white;
    padding: 20px;
    }

    .hero-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .hero-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .cta-button {
    background: #ff6b35;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }

    .cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }

    /* 企业概况 */
    .company-overview {
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    background: url('/assets/image/wap_bg6.png') center/cover no-repeat;
    min-height: 500px !important;
    text-align: left;
    padding: 1.5rem;
    }

    /* .company-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    border-radius: 15px;
    } */

    .company-overview > * {
    position: relative;
    z-index: 2;
    }

    .section-title {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 5px;
    color: #fff;

    }

    .section-subtitle span{
    font-size: 26px;
    color: #ffff00;
    margin: 0 5px;
    }

    .section-subtitle {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
    }

    .company-desc {
    font-size: 12px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 15px;
    }

    .more-btn {
    background: #667eea;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    }

    /* 新闻动态 */
    .news-section {
    background: url('/assets/image/wap_bg3.png') center/cover no-repeat;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-height: 450px;
    }

    .news-tabs {
    display: flex;
    margin-bottom: 20px;
    justify-content: right;
    }

    .news-tab {
    padding: 10px;
    text-align: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .news-tab.active {
    color: #e15616;
    }

    .news-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
    }

    .news-item a {
        text-decoration: none;
    }


    .news-item:last-child {
    border-bottom: none;
    }

    .news-date {
    width: 60px;
    text-align: center;
    margin-right: 15px;
    padding-right: 8px;
    border-right: 1px solid #0c2c75;
    }

    .news-day {
    font-size: 16px;
    color: #0c2c75;
    line-height: 1;
    }

    .news-month {
    font-size: 12px;
    font-weight: bold;
    color: #0c2c75
    }

    .news-contents{
        padding-left: 8px;
    }

    .news-content {
    flex: 1;
    background-color: #ffffffd1;
    padding: 0.5rem;
    }

    #newsContent{
    background-color: #ffffffd1;
    padding: 0.5rem;
    }

    .news-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    }

    .news-summary {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    }

    /* 产品中心 */
    .products-section {
    background: url('/assets/image/wap_bg4.png') center/cover no-repeat;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-height: 500px;
    }

    .product-categories{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
    left: 0;
    padding: 0.5rem 1.5rem;
    position: absolute;
    bottom: 10px;
    }

    .product-category{
    margin-top: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.5rem 2%;
    width: 22%;
    }

    .product-category:hover {
    transform: translateY(-3px);

    }

    .product-category.active {
    transform: translateY(-5px);
    /* box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ff6b35; */
    }

    .product-categories img{
    width: 100%;
    border-radius: 6px;
    transition: all 0.3s ease;
    }

    .product-category.active img {
    transform: scale(1.1);
    }

    .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
    }

    .product-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    }

    .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .product-icon {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 20px;
    }

    .product-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    }

    /* 品牌展示 */
    .brands-section {
    background: white;
    margin: 20px;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    }

    .brand-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    }

    .brand-item:hover {
    border-color: #667eea;
    }

    .brand-logo {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
    }

    .brand-desc {
    font-size: 12px;
    color: #666;
    }

    /* 联系我们 */
    .contact-section {
    background: #667eea;
    margin: 20px;
    border-radius: 15px;
    padding: 25px;
    color: white;
    text-align: center;
    }

    .contact-info {
    margin: 20px 0;
    }

    .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    font-size: 16px;
    }

    .contact-item i {
    margin-right: 10px;
    width: 20px;
    }

    .call-button {
    background: #ff6b35;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
    }

    .call-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    }

    /* 底部 */
    .footer {
    background: url('/assets/image/wap_bg5.png') center/cover no-repeat;
    color: white;
    padding: 20px;
    font-size: 12px;
    min-height: 200px;
    }

    /* 侧边菜单 */
    .side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .side-menu.active {
    right: 0;
    }

    .side-menu-header {
    background: #ff6b35;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    }

    .side-menu-content {
    padding: 20px 0;
    }

    .menu-item {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
    }

    .menu-item:hover {
    background: #f8f9fa;
    }

    /* 遮罩层 */
    .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    }

    .overlay.active {
    opacity: 1;
    visibility: visible;
    }

    .fass{
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: #fff;
    line-height: 20px !important;
    color: #333333;
    text-align: center;

    }

    .btn-primary {
    background: #e15616;
    color: white;
    }

    .btn {
    padding: 5px 0px 5px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    }

    .company-list {
    background: url('/assets/image/wap_bg2.png') center/cover no-repeat;
    background-size: 100% auto;
    min-height: 200px;
    padding: 20px;
    }

    .zy-links{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        position: absolute;
        bottom: 20PX;
        left: 10px;
    }
    .zy-links a{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 0px;
    color: #fff;
    width: 33%;
    text-decoration: none;

    }
    .zy-links a .img{
    width: 1rem;
    height: 1rem;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease;
    }

    .zy-links a:hover .img {
        transform: scale(1.1);
        animation: bounce 0.6s ease;
    }

    .zy-links a:hover{
    border-color: #c31e1e;
    color: #c31e1e;
    box-shadow: 0 4px 12px rgba(195,30,30,.08);
    }
    .zy-links a i{
    font-size: 22px;
    width: 28px;          /* 固定宽度，对齐 */
    text-align: center;
    }
    .zy-links a .txt{
    flex: 1;
    display: flex;
    flex-direction: column;

    }
    .zy-links a .cn{
    font-size: 0.8rem;
    letter-spacing: 1px;
    }
    .zy-links a .en{
    font-size: 0.5rem;
    color: #fff;
    font-style: normal;

    }

    /* 增强.zy-links悬停效果 */
    .zy-links a:hover .img {
        animation: bounce 0.6s ease;
    }

    .zy-links a:hover .txt .cn,
    .zy-links a:hover .txt .en {
        color: #e55a2b !important;
    }

    /* 响应式调整 */
    @media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }
    }

    .foot-top{
    display: flex;
    justify-content: center;
    }
    .foot-info{
    max-width: 1200px;

    }
    .foot-info h2{
    font-size: 24px;
    font-weight: normal;
    margin: 0 0 8px;
    letter-spacing: 1px;
    color: #ffff00;
    }
    .slogan{
    margin: 0 0 20px;
    font-size: 15px;
    opacity: .9;
    }
    .contact-list{
    list-style: none;
    padding-bottom: 15px;
    margin: 0;
    display: inline-block;
    text-align: left;
    border-bottom: 1px solid #dfdfdf;
    }
    .contact-list li{
    margin: 6px 0;
    padding-left: 24px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px 16px;
    }

    .contact-list li.contact-website {
        background-image: url('/assets/image/wap_tb1.png');
    }

    .contact-list li.contact-address {
        background-image: url('/assets/image/wap_tb2.png');
    }

    .contact-list li.contact-phone {
        background-image: url('/assets/image/wap_tb3.png');
    }

    .contact-list li.contact-email {
        background-image: url('/assets/image/wap_tb4.png');
    }
    .contact-list a{
    color: #fff;
    text-decoration: none;
    }
    .contact-list a:hover{
    text-decoration: underline;
    }
    .contact-list i{
    width: 20px;
    text-align: center;
    margin-right: 8px;
    color: #b8c5d6;
    }

    .foot-bottom{
        padding: 15px 0px;
        text-align: left;
        font-size: 12px;
        color: #a8b5c6;
    }
    .foot-bottom p{
    margin: 4px 0;
    }

    .main-content .banner{
        padding-top: 70px;
        margin-bottom: 10px;
    }

    .nav-left{
        width: 100%;
        display: flex;
        justify-content: left;
        padding: 10px 3%;
        flex-wrap: wrap;
        font-size: 14px;
    }

    .nav-left a{
        width: 100px;
        display: block;
        text-align: center;
        text-decoration: none;
        color: #333333;
        border: 1px solid #dfdfdf;
        padding: 2%;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .nav-left .active{
        background-color: #e55a2b;
        color: #fff;
    }

    .nav-right{
        padding: 0 5%;
    }

    .nav-right a{
        color: #333;
        text-decoration: none;
    }

    .news-grid .news-card {
        border: 5px solid #d4dcdd;
        margin-bottom: 20px;
    }

    .news-grid .news-card a{
        text-decoration: none;
    }

    .news-grid .news-card a .title{
        font-size: 16px;
        padding: 0 2%;
         color: #333;
    }

    .news-grid .news-card a .desc{
        display: flex;
        flex-direction: row;
        padding: 0 2% 10px;
        color: #999999;
    }

    .news-grid .news-card a .desc img{
        display: block;
        height: 100%;
        margin-top: 10px;
        margin-left: 10px;
    }

    .news-article{
        padding: 10px 3%;
        box-shadow: 0 4px 15px rgb(0 0 0 / 10%);
        min-height: 320px;
    }

    .news-article .section-title{
        font-size: 18px;
        margin-bottom: 5px;
        color: #333;
        font-weight: bold;
    }

    .news-article .content{
        padding: 5% 0;
    }

    .news-article .content p{
        margin: 10px 0;
    }

    .news-article .content div{
        margin: 10px 0;
    }

    .container .other{
       color: #999999;
        font-size: 14px;
        display: flex;
        padding: 10px;
        justify-content: space-between;
        background-color: #e3ebeb;
        margin-top: 10px;
    }

    .news-article .content img{
       width: 100%;
       padding: 10px 0;
       display: block;
    }

    .news-article .content p:has(+ img),
.news-article .content p:has(> img) {
    text-indent: 0 !important;
}


    .news-content-card img{
        width: 100%;
    }

    /* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
    color: #333;
}

.pagination ul li::marker {

    content: none;

}

.pagination ul li a {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    text-decoration: none;
    color: #333;
}

.pagination span {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.pagination span {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.pagination span:hover {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.pagination .active span {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}