* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4b 50%, #0d1235 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #00d4ff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    color: #00d4ff;
    -webkit-text-fill-color: #00d4ff;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #b8c5d6;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: #00d4ff;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7b2cbf);
    transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.header-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    color: #0a0e27;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #0a0e27;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    transition: all 0.3s;
}

main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.hero {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: #b8c5d6;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
}

.section-title p {
    color: #b8c5d6;
    font-size: 16px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #b8c5d6;
    line-height: 1.8;
}

.stats {
    background: rgba(0, 212, 255, 0.05);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: #00d4ff;
    margin-bottom: 10px;
}

.stat-item p {
    color: #b8c5d6;
    font-size: 16px;
}

.breadcrumb {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.breadcrumb ul {
    display: flex;
    gap: 10px;
    align-items: center;
}

.breadcrumb li {
    color: #b8c5d6;
}

.breadcrumb li a {
    color: #00d4ff;
}

.breadcrumb li::after {
    content: '>';
    margin-left: 10px;
    color: #00d4ff;
}

.breadcrumb li:last-child::after {
    display: none;
}

.content-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #00d4ff;
}

.content-section h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #ffffff;
}

.content-section p {
    color: #b8c5d6;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-section ul li {
    color: #b8c5d6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 44, 191, 0.1));
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.about-img h3 {
    font-size: 36px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.about-img p {
    color: #b8c5d6;
}

.news-grid {
    display: grid;
    gap: 30px;
}

.news-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s;
}

.news-item:hover {
    border-color: #00d4ff;
    transform: translateX(10px);
}

.news-item .date {
    color: #00d4ff;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.news-item p {
    color: #b8c5d6;
    line-height: 1.6;
}

.news-item .read-more {
    display: inline-block;
    margin-top: 15px;
    color: #00d4ff;
    font-weight: bold;
}

.news-detail {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 50px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.news-detail h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.news-detail .meta {
    color: #b8c5d6;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.news-detail .meta span {
    margin-right: 20px;
}

.news-detail .content {
    color: #b8c5d6;
    line-height: 1.8;
    font-size: 16px;
}

.news-detail .content p {
    margin-bottom: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.product-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.product-card p {
    color: #b8c5d6;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-card ul {
    margin-top: 20px;
}

.product-card ul li {
    color: #b8c5d6;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #00d4ff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #00d4ff;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-item p {
    color: #b8c5d6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.cta-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 44, 191, 0.1));
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    color: #b8c5d6;
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00d4ff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #b8c5d6;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #b8c5d6;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #b8c5d6;
    font-size: 14px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 5px;
    color: #b8c5d6;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background: #00d4ff;
    color: #0a0e27;
    border-color: #00d4ff;
}

.highlight {
    color: #00d4ff;
    font-weight: bold;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #00d4ff;
    margin-right: 10px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .header-btns {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 20px;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    color: #b8c5d6;
    font-size: 18px;
    display: block;
    padding: 10px 0;
}

.mobile-nav .mobile-btns {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav .mobile-btns .btn {
    width: 100%;
}
