﻿/* 现代化变量定义 */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
/* 全局样式 */
body {
    font-family: 'Microsoft YaHei', sans-serif;
   
}



/* 现代化Banner */
.banner-home {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(29, 78, 216, 0.9) 100%), url('../images/banner-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
}

.banner-content {
    text-align: center;
    color: white;
}

    .banner-content h1 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 30px;
        animation: fadeInUp 1s ease;
    }

    .banner-content p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        animation: fadeInUp 1s ease 0.2s;
    }

/* 服务卡片样式 */
.service-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-card i {
        font-size: 3em;
        color: #007bff;
        margin-bottom: 20px;
    }

/* 案例卡片样式 */
.case-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .case-card:hover {
        transform: translateY(-5px);
    }

.case-info {
    padding: 20px;
}

/* 底部样式 */
footer {
    margin-top: 50px;
}

    footer a {
        color: #fff;
        text-decoration: none;
    }

        footer a:hover {
            color: #007bff;
        }

.social-links a {
    font-size: 24px;
    margin-right: 15px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .banner-home {
        height: 400px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }
}

/* 内页Banner样式 */
.banner-page {
    background-size: cover;
    background-position: center;
    height: 320px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

    .banner-page::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
    }

.about-banner {
    background-image: url('../images/banner-about.jpg');
}

.website-banner {
    background-image: url('../images/banner-website.jpg');
}

/* 公司简介页面样式 */
.stat-item {
    text-align: center;
    padding: 20px;
}

    .stat-item h3 {
        color: #007bff;
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

.culture-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

    .culture-card i {
        font-size: 3em;
        color: #007bff;
        margin-bottom: 20px;
    }

/* 网站建设页面样式 */
.service-list {
    list-style: none;
    padding: 0;
}

    .service-list li {
        margin-bottom: 15px;
    }

    .service-list i {
        color: #007bff;
        margin-right: 10px;
    }

.process-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.process-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 15px;
}


/* 商城开发页面样式 */
.shop-banner {
    background-image: url('../images/banner-shop.jpg');
}

.feature-item {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

    .feature-item i {
        font-size: 2.5em;
        color: #007bff;
        margin-bottom: 15px;
    }

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

    .feature-card .icon-box {
        width: 70px;
        height: 70px;
        background: #007bff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

        .feature-card .icon-box i {
            font-size: 30px;
            color: #fff;
        }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

    .feature-list li {
        padding: 8px 0;
        border-bottom: 1px dashed #eee;
    }

        .feature-list li:last-child {
            border-bottom: none;
        }

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5em;
    font-weight: bold;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 30px;
    }

    .process-step {
        margin-bottom: 30px;
    }
}

/* 微信开发页面样式 */
.wechat-banner {
    background-image: url('../images/banner-wechat.jpg');
}

.wechat-service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    align-items: start;
    transition: transform 0.3s;
}

    .wechat-service-card:hover {
        transform: translateY(-10px);
    }

.service-icon {
    font-size: 3em;
    color: #07c160;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

    .service-features li {
        margin-bottom: 10px;
    }

    .service-features i {
        color: #07c160;
        margin-right: 10px;
    }

.advantage-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}

    .advantage-card:hover {
        transform: translateY(-10px);
    }

.advantage-icon {
    width: 80px;
    height: 80px;
    background: #07c160;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .advantage-icon i {
        font-size: 2em;
        color: #fff;
    }

.timeline {
    position: relative;
    padding: 40px 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        background: #07c160;
        transform: translateX(-50%);
    }

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: relative;
    margin-left: 50%;
    width: calc(50% - 30px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #07c160;
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -40px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-info i {
    color: #07c160;
    margin-right: 10px;
}

.contact-qrcode {
    text-align: center;
}

    .contact-qrcode img {
        max-width: 200px;
        margin-bottom: 10px;
    }

/* 响应式调整 */
@media (max-width: 768px) {
    .wechat-service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 0 20px 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        margin-left: 50px !important;
        width: calc(100% - 70px);
    }

        .timeline-content::before {
            left: -40px !important;
        }
}

