/* 大梦全行业SaaS系统专用样式 */

/* 通用样式 */
.wrap_1440 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.primary-button {
    display: inline-block;
    background-color: #0db083;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-button:hover {
    background-color: #0a9670;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 176, 131, 0.3);
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #0db083;
    padding: 11px 29px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #0db083;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: rgba(13, 176, 131, 0.1);
    transform: translateY(-2px);
}

/* 英雄区域 */
.saas-hero {
    background-color: #f9f9f9;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.saas-hero .wrap_1440 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-content .subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-features span {
    background-color: rgba(13, 176, 131, 0.1);
    color: #0db083;
    padding: 8px 16px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

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

/* 适用场景部分 */
.saas-scenarios {
    background-color: #fff;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.scenario-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.scenario-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.scenario-item .icon {
    font-size: 40px;
    color: #0db083;
    margin-bottom: 15px;
}

.scenario-item h3 {
    font-size: 18px;
    color: #333;
}

/* 营销玩法部分 */
.saas-marketing {
    background-color: #f9f9f9;
}

.feature-blocks {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-block {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-block img {
    width: 50%;
    object-fit: cover;
    height: 400px;
}

.feature-content {
    padding: 40px;
    width: 50%;
}

.feature-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.feature-content li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #0db083;
    border-radius: 50%;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

/* 客群维护部分 */
.saas-customer {
    background-color: #fff;
}

.saas-customer .feature-blocks {
    flex-direction: row;
    gap: 30px;
}

.feature-column {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-column:hover {
    transform: translateY(-10px);
}

.feature-column h3 {
    font-size: 22px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.image-feature {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.image-feature img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.feature-column:hover .image-feature img {
    transform: scale(1.05);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    color: #666;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* 功能特性部分 */
.saas-features {
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 36px;
    color: #0db083;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* 产品展示部分 */
.saas-showcase {
    background-color: #fff;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h3 {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

/* CTA部分 */
.saas-cta {
    background-color: #0db083;
    color: #fff;
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons .primary-button {
    background-color: #fff;
    color: #0db083;
}

.cta-buttons .primary-button:hover {
    background-color: #f5f5f5;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cta-buttons .secondary-button {
    color: #fff;
    border-color: #fff;
}

.cta-buttons .secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 响应式调整 */
@media screen and (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .saas-hero {
        padding: 60px 0;
    }
    
    .saas-hero .wrap_1440 {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .feature-block {
        flex-direction: column !important;
    }
    
    .feature-block img,
    .feature-content {
        width: 100%;
    }
    
    .feature-block img {
        height: 300px;
    }
    
    .saas-customer .feature-blocks {
        flex-direction: column;
    }
    
    .feature-column {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }
    
    .feature-content {
        padding: 30px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .primary-button,
    .secondary-button {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 0 15px 0;
    }
} 