/* 新闻页面专用样式 */

/* 置顶新闻样式 */
.news-featured {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.news-featured-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #e63946;
    color: white;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.news-featured-content {
    display: flex;
    flex-direction: column;
}

.news-featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-featured:hover .news-featured-image img {
    transform: scale(1.05);
}

.news-featured-info {
    padding: 30px;
}

.news-date {
    display: inline-block;
    background: #e9ecef;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    color: #495057;
}

.news-featured h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-featured h2 a {
    color: #212529;
    transition: color 0.3s ease;
}

.news-featured h2 a:hover {
    color: #0d6efd;
    text-decoration: none;
}

.news-summary {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    color: #0d6efd;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-read-more:hover {
    color: #0b5ed7;
    text-decoration: none;
    transform: translateX(5px);
}

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

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

/* 新闻列表项样式 */
.news-list {
    position: relative;
}

.news-item {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.news-item-content {
    display: flex;
    flex-wrap: wrap;
}

.news-item-image {
    flex: 0 0 30%;
    overflow: hidden;
    min-height: 180px;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-item-image img {
    transform: scale(1.05);
}

.news-item-info {
    flex: 0 0 70%;
    padding: 25px;
}

.news-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-item h3 a {
    color: #212529;
    transition: color 0.3s ease;
}

.news-item h3 a:hover {
    color: #0d6efd;
    text-decoration: none;
}

/* 侧边栏通用样式 */
.sidebar-search,
.sidebar-category,
.sidebar-popular-news,
.sidebar-latest-updates {
    background: white;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.sidebar-search:hover,
.sidebar-category:hover,
.sidebar-popular-news:hover,
.sidebar-latest-updates:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

/* 侧边栏标题样式 */
.sidebar-search h4,
.sidebar-category h4,
.sidebar-popular-news h4,
.sidebar-latest-updates h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-search h4::after,
.sidebar-category h4::after,
.sidebar-popular-news h4::after,
.sidebar-latest-updates h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #0d6efd;
    border-radius: 3px;
}

/* 搜索框样式 */
.search-form {
    position: relative;
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: #0d6efd;
}

.search-btn {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: #0b5ed7;
}

/* 分类列表样式 */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li a {
    display: block;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #495057;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-list li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #0d6efd;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.category-list li a:hover {
    background: #e9ecef;
    color: #0d6efd;
    text-decoration: none;
    transform: translateX(5px);
}

.category-list li a:hover::before {
    transform: translateX(0);
}

/* 热门新闻样式 */
.popular-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-news-list li {
    margin-bottom: 15px;
}

.popular-news-list li a {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.popular-news-list li a:hover {
    background: #e9ecef;
    text-decoration: none;
    transform: translateX(5px);
}

.popular-news-image {
    flex: 0 0 80px;
    height: 80px;
    overflow: hidden;
}

.popular-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-news-list li a:hover .popular-news-image img {
    transform: scale(1.05);
}

.popular-news-info {
    flex: 1;
    padding: 15px;
}

.popular-news-date {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
}

.popular-news-info h5 {
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    margin: 0;
    line-height: 1.4;
}

.popular-news-list li a:hover .popular-news-info h5 {
    color: #0d6efd;
}

/* 最新动态滚动样式 */
.news-scroll {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    height: 120px;
}

.news-track {
    animation: newsScroll 12s linear infinite;
}

@keyframes newsScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-66.66%);
    }
}

.news-slide {
    padding: 15px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.news-slide:last-child {
    border-bottom: none;
}

.news-slide a {
    color: #495057;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
}

.news-slide a:hover {
    color: #0d6efd;
    text-decoration: none;
}

/* 新闻详情页样式 */
.article-detail-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* 文章头部样式 */
.article-header {
    margin-bottom: 30px;
    position: relative;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #04284a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Archivo', sans-serif;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #6c757d;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta i {
    font-size: 16px;
    color: #0d6efd;
}

/* 文章摘要样式 */
.article-excerpt {
    background: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 6px 6px 0;
}

.excerpt-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #495057;
    margin: 0;
}

/* 主图样式 */
.article-featured-image {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.article-featured-image:hover {
    transform: translateY(-5px);
}

.featured-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.article-featured-image:hover .featured-img {
    transform: scale(1.02);
}

.image-caption {
    background: rgba(4, 40, 74, 0.8);
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
}

/* 文章正文样式 */
.article-body {
    margin-bottom: 40px;
}

.article-section {
    margin-bottom: 40px;
    position: relative;
}

.section-title {
    font-weight: 700;
    color: #04284a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #f0f0f0;
    font-family: 'Archivo', sans-serif;
}

.article-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.article-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.article-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.article-list li::before {
    content: '•';
    color: #0d6efd;
    font-size: 1.5em;
    position: absolute;
    left: -10px;
    top: -5px;
}

/* 引用样式 */
.article-quote {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    padding: 30px;
    margin: 40px 0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.article-quote::before {
    content: '"';
    font-size: 8rem;
    position: absolute;
    top: -20px;
    left: 10px;
    opacity: 0.1;
    font-family: 'Georgia', serif;
}

.article-quote blockquote {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.article-quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-quote footer {
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
}

/* 优势网格样式 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #0d6efd;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.benefit-content h4 {
    font-size: 1.2rem;
    color: #04284a;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* 标签样式 */
.article-tags {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.article-tags span {
    font-weight: 600;
    color: #04284a;
    margin-right: 15px;
}

.article-tags .tag {
    display: inline-block;
    background: #f0f4f8;
    color: #0d6efd;
    padding: 6px 15px;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.article-tags .tag:hover {
    background: #0d6efd;
    color: white;
    transform: translateY(-2px);
}

/* 分享样式 */
.article-share {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.article-share span {
    font-weight: 600;
    color: #04284a;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.share-icon.facebook {
    background: #1877f2;
}

.share-icon.twitter {
    background: #1da1f2;
}

.share-icon.linkedin {
    background: #0a66c2;
}

.share-icon.whatsapp {
    background: #25d366;
}

.share-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* 相关新闻样式 */
.related-news {
    margin-bottom: 40px;
}

.related-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #04284a;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 3px solid #f0f0f0;
    font-family: 'Archivo', sans-serif;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.related-image {
    height: 180px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-item:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 20px;
}

.related-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #04284a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-content h4 a {
    color: #04284a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h4 a:hover {
    color: #0d6efd;
}

.related-date {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* 评论区样式 */
.article-comments {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #04284a;
    margin-bottom: 25px;
    font-family: 'Archivo', sans-serif;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-form .form-group {
    position: relative;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.comment-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.comment-form textarea:focus,
.comment-form input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comment-form button {
    align-self: flex-start;
    background: #0d6efd;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form button:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .article-detail-content {
        padding: 30px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .article-detail-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-quote {
        padding: 20px;
    }
    
    .article-quote p {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* 分页样式 */
.pagination .page-link {
    border-radius: 6px;
    margin: 0 5px;
    transition: all 0.3s ease;
    color: #495057;
    border: 1px solid #e0e0e0;
}

.pagination .page-link:hover {
    color: #0d6efd;
    border-color: #0d6efd;
    background: #f8f9fa;
}

.pagination .page-item.page-active .page-link {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .news-featured-image {
        height: 250px;
    }
    
    .news-item-image {
        flex: 0 0 40%;
        min-height: 150px;
    }
    
    .news-item-info {
        flex: 0 0 60%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .news-featured-image {
        height: 220px;
    }
    
    .news-item-image,
    .news-item-info {
        flex: 0 0 100%;
    }
    
    .news-item-image {
        height: 200px;
    }
    
    .news-featured-info,
    .news-item-info {
        padding: 20px;
    }
    
    .news-featured h2 {
        font-size: 22px;
    }
    
    .news-item h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .news-featured-info,
    .news-item-info {
        padding: 15px;
    }
    
    .news-featured h2 {
        font-size: 20px;
    }
    
    .news-item h3 {
        font-size: 16px;
    }
    
    .popular-news-image {
        flex: 0 0 60px;
        height: 60px;
    }
    
    .popular-news-info {
        padding: 10px;
    }
}

/* 联系我们页面样式 */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* 联系信息卡片部分 */
.contact-info-section {
    margin-bottom: 50px;
}

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

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 24px;
    color: white;
}

.contact-card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #04284a;
    margin-bottom: 8px;
    font-family: 'Archivo', sans-serif;
}

.contact-card-content p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* 联系表单和地图部分 */
.contact-form-map {
    margin-bottom: 30px;
}

.contact-form-wrapper,
.contact-map-wrapper {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #04284a;
    margin-bottom: 15px;
    font-family: 'Archivo', sans-serif;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #0d6efd;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.contact-form .form-control::placeholder {
    color: #adb5bd;
    transition: color 0.3s ease;
}

.contact-form .form-control:focus::placeholder {
    color: #e9ecef;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(13, 110, 253, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

/* 地图部分 */
.contact-map {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.map-marker i {
    font-size: 20px;
    color: white;
}

.map-text {
    position: absolute;
    bottom: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #04284a;
    margin: 0 0 5px 0;
}

.map-text p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* 营业时间 */
.business-hours h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #04284a;
    margin-bottom: 20px;
    font-family: 'Archivo', sans-serif;
}

.business-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours li span:first-child {
    font-weight: 500;
    color: #343a40;
}

.business-hours li span:last-child {
    color: #6c757d;
}

/* 社交媒体部分 */
.contact-social-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.contact-social-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #04284a;
    margin-bottom: 25px;
    font-family: 'Archivo', sans-serif;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (min-width: 1201px) {
.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
}


@media (max-width: 1200px) {
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.linkedin {
    background: #0a66c2;
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link.instagram {
    background: #e4405f;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.social-link:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}





