/* 狐小约专用样式 */

/* 通用样式 */
.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: #ff6b6b;
    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: #fa5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 82, 82, 0.3);
}

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

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

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

.appointment-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(255, 107, 107, 0.1);
    color: #ff6b6b;
    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);
}

/* 适用场景部分 */
.appointment-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: #ff6b6b;
    margin-bottom: 15px;
}

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

/* 多端口系统部分 */
.appointment-platforms {
    background-color: #f9f9f9;
}

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

.platform-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;
}

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

.platform-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.platform-icon i {
    font-size: 32px;
    color: #ff6b6b;
}

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

.platform-card .feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.platform-card .feature-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.platform-card .feature-list li:before {
    content: "•";
    color: #ff6b6b;
    position: absolute;
    left: 0;
}

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

/* 核心功能模块部分 */
.appointment-features {
    background-color: #fff;
}

.features-tabs {
    margin-top: 50px;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.tab-link {
    padding: 15px 30px;
    font-size: 18px;
    color: #666;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.tab-link:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ff6b6b;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-link.active {
    color: #ff6b6b;
}

.tab-link.active:after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.feature-block {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    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: #ff6b6b;
    border-radius: 50%;
}

/* 技师管理系统部分 */
.appointment-technician {
    background-color: #f9f9f9;
}

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

.feature-column {
    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-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-column .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-column .feature-icon i {
    font-size: 28px;
    color: #ff6b6b;
}

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

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

/* 产品展示部分 */
.appointment-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;
}

/* 产品价格部分 */
.appointment-price {
    background-color: #f9f9f9;
}

.price-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 300px;
    transition: all 0.3s ease;
    position: relative;
}

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

.price-card.featured {
    border: 2px solid #ff6b6b;
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: #ff6b6b;
    color: #fff;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: bold;
}

.card-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

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

.card-header .price {
    font-size: 36px;
    color: #ff6b6b;
    font-weight: bold;
}

.card-header .price span {
    font-size: 16px;
    font-weight: normal;
}

.card-body {
    padding: 30px 20px;
}

.card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-body li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #666;
}

.card-body li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff6b6b;
}

.card-body li.unavailable {
    color: #999;
}

.card-body li.unavailable i {
    color: #ccc;
}

.card-footer {
    padding: 0 20px 30px;
    text-align: center;
}

.price-button {
    display: inline-block;
    width: 100%;
    background-color: #ff6b6b;
    color: #fff;
    padding: 12px 0;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.price-button:hover {
    background-color: #fa5252;
    box-shadow: 0 5px 15px rgba(250, 82, 82, 0.3);
}

/* CTA部分 */
.appointment-cta {
    background-color: #ff6b6b;
    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: #ff6b6b;
}

.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);
}

/* 图标字体 - 使用伪元素和Unicode替代实际图标字体 */
.icon-beauty:before { content: "\f1fb"; /* 使用Unicode替代 */ }
.icon-yoga:before { content: "\f21e"; }
.icon-massage:before { content: "\f577"; }
.icon-clean:before { content: "\f51a"; }
.icon-car:before { content: "\f1b9"; }
.icon-home:before { content: "\f015"; }
.icon-washing:before { content: "\f2e7"; }
.icon-hourly:before { content: "\f017"; }
.icon-user:before { content: "\f007"; }
.icon-technician:before { content: "\f0f2"; }
.icon-agent:before { content: "\f0e8"; }
.icon-platform:before { content: "\f233"; }
.icon-location:before { content: "\f3c5"; }
.icon-schedule:before { content: "\f073"; }
.icon-rating:before { content: "\f005"; }
.icon-wallet:before { content: "\f555"; }
.icon-safety:before { content: "\f132"; }
.icon-level:before { content: "\f201"; }
.icon-check:before { content: "\f00c"; }
.icon-cross:before { content: "\f00d"; }

/* 响应式调整 */
@media screen and (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .appointment-hero {
        padding: 60px 0;
    }
    
    .appointment-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;
    }
    
    .feature-block img,
    .feature-content {
        width: 100%;
    }
    
    .feature-block img {
        height: 300px;
    }
    
    .price-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-link {
        padding: 10px 15px;
        font-size: 16px;
    }
}

@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;
    }
} 
