/* 全局样式 */
:root {
    --primary-color: #000;
    --secondary-color: #666;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #fff;
    --dark: #000;
    --accent-color: #ff6b00;
    --gradient-primary: linear-gradient(135deg, #000, #333);
    --gradient-dark: linear-gradient(135deg, #000, #333);
}

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

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    font-size: 14px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0;
    height: 80px;
    transition: all 0.3s;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 50px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 15px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00ff88);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 30px;
    align-items: center;
}

.search-btn {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-color);
    transition: all 0.3s;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.search-btn:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* 响应式导航 */
@media (max-width: 1200px) {
    .nav-links {
        gap: 35px;
    }
    
    .navbar .container {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .navbar {
        height: 70px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-color);
        cursor: pointer;
        padding: 5px;
    }
    
    .mobile-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 999;
        overflow-y: auto;
    }
    
    .mobile-nav.active {
        transform: translateX(0);
    }
    
    .mobile-nav .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .mobile-nav .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--light-bg);
        font-size: 16px;
    }
    
    .nav-actions {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 64px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-actions {
        gap: 15px;
    }
    
    .search-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .navbar .container {
        padding: 0 25px;
    }
}

/* 主内容区域 */
main {
    margin-top: 60px;
    padding-top: 0;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/drone-agri.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 0;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-link {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    font-size: 14px;
}

.btn-link:hover {
    color: rgba(255,255,255,0.8);
}

/* 解决方案 */
.solutions {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.solution-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-info {
    padding: 30px;
    background: var(--white);
}

.solution-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.solution-info p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

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

.solution-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 14px;
}

.solution-features .feature-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.solution-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.solution-stats .stat-item {
    text-align: center;
}

.solution-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.solution-stats .stat-label {
    font-size: 12px;
    color: var(--secondary-color);
}

.solution-info .btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .solution-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .solution-info {
        padding: 20px;
    }
    
    .solution-image {
        height: 220px;
    }
    
    .solution-info h3 {
        font-size: 1.3rem;
    }
    
    .solution-stats .stat-number {
        font-size: 1.3rem;
    }
}

/* 产品展示 */
.products {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 30px;
    background: var(--white);
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.product-info p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 14px;
}

.feature-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.spec-item {
    text-align: center;
}

.spec-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.spec-label {
    font-size: 12px;
    color: var(--secondary-color);
}

.product-info .btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .product-specs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .product-info {
        padding: 20px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
    }
    
    .spec-number {
        font-size: 1.3rem;
    }
}

/* 联系我们 */
.contact {
    padding: 120px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-item p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
    background-color: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* 页脚样式 */
.footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 30px;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    font-size: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    max-width: 160px;
}

.footer-logo img {
    width: 100%;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-logo p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.link-group h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

.link-group h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00ff88);
    transition: width 0.3s ease;
}

.link-group:hover h3::after {
    width: 50px;
}

.link-group a {
    display: block;
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.6;
    position: relative;
    padding-left: 0;
}

.link-group a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 20px 0;
}

.footer-subscribe h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-subscribe p {
    color: #999;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
}

.subscribe-form button {
    padding: 12px 25px;
    background: linear-gradient(135deg, #007bff, #00ff88);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.footer-contact p {
    color: #999;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-legal {
    color: #999;
    font-size: 12px;
    line-height: 1.6;
}

.footer-legal a {
    color: #999;
    margin-right: 25px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal p {
    margin: 12px 0 0;
}

.footer-language {
    text-align: right;
}

.footer-language a {
    color: #999;
    margin-left: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
}

.footer-language a:hover {
    color: #fff;
}

.footer-language a.active {
    color: #fff;
    font-weight: 500;
}

.footer-language a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #00ff88);
}

@media (max-width: 1200px) {
    .footer-content {
        gap: 60px;
        padding: 0 40px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .footer-bottom {
        padding: 30px 40px 0;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 40px 0;
    }
    
    .footer-language {
        text-align: left;
    }
    
    .subscribe-form {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .link-group h3 {
        margin-bottom: 20px;
    }
    
    .link-group a {
        margin-bottom: 12px;
    }
    
    .footer-bottom {
        padding: 20px 20px 0;
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .solution-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .solution-image,
    .product-image {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .solutions,
    .products {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    .solution-image,
    .product-image {
        height: 200px;
    }
    
    .solution-info,
    .product-info {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 0;
        height: 50px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .solution-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-info,
    .product-info {
        padding: 20px;
    }
    
    .solution-image,
    .product-image {
        height: 220px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    main {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .solution-image,
    .product-image {
        height: 200px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* 动画效果 */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-20px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(20px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

/* 无人机服务 */
.services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-info p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* 服务详情 */
.service-detail {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-text p {
    color: var(--secondary-color);
    line-height: 1.8;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* 关于我们 */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
}

.about-stats .stat-item {
    text-align: center;
}

.about-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-stats .stat-label {
    font-size: 1rem;
    color: var(--secondary-color);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.about-image:hover img {
    transform: scale(1.05);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        gap: 20px;
        padding: 20px;
    }
    
    .about-stats .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-stats .stat-number {
        font-size: 1.8rem;
    }
}

/* 新闻网格 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

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

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.news-content p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .solution-content,
    .product-content,
    .service-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* 合作伙伴板块 */
.partners {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.partner-icon i {
    font-size: 2.5rem;
    color: white;
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.partner-features {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #666;
}

.feature-item i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* 开发者板块 */
.developers {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    color: white;
}

.developers .section-title,
.developers .section-subtitle {
    color: white;
}

.developers-content {
    text-align: center;
}

.developers-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
}

.developers-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* 下载板块 */
.download {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.download-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.download-icon i {
    font-size: 2.5rem;
    color: white;
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.download-card p {
    color: #666;
    margin-bottom: 25px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.download-buttons .btn i {
    font-size: 1.2rem;
}

.download-buttons .btn:hover {
    transform: translateY(-2px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .partners-grid,
    .developers-features,
    .download-grid {
        grid-template-columns: 1fr;
    }

    .partner-card,
    .feature-box,
    .download-card {
        padding: 30px;
    }

    .developers-cta {
        flex-direction: column;
    }

    .download-buttons {
        flex-direction: column;
    }
} 