* {
    box-sizing: border-box;
}
body{
    background:#FAFAFA
}
 .goTop >img{
            width: 50px;
            height: 50px;
            cursor: pointer;
        }
        .goTop{
            position: fixed;
            right : 20px;
            bottom : 20px;
        }
/* 导航栏样式 */
.gb-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* padding: 20px 0; */
    box-sizing: border-box;
}

.gb-header-inner {
    max-width: 1580px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-logo img {
    height: 88px;
    display: block;
}

.gb-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gb-nav-item {
    margin: 0 20px;
}
.gb-nav-item:hover a{
    font-weight:bold
}
.gb-nav-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
}

.gb-nav-item.active a {
    font-weight: bold;
}

.gb-nav-item.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.gb-right-tools {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gb-search-box,
.gb-lang-box {
    position: relative;
}

.gb-search-icon img,
.gb-lang-icon img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.gb-search-dropdown,
.gb-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1001;
}

.gb-search-dropdown {
    padding: 10px;
    min-width: 250px;
}

.gb-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
}

.gb-lang-dropdown {
    min-width: 120px;
}

.gb-lang-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.gb-lang-dropdown a:hover {
    background: #f5f5f5;
}

/* 轮播图样式 */
.gb-banner {
    width: 100%;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
}

.gb-swiper {
    width: 100%;
    height: 100%;
}

