/* 全局重置 + 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 顶部信息栏 */
.top-bar {
    background-color: #0f2942;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left i {
    margin-right: 5px;
}

.top-bar-left i:not(:first-child) {
    margin-left: 20px;
}

/* 导航栏 */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 22px;
    font-weight: bold;
    color: #0f2942;
    text-transform: uppercase;
}

.logo small {
    display: block;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    position: relative;
    margin: 0 15px;
}

.nav-list li a {
    text-decoration: none;
    color: #0f2942;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 0;
    display: inline-block;
}

.nav-list li.active a {
    color: #0066cc;
}

.nav-list li a:hover {
    color: #0066cc;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    display: none;
}

.dropdown-menu li {
    padding: 0 15px;
    margin: 0;
}

.dropdown-menu li a {
    padding: 8px 0;
    text-transform: none;
    font-weight: normal;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.quote-btn {
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.quote-btn:hover {
    background-color: #004c99;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #0f2942;
    cursor: pointer;
}

/* 移动端导航 */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 20px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    margin-top: 60px;
}

.mobile-nav-list li {
    margin: 15px 0;
}

.mobile-nav-list li a {
    text-decoration: none;
    color: #0f2942;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    display: none;
}

.mobile-dropdown-menu li {
    margin: 10px 0;
}

.mobile-dropdown-menu li a {
    font-weight: normal;
    font-size: 14px;
}

.mobile-quote-btn {
    background-color: #0066cc;
    color: #fff !important;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    border-radius: 0;
}







/* 英雄区 */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #004c99;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
}

.dot.active {
    background-color: #fff;
}

/* 核心优势区 */
.features {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 18px;
    color: #0f2942;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
}

/* 产品区 */
.products {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 14px;
    color: #0066cc;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: normal;
}

.section-header h3 {
    font-size: 32px;
    color: #0f2942;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: bold;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.product-card h4 {
    font-size: 18px;
    color: #0f2942;
    text-transform: uppercase;
    margin-bottom: 15px;
}



.product-card h4 a {

    text-decoration: none;


    font-size: 18px;
    color: #0f2942;
    text-transform: uppercase;
    margin-bottom: 15px;
}





.product-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.product-link:hover {
    text-decoration: underline;
}

.view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    background-color: #004c99;
}

/* 应用场景 + 选择我们 */
.application-why {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.application-why .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.application-why .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.application-why .section-header h3 {
    font-size: 24px;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.application-card {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.application-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.application-card:hover img {
    transform: scale(1.1);
}

.application-card h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 41, 66, 0.8);
    color: #fff;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
}



.application-card h4 a {

    text-decoration: none;

    
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 41, 66, 0.8);
    color: #fff;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
}



.explore-btn {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.explore-btn:hover {
    text-decoration: underline;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-item i {
    font-size: 24px;
    color: #0066cc;
    margin-top: 5px;
}

.why-item h4 {
    font-size: 18px;
    color: #0f2942;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    color: #666;
}

/* 数据统计区 */
.stats {
    background-color: #0f2942;
    color: #fff;
    padding: 60px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    text-transform: uppercase;
}

/* 最新新闻区 */
.news {
    padding: 80px 0;
}

.news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin-bottom: 40px;
}

.view-all-news {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-all-news:hover {
    text-decoration: underline;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    position: relative;
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #0066cc;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.news-date .month {
    font-size: 12px;
    text-transform: uppercase;
}

.news-date .day {
    font-size: 24px;
    font-weight: bold;
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}





.news-card h4 {
    font-size: 18px;
    color: #0f2942;
    margin-bottom: 10px;
}


.news-card h4 a {

    text-decoration: none;
    
    font-size: 18px;
    color: #0f2942;
    margin-bottom: 10px;
}



.news-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.news-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-link:hover {
    text-decoration: underline;
}












/* 页脚 */
.footer {
    background-color: #0f2942;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand span {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    background-color: #0066cc;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #004c99;
}

.footer-links h4,
.footer-products h4,
.footer-contact h4,
.footer-subscribe h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul,
.footer-products ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-products li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-products a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-products a:hover {
    color: #0066cc;
}

.footer-contact li {
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: #0066cc;
    margin-top: 5px;
}

.footer-subscribe p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
}

.subscribe-form input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 14px;
}

.subscribe-form button {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #004c99;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #0066cc;
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .features .container,
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .application-why .container {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        text-align: center;
    }
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
    }
    .nav, .quote-btn {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .product-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .application-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 300px;
    }
    .hero-content h1 {
        font-size: 22px;
    }
    .features .container,
    .stats .container,
    .product-grid,
    .application-grid,
    .news-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }
    .section-header h3 {
        font-size: 24px;
    }
    .stat-number {
        font-size: 36px;
    }
}