/* 移除所有列表项的默认样式和箭头 */
* {
    list-style: none !important;
}

ul, li {
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

/* 移除可能通过伪元素添加的箭头 */
ul li::before,
ul li::after {
    content: none !important;
}

/* 移除section-title的图标 */
.section-title {
    padding-left: 0 !important;
}

.section-title::before,
.section-title::after {
    content: none !important;
}

/* 自定义页面样式 */
/* 移除blockquote左侧竖线 */
blockquote {
    border-left: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.banner {
    /* 固定高度，确保动画后位置不变 */
    height: calc(100vh - 120px);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner-content {
    max-width: 800px;
}

.banner-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateZ(0);
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
}

.banner-content .hotline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translateZ(0);
}

.banner-content .hotline i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.banner-content .hotline span {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
    box-shadow: var(--el-box-shadow);
    transform: translateZ(0);
}

.cta-button:hover {
    background-color: var(--el-gradient-start);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 106, 220, 0.4);
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 招商优势样式 */
.advantages {
    background-color: var(--background-color);
    padding: 5rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background-color: var(--background-color);
    padding: 3rem 2rem;
    border-radius: var(--el-border-radius);
    box-shadow: var(--el-box-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    background: linear-gradient(var(--background-color), var(--background-color)) padding-box, linear-gradient(135deg, var(--el-gradient-start), var(--el-gradient-end)) border-box;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--el-gradient-start), var(--el-gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(24, 106, 220, 0.15);
    border-color: transparent;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--el-gradient-start), var(--el-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(24, 106, 220, 0.3);
    position: relative;
    z-index: 1;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(24, 106, 220, 0.4);
}

.advantage-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    font-weight: bold;
}

.advantage-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
}

.advantage-card:hover h3 {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover p {
    color: var(--text-primary);
}

/* 加盟流程样式 */
.process {
    background-color: var(--background-color);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.process-step {
    flex: 0 0 calc(16.666% - 1rem);
    background-color: var(--background-color);
    padding: 1.5rem 1rem;
    border-radius: var(--el-border-radius);
    box-shadow: var(--el-box-shadow);
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 成功案例样式 */
.cases {
    background-color: var(--background-secondary-color);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.case-card {
    position: relative;
    border-radius: var(--el-border-radius);
    overflow: hidden;
    box-shadow: var(--el-box-shadow);
    transition: all 0.3s ease;
    background-color: var(--background-color);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.case-image {
    width: 100%;
    height: 220px;
    background-color: #e9ecef;
    background-size: cover;
    background-position: center;
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.case-card:hover .case-overlay {
    transform: translateY(0);
}

.case-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.case-overlay p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 支持政策样式 */
.support {
    background-color: var(--background-color);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--background-secondary-color);
    border-radius: var(--el-border-radius);
    box-shadow: var(--el-box-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.support-icon {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.support-item h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.support-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 在线申请样式 */
.application {
    background-color: var(--background-secondary-color);
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--el-border-radius);
    box-shadow: var(--el-box-shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    height: 45px;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--el-border-radius-min);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--background-color);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(24, 106, 220, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    height: auto;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}

.form-checkbox label {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 400;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 0.9rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--el-border-radius-min);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--el-box-shadow);
}

.submit-btn:hover {
    background-color: var(--el-gradient-start);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 106, 220, 0.4);
}

/* 零风险加盟样式 */
.zero-risk {
    background-color: var(--background-secondary-color);
    padding: 5rem 0;
}

.zero-risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.zero-risk-card {
    background-color: var(--background-color);
    padding: 3rem 2.5rem;
    border-radius: var(--el-border-radius);
    box-shadow: var(--el-box-shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.zero-risk-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--el-gradient-start), var(--el-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(24, 106, 220, 0.2);
}

.zero-risk-icon i {
    font-size: 3rem;
    color: white;
}

.zero-risk-card h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.zero-risk-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* 滚动申请记录样式 */
.scroll-applications {
    background: linear-gradient(135deg, rgba(24, 106, 220, 0.05), rgba(0, 180, 219, 0.05));
    padding: 2.5rem 0;
    border-top: 1px solid rgba(24, 106, 220, 0.1);
    border-bottom: 1px solid rgba(24, 106, 220, 0.1);
}

.scroll-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.scroll-content {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.scroll-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(24, 106, 220, 0.08);
    border: 1px solid rgba(24, 106, 220, 0.1);
}

.scroll-item i {
    color: #186ADC;
    font-size: 1.2rem;
}

.scroll-item .user-name {
    color: #2c3e50;
    font-weight: 500;
}

.scroll-item .time {
    color: #666;
}

.scroll-item .action {
    color: #186ADC;
    font-weight: 500;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50%)); }
}

/* 悬停暂停效果 */
.scroll-container:hover .scroll-content {
    animation-play-state: paused;
}

/* 表单样式优化 */
.required-field::after {
    content: " *";
    color: #ff4444;
    font-weight: bold;
}

/* 隐私政策链接样式 */
.privacy-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--el-gradient-start);
    text-decoration: underline;
}

/* 验证码区域样式 */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
}

.captcha-input {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
}

.captcha-input input {
    height: 45px;
    margin: 0;
    padding: 0 1rem;
}

.captcha-image {
    display: flex;
    align-items: center;
}

.captcha-image img {
    height: 45px;
    width: auto;
    max-width: 150px;
    min-width: 100px;
    border: 2px solid var(--border-color);
    border-radius: var(--el-border-radius-min);
    cursor: pointer;
    box-sizing: border-box;
    vertical-align: middle;
    display: inline-block;
    margin: 0;
    padding: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    /* 平板设备响应式调整 */
    .process-step {
        flex: 0 0 calc(33.333% - 1rem);
        margin-bottom: 2rem;
    }
    
    .process-steps {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* 移动端响应式调整 */
    .banner {
        height: 100vh;
    }
    
    .banner-content h1 {
        font-size: 2.8rem;
    }
    
    .banner-content p {
        font-size: 1.3rem;
    }
    
    .banner-content .hotline {
        font-size: 1.3rem;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .banner-content .hotline i {
        font-size: 1.5rem;
    }
    
    .banner-content .hotline span {
        font-size: 1.3rem;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex: 0 0 auto;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 350px;
        height: auto;
        padding: 2rem 1.5rem;
        min-height: 220px;
    }
    
    .process-step h3 {
        margin-bottom: 1rem;
    }
    
    .process-step p {
        height: auto;
        min-height: 80px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .application-form {
        padding: 2rem 1.5rem;
    }
    
    .advantages-grid,
    .cases-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    /* 移动端表单样式 */
    .application-form {
        padding: 2rem 1.5rem !important;
    }
    
    .application-form .form-row {
        flex-direction: column;
        gap: 1.8rem;
    }
    
    .application-form .captcha-container {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }
    
    .application-form .captcha-input {
        min-width: 100px;
    }
    
    .application-form .captcha-image {
        justify-content: flex-start;
        margin-top: 0;
    }
    
    .application-form .captcha-image img {
        max-width: 120px;
        min-width: 80px;
    }
    
    /* 滚动申请记录响应式 */
    .scroll-item {
        flex-direction: column;
        gap: 0.5rem !important;
        text-align: center;
        padding: 1.5rem 1rem !important;
    }
}

@media (max-width: 480px) {
    /* 小屏设备进一步调整 */
    .application-form {
        padding: 1.5rem 1rem !important;
    }
    
    /* 小屏验证码样式 */
    .application-form .form-group:last-of-type input {
        min-width: 100px;
        max-width: 150px;
    }
    
    .application-form .form-group:last-of-type img {
        max-width: 100px;
    }
}