.gb-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.gb-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gb-banner-text {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

.gb-banner-text h1 {
    font-size: 48px;
    color: #ffffff;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.gb-banner-text h2 {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 40px 0;
    font-weight: normal;
    letter-spacing: 2px;
}

.gb-banner-modules {
    display: flex;
    gap: 40px;
}

.gb-banner-module {
    text-align: center;
}

.gb-banner-module img {
    width: 60px!important;
    height: 60px!important;
    margin-bottom: 10px;
}

.gb-banner-module p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.gb-banner-more {
    position: absolute;
    bottom: 60px;
    left: 50%;
    cursor: pointer;
    text-align: center;
}

.gb-banner-more img {
    width: 20px!important;
 
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.gb-scroll-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: block;
}

/* 轮播图导航按钮 */
.gb-swiper-nav {
    position: absolute;
    bottom: 60px;
    right: calc((100% - 1580px) / 2 + 20px);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gb-swiper-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.gb-swiper-btn:hover {
    background: #ffffff;
}

.gb-swiper-btn img {
    width: 20px;
    height: 20px;
}

/* 轮播图圆点 */
.gb-swiper-pagination {
    position: absolute;
    bottom: 60px!important;
    left: calc((100% - 1580px) / 2 + 20px)!important;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.gb-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    background: transparent;
    opacity: 1;
    margin: 0;
}

.gb-swiper-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-header-inner {
        padding: 0 15px;
    }

    .gb-nav-list {
        display: none;
    }

    .gb-banner-text h1 {
        font-size: 32px;
    }

    .gb-banner-text h2 {
        font-size: 14px;
    }

    .gb-banner-modules {
        gap: 20px;
    }

    .gb-swiper-nav {
        right: 20px;
    }

    .gb-swiper-pagination {
        left: 20px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-header-inner {
        padding: 0 10px;
    }

    .gb-logo img {
        height: 35px;
    }

    .gb-right-tools {
        gap: 15px;
    }

    .gb-search-icon img,
    .gb-lang-icon img {
        width: 20px;
        height: 20px;
    }

    .gb-banner-text {
        padding: 0 15px;
    }

    .gb-banner-text h1 {
        font-size: 24px;
    }

    .gb-banner-text h2 {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .gb-banner-modules {
        flex-direction: column;
        gap: 20px;
    }

    .gb-banner-module img {
        width: 50px;
        height: 50px;
    }

    .gb-banner-module p {
        font-size: 12px;
    }

    .gb-swiper-nav {
        bottom: 30px;
        right: 15px;
        gap: 8px;
    }

    .gb-swiper-btn {
        width: 40px;
        height: 40px;
    }

    .gb-swiper-btn img {
        width: 16px;
        height: 16px;
    }

    .gb-swiper-pagination {
        bottom: 30px;
        left: 15px;
        gap: 8px;
    }

    .gb-swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .gb-banner-more {
        bottom: 80px;
    }

    .gb-banner-more img {
        width: 25px;
        height: 25px;
    }

    .gb-scroll-btn {
        font-size: 12px;
    }

    .gb-search-dropdown {
        min-width: 200px;
        right: -50px;
    }

    .gb-lang-dropdown {
        right: -30px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-banner-text h1 {
        font-size: 20px;
    }

    .gb-banner-text h2 {
        font-size: 11px;
    }
}

/* 介绍模块样式 */
.gb-about {
    padding: 80px 0;
    background: #FAFAFA;
}

.gb-about-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-about-title {
    text-align: center;
    margin-bottom: 60px;
}

.gb-about-bg {
    position: relative;
    margin-bottom: 30px;
}

.gb-about-bg img {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.gb-about-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-about-title p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
}

.gb-about-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
    padding: 40px 0;
    border-radius: 10px;
}

.gb-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gb-stat-item img {
    width: 58px;
    
}

.gb-stat-num {
    font-size: 75px;
    font-weight: bold;
    color: #1A2C40;
    text-align: center;
    padding-bottom:8px
}

.gb-stat-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gb-stat-unit {
    font-size: 18px;
    font-weight: bold;
    color: #1A2C40;
}

.gb-stat-text {
    font-size: 14px;
    color: #666666;
}

.gb-about-btn-wrap {
    text-align: center;
}

.gb-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 15px 40px;
    border: 2px solid #1658A0;
    border-radius: 30px;
    background: transparent;
    color: #1658A0;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}
.gb-about-btn img{
    width:25px
}
.gb-about-btn:hover {
    background: #1658A0;
    color: #ffffff;
}
.gb-about-btn .gb-btn-arrow {
     display: inline-block;
     
}
.gb-about-btn:hover .gb-btn-arrow {
    display:none
     
}

.gb-about-btn .gb-btn-arrow-white {
    display: none;
}

.gb-about-btn:hover .gb-btn-arrow-white {
    display: inline-block;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-about {
        padding: 60px 0;
    }

    .gb-about-bg h2 {
        font-size: 24px;
    }

    .gb-about-title p {
        font-size: 14px;
    }

    .gb-about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .gb-stat-item {
        width: calc(50% - 15px);
        justify-content: center;
    }

    .gb-stat-num {
        font-size: 36px;
        min-width: 60px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-about {
        padding: 40px 0;
    }

    .gb-about-inner {
        padding: 0 15px;
    }

    .gb-about-title {
        margin-bottom: 40px;
    }

    .gb-about-bg h2 {
        font-size: 20px;
    }

    .gb-about-title p {
        font-size: 13px;
    }

    .gb-about-stats {
        flex-direction: column;
        gap: 25px;
        padding: 25px 0;
    }

    .gb-stat-item {
        width: 100%;
        justify-content: center;
    }

    .gb-stat-item img {
        width: 40px;
        height: 40px;
    }

    .gb-stat-num {
        font-size: 32px;
        min-width: 50px;
    }

    .gb-stat-unit {
        font-size: 16px;
    }

    .gb-stat-text {
        font-size: 12px;
    }

    .gb-about-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .gb-about-btn img {
        width: 16px;
        height: 16px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-about-bg h2 {
        font-size: 16px;
    }

    .gb-about-title p {
        font-size: 12px;
    }

    .gb-stat-num {
        font-size: 28px;
    }
}

/* 综合服务模块样式 */
.gb-service {
    padding: 80px 0;
    background: url('../images/fwbg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    padding-top:150px
}

.gb-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.gb-service-inner {
    position: relative;
    z-index: 1;
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-service-title {
    text-align: center;
    margin-bottom: 60px;
}

.gb-service-title h3 {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.gb-service-title h2 {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.gb-service-list {
    margin-bottom: 60px;
}

.gb-service-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
}

.gb-service-item {
    display: flex;
    gap: 15px;
    padding:50px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
    width: calc(33.33% - 20px);
    min-width: 280px;
}

.gb-service-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.gb-service-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.gb-service-content {
    display: flex;
    flex-direction: column;
}

.gb-service-content h4 {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.gb-service-content p {
 
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.gb-service-more {
    text-align: center;
    margin-top:150px
}

.gb-service-more img {
    width: 20px;

    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.gb-service-scroll {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: block;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-service {
        padding: 60px 0;
    }

    .gb-service-title h3 {
        font-size: 16px;
    }

    .gb-service-title h2 {
        font-size: 24px;
    }

    .gb-service-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-service {
        padding: 40px 0;
    }

    .gb-service-inner {
        padding: 0 15px;
    }

    .gb-service-title {
        margin-bottom: 40px;
    }

    .gb-service-title h3 {
        font-size: 14px;
    }

    .gb-service-title h2 {
        font-size: 20px;
    }

    .gb-service-list {
        margin-bottom: 40px;
    }

    .gb-service-item {
        padding: 20px;
        gap: 12px;
    }

    .gb-service-item img {
        width: 40px;
        height: 40px;
    }

    .gb-service-content h4 {
        font-size: 14px;
    }

    .gb-service-content p {
        font-size: 12px;
    }

    .gb-service-scroll {
        font-size: 12px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-service-title h2 {
        font-size: 18px;
    }

    .gb-service-item {
        padding: 15px;
    }

    .gb-service-content p {
        font-size: 11px;
    }
}

/* 技术与实力模块样式 */
.gb-strength {
    padding: 80px 0;
    background: #f8f9fa;
}

.gb-strength-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-strength-title {
    text-align: center;
    margin-bottom: 60px;
}

.gb-strength-bg {
    position: relative;
    display: inline-block;
}

.gb-strength-bg img {
    display: block;
    width: 100%;
    max-width: 600px;
}

.gb-strength-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-strength-content {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gb-strength-list {
    display: flex;
    position: relative;
}

.gb-strength-item {
    flex-shrink: 0;
    width: 10%;
    background: url('../images/slbg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 10px;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    height:666px
}

.gb-strength-item.active {
    width: 40%;
    background: #ffffff;
    padding: 30px;
}

.gb-strength-item-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

.gb-strength-item-header img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.gb-strength-item-header span {
  
    color: #ffffff;
    font-weight: bold;
    line-height: 1.4;
}

.gb-strength-item.active .gb-strength-item-header {
    display: none;
}

.gb-strength-item-body {
    display: none;
}

.gb-strength-item.active .gb-strength-item-body {
    display: block;
    width: 100%;
}

.gb-strength-item-body h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1658A0;
    margin: 0 0 30px 0;
}

.gb-strength-modules {
    display: flex;
    flex-direction: column;
  
}

.gb-strength-module {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
}

.gb-strength-module img {
 
    height: 45px;
    flex-shrink: 0;
}

.gb-strength-module-content {
    flex: 1;
}

.gb-strength-module-content h4 {
    font-size: 18px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0 0 10px 0;
}

.gb-strength-module-content p {
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}


.gb-strength-module-pic {
    width: 200px!important;
    height: 150px!important;
    object-fit: cover;
    border-radius: 4px;
}

.gb-strength-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #1658A0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    margin-top: 0;
    transition: all 0.3s;
}

.gb-strength-btn:hover {
    background: #0f447a;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-strength {
        padding: 60px 0;
    }

    .gb-strength-bg h2 {
        font-size: 24px;
    }

    .gb-strength-item {
        width: 80px;
        padding: 20px 5px;
    }

    .gb-strength-item.active {
        width: 50%;
        padding: 20px;
    }

    .gb-strength-item-header span {
        font-size: 11px;
    }

    .gb-strength-module-pic {
        width: 150px;
        height: 120px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-strength {
        padding: 40px 0;
    }

    .gb-strength-inner {
        padding: 0 15px;
    }

    .gb-strength-title {
        margin-bottom: 40px;
    }

    .gb-strength-bg h2 {
        font-size: 20px;
    }

    .gb-strength-list {
        flex-direction: column;
    }

    .gb-strength-item {
        width: 100%;
        background: #1658A0;
        padding: 20px;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: row;
        gap: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .gb-strength-item.active {
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
    }

    .gb-strength-item.active .gb-strength-item-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .gb-strength-item.active .gb-strength-item-header span {
        color: #1658A0;
    }

    .gb-strength-item-header span {
        font-size: 14px;
        text-align: left;
    }

    .gb-strength-module {
        flex-direction: column;
    }

    .gb-strength-module-img {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gb-strength-module-pic {
        width: 100%;
        height: auto;
    }

    .gb-strength-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-strength-bg h2 {
        font-size: 16px;
    }

    .gb-strength-item-body h3 {
        font-size: 16px;
    }

    .gb-strength-module-content h4 {
        font-size: 14px;
    }

    .gb-strength-module-content p {
        font-size: 12px;
    }
}

/* 加入我们模块样式 */
.gb-join {
    padding: 80px 0;
    background: url('../images/jiarubg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.gb-join-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    min-height: 400px;
}

.gb-join-left {
    flex: 1;
}

.gb-join-title {
    max-width: 500px;
    display:none
}
.gb-join-title.active {
    display:block
}
.gb-join-bg {
    position: relative;
  
    display: inline-block;
}

.gb-join-bg img {
    display: block;
    width: 100%;
    max-width: 400px;
}

.gb-join-bg h2 {
    position: absolute;
    bottom: 30px;
    left: 0;
    font-size: 32px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-join-title p {
    font-size: 18px;
    color: #666666;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.gb-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: 2px solid #1658A0;
    border-radius: 30px;
    background: transparent;
    color: #1658A0;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
        margin-top: 100px;
}
.gb-join-btn img{
    width:20px
}
.gb-join-btn:hover {
    background: #1658A0;
    color: #ffffff;
}

.gb-join-btn:hover .gb-join-arrow {
    display:none
}

.gb-join-arrow-white {
    display: none;
}

.gb-join-btn:hover .gb-join-arrow-white {
    display: inline-block;
}

.gb-join-right {
    flex: 0 0 auto;
    background: url('../images/jiarubg2.png') no-repeat center center;
    background-size: cover;
    padding: 150px 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

.gb-join-categories {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gb-join-category {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 10px 0;
}

.gb-join-category:nth-child(1),
.gb-join-category:nth-child(3) {
    padding-left: 0;
}

.gb-join-category:nth-child(2) {
    padding-left: 30px;
}

.gb-join-category span:first-child {
    font-size: 20px;
    color: #1658A0;
    font-weight: 500;
}

.gb-join-dot {
    width: 8px;
    height: 8px;
    background: #1658A0;
    border-radius: 50%;
    transition: all 0.3s;
}

.gb-join-category.active .gb-join-dot {
    width: 20px;
    height: 20px;
    border: 2px solid #1658A0;
    background: transparent;
    position: relative;
}

.gb-join-category.active .gb-join-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #1658A0;
    border-radius: 50%;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-join {
        padding: 60px 0;
    }

    .gb-join-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .gb-join-left {
        width: 100%;
    }

    .gb-join-title {
        max-width: 100%;
    }

    .gb-join-bg h2 {
        font-size: 24px;
    }

    .gb-join-right {
        width: 100%;
        padding: 40px;
        justify-content: center;
    }

    .gb-join-category:nth-child(2) {
        padding-left: 20px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-join {
        padding: 40px 0;
    }

    .gb-join-inner {
        padding: 0 15px;
        gap: 30px;
    }

    .gb-join-bg h2 {
        font-size: 20px;
    }

    .gb-join-title p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .gb-join-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .gb-join-right {
        padding: 30px 20px;
    }

    .gb-join-categories {
        gap: 20px;
    }

    .gb-join-category span:first-child {
        font-size: 16px;
    }

    .gb-join-category:nth-child(2) {
        padding-left: 15px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-join-bg h2 {
        font-size: 16px;
    }

    .gb-join-title p {
        font-size: 13px;
    }

    .gb-join-category span:first-child {
        font-size: 14px;
    }

    .gb-join-category:nth-child(2) {
        padding-left: 10px;
    }
}

/* 新闻资讯模块样式 */
.gb-news {
    padding: 80px 0;
    background: #f8f9fa;
}

.gb-news-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-news-title {
    /* text-align: center; */
    margin-bottom: 60px;
}

.gb-news-bg {
    position: relative;
    display: inline-block;
}

.gb-news-bg img {
    display: block;
    width: 100%;
    max-width: 300px;
}

.gb-news-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 0;
    font-size: 32px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-news-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.gb-news-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    flex: 1;
    min-width: 280px;
    transition: all 0.3s;
}

.gb-news-item:hover {
    background: #1658A0;
}

.gb-news-date {
    font-size: 12px;
    color: #999999;
    display: block;
    margin-bottom: 10px;
}

.gb-news-item:hover .gb-news-date {
    color: rgba(255, 255, 255, 0.8);
}

.gb-news-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.gb-news-item:hover h3 {
    color: #ffffff;
}

.gb-news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.gb-news-item p {
    font-size: 14px;
    color: #666666;
    margin: 0 0 20px 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gb-news-item:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.gb-news-item-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border: 2px solid #1658A0;
    border-radius: 20px;
    background: transparent;
    color: #1658A0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.gb-news-item-btn img {
    width: 20px;
    height: auto;
    margin-bottom: 0;
    border-radius: 0;
}

.gb-news-item:hover .gb-news-item-btn {
    background: #ffffff;
    color: #1658A0;
}

.gb-news-arrow-white {
    display: none;
}

/* .gb-news-item:hover .gb-news-arrow {
    display: none;
}

.gb-news-item:hover .gb-news-arrow-white {
    display: inline-block;
} */

.gb-news-more-wrap {
    text-align: center;
}

.gb-news-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: 2px solid #1658A0;
    border-radius: 30px;
    background: transparent;
    color: #1658A0;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.gb-news-more-btn img {
    width: 20px;
    height: auto;
}

.gb-news-more-btn:hover {
    background: #1658A0;
    color: #ffffff;
}

.gb-news-more-btn:hover .gb-news-more-arrow {
    display: none;
}

.gb-news-more-arrow-white {
    display: none;
}

.gb-news-more-btn:hover .gb-news-more-arrow-white {
    display: inline-block;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-news {
        padding: 60px 0;
    }

    .gb-news-bg h2 {
        font-size: 24px;
    }

    .gb-news-list {
        flex-wrap: wrap;
    }

    .gb-news-item {
        width: calc(50% - 15px);
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-news {
        padding: 40px 0;
    }

    .gb-news-inner {
        padding: 0 15px;
    }

    .gb-news-title {
        margin-bottom: 40px;
    }

    .gb-news-bg h2 {
        font-size: 20px;
    }

    .gb-news-list {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .gb-news-item {
        width: 100%;
        padding: 20px;
    }

    .gb-news-item h3 {
        font-size: 16px;
    }

    .gb-news-item img {
        height: 150px;
    }

    .gb-news-item p {
        font-size: 13px;
    }

    .gb-news-more-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-news-bg h2 {
        font-size: 16px;
    }

    .gb-news-item {
        padding: 15px;
    }

    .gb-news-item h3 {
        font-size: 14px;
    }

    .gb-news-item img {
        height: 120px;
    }

    .gb-news-item p {
        font-size: 12px;
    }
}

/* 合作伙伴模块样式 */
.gb-partner {
    padding: 80px 0;
    background: #ffffff;
}

.gb-partner-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-partner-title {
    text-align: center;
    margin-bottom: 60px;
}

.gb-partner-bg {
    position: relative;
    display: inline-block;
}

.gb-partner-bg img {
    display: block;
    width: 100%;
    max-width: 300px;
}

.gb-partner-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-partner-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gb-partner-track {
    display: flex;
    width: max-content;
}

.gb-partner-list {
    display: flex;
    flex-shrink: 0;
}

.gb-partner-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.gb-partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-partner {
        padding: 60px 0;
    }

    .gb-partner-bg h2 {
        font-size: 24px;
    }

    .gb-partner-item {
        width: 150px;
        height: 80px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-partner {
        padding: 40px 0;
    }

    .gb-partner-inner {
        padding: 0 15px;
    }

    .gb-partner-title {
        margin-bottom: 40px;
    }

    .gb-partner-bg h2 {
        font-size: 20px;
    }

    .gb-partner-item {
        width: 120px;
        height: 70px;
        padding: 15px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-partner-bg h2 {
        font-size: 16px;
    }

    .gb-partner-item {
        width: 100px;
        height: 60px;
    }
}

/* 底部模块样式 */
.gb-footer {
    background: #1A2C40;
    padding: 60px 0;
}

.gb-footer-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.gb-footer-left {
    flex: 1;
}

.gb-footer-logo {
    margin-bottom: 10px;
}

.gb-footer-logo img {
    height: 100px;
}

.gb-footer-search {
    display: flex;
    margin-bottom: 50px;
    max-width: 400px;
}

.gb-footer-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.gb-footer-search-btn {
    padding: 12px 20px;
    background: #1658A0;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.gb-footer-search-btn:hover {
    background: #0f447a;
}

.gb-footer-search-btn img {
    width: 20px;
    height: 20px;
}

.gb-footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.gb-footer-nav li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s;
}

.gb-footer-nav li a:hover {
    color: #ffffff;
}

.gb-footer-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.gb-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gb-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.gb-footer-contact-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.gb-contact-label {
    display: block;
    font-size: 14px;
    color:#fff;
    margin-bottom: 10px;
}

.gb-contact-value {
    display: block;
    font-size: 14px;
    color:#fff;
}

.gb-footer-qrcode {
    display: flex;
    gap: 30px;
}

.gb-qrcode-item {
    text-align: center;
}

.gb-qrcode-item img {
   display:block;
    height: 80px;
    margin-bottom: 10px;
}

.gb-qrcode-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.gb-footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gb-footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .gb-footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .gb-footer-contact {
        width: 100%;
    }

    .gb-footer-qrcode {
        width: 100%;
        justify-content: space-around;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-footer {
        padding: 40px 0;
    }

    .gb-footer-inner {
        padding: 0 15px;
        gap: 30px;
    }

    .gb-footer-logo img {
        height: 40px;
    }

    .gb-footer-search {
        max-width: 100%;
    }

    .gb-footer-nav ul {
        gap: 15px;
    }

    .gb-footer-nav li a {
        font-size: 13px;
    }

    .gb-contact-value {
        font-size: 13px;
    }

    .gb-footer-qrcode {
        gap: 20px;
    }

    .gb-qrcode-item img {
        width: 60px;
        height: 60px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-footer-nav ul {
        gap: 12px;
    }

    .gb-footer-nav li a {
        font-size: 12px;
    }

    .gb-contact-value {
        font-size: 12px;
    }

    .gb-footer-qrcode {
        gap: 15px;
    }

    .gb-qrcode-item img {
        width: 50px;
        height: 50px;
    }

    .gb-qrcode-item span {
        font-size: 11px;
    }
}

/* about页面banner模块样式 */
.gb-about-banner {
    padding: 120px 0;
    position: relative;
    min-height: 400px;
}

.gb-about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(22, 88, 160, 0.6); */
}

.gb-about-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 300px;
}


.gb-about-banner-left h1 {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.gb-about-banner-left h2 {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-weight: normal;
    letter-spacing: 2px;
}

.gb-about-banner-right {

    display: flex;
    justify-content: flex-end;
}

.gb-about-banner-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.gb-about-banner-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gb-about-banner-stat-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.gb-about-banner-stat-num {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.gb-about-banner-stat-info {
    display: flex;
    flex-direction: column;

}

.gb-about-banner-stat-unit {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
}

.gb-about-banner-stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-about-banner {
        padding: 80px 0;
    }

    .gb-about-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .gb-about-banner-left h1 {
        font-size: 36px;
    }

    .gb-about-banner-right {
        justify-content: center;
    }

    .gb-about-banner-stat-num {
        font-size: 36px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-about-banner {
        padding: 60px 0;
        min-height: auto;
    }

    .gb-about-banner-inner {
        padding: 0 15px;
        gap: 30px;
    }

    .gb-about-banner-left h1 {
        font-size: 28px;
    }

    .gb-about-banner-left h2 {
        font-size: 14px;
    }

    .gb-about-banner-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .gb-about-banner-stat-item {
        width: calc(50% - 10px);
    }

    .gb-about-banner-stat-num {
        font-size: 32px;
    }

    .gb-about-banner-stat-item img {
        width: 40px;
        height: 40px;
    }

    .gb-about-banner-stat-unit {
        font-size: 16px;
    }

    .gb-about-banner-stat-text {
        font-size: 12px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-about-banner-left h1 {
        font-size: 24px;
    }

    .gb-about-banner-stat-num {
        font-size: 28px;
    }

    .gb-about-banner-stat-text {
        font-size: 11px;
    }
}

/* 关于广东国标模块样式 */
.gb-about-content {
    padding: 80px 0;
}

.gb-about-content-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-about-content-title {
    text-align: center;
    margin-bottom: 60px;
}

.gb-about-content-bg {
    position: relative;
    display: inline-block;
}

.gb-about-content-bg img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.gb-about-content-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-about-content-body {
    display: flex;
    gap: 50px;
}

.gb-about-content-left {
    flex: 1;
}

.gb-about-content-date {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 30px;
}

.gb-about-content-date-left {
    display: flex;
    flex-direction: column;
}

.gb-date-label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #1A2C40;
    font-weight: bold;
}

.gb-date-text {
    font-size: 14px;
    color: #666666;
}

.gb-about-content-date-right {
    display: flex;
    align-items: baseline;
}

.gb-date-year {
    font-size: 72px;
    font-weight: bold;
    color: #1658A0;
    line-height: 1;
}

.gb-date-unit {
    font-size: 18px;
    color: #1A2C40;
    margin-left: 5px;
}

.gb-about-content-desc {
    font-size: 17px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.gb-about-content-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.gb-about-content-stat-item {
    width: calc(33.33% - 20px);
    text-align: center;
}

.gb-about-content-stat-num {
    display: block;
    font-size: 42px;
    font-weight: bold;
    color: #1658A0;
    margin-bottom: 10px;
}

.gb-about-content-stat-text {
    font-size: 14px;
    color: #666666;
}

.gb-about-content-right {
    flex: 0 0 600px;
}

.gb-about-video {
    position: relative;
    width: 100%;
    height: 400px;
    background: #1A2C40;
    cursor: pointer;
    overflow: hidden;
}

.gb-about-video-thumb {
    width: 100%;
    height: 100%;
}

.gb-about-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-about-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(22, 88, 160, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.gb-about-video-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #1658A0;
}

.gb-about-video-play img {
    width: 30px;
    height: 30px;
}

#gb-about-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* display: none; */
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-about-content-body {
        flex-direction: column;
        gap: 40px;
    }

    .gb-about-content-right {
        flex: 1;
    }

    .gb-about-video {
        height: 280px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-about-content {
        padding: 60px 0;
    }

    .gb-about-content-inner {
        padding: 0 15px;
    }

    .gb-about-content-title {
        margin-bottom: 40px;
    }

    .gb-about-content-bg h2 {
        font-size: 28px;
    }

    .gb-date-year {
        font-size: 56px;
    }

    .gb-about-content-desc {
        font-size: 14px;
    }

    .gb-about-content-stat-item {
        width: calc(50% - 15px);
    }

    .gb-about-content-stat-num {
        font-size: 28px;
    }

    .gb-about-video {
        height: 220px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-about-content-bg h2 {
        font-size: 22px;
    }

    .gb-date-year {
        font-size: 48px;
    }

    .gb-about-content-stat-item {
        width: 100%;
    }

    .gb-about-content-stat-num {
        font-size: 24px;
    }

    .gb-about-video {
        height: 180px;
    }

    .gb-about-video-play {
        width: 60px;
        height: 60px;
    }

    .gb-about-video-play img {
        width: 22px;
        height: 22px;
    }
}

/* 企业文化模块样式 */
.gb-culture {
    padding: 80px 0;
}

.gb-culture-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-culture-title {
    margin-bottom: 50px;
}

.gb-culture-bg {
    position: relative;
    display: inline-block;
}

.gb-culture-bg img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.gb-culture-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 0;
    font-size: 36px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.gb-culture-item {
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
}

.gb-culture-item-1,
.gb-culture-item-3 {
    flex-direction: column;
}

.gb-culture-item-2,
.gb-culture-item-4 {
    flex-direction: column-reverse;
}

.gb-culture-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.gb-culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gb-culture-item:hover .gb-culture-image img {
    transform: scale(1.05);
}

.gb-culture-content {
      padding: 30px;
      height: 280px;
    box-sizing: border-box;
}

.gb-culture-icon-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.gb-culture-line {
    width: 4px;
    height: 24px;
    background: #1658A0;
    margin-right: 12px;
}

.gb-culture-icon-wrap img {
    width: 24px;
    height: 24px;
}

.gb-culture-content h3 {
    font-size: 20px;
   
    font-weight: bold;
    color: #1A2C40;
    margin: 0 0 15px 0;
     margin-left: 15px;
}

.gb-culture-content p {
    font-size: 18px;

    color: #1A2C40;
    line-height: 1.6;
    margin: 0;
        margin-left: 15px;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-culture-grid {
        grid-template-columns: 1fr;
    }

    .gb-culture-item-1,
    .gb-culture-item-2,
    .gb-culture-item-3,
    .gb-culture-item-4 {
        flex-direction: row;
    }

    .gb-culture-image {
        width: 50%;
        height: auto;
    }

    .gb-culture-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .gb-culture-item-2,
    .gb-culture-item-4 {
        flex-direction: row-reverse;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-culture {
        padding: 60px 0;
    }

    .gb-culture-inner {
        padding: 0 15px;
    }

    .gb-culture-bg h2 {
        font-size: 28px;
    }

    .gb-culture-item-1,
    .gb-culture-item-2,
    .gb-culture-item-3,
    .gb-culture-item-4 {
        flex-direction: column;
    }

    .gb-culture-item-2,
    .gb-culture-item-4 {
        flex-direction: column;
    }

    .gb-culture-image {
        width: 100%;
        height: 200px;
    }

    .gb-culture-content {
        width: 100%;
        padding: 25px;
    }

    .gb-culture-content h3 {
        font-size: 18px;
    }

    .gb-culture-content p {
        font-size: 13px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-culture-bg h2 {
        font-size: 22px;
    }

    .gb-culture-image {
        height: 160px;
    }

    .gb-culture-content {
        padding: 20px;
    }

    .gb-culture-content h3 {
        font-size: 16px;
    }

    .gb-culture-content p {
        font-size: 12px;
    }
}

/* 团队成员模块样式 */
.gb-team {
    padding: 80px 0;
}

.gb-team-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-team-title {
    margin-bottom: 50px;
}

.gb-team-bg {
    position: relative;
    display: inline-block;
}

.gb-team-bg img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.gb-team-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 0;
    font-size: 36px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gb-team-item {
    display: flex;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 4px 4px 15px rgba(147, 128, 185, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gb-team-item:hover {
    background: #1658A0;
    transform: translateY(-5px);
}

.gb-team-left {
    flex: 0 0 48%;
    background: url('../images/teambg.png') no-repeat center center;
    background-size: 100% 100%;
    position: relative;
    transition: background-image 0.3s ease;
}

.gb-team-item:hover .gb-team-left {
     background: url('../images/teambg2.png') no-repeat center center;
    background-size: 100% 100%;
}

.gb-team-photo-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gb-team-photo-wrap img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-team-right {
    flex: 1;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.gb-team-info {
    margin-bottom: 20px;
}

.gb-team-info h3 {
    font-size: 22px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.gb-team-item:hover .gb-team-info h3 {
    color: #ffffff;
}

.gb-team-position {
    color: #1658A0;
    transition: color 0.3s ease;
}

.gb-team-item:hover .gb-team-position {
    color: rgba(255, 255, 255, 0.8);
}

.gb-team-details {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.gb-team-details li {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}


.gb-team-icon-wrap {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.gb-team-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.gb-team-icon-default {
    display: block;
    opacity: 1;
}

.gb-team-icon-hover {
    display: none;
    opacity: 0;
}

.gb-team-item:hover .gb-team-icon-default {
    display: none;
    opacity: 0;
}

.gb-team-item:hover .gb-team-icon-hover {
    display: block;
    opacity: 1;
}

.gb-team-detail-title {
    font-weight: bold;
    color: #1658A0;
    transition: color 0.3s ease;
}

.gb-team-item:hover .gb-team-detail-title {
    color: #ffffff;
}

.gb-team-detail-text {
    
    color: #666666;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.gb-team-item:hover .gb-team-detail-text {
    color: rgba(255, 255, 255, 0.8);
}

.gb-team-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #1658A0;
    border-radius: 20px;
    color: #1658A0;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    width: fit-content;
    transition: all 0.3s ease;
}

.gb-team-btn-icon-wrap {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
    flex-shrink: 0;
}

.gb-team-btn-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: auto;
    transition: opacity 0.3s ease;
}

.gb-team-btn-icon-default {
    display: block;
    opacity: 1;
}






.gb-team-item:hover .gb-team-btn {
    background: #ffffff;
    color: #1658A0;
    border-color: #ffffff;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-team-grid {
        grid-template-columns: 1fr;
    }

    .gb-team-item {
        flex-direction: column;
    }

    .gb-team-left {
        flex: 0 0 200px;
    }

    .gb-team-photo-wrap {
        position: static;
        transform: none;
        width: 100%;
        height: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .gb-team-photo-wrap img {
        max-height: 160px;
        object-fit: contain;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-team {
        padding: 60px 0;
    }

    .gb-team-inner {
        padding: 0 15px;
    }

    .gb-team-bg h2 {
        font-size: 28px;
    }

    .gb-team-right {
        padding: 25px;
    }

    .gb-team-info h3 {
        font-size: 20px;
    }

    .gb-team-detail-text {
        font-size: 12px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-team-bg h2 {
        font-size: 22px;
    }

    .gb-team-left {
        flex: 0 0 150px;
    }

    .gb-team-right {
        padding: 20px;
    }

    .gb-team-info h3 {
        font-size: 18px;
    }

    .gb-team-details li {
        flex-direction: column;
        gap: 5px;
    }

    .gb-team-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 公司历程模块样式 */
.gb-history {
    padding: 80px 0;
    background: url('../images/lcbg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}


.gb-history-inner {
    position: relative;
    z-index: 1;
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-history-title {
    text-align: center;
    margin-bottom: 60px;
}

.gb-history-bg {
    position: relative;
    display: inline-block;
}

.gb-history-bg img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.gb-history-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-history-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.gb-history-prev,
.gb-history-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gb-history-prev:hover,
.gb-history-next:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gb-history-prev img,
.gb-history-next img {
    width: 20px;
    height: 20px;
}

.gb-history-content {
    width: 80%;
    overflow: hidden;
    position: relative;
}

.gb-history-slide {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.gb-history-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gb-history-left h3 {
    font-size: 72px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0 0 20px 0;
    line-height: 1;
}

.gb-history-left p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.gb-history-right {
    flex: 0 0 400px;
}

.gb-history-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gb-history-dots {
    position: relative;
    padding-top: 30px;
}

.gb-history-dots-line {
    position: absolute;
    top: 47px;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right, #939393, #939393 8px, transparent 8px, transparent 12px);
}

.gb-history-dots-wrap {
    display: flex;
    justify-content: space-evenly;
    position: relative;
    z-index: 1;
}

.gb-history-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.gb-history-dot-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #939393;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.gb-history-dot-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
}

.gb-history-dot-year {
    font-size: 14px;
    color: #939393;
    transition: all 0.3s ease;
    order: 2;
}

.gb-history-dot-active .gb-history-dot-circle {
    background: #1658A0;
}

.gb-history-dot-active .gb-history-dot-arrow {
    border-top-color: #1658A0;
    opacity: 1;
}

.gb-history-dot-active .gb-history-dot-year {
    color: #1658A0;
    order: 1;
    margin-bottom: 5px;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-history-item {
        flex-direction: column;
        gap: 30px;
    }

    .gb-history-right {
        flex: 1;
    }

    .gb-history-left h3 {
        font-size: 56px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-history {
        padding: 60px 0;
    }

    .gb-history-inner {
        padding: 0 15px;
    }

    .gb-history-title {
        margin-bottom: 40px;
    }

    .gb-history-bg h2 {
        font-size: 28px;
    }

    .gb-history-carousel {
        margin-bottom: 40px;
        gap: 15px;
    }

    .gb-history-prev,
    .gb-history-next {
        width: 40px;
        height: 40px;
    }

    .gb-history-left h3 {
        font-size: 48px;
    }

    .gb-history-left p {
        font-size: 14px;
    }

    .gb-history-dot-year {
        font-size: 12px;
    }

    .gb-history-dot-circle {
        width: 12px;
        height: 12px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-history-bg h2 {
        font-size: 22px;
    }

    .gb-history-left h3 {
        font-size: 36px;
    }

    .gb-history-dot-year {
        font-size: 11px;
    }
}

/* 荣誉资质模块样式 */
.gb-honor {
    padding: 80px 0;
}

.gb-honor-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-honor-title {
    text-align: center;
    margin-bottom: 60px;
}

.gb-honor-bg {
    position: relative;
    display: inline-block;
}

.gb-honor-bg img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.gb-honor-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-honor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-evenly;
}

.gb-honor-item {
    width: calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.gb-honor-item:hover {
    transform: translateY(-10px);
}

.gb-honor-item-first-row {
    width: calc(30% - 15px);
}

.gb-honor-img {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.gb-honor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gb-honor-item:hover .gb-honor-img img {
    transform: scale(1.05);
}

.gb-honor-info {
    text-align: center;
}

.gb-honor-year {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #1658A0;
    margin-bottom: 8px;
}

.gb-honor-info p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-honor-item {
        width: calc(50% - 15px);
    }

    .gb-honor-item-first-row {
        width: calc(50% - 15px);
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-honor {
        padding: 60px 0;
    }

    .gb-honor-inner {
        padding: 0 15px;
    }

    .gb-honor-title {
        margin-bottom: 40px;
    }

    .gb-honor-bg h2 {
        font-size: 28px;
    }

    .gb-honor-list {
        gap: 20px;
    }

    .gb-honor-item {
        width: 100%;
    }

    .gb-honor-item-first-row {
        width: 100%;
    }

    .gb-honor-info p {
        font-size: 13px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-honor-bg h2 {
        font-size: 22px;
    }

    .gb-honor-info p {
        font-size: 12px;
    }
}

/* 公司资质模块样式 */
.gb-qualification {
    padding: 80px 0;
    background: #f8f9fa;
}

.gb-qualification-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-qualification-title {
    text-align: center;
    margin-bottom: 60px;
}

.gb-qualification-bg {
    position: relative;
    display: inline-block;
}

.gb-qualification-bg img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.gb-qualification-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-qualification-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
        align-items: center;
}

.gb-qualification-item {
    width: calc(25% - 22.5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.gb-qualification-item:hover {
    transform: translateY(-10px);
}

.gb-qualification-img {
    width: 100%;

    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.gb-qualification-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gb-qualification-item:hover .gb-qualification-img img {
    transform: scale(1.05);
}

.gb-qualification-info {
    text-align: center;
}

.gb-qualification-info p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-qualification-item {
        width: calc(50% - 15px);
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-qualification {
        padding: 60px 0;
    }

    .gb-qualification-inner {
        padding: 0 15px;
    }

    .gb-qualification-title {
        margin-bottom: 40px;
    }

    .gb-qualification-bg h2 {
        font-size: 28px;
    }

    .gb-qualification-list {
        gap: 20px;
    }

    .gb-qualification-item {
        width: 100%;
    }

    .gb-qualification-info p {
        font-size: 13px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-qualification-bg h2 {
        font-size: 22px;
    }

    .gb-qualification-info p {
        font-size: 12px;
    }
}

/* 联系我们模块样式 */
.gb-contact {
    padding: 80px 0;
    background: #f0f4f8;
}

.gb-contact-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.gb-contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gb-contact-title {
    text-align: center;
    margin-bottom: 40px;
}

.gb-contact-bg {
    position: relative;
    display: inline-block;
}

.gb-contact-bg img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.gb-contact-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gb-form-group {
    margin-bottom: 15px;
}

.gb-form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gb-form-input:focus {
    outline: none;
    border-color: #1658A0;
    box-shadow: 0 0 0 3px rgba(22, 88, 160, 0.1);
}

.gb-form-input::placeholder {
    color: #999999;
}

.gb-form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    background: #ffffff;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.gb-form-select:focus {
    outline: none;
    border-color: #1658A0;
}

.gb-form-group-textarea {
    flex: 1;
    min-height: 120px;
}

.gb-form-textarea {
    width: 100%;
    height: 100%;
    min-height: 120px;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    background: #ffffff;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gb-form-textarea:focus {
    outline: none;
    border-color: #1658A0;
    box-shadow: 0 0 0 3px rgba(22, 88, 160, 0.1);
}

.gb-form-textarea::placeholder {
    color: #999999;
}

.gb-contact-submit {
    align-self: center;
    padding: 14px 40px;
    background: #1658A0;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.gb-contact-submit img {
    width: 20px;
    height: auto;
    transition: transform 0.3s ease;
}

.gb-contact-submit:hover {
    background: #1a68b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(22, 88, 160, 0.3);
}

.gb-contact-submit:hover img {
    transform: translateX(3px);
}

.gb-contact-right {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.gb-contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-contact-inner {
        flex-direction: column;
    }

    .gb-contact-right img {
        height: 400px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-contact {
        padding: 60px 0;
    }

    .gb-contact-inner {
        padding: 0 15px;
        gap: 30px;
    }

    .gb-contact-left {
        padding: 30px 20px;
    }

    .gb-contact-title {
        margin-bottom: 30px;
    }

    .gb-contact-bg h2 {
        font-size: 26px;
    }

    .gb-contact-submit {
        padding: 12px 30px;
        font-size: 14px;
    }

    .gb-contact-right img {
        height: 300px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-contact-bg h2 {
        font-size: 22px;
    }

    .gb-form-input,
    .gb-form-select,
    .gb-form-textarea {
        padding: 12px 14px;
        font-size: 13px;
    }

    .gb-contact-submit {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* 设计与研究模块样式 */
.gb-research {
    padding: 80px 0;
    background: #ffffff;
}

.gb-research-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-research-title {
    margin-bottom: 40px;
}

.gb-research-bg {
    position: relative;
    display: inline-block;
}

.gb-research-bg img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.gb-research-bg h2 {
    position: absolute;
    bottom: 24%;
    left: 0;
    font-size: 32px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-research-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gb-research-tab {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #1658A0;
    background: transparent;
    border: 2px solid #1658A0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gb-research-tab:hover {
    background: rgba(22, 88, 160, 0.1);
}

.gb-research-tab-active {
    background: #1658A0;
    color: #ffffff;
}

.gb-research-content {
    position: relative;
}

.gb-research-panel {
    display: none;
    flex-direction: row;
}

.gb-research-panel-active {
    display: flex;
}

.gb-research-left {
    width: 50%;
    position: relative;
    background: linear-gradient(to right, #1658A0 0%, rgba(22, 88, 160, 0.2) 100%);
    padding: 40px;
    box-sizing: border-box;
}

.gb-research-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.gb-research-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.gb-research-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.gb-research-text h3 {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.gb-research-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.gb-research-text li {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 8px;
}

.gb-research-text li:last-child {
    margin-bottom: 0;
}

.gb-research-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
}

.gb-research-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* .gb-research-btn:hover {
    background: #ffffff;
    color: #1658A0;
} */

.gb-research-btn img {
    width: 20px;
    height: auto;
}

.gb-research-right {
    width: 50%;
}

.gb-research-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-research-panel {
        flex-direction: column;
    }

    .gb-research-left {
        width: 100%;
        padding: 30px;
    }

    .gb-research-right {
        width: 100%;
        height: 300px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-research {
        padding: 60px 0;
    }

    .gb-research-inner {
        padding: 0 15px;
    }

    .gb-research-title {
        margin-bottom: 30px;
    }

    .gb-research-bg h2 {
        font-size: 24px;
    }

    .gb-research-tabs {
        gap: 15px;
        margin-bottom: 20px;
    }

    .gb-research-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .gb-research-left {
        padding: 25px;
    }

    .gb-research-text h3 {
        font-size: 22px;
    }

    .gb-research-text li {
        font-size: 13px;
    }

    .gb-research-right {
        height: 250px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-research-bg h2 {
        font-size: 20px;
    }

    .gb-research-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .gb-research-text h3 {
        font-size: 20px;
    }

    .gb-research-text li {
        font-size: 12px;
    }

    .gb-research-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* 改进服务模块样式 */
.gb-improve {
    padding: 80px 0;
    background: #ffffff;
}

.gb-improve-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-improve-title {
    margin-bottom: 40px;
}

.gb-improve-bg {
    position: relative;
    display: inline-block;
}

.gb-improve-bg img {
    width: 100%;
    height: auto;
}

.gb-improve-bg h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 32px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-improve-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.gb-improve-item {
    width: calc(33.33% - 20px);
}
.gb-improve-item.gb-improve-item2 {
    width: calc(25% - 23px);
}
.gb-improve-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.gb-improve-img-wrap img:first-child {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.gb-improve-item.gb-improve-item2 .gb-improve-img-wrap img:first-child {
    height: 480px;
}
.gb-improve-item .gb-improve-gradient {
    position: absolute;
    top: 8%;
    left: 10%;
    width: 20%;
    height: 50%;
    background: linear-gradient(to bottom, #1658A0, transparent);
    pointer-events: none;
}
.gb-improve-item.gb-improve-item2 .gb-improve-gradient {
    position: absolute;
    top: 8%;
    left: 10%;
    width: 22%;
    height: 50%;
    background: linear-gradient(to bottom, #1658A0, transparent);
    pointer-events: none;
}

.gb-improve-icon {
    position: absolute;
    top: 13%;
    left: 15%;
    width: 50px;
    height: 50px;
    z-index: 2;
}

.gb-improve-img-wrap h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    z-index: 2;
    margin: 0;
    line-height: 1.5;
}
.gb-improve-item.gb-improve-item2 .gb-improve-img-wrap h3 {
    top: 36%;
}
.gb-improve-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 25px;
    text-decoration: none;
    z-index: 2;
    transition: all 0.3s ease;
}

.gb-improve-btn-icon {
    width: 20px!important;
    height: auto!important;
}

.gb-improve-item:hover .gb-improve-btn {
    background: #ffffff;
    color: #1658A0;
}

.gb-improve-item:hover .gb-improve-btn-icon {
    content: url("../images/jt1.png");
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-improve-item {
        width: calc(50% - 15px);
    }

    .gb-improve-img-wrap img:first-child {
        height: 300px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-improve {
        padding: 60px 0;
    }

    .gb-improve-inner {
        padding: 0 15px;
    }

    .gb-improve-title {
        margin-bottom: 30px;
    }

    .gb-improve-bg h2 {
        font-size: 26px;
    }

    .gb-improve-list {
        gap: 20px;
    }

    .gb-improve-item {
        width: 100%;
    }

    .gb-improve-img-wrap img:first-child {
        height: 280px;
    }

    .gb-improve-img-wrap h3 {
        font-size: 16px;
    }

    .gb-improve-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-improve-bg h2 {
        font-size: 22px;
    }

    .gb-improve-img-wrap img:first-child {
        height: 250px;
    }

    .gb-improve-img-wrap h3 {
        font-size: 14px;
    }

    .gb-improve-icon {
        width: 40px;
        height: 40px;
        top: 20px;
        left: 20px;
    }
}

/* 技术平台模块样式 */
.gb-tech-platform {
    padding: 80px 0;
    background: #ffffff;
}

.gb-tech-platform-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-tech-item {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gb-tech-item:last-child {
    margin-bottom: 0;
}

.gb-tech-item-odd {
    flex-direction: row;
}

.gb-tech-item-even {
    flex-direction: row-reverse;
}

.gb-tech-image {
    width: 55%;
    position: relative;
}

.gb-tech-main-img {
    position: relative;
    height: 500px;
}

.gb-tech-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-tech-img-title {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
}

.gb-tech-thumbs {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
}

.gb-tech-thumb {
    flex: 1;
    cursor: pointer;
    border: 2px solid #51A2C7;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(81, 162, 199, 0.5);
    transition: all 0.3s ease;
}

.gb-tech-thumb:hover {
    background: rgba(81, 162, 199, 0.8);
}

.gb-tech-thumb-active {
    background: transparent;
}

.gb-tech-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.gb-tech-content {
    width: 45%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.gb-tech-content-odd {
    background: linear-gradient(to right, #ffffff, #D1F1FF);
}

.gb-tech-content-even {
    background: linear-gradient(to right, #D1F1FF, #ffffff);
}

.gb-tech-title {
    margin-bottom: 30px;
}

.gb-tech-title-bg {
    position: relative;
    display: inline-block;
}

.gb-tech-title-bg img {
    width: 100%;
    height: auto;
}

.gb-tech-title-bg h2 {
    position: absolute;
    bottom: 30px;
    left: 0;
    font-size: 28px;
    font-weight: bold;
    color: #1658A0;
    margin: 0;
}

.gb-tech-details {
    flex: 1;
}

.gb-tech-detail {
    margin-bottom: 20px;
}

.gb-tech-detail:last-child {
    margin-bottom: 0;
}

.gb-tech-detail-label {
    font-size: 14px;
    font-weight: bold;
    color: #0742AC;
    display: block;
    margin-bottom: 5px;
}

.gb-tech-detail-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

.gb-tech-btn {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    color: #1658A0;
    background: transparent;
    border: 1px solid #1658A0;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.gb-tech-btn img {
    width: 20px;
    height: auto;
}

.gb-tech-item:hover .gb-tech-btn {
    background: #ffffff;
}

/* 图片标题数组 */
.gb-tech-titles {
    display: none;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-tech-item {
        flex-direction: column !important;
    }

    .gb-tech-image {
        width: 100%;
    }

    .gb-tech-content {
        width: 100%;
        padding: 30px;
    }

    .gb-tech-main-img {
        height: 400px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-tech-platform {
        padding: 60px 0;
    }

    .gb-tech-platform-inner {
        padding: 0 15px;
    }

    .gb-tech-item {
        margin-bottom: 30px;
    }

    .gb-tech-main-img {
        height: 300px;
    }

    .gb-tech-img-title {
        font-size: 18px;
        padding: 8px 15px;
    }

    .gb-tech-thumb img {
        height: 60px;
    }

    .gb-tech-content {
        padding: 25px;
    }

    .gb-tech-title-bg h2 {
        font-size: 22px;
    }

    .gb-tech-detail-label,
    .gb-tech-detail-text {
        font-size: 13px;
    }

    .gb-tech-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-tech-main-img {
        height: 250px;
    }

    .gb-tech-img-title {
        font-size: 16px;
        padding: 6px 12px;
    }

    .gb-tech-title-bg h2 {
        font-size: 20px;
    }

    .gb-tech-detail-label,
    .gb-tech-detail-text {
        font-size: 12px;
    }
}

/* 技术方案模块样式 */
.gb-solution {
    padding: 80px 0;
    background: #f8f9fa;
}

.gb-solution-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-solution-title {
    text-align: center;
    margin-bottom: 50px;
}

.gb-solution-bg {
    position: relative;
    display: inline-block;
}

.gb-solution-bg img {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

.gb-solution-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-solution-carousel {
    position: relative;
}

.gb-solution-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gb-solution-prev,
.gb-solution-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gb-solution-prev:hover,
.gb-solution-next:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gb-solution-prev img,
.gb-solution-next img {
    width: 20px;
    height: 20px;
}

.gb-solution-wrapper {
    overflow: hidden;
}

.gb-solution-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.gb-solution-slide {
    display: flex;
    gap: 30px;
    width: 100%;
    flex-shrink: 0;
}

.gb-solution-item {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gb-solution-item:hover {
    transform: translateY(-5px);
}

.gb-solution-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.gb-solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-solution-content {
    padding: 25px;
    background: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
}

.gb-solution-item:hover .gb-solution-content {
    background: #1658A0;
}

.gb-solution-content h3 {
    font-size: 15px;
    font-weight: bold;
    color: #9C9C9C;
    margin: 0 0 20px 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.gb-solution-item:hover .gb-solution-content h3 {
    color: #ffffff;
    text-align: left;
}

.gb-solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    font-size: 13px;
    font-weight: 500;
    color: #1658A0;
    background: #fff;
    border: 1px solid #1658A0;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gb-solution-btn img {
    width: 18px;
    height: auto;
}

.gb-solution-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.gb-solution-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #1658A0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gb-solution-dot-active {
    background: #1658A0;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-solution-slide {
        flex-direction: column;
    }

    .gb-solution-item {
        width: 100%;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-solution {
        padding: 60px 0;
    }

    .gb-solution-inner {
        padding: 0 15px;
    }

    .gb-solution-title {
        margin-bottom: 40px;
    }

    .gb-solution-bg h2 {
        font-size: 28px;
    }

    .gb-solution-nav {
        top: -50px;
        right: 0;
    }

    .gb-solution-prev,
    .gb-solution-next {
        width: 40px;
        height: 40px;
    }

    .gb-solution-img {
        height: 220px;
    }

    .gb-solution-content {
        padding: 20px;
    }

    .gb-solution-content h3 {
        font-size: 14px;
    }

    .gb-solution-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-solution-bg h2 {
        font-size: 24px;
    }

    .gb-solution-img {
        height: 180px;
    }

    .gb-solution-content h3 {
        font-size: 13px;
    }
}

/* 下载中心模块样式 */
.gb-download {
    padding: 80px 0;
    background: #f8f9fa;
}

.gb-download-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-download-title {
    text-align: center;
    margin-bottom: 50px;
}

.gb-download-bg {
    position: relative;
    display: inline-block;
}

.gb-download-bg img {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

.gb-download-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-download-container {
    display: flex;
    gap: 30px;
}

.gb-download-sidebar {
    width: 280px;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 4px 4px 20px rgba(147, 112, 219, 0.1);
    box-sizing: border-box;
}

.gb-download-search {
    position: relative;
    margin-bottom: 20px;
}

.gb-download-input {
    width: 100%;
    padding: 10px 35px 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    box-sizing: border-box;
}

.gb-download-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

.gb-download-search-btn img {
    width: 18px;
    height: 18px;
}

.gb-download-categories {
    padding-top: 10px;
}

.gb-download-category {
    padding: 12px 15px;
    font-size: 14px;
    color: #1A2C40;
    cursor: pointer;
    border-bottom: 1px dashed #e0e0e0;
    transition: color 0.3s ease;
}

.gb-download-category:last-child {
    border-bottom: none;
}

.gb-download-category-title {
    font-weight: bold;
    color: #666666;
    cursor: default;
}

.gb-download-category-active {
    color: #1658A0;
}

.gb-download-content {
    flex: 1;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 4px 4px 20px rgba(147, 112, 219, 0.1);
}

.gb-download-header {
    display: flex;
    background: #1658A0;
    padding: 15px 20px;
    align-items: center;
}

.gb-download-header-item {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.gb-download-header-name {
    flex: 2;
}

.gb-download-header-date {
    flex: 1;
    text-align: center;
    line-height: 1.8;
}

.gb-download-header-action {
    flex: 1;
    text-align: right;
}

.gb-download-list {
    padding: 0 20px;
}

.gb-download-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #e0e0e0;
    transition: all 0.3s ease;
}

.gb-download-item:last-child {
    border-bottom: none;
}


.gb-download-name {
    flex: 2;
    font-size: 14px;
    color: #BABABA;
    transition: color 0.3s ease;
}

.gb-download-item:hover .gb-download-name {
    color: #1A2C40;
}

.gb-download-date {
    flex: 1;
    color: #BABABA;
    text-align: center;
    transition: color 0.3s ease;
}

.gb-download-item:hover .gb-download-date {
    color: #1A2C40;
}

.gb-download-download {
    flex: 1;
    text-align: right;
}

.gb-download-icon {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.gb-download-item:hover .gb-download-icon {
    content: url("static/images/dico2.png");
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-download-container {
        flex-direction: column;
    }

    .gb-download-sidebar {
        width: 100%;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-download {
        padding: 60px 0;
    }

    .gb-download-inner {
        padding: 0 15px;
    }

    .gb-download-title {
        margin-bottom: 40px;
    }

    .gb-download-bg h2 {
        font-size: 28px;
    }

    .gb-download-header {
        padding: 12px 15px;
    }

    .gb-download-header-item {
        font-size: 12px;
    }

    .gb-download-item {
        padding: 12px 0;
    }

    .gb-download-name,
    .gb-download-date {
        font-size: 13px;
    }

    .gb-download-icon {
        width: 25px;
        height: 25px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-download-bg h2 {
        font-size: 24px;
    }

    .gb-download-header-item {
        font-size: 11px;
    }

    .gb-download-name,
    .gb-download-date {
        font-size: 12px;
    }
}

/* 案例模块样式 */
.gb-case {
    padding: 80px 0;
    background: #e8f0f8;
}

.gb-case-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-case-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gb-case-tab {
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 500;
    color: #1658A0;
    background: transparent;
    border: 2px solid #1658A0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gb-case-tab:hover {
    background: rgba(22, 88, 160, 0.1);
}

.gb-case-tab-active {
    background: #1658A0;
    color: #ffffff;
}

.gb-case-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gb-case-item {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gb-case-img {
    width: 40%;
    height: 250px;
}

.gb-case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-case-content {
    width: 60%;
    padding: 30px;
    background: #ffffff;
    box-sizing: border-box;
    border-right: 1px solid rgba(147, 112, 219, 0.3);
    border-bottom: 1px solid rgba(147, 112, 219, 0.3);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.gb-case-item:hover .gb-case-content {
    background: #1658A0;
}

.gb-case-date {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.gb-case-year {
    font-size: 32px;
    font-weight: bold;
    color: #2F364C;
    transition: color 0.3s ease;
}

.gb-case-item:hover .gb-case-year {
    color: #ffffff;
}

.gb-case-day {
    font-size: 16px;
    color: #9C9C9C;
    transition: color 0.3s ease;
}

.gb-case-item:hover .gb-case-day {
    color: #ffffff;
}

.gb-case-info {
    flex: 1;
}

.gb-case-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

.gb-case-item:hover .gb-case-info h3 {
    color: #ffffff;
}

.gb-case-info p {
    font-size: 14px;
    color: #9C9C9C;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.gb-case-item:hover .gb-case-info p {
    color: #ffffff;
}

.gb-case-btn {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    color: #1658A0;
    background: #fff;
    border: 1px solid #1658A0;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.gb-case-btn img {
    width: 18px;
    height: auto;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-case-item {
        flex-direction: column;
    }

    .gb-case-img {
        width: 100%;
        height: 200px;
    }

    .gb-case-content {
        width: 100%;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-case {
        padding: 60px 0;
    }

    .gb-case-inner {
        padding: 0 15px;
    }

    .gb-case-tabs {
        margin-bottom: 30px;
        gap: 15px;
    }

    .gb-case-tab {
        padding: 10px 25px;
        font-size: 14px;
    }

    .gb-case-list {
        gap: 20px;
    }

    .gb-case-content {
        padding: 20px;
    }

    .gb-case-year {
        font-size: 28px;
    }

    .gb-case-day {
        font-size: 14px;
    }

    .gb-case-info h3 {
        font-size: 18px;
    }

    .gb-case-info p {
        font-size: 13px;
    }

    .gb-case-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-case-tab {
        padding: 8px 20px;
        font-size: 13px;
    }

    .gb-case-year {
        font-size: 24px;
    }

    .gb-case-info h3 {
        font-size: 16px;
    }

    .gb-case-info p {
        font-size: 12px;
    }
}

/* 新闻列表模块样式 */
.gb-newslist {
    padding: 80px 0;
    background: #f8f9fa;
}

.gb-newslist-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-newslist-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gb-newslist-tab {
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 500;
    color: #1658A0;
    background: transparent;
    border: 2px solid #1658A0;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gb-newslist-tab:hover {
    background: rgba(22, 88, 160, 0.1);
}

.gb-newslist-tab-active {
    background: #1658A0;
    color: #ffffff;
}

.gb-newslist-container {
    display: flex;
    gap: 30px;
}

.gb-newslist-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.gb-newslist-search {
    position: relative;
    margin-bottom: 20px;
}

.gb-newslist-input {
    width: 100%;
    padding: 10px 35px 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    box-sizing: border-box;
}

.gb-newslist-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

.gb-newslist-search-btn img {
    width: 18px;
    height: 18px;
}

.gb-newslist-categories {
    padding-top: 10px;
}

.gb-newslist-category-title {
    font-weight: bold;
    color: #666666;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e0e0e0;
}

.gb-newslist-category {
    padding: 12px 15px;
    font-size: 14px;
    border-bottom: 1px dashed #e0e0e0;
    transition: all 0.3s ease;
}

.gb-newslist-category:last-child {
    border-bottom: none;
}

.gb-newslist-category-header {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.gb-newslist-category-icon {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    font-weight: bold;
    color: #1658A0;
    transition: transform 0.3s ease;
}

.gb-newslist-category-name {
    flex: 1;
    color: #1A2C40;
    text-decoration: none;
}

.gb-newslist-category-name:hover {
    color: #1658A0;
}

.gb-newslist-category-children {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.gb-newslist-category-open .gb-newslist-category-children {
    max-height: 500px;
}

.gb-newslist-category-open .gb-newslist-category-icon {
    transform: rotate(45deg);
}

.gb-newslist-category-child {
    display: block;
    padding: 8px 15px 8px 35px;
    font-size: 14px;
    color: #1A2C40;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gb-newslist-category-child:hover {
    color: #1658A0;
}

.gb-newslist-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gb-newslist-item {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gb-newslist-img {
    width: 40%;
    height: 250px;
}

.gb-newslist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-newslist-content {
    width: 60%;
    padding: 30px;
    background: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.gb-newslist-item:hover .gb-newslist-content {
    background: #1658A0;
}

.gb-newslist-date {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.gb-newslist-year {
    font-size: 32px;
    font-weight: bold;
    color: #2F364C;
    transition: color 0.3s ease;
}

.gb-newslist-item:hover .gb-newslist-year {
    color: #ffffff;
}

.gb-newslist-day {
    font-size: 16px;
    color: #9C9C9C;
    transition: color 0.3s ease;
}

.gb-newslist-item:hover .gb-newslist-day {
    color: #ffffff;
}

.gb-newslist-info {
    flex: 1;
}

.gb-newslist-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: #2F364C;
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

.gb-newslist-item:hover .gb-newslist-info h3 {
    color: #ffffff;
}

.gb-newslist-info p {
    font-size: 14px;
    color: #9C9C9C;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.gb-newslist-item:hover .gb-newslist-info p {
    color: #ffffff;
}

.gb-newslist-btn {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    color: #1658A0;
    background: #ffffff;
    border: 1px solid #1658A0;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.gb-newslist-btn img {
    width: 18px;
    height: auto;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-newslist-container {
        flex-direction: column;
    }

    .gb-newslist-sidebar {
        width: 100%;
    }

    .gb-newslist-item {
        flex-direction: column;
    }

    .gb-newslist-img {
        width: 100%;
        height: 200px;
    }

    .gb-newslist-content {
        width: 100%;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-newslist {
        padding: 60px 0;
    }

    .gb-newslist-inner {
        padding: 0 15px;
    }

    .gb-newslist-tabs {
        margin-bottom: 30px;
        gap: 15px;
    }

    .gb-newslist-tab {
        padding: 10px 25px;
        font-size: 14px;
    }

    .gb-newslist-list {
        gap: 20px;
    }

    .gb-newslist-content {
        padding: 20px;
    }

    .gb-newslist-year {
        font-size: 28px;
    }

    .gb-newslist-day {
        font-size: 14px;
    }

    .gb-newslist-info h3 {
        font-size: 18px;
    }

    .gb-newslist-info p {
        font-size: 13px;
    }

    .gb-newslist-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-newslist-tab {
        padding: 8px 20px;
        font-size: 13px;
    }

    .gb-newslist-year {
        font-size: 24px;
    }

    .gb-newslist-info h3 {
        font-size: 16px;
    }

    .gb-newslist-info p {
        font-size: 12px;
    }
}

/* 人才发展模块样式 */
.gb-career {
    padding: 80px 0;
}

.gb-career-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-career-title {
    text-align: center;
    margin-bottom: 50px;
}

.gb-career-bg {
    position: relative;
    display: inline-block;
}

.gb-career-bg img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.gb-career-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-career-content {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.gb-career-content p {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    text-indent: 2em;
    margin: 0 0 25px 0;
}

.gb-career-content p:last-child {
    margin-bottom: 0;
}

.gb-career-contact {
    text-align: center;
    margin-bottom: 40px;
}

.gb-career-contact p {
    font-size: 16px;
    color: #333333;
    margin: 0;
}

.gb-career-email {
    color: #1658A0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.gb-career-email:hover {
    color: #0d3a70;
    text-decoration: underline;
}

.gb-career-btn-wrap {
    text-align: center;
}

.gb-career-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: #1658A0;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gb-career-btn:hover {
    background: #0d3a70;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(22, 88, 160, 0.3);
}

.gb-career-btn img {
    width: 20px;
    height: auto;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-career-content {
        max-width: 90%;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-career {
        padding: 60px 0;
    }

    .gb-career-inner {
        padding: 0 15px;
    }

    .gb-career-title {
        margin-bottom: 40px;
    }

    .gb-career-bg h2 {
        font-size: 28px;
    }

    .gb-career-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .gb-career-contact p {
        font-size: 14px;
    }

    .gb-career-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-career-bg h2 {
        font-size: 24px;
    }

    .gb-career-content p {
        font-size: 13px;
    }

    .gb-career-contact p {
        font-size: 13px;
    }

    .gb-career-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* 员工活动模块样式 */
.gb-activity {
    padding: 80px 0;
    background: #f8f9fa;
}

.gb-activity-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-activity-title {
    text-align: center;
    margin-bottom: 50px;
}

.gb-activity-bg {
    position: relative;
    display: inline-block;
}

.gb-activity-bg img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.gb-activity-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-activity-carousel {
    position: relative;
}

.gb-activity-nav {
    position: absolute;
    top: -55px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gb-activity-prev,
.gb-activity-next {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gb-activity-prev:hover,
.gb-activity-next:hover {
    background: #1658A0;
    transform: scale(1.1);
}

.gb-activity-prev img,
.gb-activity-next img {
    width: 20px;
    height: auto;
}

.gb-activity-prev:hover img,
.gb-activity-next:hover img {
    filter: brightness(0) invert(1);
}

.gb-activity-swiper {
    overflow: hidden;
    margin-bottom: 30px;
}

.gb-activity-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.gb-activity-slide {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gb-activity-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.gb-activity-item {
    flex: 1;
    border-radius: 12px;
    max-width: 500px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gb-activity-img {
    width: 100%;
    height: 340px;
}

.gb-activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-activity-content {
    padding: 20px;
    background: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
}

.gb-activity-item:hover .gb-activity-content {
    background: #1658A0;
}

.gb-activity-content h3 {
    font-size: 15px;
    font-weight: bold;
    color: #9C9C9C;
    margin: 0 0 15px 0;
    line-height: 1.5;
    transition: color 0.3s ease;
    height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.gb-activity-item:hover .gb-activity-content h3 {
    color: #ffffff;
}

.gb-activity-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #1658A0;
    background: #ffffff;
    border: 1px solid #1658A0;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gb-activity-btn img {
    width: 16px;
    height: auto;
}

.gb-activity-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gb-activity-dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 2px solid #1658A0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gb-activity-dot-active {
    background: #1658A0;
}

.gb-activity-dot:hover {
    transform: scale(1.2);
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-activity-row {
        flex-direction: column;
    }

    .gb-activity-item {
        width: 100%;
    }

    .gb-activity-img {
        height: 200px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-activity {
        padding: 60px 0;
    }

    .gb-activity-inner {
        padding: 0 15px;
    }

    .gb-activity-title {
        margin-bottom: 40px;
    }

    .gb-activity-bg h2 {
        font-size: 28px;
    }

    .gb-activity-nav {
        right: 15px;
    }

    .gb-activity-prev,
    .gb-activity-next {
        width: 40px;
        height: 40px;
    }

    .gb-activity-content h3 {
        font-size: 14px;
    }

    .gb-activity-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-activity-bg h2 {
        font-size: 24px;
    }

    .gb-activity-content h3 {
        font-size: 13px;
    }

    .gb-activity-btn {
        padding: 7px 15px;
        font-size: 11px;
    }
}

/* 招聘模块样式 */
.gb-recruitment {
    padding: 80px 0;
    background: #f8f9fa;
}

.gb-recruitment-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-recruitment-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.gb-recruitment-tab {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 500;
    color: #1658A0;
    background: transparent;
    border: 2px solid #1658A0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gb-recruitment-tab:hover {
    background: rgba(22, 88, 160, 0.1);
}

.gb-recruitment-tab-active {
    background: #1658A0;
    color: #ffffff;
}

.gb-recruitment-content {
    position: relative;
}

.gb-recruitment-panel {
    display: none;
}

.gb-recruitment-panel-active {
    display: block;
}

.gb-recruitment-title {
    margin-bottom: 30px;
}

.gb-recruitment-bg {
    position: relative;
    display: inline-block;
}

.gb-recruitment-bg img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.gb-recruitment-bg h2 {
    position: absolute;
    bottom: 10px;
    left: 0;
    font-size: 36px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-recruitment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gb-recruitment-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.gb-recruitment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gb-recruitment-header:hover {
    background: #f5f7fa;
}

.gb-recruitment-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
}

.gb-recruitment-arrow {
  
    height: 24px;
    transition: transform 0.3s ease;
}

.gb-recruitment-arrow.active {
    transform: rotate(-90deg);
}

.gb-recruitment-detail {
    padding: 25px;
    display: none;
    border-top: 1px dashed #e0e0e0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gb-recruitment-row {
    display: flex;
    gap: 30px;
}

.gb-recruitment-left {
    flex: 0 0 60%;
    padding-right: 30px;
    box-sizing: border-box;
}

.gb-recruitment-right {
    flex: 0 0 40%;
    padding-left: 30px;
    border-left: 1px dashed #e0e0e0;
    box-sizing: border-box;
}

.gb-recruitment-left h4,
.gb-recruitment-right h4 {
    font-size: 16px;
    font-weight: bold;
    color: #1658A0;
    margin: 0 0 15px 0;
}

.gb-recruitment-left ul,
.gb-recruitment-right ul {
    margin: 0;
    padding-left: 20px;
}

.gb-recruitment-left li,
.gb-recruitment-right li {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.gb-recruitment-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background: #1658A0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.gb-recruitment-btn:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(22, 88, 160, 0.3);
}

.gb-recruitment-btn img {
    width: 16px;
    height: auto;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-recruitment-row {
        flex-direction: column;
    }

    .gb-recruitment-left,
    .gb-recruitment-right {
        flex: 1;
        padding: 0;
        border: none;
    }

    .gb-recruitment-right {
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px dashed #e0e0e0;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-recruitment {
        padding: 60px 0;
    }

    .gb-recruitment-inner {
        padding: 0 15px;
    }

    .gb-recruitment-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .gb-recruitment-tab {
        width: 100%;
        max-width: 200px;
    }

    .gb-recruitment-bg h2 {
        font-size: 28px;
    }

    .gb-recruitment-header {
        padding: 15px 20px;
    }

    .gb-recruitment-header h3 {
        font-size: 16px;
    }

    .gb-recruitment-detail {
        padding: 20px;
    }

    .gb-recruitment-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-recruitment-bg h2 {
        font-size: 24px;
    }

    .gb-recruitment-header h3 {
        font-size: 15px;
    }

    .gb-recruitment-left li,
    .gb-recruitment-right li {
        font-size: 13px;
    }
}

/* 详情页模块样式 */
.gb-detail {
    padding: 60px 0;
    background: #ffffff;
}

.gb-detail-inner {
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gb-detail-title {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #e0e0e0;
}

.gb-detail-title h1 {
    font-size: 28px;
    font-weight: bold;
    color: #1A2C40;
    margin: 0;
    line-height: 1.4;
}

.gb-detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.gb-detail-meta-item {
    font-size: 14px;
    color: #666666;
}

.gb-detail-meta-label {
    color: #999999;
}

.gb-detail-meta-value {
    color: #1658A0;
    font-weight: 500;
}

.gb-detail-content {
    padding: 0;
}

.gb-detail-content-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

.gb-detail-content-text p {
    margin-bottom: 20px;
    text-indent: 2em;
}

.gb-detail-content-text img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

.gb-detail-content-text h2 {
    font-size: 22px;
    font-weight: bold;
    color: #1A2C40;
    margin: 30px 0 15px 0;
}

.gb-detail-content-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1658A0;
    margin: 25px 0 12px 0;
}

.gb-detail-content-text ul,
.gb-detail-content-text ol {
    margin: 15px 0;
    padding-left: 30px;
}

.gb-detail-content-text li {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 8px;
}

.gb-detail-content-text blockquote {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #1658A0;
    border-radius: 0 8px 8px 0;
}

.gb-detail-content-text blockquote p {
    margin: 0;
    text-indent: 0;
    color: #666666;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .gb-detail-title h1 {
        font-size: 24px;
    }

    .gb-detail-content-text p {
        font-size: 15px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {
    .gb-detail {
        padding: 40px 0;
    }

    .gb-detail-inner {
        padding: 0 15px;
    }

    .gb-detail-title {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .gb-detail-title h1 {
        font-size: 20px;
    }

    .gb-detail-meta {
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .gb-detail-meta-item {
        font-size: 13px;
    }

    .gb-detail-content-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .gb-detail-content-text h2 {
        font-size: 18px;
    }

    .gb-detail-content-text h3 {
        font-size: 16px;
    }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
    .gb-detail-title h1 {
        font-size: 18px;
    }

    .gb-detail-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .gb-detail-meta-item {
        font-size: 12px;
    }

    .gb-detail-content-text p {
        font-size: 13px;
    }
}
