/* dqfw.css - 地区服务页面专用样式 */

/* 基础样式 */
.region-service-content {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: #f8f8f8;
}

/* 页面头部 */
.region-hero {
    background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(46, 125, 50, 0.9));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 30px;
}
.region-hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.region-hero p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 10px;
    opacity: 0.95;
}

/* 地区卡片样式 */
.region-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
}
.region-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 城市卡片标题 */
.city-card-title {
    color: #2c3e50;
    border-left: 4px solid;
    padding-left: 10px;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

/* 按钮样式 */
.city-action-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.city-btn {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.city-btn-price {
    background: #4CAF50;
    color: white;
}
.city-btn-price:hover {
    background: #2E7D32;
    color: white;
    transform: translateY(-2px);
}
.city-btn-case {
    background: #2196F3;
    color: white;
}
.city-btn-case:hover {
    background: #0b7dda;
    color: white;
    transform: translateY(-2px);
}

/* 服务流程 */
.process-step {
    background: white;
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(76,175,80,0.2);
}

/* CTA按钮 */
.cta-button {
    background: white;
    color: #4CAF50;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 5px;
}
.cta-button:hover {
    background: #f8fff8;
    color: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}
.cta-button.outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.cta-button.outline:hover {
    background: white;
    color: #4CAF50;
}

/* 邻近省份说明 */
.neighboring-provinces {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid #4CAF50;
}
.neighboring-provinces h4 {
    color: #2c3e50;
    margin-top: 0;
}

/* 地图占位符 */
.map-placeholder {
    background: #f0f7f0;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
}
.map-placeholder .icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

/* 布局调整 */
.region-service-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 隐藏左侧栏，右侧内容全宽 */
.wf_left {
    display: none;
}
.wf_right {
    width: 100% !important;
    float: none !important;
}
.wf_main {
    display: block;
}
.wf_n_neirong {
    padding: 0;
}
.wf_n_nr_d {
    padding: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .region-hero {
        padding: 30px 15px;
    }
    .region-hero h1 {
        font-size: 24px;
    }
    .region-hero p {
        font-size: 14px;
    }
    .process-step {
        width: 80px;
        height: 80px;
    }
    .cta-button {
        padding: 12px 20px;
        font-size: 16px;
        margin-bottom: 10px;
        display: block;
        width: 100%;
    }
    .city-action-buttons {
        flex-direction: column;
    }
    .city-btn {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
/* 地区服务模块样式 */

/* 地区服务标题 */
.region-services-section .titlemodel {
    position: relative;
    margin-bottom: 30px;
}

.region-subtitle {
    font-size: 16px;
    color: #4CAF50;
    margin-top: 10px;
    font-weight: 500;
}

/* 地区介绍 */
.region-intro {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #4CAF50;
}

.region-intro p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* 城市网格布局 */
.region-cities-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .region-cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .region-cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 城市卡片 */
.region-city-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.region-city-card:hover {
    border-color: #4CAF50;
}

.city-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    padding: 20px;
}

.city-icon {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.icon-location {
    display: inline-block;
    font-size: 28px;
}

.city-info {
    flex-grow: 1;
    margin-bottom: 15px;
}

.city-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.city-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.city-details {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.city-tag {
    display: inline-block;
    padding: 3px 8px;
    background: #e8f5e9;
    color: #4CAF50;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.city-action {
    text-align: right;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.btn-view {
    display: inline-block;
    padding: 6px 15px;
    background: #4CAF50;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.region-city-card:hover .btn-view {
    background: #388E3C;
    transform: translateX(3px);
}

/* 更多城市区域 */
.more-cities-section {
    background: linear-gradient(135deg, #f8fff8 0%, #f0f7ff 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #e0f2e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .more-cities-section {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.more-cities-info {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .more-cities-info {
        margin-bottom: 0;
        flex: 1;
        padding-right: 30px;
    }
}

.more-cities-info h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.more-cities-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.nearby-provinces {
    margin-top: 15px;
}

.nearby-provinces strong {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.province-tag {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 5px 5px 0;
    background: #e3f2fd;
    color: #1976D2;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.more-cities-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: #4CAF50;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.more-cities-btn:hover {
    background: #388E3C;
    color: white;
    text-decoration: none;
}

.more-cities-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.more-cities-btn:hover i {
    transform: translateX(3px);
}

/* 服务热线 */
.service-hotline {
    background: linear-gradient(135deg, #2c3e50 0%, #4CAF50 100%);
    border-radius: 10px;
    padding: 25px;
    color: white;
    margin-top: 20px;
}

.hotline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .hotline-content {
        flex-direction: row;
        text-align: left;
    }
}

.hotline-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: white;
}

@media (min-width: 768px) {
    .hotline-icon {
        margin-bottom: 0;
        margin-right: 20px;
    }
}

.hotline-info {
    flex: 1;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .hotline-info {
        margin-bottom: 0;
    }
}

.hotline-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.phone-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    letter-spacing: 1px;
}

.hotline-desc {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.hotline-action {
    text-align: center;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: white;
    color: #4CAF50;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: #f8fff8;
    color: #388E3C;
    text-decoration: none;
    transform: scale(1.05);
}

.call-btn i {
    margin-right: 8px;
}

/* 移动端优化 */
@media (max-width: 767px) {
    .region-subtitle {
        font-size: 14px;
    }
    
    .city-name {
        font-size: 16px;
    }
    
    .city-desc {
        font-size: 13px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .call-btn {
        width: 100%;
        justify-content: center;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.region-city-card {
    animation: fadeInUp 0.5s ease-out;
}

/* 悬停效果增强 */
.region-city-card:hover {
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.1);
}

/* 触摸设备优化 */
@media (hover: none) {
    .region-city-card:active {
        background: #f8fff8;
    }
    
    .more-cities-btn:active {
        transform: scale(0.98);
    }
}