/* 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", system-ui, sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

input,
select,
textarea {
    outline: none;
    border: 1px solid #ddd;
}
    */

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== 导航栏样式 ========== */
.header {
    height: 7.2rem;
}

/* .nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
} */
.logo{
    color: var(--primary);
}

.logo img{
    width: 3rem;
    height: 3rem;
    /* display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
    color: #165DFF; */
}


.nav-list {
    display: flex;
    gap: 40px;
}

.nav-list a:hover {
    color: var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-list .active{
    color: var(--primary);
}

.btn-nav {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
}

.btn-nav:hover {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    width: 100%;
    background: #fff;
    padding: 15px 4%;
    border-top: 1px solid #eee;
}

.mobile-menu li{
    list-style: none;
}
.mobile-menu a {
    display: block;
    padding: 8px 0;
    margin-bottom: 6px;
    text-align: center;
}

/* ========== 首屏Banner区块 ========== */
.banner {
    padding: 15.2rem 0 8rem;
    background: #f5f7fa;
    /* margin-top: 64px; */
}

.banner-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.banner-left {
    width: 50%;
}

.banner-left h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.banner-left h1 span {
    color: #165DFF;
}

.banner-left p {
    font-size: 18px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.banner-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-main {
    background: linear-gradient(90deg, #165DFF, #3677ff);
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 18px;
}

.btn-outline {
    border: 2px solid #165DFF;
    color: #165DFF;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 18px;
}

.btn-main:hover {
    opacity: 0.9;
}

.btn-outline:hover {
    background: #165DFF;
    color: #fff;
    transition: all 0.3s ease;
}

.tag-list {
    display: flex;
    gap: 30px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.tag-item i {
    color: #165DFF;
    font-size: 20px;
}

.banner-right {
    width: 50%;
}

.banner-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ========== 通用区块标题 ========== */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 34px;
    margin-bottom: 14px;
}

.section-title p {
    font-size: 18px;
    color: #666666;
}

/* ========== 四大核心优势 ========== */
.advantage {
    padding: 90px 0;
    background: #ffffff;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.adv-card {
    background: #f5f7fa;
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(22, 93, 255, 0.1);
}

.adv-icon {
    width: 56px;
    height: 56px;
    background: rgba(22, 93, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.adv-icon i {
    font-size: 24px;
    color: #165DFF;
}

.adv-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.adv-card p {
    color: #666666;
    line-height: 1.6;
}

/* ========== 适合代理人群 ========== */
.crowd {
    padding: 90px 0;
    background: rgba(22, 93, 255, 0.05);
}

.crowd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.crowd-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.crowd-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.crowd-card i {
    font-size: 32px;
    color: #165DFF;
    margin-bottom: 16px;
}

.crowd-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.crowd-card p {
    color: #666666;
    line-height: 1.6;
}

/* ========== 合作流程 ========== */
.process {
    padding: 90px 0;
    background: #ffffff;
}

.process-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.process-item {
    width: 25%;
    text-align: center;
}

.process-num {
    width: 80px;
    height: 80px;
    background: #165DFF;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    margin: 0 auto 24px;
}

.process-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-item p {
    color: #666666;
}

/* ========== 总部扶持政策 ========== */
.support {
    padding: 90px 0;
    background: rgba(22, 93, 255, 0.05);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.support-card {
    background: #ffffff;
    padding: 36px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.support-card i {
    font-size: 34px;
    color: #165DFF;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.support-card p {
    color: #666666;
    line-height: 1.6;
}

/* ========== 加盟申请表单 ========== */
.join {
    padding: 90px 0;
    background: #ffffff;
}

.join-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-item {
    width: 100%;
}

.form-item label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-item input,
.form-item select,
.form-item textarea {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
}

.form-item textarea {
    min-height: 120px;
    resize: none;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #165DFF, #3677ff);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
}

.submit-btn:hover {
    opacity: 0.9;
}

.form-tip {
    text-align: center;
    margin-top: 16px;
    color: #888;
    font-size: 14px;
}

/* ========== 页脚样式 ========== */
.footer {
    padding: 60px 0 30px;
    background: #1D2129;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-logo i {
    color: #165DFF;
    font-size: 24px;
}

.footer-desc {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(22,93,255,0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 12px;
}

.footer-social a:hover {
    background: #165DFF;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-link li {
    margin-bottom: 10px;
}

.footer-link a {
    color: #aaa;
}

.footer-link a:hover {
    color: #165DFF;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    margin-bottom: 10px;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/*========== 联系我们模块 ==========*/
.contact-grid {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 3em;
}

.contact-item {
	text-align: center;
}

.qrcode-box {
	width: 16rem;
	height: 16rem;
	border-radius: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	overflow: hidden;
	border: dashed 1px var(--border);
}

.qrcode-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius);
}

.contact-label {
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
}

/* ========== 移动端适配 ========== */
@media screen and (max-width: 992px) {
    .nav-list,
    .btn-nav {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .banner-row {
        flex-direction: column;
    }
    .banner-left,
    .banner-right {
        width: 100%;
    }
    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .crowd-grid,
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-wrap {
        flex-wrap: wrap;
    }
    .process-item {
        width: 45%;
        margin-bottom: 30px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .banner-left h1 {
        font-size: 30px;
    }
    .adv-grid,
    .crowd-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
    .process-item {
        width: 100%;
    }
    .form-row-two {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .banner-btns {
        flex-direction: column;
    }
    .tag-list {
        flex-wrap: wrap;
    }
}