/* 网络推广页面样式 */
.marketing-banner {
    background-image: url('../images/banner-marketing.jpg');
}

.marketing-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}

    .marketing-card:hover {
        transform: translateY(-10px);
    }

.card-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .card-icon i {
        font-size: 30px;
        color: #007bff;
    }

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

    .service-list li {
        padding: 8px 0;
        border-bottom: 1px dashed #eee;
    }

.advantage-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}

    .advantage-item:hover {
        transform: translateY(-10px);
    }

.advantage-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 15px;
}

.case-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .case-card:hover {
        transform: translateY(-10px);
    }

.case-content {
    padding: 20px;
}

.process-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .process-icon i {
        font-size: 30px;
        color: #fff;
    }

/* 响应式调整 */
@media (max-width: 768px) {
    .marketing-card,
    .advantage-item,
    .case-card,
    .process-item {
        margin-bottom: 30px;
    }
}

/* 案例展示页面样式 */
.cases-banner {
    background-image: url('../images/banner-marketing.jpg');
}

/* 案例筛选导航 */
.case-filter {
    border-bottom: 1px solid #eee;
}

    .case-filter .nav-pills .nav-link {
        color: #333;
        border-radius: 20px;
        padding: 8px 20px;
        margin: 0 5px;
        transition: all 0.3s;
    }

        .case-filter .nav-pills .nav-link.active {
            background-color: #007bff;
            color: #fff;
        }

/* 案例卡片 */
.case-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .case-item:hover {
        transform: translateY(-10px);
    }

.case-image {
    position: relative;
    overflow: hidden;
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.case-item:hover .case-overlay {
    opacity: 1;
}

.case-info {
    padding: 20px;
}

.case-category {
    color: #007bff;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.case-desc {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 0;
}

/* 分页样式 */
.pagination .page-link {
    color: #333;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* 客户logo */
.client-logo {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

    .client-logo:hover {
        transform: translateY(-5px);
    }

    .client-logo img {
        max-height: 60px;
        filter: grayscale(100%);
        transition: filter 0.3s;
    }

    .client-logo:hover img {
        filter: grayscale(0%);
    }

/* 响应式调整 */
@media (max-width: 768px) {
    .case-filter .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }

        .case-filter .nav-pills .nav-link {
            white-space: nowrap;
        }
}

/* 新闻页面样式 */
.news-banner {
    background-image: url('../images/banner-marketing.jpg');
}

/* 新闻列表样式 */
.news-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .news-item:hover {
        transform: translateY(-5px);
    }

.news-image {
    border-radius: 5px;
    overflow: hidden;
}

.news-info {
    padding: 15px 0;
}

    .news-info h3 {
        margin-bottom: 15px;
    }

        .news-info h3 a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

            .news-info h3 a:hover {
                color: #007bff;
            }

.news-meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

    .news-meta span {
        margin-right: 20px;
    }

    .news-meta i {
        margin-right: 5px;
    }

.news-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* 侧边栏样式 */
.sidebar-widget {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

    .sidebar-widget h4 {
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #007bff;
    }

/* 搜索框 */
.search-widget .input-group {
    border-radius: 5px;
    overflow: hidden;
}

/* 分类列表 */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .category-list li {
        border-bottom: 1px solid #eee;
    }

        .category-list li:last-child {
            border-bottom: none;
        }

    .category-list a {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        color: #333;
        text-decoration: none;
        transition: color 0.3s;
    }

        .category-list a:hover {
            color: #007bff;
        }

/* 热门新闻 */
.hot-news-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

    .hot-news-item:last-child {
        border-bottom: none;
    }

    .hot-news-item h5 {
        font-size: 1em;
        margin: 0 0 5px 0;
    }

        .hot-news-item h5 a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

            .hot-news-item h5 a:hover {
                color: #007bff;
            }

/* 标签云 */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

    .tag:hover {
        background: #007bff;
        color: #fff;
    }

/* 响应式调整 */
@media (max-width: 768px) {
    .news-item .row {
        flex-direction: column;
    }

    .news-image {
        margin-bottom: 15px;
    }

    .news-info {
        padding: 0;
    }
}

/* 联系我们页面样式 */
.contact-banner {
    background-image: url('../images/banner-contact.jpg');
}

/* 联系信息卡片 */
.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}

    .info-card:hover {
        transform: translateY(-10px);
    }

.info-icon {
    width: 80px;
    height: 80px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .info-icon i {
        font-size: 2em;
        color: #fff;
    }

.info-card h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.info-card p {
    color: #666;
    margin-bottom: 5px;
}

/* 联系表单 */
.form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
}

    .form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    }

/* 二维码卡片 */
.qrcode-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .qrcode-card:hover {
        transform: translateY(-10px);
    }

    .qrcode-card img {
        max-width: 200px;
        margin-bottom: 20px;
    }

    .qrcode-card h4 {
        margin-bottom: 10px;
    }

    .qrcode-card p {
        color: #666;
    }

/* 地图容器 */
.map-wrapper {
    height: 450px;
    width: 100%;
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
    }

/* 响应式调整 */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 20px;
    }

    .info-card,
    .qrcode-card {
        margin-bottom: 30px;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: #007bff;
    }

