@charset "UTF-8";

/* ========================================
   新首页样式 - 基于JUJEA模板
   ======================================== */

/* 基础样式重置 */
.index-new * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.index-new {
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    color: #333;
    line-height: 1.6;
}

.index-new a {
    text-decoration: none;
    color: inherit;
}

.index-new ul {
    list-style: none;
}

.index-new .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 通用按钮样式 */
.index-new .btn-primary {
    display: inline-block;
    padding: 10px 30px;
    background: #00a8cc;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.index-new .btn-primary:hover {
    background: #0088aa;
}

/* 区块标题样式 */
.index-new .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.index-new .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.index-new .section-subtitle {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

/* ========================================
   轮播图区域
   ======================================== */
.index-new .banner-section {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.index-new .banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.index-new .banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.index-new .banner-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.index-new .banner-content p {
    font-size: 18px;
    opacity: 0.9;
}

.index-new .banner-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.index-new .banner-nav span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.index-new .banner-nav span.active,
.index-new .banner-nav span:hover {
    background: #fff;
}

.index-new .banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
    border-radius: 50%;
}

.index-new .banner-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.index-new .banner-arrow.left {
    left: 30px;
}

.index-new .banner-arrow.right {
    right: 30px;
}

/* ========================================
   品牌优势区域
   ======================================== */
.index-new .advantage-section {
    padding: 80px 0;
    background: #fff;
}

.index-new .advantage-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.index-new .advantage-intro p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.index-new .advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.index-new .advantage-item {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.index-new .advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s;
}

.index-new .advantage-item:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.index-new .advantage-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.index-new .advantage-content .num {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.index-new .advantage-content .text {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   新闻资讯区域
   ======================================== */
.index-new .news-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.index-new .news-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.index-new .news-tabs a {
    padding: 8px 20px;
    font-size: 14px;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.index-new .news-tabs a.active,
.index-new .news-tabs a:hover {
    color: #00a8cc;
    border-color: #00a8cc;
}

.index-new .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.index-new .news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.index-new .news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.index-new .news-item.featured {
    grid-column: span 2;
    display: flex;
}

.index-new .news-item.featured .news-image {
    width: 50%;
    height: auto;
}

.index-new .news-item.featured .news-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index-new .news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.index-new .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.index-new .news-item:hover .news-image img {
    transform: scale(1.05);
}

.index-new .news-content {
    padding: 20px;
}

.index-new .news-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.index-new .news-date .day {
    font-size: 24px;
    font-weight: bold;
    color: #00a8cc;
    margin-right: 5px;
}

.index-new .news-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index-new .news-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index-new .news-more {
    text-align: center;
    margin-top: 40px;
}

.index-new .news-more a {
    color: #00a8cc;
    font-size: 14px;
    transition: color 0.3s;
}

.index-new .news-more a:hover {
    color: #0088aa;
}

/* ========================================
   产品中心区域
   ======================================== */
.index-new .product-section {
    padding: 80px 0;
    background: #fff;
}

.index-new .product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.index-new .product-categories a {
    padding: 10px 25px;
    font-size: 14px;
    color: #666;
    border: 1px solid #eee;
    border-radius: 25px;
    transition: all 0.3s;
}

.index-new .product-categories a.active,
.index-new .product-categories a:hover {
    color: #00a8cc;
    border-color: #00a8cc;
    background: rgba(0, 168, 204, 0.05);
}

.index-new .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.index-new .product-item {
    background: #f9f9f9;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.index-new .product-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.index-new .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.index-new .product-item:hover .product-image img {
    transform: scale(1.05);
}

.index-new .product-name {
    font-size: 16px;
    color: #00a8cc;
    margin-bottom: 15px;
    font-weight: 500;
}

.index-new .product-more {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   行业应用区域
   ======================================== */
.index-new .industry-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.index-new .industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.index-new .industry-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.index-new .industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(0, 168, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00a8cc;
}

.index-new .industry-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.index-new .industry-item .btn-primary {
    padding: 6px 20px;
    font-size: 12px;
}

/* ========================================
   Footer 修复样式
   ======================================== */
.index-new .footer {
    background: #1c1c1c;
    padding-top: 4rem;
    color: #fff;
    position: relative;
}

.index-new .footer .container-outer {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

.index-new .footer .footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
}

.index-new .footer .footer-top .title {
    margin-bottom: 1.5rem;
}

.index-new .footer .footer-top .title h3 {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: normal;
}

.index-new .footer .footer-top .title i {
    display: block;
    width: 1.875rem;
    height: 2px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 1);
}

.index-new .footer .footer-nav .box {
    font-size: 0.875rem;
    line-height: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 15px;
}

.index-new .footer .footer-nav .box a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.index-new .footer .footer-nav .box a:hover {
    color: #fff;
}

.index-new .footer .footer-contact .info {
    font-size: 0.875rem;
    line-height: 2rem;
    color: rgba(255, 255, 255, 0.7);
    list-style: none;
}

.index-new .footer .footer-contact .info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.index-new .footer .footer-contact .info li svg {
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.index-new .footer .footer-contact .info li p {
    margin: 0;
    word-break: break-all;
}

.index-new .footer .footer-follow .qr-code {
    display: flex;
    gap: 15px;
}

.index-new .footer .footer-follow .ewm {
    text-align: center;
}

.index-new .footer .footer-follow .ewm .pic {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #525252;
    padding: 5px;
    border-radius: 5px;
    background: #fff;
}

.index-new .footer .footer-follow .ewm .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.index-new .footer .footer-follow .ewm p {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.index-new .footer .footer-bottom {
    clear: both;
    overflow: hidden;
    padding: 1.5rem 0;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index-new .footer .footer-bottom .copyright {
    float: none;
}

.index-new .footer .footer-bottom .beian {
    float: none;
}

.index-new .footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.index-new .footer .footer-bottom a:hover {
    color: #fff;
}

/* ========================================
   响应式设计
   ======================================== */
@media screen and (max-width: 1200px) {
    .index-new .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .index-new .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .index-new .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .index-new .news-item.featured {
        grid-column: span 2;
    }
    
    .index-new .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .index-new .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .index-new .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .index-new .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .index-new .news-item.featured {
        grid-column: span 2;
    }
    
    .index-new .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .index-new .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer 响应式 */
    .index-new .footer .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .index-new .footer .footer-follow {
        grid-column: span 2;
    }
    
    .index-new .footer .footer-follow .qr-code {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .index-new .banner-section {
        height: 400px;
    }
    
    .index-new .banner-content h1 {
        font-size: 24px;
    }
    
    .index-new .banner-content p {
        font-size: 14px;
    }
    
    .index-new .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .index-new .news-grid {
        grid-template-columns: 1fr;
    }
    
    .index-new .news-item.featured {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .index-new .news-item.featured .news-image,
    .index-new .news-item.featured .news-content {
        width: 100%;
    }
    
    .index-new .product-grid {
        grid-template-columns: 1fr;
    }
    
    .index-new .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .index-new .banner-arrow {
        display: none;
    }
    
    /* Footer 移动端 */
    .index-new .footer {
        padding-top: 2rem;
    }
    
    .index-new .footer .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .index-new .footer .footer-follow {
        grid-column: span 1;
    }
    
    .index-new .footer .footer-nav .box {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .index-new .footer .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
