/* 慧算账PLUS页面完整样式表 - hplus2.css */

/* 公共变量 */
:root {
    --primary-color: #667eea;
    --primary-dark: #764ba2;
    --text-color: #333;
    --text-light: #666;
    --text-light2: #999;
    --bg-light: #f5f7fa;
    --bg-white: #fff;
    --border-color: #e8e8e8;
}

/* 公共样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-white);
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/* 横幅区域 */
.hplus-banner-wrap {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
}

.hplus-banner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hplus-banner-content {
    text-align: center;
    color: #fff;
}

.hplus-banner-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hplus-banner-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hplus-banner-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hplus-banner-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #667eea;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    border: none;
}

.hplus-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* 企业税务安全大挑战区域 */
.hplus-challenge-wrap {
    background: #f5f7fa;
    padding: 60px 0 70px;
}

.hplus-challenge {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hplus-challenge-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.hplus-challenge-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hplus-challenge-list li {
    width: 220px;
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.hplus-challenge-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hplus-challenge-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hplus-challenge-icon img {
    width: 60px;
    height: 60px;
    display: block;
}

.hplus-challenge-name {
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 12px;
    font-weight: bold;
}

.hplus-challenge-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

/* 慧算账PLUS服务内容区域 */
.hplus-service-wrap {
    background: #fff;
    padding: 60px 0 70px;
}

.hplus-service {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hplus-service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hplus-service-list li {
    width: 260px;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 35px 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.hplus-service-list li:hover {
    background: #e8f4ff;
}

.hplus-service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hplus-service-icon img {
    width: 70px;
    height: 70px;
    display: block;
}

.hplus-service-name {
    font-size: 22px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.hplus-service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.hplus-service-extra {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #fff;
    text-align: center;
}

.hplus-service-extra-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.hplus-service-extra p {
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

.hplus-service-consult {
    margin-top: 30px;
    text-align: center;
}

.hplus-service-consult-btn {
    display: inline-block;
    padding: 15px 50px;
    background: #fff;
    color: #667eea;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-weight: bold;
}

.hplus-service-consult-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hplus-service-consult p {
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
}

/* 我们的优势区域 */
.hplus-advantage-wrap {
    background: #f5f7fa;
    padding: 60px 0 70px;
}

.hplus-advantage {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hplus-advantage-desc {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hplus-advantage-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hplus-advantage-list li {
    width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 40px 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.hplus-advantage-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hplus-advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hplus-advantage-icon img {
    width: 70px;
    height: 70px;
    display: block;
}

.hplus-advantage-name {
    font-size: 22px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.hplus-advantage-list li .hplus-advantage-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 0;
}

/* 服务案例区域 */
.hplus-case-wrap {
    background: #fff;
    padding: 60px 0 70px;
}

.hplus-case {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hplus-case-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hplus-case-list li {
    width: 560px;
    background: #f8f9fb;
    border-radius: 12px;
    padding: 35px 30px;
    margin-bottom: 20px;
}

.hplus-case-num {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.hplus-case-name {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.hplus-case-problem {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.hplus-case-problem p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.hplus-case-solution {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.hplus-case-solution p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hplus-challenge-list li {
        width: calc(33.333% - 20px);
    }
    
    .hplus-service-list li {
        width: calc(50% - 20px);
    }
    
    .hplus-advantage-list li {
        width: calc(50% - 20px);
    }
    
    .hplus-case-list li {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .hplus-challenge-list li {
        width: calc(50% - 20px);
    }
    
    .hplus-service-list li {
        width: 100%;
    }
    
    .hplus-advantage-list li {
        width: 100%;
    }
    
    .hplus-case-list li {
        width: 100%;
    }
    
    .hplus-banner-title {
        font-size: 36px;
    }
    
    .hplus-banner-subtitle {
        font-size: 20px;
    }
    
    .hplus-banner-desc {
        font-size: 16px;
    }
    
    .hplus-challenge-title,
    .hplus-service-title,
    .hplus-advantage-title,
    .hplus-case-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hplus-challenge-list li {
        width: 100%;
    }
    
    .hplus-banner-wrap {
        padding: 50px 0;
    }
    
    .hplus-banner-title {
        font-size: 28px;
    }
    
    .hplus-banner-subtitle {
        font-size: 18px;
    }
    
    .hplus-banner-desc {
        font-size: 14px;
    }
    
    .hplus-banner-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}