.stats-container {
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
}


/* 服务卡片样式 */
.service-card {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    }

.service-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 0;
}

/* 流程卡片样式 */
.process-timeline {
    position: relative;
}

.process-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    height: 100%;
}

.process-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,123,255,0.1);
    position: absolute;
    top: 10px;
    right: 10px;
}

.process-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: #333;
}

.process-card p {
    color: #666;
    line-height: 1.6;
}

/* 通用标题样式 */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: #007bff;
    }

.lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.feature-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    text-align: left;
}

    .feature-list li {
        padding: 0.5rem 0;
        color: #666;
        position: relative;
        padding-left: 1.5rem;
    }

        .feature-list li:before {
            content: "•";
            color: #007bff;
            position: absolute;
            left: 0;
        }

/* 模块卡片样式 */
.module-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: start;
}

    .module-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.module-icon {
    font-size: 2rem;
    color: #007bff;
    margin-right: 1.5rem;
}

.module-content {
    flex: 1;
}

    .module-content h3 {
        color: #333;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .module-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .module-content ul li {
            color: #666;
            padding: 0.4rem 0;
        }

/* 时间线样式 */
.timeline-item {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    position: relative;
    text-align: center;
}

.timeline-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(0,123,255,0.1);
}

.timeline-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* 通用样式 */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: #007bff;
    }

.lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}


.column {
    width: 1200px;
    margin: 0px auto;
}

.city {
    margin-top: 20px;
}


.city-list li:first-child {
    font-weight: bold;
    margin: 0;
    width: 100%;
    display: block;
    border: 0 none;
    background: none;
    margin-bottom: 5px;
}



    .city-list li:first-child a {
        display: block;
        padding: 15px 25px;
        background: var(--light-color);
        border-radius: 10px;
        box-shadow: var(--box-shadow);
        color: var(--dark-color);
        text-decoration: none;
        font-weight: 500;
        transition: background 0.3s ease, color 0.3s ease;
        width: 200px;
    }



.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .city-list li {
        margin: 10px;
        display: inline-block;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .city-list a {
        display: block;
        padding: 15px 25px;
        background: var(--light-color);
        border-radius: 10px;
        box-shadow: var(--box-shadow);
        color: var(--dark-color);
        text-decoration: none;
        font-weight: 500;
        transition: background 0.3s ease, color 0.3s ease;
    }

        .city-list li:first-child a:hover, .city-list a:hover {
            background: var(--primary-color);
            color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
        }

    .city-list i {
        margin-right: 10px;
        color: var(--primary-color);
        transition: color 0.3s ease;
    }

    .city-list a:hover i {
        color: #fff;
    }
