

/* 主横幅区域 */
.hero-section {
    position: relative;
    height: 540px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/gw/assets/images/bg-home.png') center/cover;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* 承诺部分 */
.commitment-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
}

.commitment-separator {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.commitment-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* 关于我们部分 */
.about-section {
    padding: 80px 0;
    background: #FFFFFF;
}
.about-section .container {
    padding: 0 40px;
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0 40px;
}

.about-image {
    width: 474px;
    height: 356px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-title {
    font-size: 71.99px;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: right;
}

.company-name {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.about-description {
    font-size: .7rem;
    line-height: .9rem;
    color: dimgrey;
    margin-bottom: .8rem;
}

.about-text .about-title{
    font-weight: bold;
    /* font-size: 30px; */
    color: rgba(38, 87, 166, 1) !important;
}

.float-about {
    max-width: 540px;
    background: rgba(255, 255, 255, 1);
    color: dimgrey;
    padding: 50px 0px 25px 50px;
    position: absolute;
    top: 90px;
    right: 40px;
}
.float-about .company-name{
    color: rgb(40, 144, 218) !important;
}


.view-more-btn {
    background: #ffffff;
    color: #2657A6 !important;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: .8rem;
    transition: background 0.3s;
    border: 1px solid #2657A6;
}


/* 产品简介部分 */
.intro {
    background-image: linear-gradient(to right, #FFFFFf, #D4EAFF);
    padding: 55px 40px;
}
.product-section {
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #2657A6;
    margin-bottom: 3rem;
}

.product-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.product-tab {
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.product-tab.active {
    /*background: #3498db;*/
    color: rgba(38, 87, 166, 1);
    border-color: #3498db;
    font-weight: bold;
    border-bottom: 2px solid rgba(38, 87, 166, .6);
}

.product-content .product-item {
    display: flex;
    justify-content: start;
}

.product-image {
    width: 350px;
}

.product-image img {
    width: 350px;
    height: 329.5px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: transform 0.3s ease;
}
.product-image img:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: scale(1.05);
}

.product-text {
    width: 555px;
    height: 329.5px;
    background: #FFFFFF;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: .8rem;
    line-height: 1.2;
    color: #666;
}

/* 企业风采部分 */
.company-style-section {
    padding: 80px 40px;
    background: #FFFFFF;
}
.company-style-section .section-header .map-title{
    width: 420px;
    height: 42px;
    font-family: OPPOSans40, OPPOSans40;
    font-weight: 600;
    font-size: 55px;
    color: #F7F7F7;
    line-height: 18px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.company-style-section .section-header .company-section-title{
    width: 100%;
    position: relative;
    
}
.company-style-section .section-header .company-section-title .section-title-left{
    position: absolute;
    top: -27px;
    left: 0px;
}

.company-style-section .section-header .company-section-title .view-meetings-btn {
    border: none;
    cursor: pointer;
    width: 95px;
    height: 35.5px;
    background: url(/static/gw/assets/images/wangqihuiyi.png) center / cover;
    position: absolute;
    top: -27px;
    right: 0px;
}
.company-style-section .section-header .company-section-desc {
    color: #666;
    margin-top: 20px;
}

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

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.event-image {
    object-fit: cover;
    width: 100%;
    height: 226px;
    transition: .5s;
}
.event-image:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


.event-content {
    padding: 1.5rem;
}

.event-date {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: .85rem;
    color: rgba(38, 87, 166, 1);
    margin-bottom: 1rem;
    font-weight: bold;
}

.event-description {
    color: #666;
    font-size: 0.7rem;
    line-height: 1.6;
}

/* 业务版图部分 */
.business-map-section {
    background: white;
    position: relative;
}

.business-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}


.business-text {
    text-align: left;
    position: absolute;
    top: 159px;
    left: 50px;
    width: 43%;
}
.section-title-left{
    font-size: 30px;
    color: rgba(38, 87, 166, 1);
}
.business-map-title{
    font-size: 55px;
    font-weight: bold;
    color: rgba(229, 237, 245, 1);
    position: relative;
    bottom: -25px;
}
.business-subtitle {
    font-size: 22px;
    color: rgba(45, 45, 45, 1);
    margin-bottom: 1rem;
}

.business-description {
    font-size: .8rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.business-map {
    width: 100%;
    height: 655px;
    background-image: url('/static/gw/assets/images/map.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.business-map img {
    width: 100%;
    height: 655px;
}

/* 全国门店部分 */
.stores-section {
    padding: 80px 40px;
    background: rgba(255, 255, 255, 1);
    text-align: center;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.stores-section  .map-title{
    color: rgba(247, 247, 247, 1);
    font-size: 55px;
    line-height: 18.4px;
}
.stores-section  .section-title{
    color: rgba(38, 87, 166, 1);
    font-size: 30px;
}

.store-placeholder {
    background: #e9ecef;
    height: 200px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.store-placeholder:hover { 
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.store-placeholder.large {
    grid-column: span 2;
    height: 250px;
}
.store-placeholder.part1{
    height: 350px;
}
.store-placeholder.part2{
    height: 250px;
}

/* 合作伙伴部分 */
.partners-section{
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to right, rgba(255, 255, 255, 1),rgba(212, 234, 255, 1));
}
.partners-section .map-title{
    font-size: 55px;
    width: 421px;
    height: 42px;
    font-family: OPPOSans40, OPPOSans40;
    font-weight: 600;
    color: #E6EDF5;
    line-height: 18px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.partners-section .section-title{
    font-size: 30px;
    color: rgba(38, 87, 166, 1);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 221px;
    width: 241px;*/
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: unset;
    background: unset;
}

/* 荣誉资质部分 */
.honors-section {
    background: #FFFFFF;
}

.honors-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.honors-text {
    flex: 1;
}

.honors-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.honors-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.award-item {
    background: #3498db;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.award-year {
    font-size: 1rem;
    opacity: 0.8;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.certificate-item {
    background: white;
    border: 3px solid #f39c12;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.certificate-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}


@media screen and (max-width: 768px) {
    
    /* 关于我们-start */
    .about-content {
        display: block !important;
        position: relative;
        padding: 0 !important;
    }
    .about-section {
        padding: 0 !important;
    }
    .about-section .container {
        padding: 0 !important;
    }
    .about-image {
        width: 100% !important;
        min-height: 477px !important;
    }
    .about-image img {
        border-radius: 0 !important;
    }
    .about-text {
        width: 92%;
        margin: 0 auto;
        padding: 20px 0;
    }
    .about-text .about-title {
        font-size: 2rem !important;
        text-align: left;
    }
    .float-about {
        position: static !important;
        background-color: rgba(255,255,255,0.5) !important;
        padding: 0 !important;
    }
    /* 关于我们-end */


    /* 产品介绍-start */
    .intro {
        padding: 55px 5px;
    }
    .product-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .product-tab {
        font-size: 14px;
        margin: 0 auto;
    }
    .product-text {
        padding: 0 10px;
    }
    .product-title {
        font-size: 14px;
    }
    .product-description {
        font-size: 12px;
    }
    /* 产品介绍-end */


    /* 企业风采-start */
    .company-style-section {
        padding: 40px 10px;
    }
    .company-section-desc span {
        font-size: 13px !important;
    }
    .event-content {
        padding: 10px 4px;
    }
    .event-title {
        font-size: 13px !important;
    }
    .events-grid {
        display: block;
    }
    .event-card {
        margin-top: 20px;
    }
    /* 企业风采-end */


    /* 业务版图-start */
    .business-text {
        width: 90%;
        position: absolute;
        top: 16%;
        left: 5%;
    }
    /* 业务版图-end */


    /* 全国门店展示-start */
    .stores-section {
        padding: 40px 20px;
    }
    .stores-section .map-title {
        font-size: 40px !important;
    }
    .stores-section .section-title {
        margin: 0 !important;
    }
    .stores-grid {
        display: block;
        margin: 0 !important;
    }
    .store-placeholder {
        margin-top: 20px;
    }
    .store-placeholder.part1{
        height: 200px;
    }
    .store-placeholder.part2{
        height: 200px;
    }
    /* 全国门店展示-end */


    /* 合作伙伴-start */
    .map-title {
        font-size: 40px !important;
    }
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .honors-section {
        height: auto !important;
    }
    /* 合作伙伴-end */
    
}