/* iOA零信任网关网站样式文件 */
/* 响应式布局设计，支持各种设备屏幕尺寸 */

/* 全局重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* 主题色彩定义 */
:root {
    --primary-color: #2175f4;        /* 主色调 - 腾讯云蓝 */
    --secondary-color: #165dff;      /* 次要色调 */
    --accent-color: #00c48f;         /* 强调色 */
    --text-color: #333333;           /* 主要文本色 */
    --light-text: #666666;           /* 次要文本色 */
    --background-color: #ffffff;     /* 背景色 */
    --light-bg: #f5f7fa;             /* 浅色背景 */
    --border-color: #eaeaea;         /* 边框色 */
    --success-color: #00c48f;        /* 成功色 */
    --warning-color: #ff9c07;        /* 警告色 */
    --danger-color: #ff4d4f;         /* 错误色 */
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);  /* 阴影 */
    --transition: all 0.3s ease;     /* 过渡效果 */
}

/* 容器样式 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* 段落样式 */
p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* 链接样式 */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.btn-block {
    display: block;
    width: 100%;
}

/* 卡片样式 */
.card {
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(33, 117, 244, 0.1);
}

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

/* 导航栏样式 */
.header {
    background-color: var(--background-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 24px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* 横幅区域样式 */
.banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: white;
}

.banner p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 部分通用样式 */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* 特性卡片样式 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
}

.feature-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

/* 解决方案样式 */
.solutions-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.solution-tab {
    padding: 12px 24px;
    margin: 0 8px 16px;
    background-color: var(--light-bg);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.solution-tab.active {
    background-color: var(--primary-color);
    color: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* 定价表格样式 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card.popular {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-header {
    padding: 24px;
    text-align: center;
    background-color: var(--light-bg);
}

.pricing-card.popular .pricing-header {
    background-color: var(--primary-color);
    color: white;
}

.pricing-card.popular .pricing-header h3 {
    color: white;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 16px 0;
}

.pricing-features {
    padding: 24px;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
}

/* 客户案例样式 */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-study-card {
    display: flex;
    flex-direction: column;
}

.case-study-logo {
    width: 100%;
    height: 100px;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 4px;
}

/* 联系我们样式 */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 4px;
}

.map-container {
    width: 100%;
    height: 300px;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin-top: 24px;
}

/* 页脚样式 */
.footer {
    background-color: #181818;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .features-grid,
    .pricing-grid,
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* 导航栏响应式 */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-color);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    /* 横幅响应式 */
    .banner {
        padding: 60px 0;
    }
    
    .banner h1 {
        font-size: 2.25rem;
    }
    
    /* 部分响应式 */
    .section {
        padding: 60px 0;
    }
    
    /* 网格响应式 */
    .features-grid,
    .solutions-grid,
    .pricing-grid,
    .case-studies-grid,
    .contact-container,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* 定价卡片响应式 */
    .pricing-card.popular {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .banner h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 12px;
    }
}