/* AWJQ产品服务页面样式 - jtgdjt.com */
:root {
    --corporate-blue: #1e40af;
    --corporate-purple: #7c3aed;
    --tech-cyan: #0891b2;
    --accent-orange: #ea580c;
    --success-green: #059669;
    --text-primary: #1f2937;
    --text-secondary: #f9fafb;
    --text-muted: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--corporate-blue), var(--corporate-purple));
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
    background: var(--bg-white);
    min-height: 100vh;
    box-shadow: 0 0 60px rgba(0,0,0,0.3);
}

.products-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e2e8f0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.logo-link {
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-item {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 0;
}

.nav-item:hover {
    color: var(--corporate-blue);
    transform: translateY(-2px);
}

.nav-item.active {
    color: var(--corporate-blue);
    font-weight: 600;
}

.main-content {
    margin-top: 90px;
}

.products-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.8rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.category-tab.active {
    background: white;
    color: var(--corporate-blue);
    border-color: white;
}

.flagship-products {
    background: var(--bg-white);
    padding: 5rem 0;
}

.flagship-showcase {
    background: var(--bg-light);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.flagship-product {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 4rem;
    align-items: center;
}

.product-visual {
    position: relative;
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge.flagship { background: rgba(234, 88, 12, 0.9); color: white; }
.badge.latest { background: rgba(16, 185, 129, 0.9); color: white; }

.product-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--corporate-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-text {
    font-weight: 600;
    color: var(--text-primary);
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-btn {
    padding: 1rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.product-btn.secondary {
    background: var(--accent-orange);
    color: white;
}

.product-btn:not(.primary):not(.secondary) {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 2px solid #e2e8f0;
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.products-catalog {
    background: var(--bg-light);
    padding: 5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 2.5rem;
}

.product-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.card-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature {
    padding: 0.2rem 0.6rem;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid #e2e8f0;
}

.product-stats {
    font-size: 0.9rem;
    color: var(--corporate-blue);
    margin-bottom: 1.5rem;
}

.card-action-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-action-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.service-advantages {
    background: var(--bg-white);
    padding: 5rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.advantage-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--corporate-blue);
}

.advantage-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.advantage-metric {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    display: inline-block;
}

.main-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-section {
    color: #cbd5e1;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--accent-orange);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .flagship-product {
        grid-template-columns: 1fr;
    }
    
    .product-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}