/* 克隆页面横幅样式 */
.clone-banner {
    background: linear-gradient(to right, #000, #333);
    padding: 40px 0;
    overflow: hidden;
    height: 600px;
    display: flex;
    align-items: center;
}

.clone-banner .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.banner-text {
    flex: 1;
    color: #fff;
}

.banner-text h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #00BFA6;
    text-align: left;
}

.banner-desc {
    font-size: 20px;
    line-height: 1.6;
    color: #00BFA6;
}

.banner-desc p {
    margin-bottom: 12px;
}

.banner-image {
    flex: 1;
    padding-left: 40px;
}

.banner-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* 特点模块 */
.clone-features {
    padding: 80px 0;
    background: #fff;
}

.price-tag {
    position: absolute;
    right: 40px;
    top: 40px;
    color: #00BFA6;
    font-size: 32px;
    font-weight: bold;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    color: #00BFA6;
    font-size: 24px;
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature-content p {
    color: #666;
    font-size: 16px;
}

/* 流程模块 */
.clone-process {
    padding: 80px 0;
    background: #fff;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-step {
    flex: 1;
    background: #00BFA6;
    border-radius: 8px;
    padding: 30px;
    color: #fff;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

.video-icon {
    background-image: url('../images/video-icon.svg');
}

.ai-icon {
    background-image: url('../images/ai-icon.svg');
}

.batch-icon {
    background-image: url('../images/batch-icon.svg');
}

.step-header h3 {
    font-size: 20px;
    font-weight: bold;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.step-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
}

/* 克隆介绍模块 */
.clone-intro {
    padding: 60px 0;
    background: #fff;
}

.intro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.intro-header h2 {
    font-size: 32px;
    color: #333;
}

.price {
    font-size: 32px;
    color: #00BFA6;
    font-weight: bold;
}

.intro-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.intro-content {
    display: flex;
    gap: 60px;
}

.features {
    width: 300px;
    padding-right: 40px;
}

.feature-item {
    margin-bottom: 30px;
}

.check-icon {
    color: #00BFA6;
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

.feature-item h3 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}

.process-showcase {
    flex: 1;
    display: flex;
    gap: 30px;
}

.process-item {
    flex: 1;
    text-align: center;
}

.process-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.process-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* 行业解决方案模块 */
.industry-solutions {
    padding: 80px 0;
    background: #f8f9fa;
}

.industry-solutions .section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-item {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.solution-image {
    width: 200px;
    flex-shrink: 0;
}

.solution-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.solution-content {
    flex: 1;
}

.solution-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.solution-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
} 