/* 临时修复CSS - 补充可能缺失的样式 */

/* content-modul-columns 样式 */
.content-modul-columns {
    padding: 70px 24px;
    width: 100%;
}

.content-modul-columns .gr {
    display: flex;
    width: 100%;
    max-width: 1434px;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 12px;
    row-gap: 60px;
}

.content-modul-columns .gc-1-2 {
    display: flex;
    width: 50%;
    padding: 0 12px;
}

.content-modul-columns .gc-1-3 {
    display: flex;
    width: 33.3333333333%;
    min-width: 280px;
    padding: 0 12px;
}

.content-modul-columns .gc-2-3 {
    display: flex;
    width: 66.6666666667%;
    padding: 0 12px;
}

.content-modul-columns .gc-1-1 {
    display: flex;
    width: 100%;
    padding: 0 12px;
}

/* 导航样式修复 */
header .fixed-nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 900;
    padding: 0 24px;
    transition: 0.4s;
    background: #001a37;
}

header .fixed-nav-bar .gr {
    max-width: 1434px;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

header .header-logo img {
    height: 48px;
    width: auto;
}

/* 桌面导航菜单 */
.desktop-mega-menu ul.menu {
    display: flex;
    flex-direction: row;
    column-gap: 24px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.desktop-mega-menu ul.menu > li > a {
    padding: 50px 0;
    margin: 0;
    display: flex;
    font-size: 24px;
    color: #fff;
    transition: 0.4s;
    font-weight: 500;
    text-decoration: none;
}

.desktop-mega-menu ul.menu > li:hover a {
    color: #00aaf0;
}

/* 按钮样式修复 */
.btn-style-01 {
    width: auto;
    padding: 12px 15px;
    line-height: 30px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background: #00aaf0;
    border-radius: 2px;
    transition: 0.4s;
    text-decoration: none !important;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-style-01:hover {
    color: #fff;
    background: #001a37;
    text-decoration: none !important;
}

.btn-style-02 {
    width: auto;
    padding: 12px 15px;
    line-height: 30px;
    font-size: 20px;
    font-weight: 500;
    color: #00aaf0;
    background: #fff;
    border-radius: 2px;
    transition: 0.4s;
    text-decoration: none !important;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-style-02:hover {
    color: #fff;
    background: #00aaf0;
    text-decoration: none !important;
}

/* 响应式设计 */
@media only screen and (max-width: 1024px) {
    .content-modul-columns .gc-1-2,
    .content-modul-columns .gc-1-3,
    .content-modul-columns .gc-2-3 {
        width: 50%;
    }
    
    header .header-logo img {
        height: 30px;
    }
    
    header .fixed-nav-bar {
        padding: 20px 24px 40px;
    }
}

@media only screen and (max-width: 800px) {
    .content-modul-columns .gc-1-1,
    .content-modul-columns .gc-1-2,
    .content-modul-columns .gc-1-3,
    .content-modul-columns .gc-2-3 {
        width: 100%;
    }
    
    .content-modul-columns .gr.column-reverse {
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 600px) {
    .content-modul-columns {
        padding: 60px 12px;
    }
    
    .content-modul-columns .gr {
        padding: 0 12px;
    }
    
    .content-modul-columns .gc-1-1,
    .content-modul-columns .gc-1-2,
    .content-modul-columns .gc-1-3,
    .content-modul-columns .gc-2-3 {
        padding: 0;
    }
    
    header .fixed-nav-bar {
        padding: 20px 0 40px;
    }
}

/* 移动端导航隐藏桌面菜单 */
@media only screen and (max-width: 1024px) {
    .desktop-mega-menu {
        display: none;
    }
}

/* 确保基本的网格系统工作 */
.gr {
    display: flex;
    width: 100%;
    max-width: 1434px;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 12px;
    row-gap: 60px;
}

.gc-1-1 { display: flex; width: 100%; padding: 0 12px; }
.gc-1-2 { display: flex; width: 50%; padding: 0 12px; }
.gc-1-3 { display: flex; width: 33.3333333333%; min-width: 280px; padding: 0 12px; }
.gc-2-3 { display: flex; width: 66.6666666667%; padding: 0 12px; }
.gc-1-4 { display: flex; width: 25%; padding: 0 12px; }
.gc-3-4 { display: flex; width: 75%; padding: 0 12px; }

/* 文本内容样式 */
.text-content {
    width: 100%;
}

.text-content p {
    margin: 0 0 26px;
}

.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
    color: #001a37;
    font-weight: 700;
}

/* 确保页面基本布局 */
main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

section {
    padding: 70px 24px;
}

/* 颜色变量 */
:root {
    --primary-blue: #00aaf0;
    --dark-blue: #001a37;
    --white: #ffffff;
    --light-gray: #f8f8f8;
}
