/* 加盟悦来电页面样式 */

/* 全局重置与基础样式 */
* {
    box-sizing: border-box;
}

.joinus-page {
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 横幅区域 */
.joinus-banner {
    width: 100%;
    /* 保持原有背景图 */
    background: url(/assets/img/joinus/FigmaDDSSlicePNG40a8feac19d2ad9fcd0268e6d3bcd2f9.png) center center no-repeat;
    background-size: cover;
    position: relative;
    /* 移除固定高度，使用 padding 撑开或 min-height */
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-container {
    width: 100%;

    /* Banner 内容可能需要更宽一点 */
    margin: 0 auto;
    padding: 100px 20px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-content {
    width: 100%;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-text-1,
.banner-text-2 {
    max-width: 1000px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-text-1 {
    font-size: 24px;
    margin-bottom: 60px;
}

/* 圆形按钮区域 */
.banner-button-wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-end;
    margin-right: 10%;
    position: relative;
    z-index: 10;
}

.banner-button-outer {
    background-image: linear-gradient(205deg, rgba(76, 167, 255, 1) 0, rgba(208, 238, 255, 1) 100%);
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.banner-button-outer:hover {
    transform: scale(1.05);
}

.banner-button-inner {
    background-color: rgba(92, 171, 255, 1);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 按钮内部图标保持绝对定位，因为是复杂的组合图形 */
.banner-button-icon {
    position: absolute;
    width: 66px;
    height: 42px;
    background-image: linear-gradient(203deg, rgba(92, 94, 115, 1) 0, rgba(62, 67, 85, 1) 43.573105%, rgba(38, 45, 61, 1) 100%);
    border-radius: 14px;
    box-shadow: inset 0px 0px 13px 0px rgba(255, 255, 255, 0.25);
    top: 38px;
    left: 22px;
}

.icon-dot {
    background-color: rgba(136, 229, 255, 1);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 10px;
}

.icon-dot-1 {
    left: -2px;
}

.icon-dot-2 {
    left: 34px;
}

.banner-button-main-icon {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 8px;
    left: 14px;
    z-index: 2;
}

.banner-button-icon-1 {
    width: 36px;
    height: 36px;
    position: absolute;
    left: -32px;
    top: 2px;
}

.banner-button-icon-2 {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 2px;
    top: 28px;
}

.banner-button-icon-3 {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 48px;
    top: 8px;
}

/* 咨询热线 - 悬浮在右下角 */
/* 咨询热线 - 悬浮在右下角 */
.contact-hotline {
    margin-top: -10px;
    background-color: rgba(83, 184, 255, 0.9);
    border-radius: 100px;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 120, 255, 0.3), inset 0px 5px 20px rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(5px);
}

.hotline-label {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
}

.hotline-number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}

/* 我们的优势 */
.advantages-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 80px;
}

.advantages-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 100px;
}

.advantage-image-wrapper {
    flex: 1;
    max-width: 600px;
}

.advantage-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-text-wrapper {
    flex: 1;
    padding-top: 20px;
}

.advantage-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.advantage-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0056b3;
    margin-top: 15px;
}

.advantage-list p {
    font-size: 16px;
    color: #555;
    line-height: 2;
    margin-bottom: 12px;
    text-align: justify;
}

/* 其他优势 */
.other-advantage {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.other-text {
    width: 200px;
    padding-top: 40px;
}

.other-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 20px;
}

.other-line {
    width: 60px;
    height: 4px;
    background-color: #999;
}

.other-image-wrapper {
    flex: 1;
}

.other-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 加盟表单 */
.joinus-form-section {
    width: 100%;
    padding: 100px 0;
    background: url(/assets/img/joinus/FigmaDDSSlicePNG0f7539f8ec7d4311e3f2c7b9e7b585f4.png) center center no-repeat;
    background-size: cover;
    margin-top: 50px;
}

.form-content {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.form-title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.joinus-form {
    width: 100%;
}

.form-row-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.form-row {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-label {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.form-input {
    width: 100%;
    height: 60px;
    background-color: #f5f7fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 18px;
    color: #333;
    transition: all 0.3s;
}

.form-input:focus {
    background-color: #fff;
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-submit-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 70px;
    background-color: #002870;
    border: none;
    border-radius: 35px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0, 40, 112, 0.3);
}

.form-submit-btn:hover {
    background-color: #003a9e;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 40, 112, 0.4);
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
    .joinus-banner {
        min-height: 600px;
    }

    .banner-text-1,
    .banner-text-2 {
        font-size: 18px;
        padding: 0 20px;
    }

    .advantages-content {
        flex-direction: column;
        align-items: center;
    }

    .advantage-image-wrapper,
    .advantage-text-wrapper {
        max-width: 100%;
    }

    .other-advantage {
        flex-direction: column;
    }

    .other-text {
        width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .other-line {
        margin: 10px auto;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .banner-button-wrapper {
        margin-right: auto;
        width: 100%;
        margin-top: 40px;
    }

    .contact-hotline {
        margin: 30px auto 0;
        width: 90%;
        max-width: 300px;
    }

    .form-content {
        padding: 30px 20px;
    }

    .form-row-group {
        flex-direction: column;
        gap: 20px;
    }

    .form-row {
        min-width: 100%;
    }

    .form-submit-btn {
        height: 60px;
        font-size: 20px;
    }
}