/* 
 * 服务项目页面样式
 */

/* 页面标题 */
.page-header {
    background-color: #0066CC;
    color: #fff;
    padding: 100px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 服务导航 */
.services-nav {
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.tab-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}

.tab-nav a {
    display: block;
    padding: 15px 25px;
    font-weight: 500;
    color: #333;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-nav a:hover {
    color: #0066CC;
}

.tab-nav a.active {
    color: #0066CC;
    border-bottom-color: #0066CC;
}

/* 服务内容区域 */
.service-section {
    display: none;
    padding: 60px 0;
}

.service-section.active {
    display: block;
}

.service-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* 服务特点 */
.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

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

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

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

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-box h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.feature-box ul {
    color: #666;
    padding-left: 20px;
}

.feature-box li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
}

.feature-box li:before {
    content: '•';
    color: #0066CC;
    position: absolute;
    left: -15px;
}

/* 产品类型 */
.service-types {
    margin-bottom: 60px;
}

.service-types h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

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

.type-icon img {
    width: 40px;
    height: 40px;
}

.type-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.type-card p {
    color: #666;
    margin-bottom: 20px;
}

.price {
    color: #333;
    font-weight: 500;
}

.price span {
    color: #FF6600;
    font-weight: 600;
}

/* 服务流程 */
.service-process {
    margin-bottom: 60px;
}

.service-process h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #0066CC;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 15px;
}

.step h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.step p {
    color: #666;
    font-size: 0.9rem;
}

.step-arrow {
    width: 50px;
    height: 2px;
    background-color: #ddd;
    position: relative;
}

.step-arrow:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #ddd;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* 路线表格 */
.route-table {
    margin-bottom: 60px;
    overflow-x: auto;
}

.route-table h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.route-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.route-table th,
.route-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.route-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.route-table td {
    color: #666;
}

/* 服务优势 */
.service-advantages {
    margin-bottom: 60px;
}

.service-advantages h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.advantage-icon img {
    width: 30px;
    height: 30px;
}

.advantage-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.advantage-item p {
    color: #666;
    font-size: 0.9rem;
}

/* 旅游服务特定样式 */
.tourism-types {
    margin-bottom: 60px;
}

.tourism-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.tourism-type:nth-child(even) {
    direction: rtl;
}

.tourism-type:nth-child(even) .type-content {
    direction: ltr;
}

.type-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.type-content {
    padding: 30px;
}

.type-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.type-content h4 {
    font-size: 1.2rem;
    color: #0066CC;
    margin: 20px 0 10px;
}

.type-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.type-content li {
    margin-bottom: 8px;
    color: #666;
}

/* 演出专线特定样式 */
.show-partners,
.hospital-partners {
    margin-bottom: 60px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner-item {
    text-align: center;
}

.partner-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.partner-item h4 {
    font-size: 1.1rem;
    color: #333;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.city-item {
    background-color: #f9f9f9;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.city-item:hover {
    background-color: #0066CC;
    color: #fff;
    transform: translateY(-3px);
}

/* 健康专线特定样式 */
.health-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.intro-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.intro-content h4 {
    font-size: 1.2rem;
    color: #0066CC;
    margin: 20px 0 10px;
}

.intro-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.intro-content ul {
    padding-left: 20px;
}

.intro-content li {
    margin-bottom: 10px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.intro-content li:before {
    content: '✓';
    position: absolute;
    left: -5px;
    color: #0066CC;
}

/* 其他服务特定样式 */
.other-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

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

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1.2rem;
    color: #0066CC;
    margin: 20px 0 10px;
}

.service-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-card li {
    margin-bottom: 8px;
    color: #666;
}

.custom-service {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.custom-service h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.custom-service p {
    color: #666;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info strong {
    color: #0066CC;
}

/* 预订按钮 */
.service-booking {
    text-align: center;
    margin-top: 40px;
}

.service-booking p {
    margin-top: 15px;
    color: #666;
}

.service-booking strong {
    color: #0066CC;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .service-features,
    .types-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .tourism-type,
    .health-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tourism-type:nth-child(even) {
        direction: ltr;
    }
    
    .other-services {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        width: 2px;
        height: 30px;
    }
    
    .step-arrow:after {
        top: auto;
        bottom: -6px;
        right: 50%;
        transform: translateX(50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #ddd;
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .service-features,
    .types-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-nav {
        flex-direction: column;
    }
    
    .tab-nav a {
        text-align: center;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-nav a.active {
        border-bottom: none;
        border-left: 3px solid #0066CC;
        background-color: rgba(0, 102, 204, 0.1);
    }
}

@media (max-width: 576px) {
    .partners-grid,
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 80px 0 30px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-header h2 {
        font-size: 1.8rem;
    }
    
    .route-table {
        margin: 0 -15px;
    }
}