/* 加入悦来电充电网络页面样式 */

.joinnetwork-page {
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
}

/* 横幅区域 */
.joinnetwork-banner {
    width: 100%;
    height: 336px;
    background: url(/assets/img/joinnet/FigmaDDSSlicePNG2286bd5da33dfc09a740df462806eb9d.png) center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.banner-text {
    color: #fff;
    font-size: 28px;
    font-family: PingFang SC-Semibold, PingFang SC;
    font-weight: 600;
    line-height: 46px;
    margin: 0;
}

/* 平台优势区域 */
.joinnetwork-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 30px;
    font-family: PingFang SC-Semibold, PingFang SC;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 62px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
    margin-top: 40px;
}

.advantage-card {
    background-color: #f9fbfc;
    border-radius: 10px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 13px 0px rgba(189, 189, 189, 0.18);
    padding: 33px 25px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    height: 100%;
}

.advantage-icon {
    height: 240px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 27px;
}

.advantage-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.advantage-title {
    font-size: 30px;
    font-family: PingFang SC-Regular, PingFang SC;
    color: #333;
    margin: 0 0 18px 0;
    font-weight: normal;
}

.advantage-desc {
    font-size: 24px;
    font-family: PingFang SC-Regular, PingFang SC;
    color: #666;
    line-height: 30px;
    margin: 0;
}

/* 合作伙伴区域 */
.partners-section {
    width: 100%;
    height: 560px;
    background: url(/assets/img/joinnet/FigmaDDSSlicePNG0afb78d56a80e6226eb96c7ab7d66da4.png) center center no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(13, 13, 13, 0.6);
}

.partners-section>* {
    position: relative;
    z-index: 1;
}

.section-title-white {
    font-size: 30px;
    font-family: PingFang SC-Semibold, PingFang SC;
    font-weight: 600;
    color: #fff;
    margin-bottom: 89px;
}

.partners-logo {
    width: 896px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 34px;
}

.partners-names {
    display: flex;
    justify-content: space-between;
    width: 890px;
}

.partner-name {
    font-size: 48px;
    font-family: MiSans-Normal, sans-serif;
    color: #fff;
    text-align: center;
    width: 192px;
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-text {
        font-size: 24px;
        line-height: 36px;
    }

    .partners-logo {
        width: 100%;
        max-width: 600px;
    }

    .partners-names {
        width: 100%;
        max-width: 600px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .joinnetwork-banner {
        height: 250px;
    }

    .banner-text {
        font-size: 20px;
        line-height: 30px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        min-height: auto;
        padding: 30px 20px;
    }

    .advantage-icon {
        width: 120px !important;
        height: 120px !important;
    }

    .advantage-title {
        font-size: 24px;
    }

    .advantage-desc {
        font-size: 18px;
        line-height: 26px;
    }

    .partners-section {
        height: auto;
        padding: 60px 20px;
    }

    .partners-logo {
        width: 100%;
        max-width: 400px;
    }

    .partner-name {
        font-size: 32px;
    }
}