/* 主导航菜单样式 */
.navbar-nav .nav-item {
    padding: 0 10px;
}

.navbar-nav .nav-link {
    padding: 8px 15px;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0073aa;
}

/* 下拉菜单样式 */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 8px 0;
}

.navbar-nav .dropdown-item {
    padding: 8px 20px;
    color: #333;
}

.navbar-nav .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0073aa;
}

/* 当前激活菜单项样式 */
.navbar-nav .current-menu-item > .nav-link,
.navbar-nav .current-menu-parent > .nav-link {
    color: #0073aa;
}

/* 服务项目样式 */
.service-icon {
    font-size: 2.5rem;
    color: #0073aa;
    margin-bottom: 1rem;
}

.service-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .card-body {
    padding: 2rem;
}

.service-card .card-title {
    color: #333;
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: #666;
    line-height: 1.6;
}

/* 关于我们板块样式 */
.about-section {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-section .about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-section .section-title {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #fff;
}

.about-section .about-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-section .about-button {
    margin-top: 30px;
}

.about-section .btn-more {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
}

.about-section .btn-more:hover {
    background-color: #fff;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* 新闻动态板块样式 */
.news-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-section .section-title {
    margin-bottom: 40px;
}

.news-section .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.news-section .title-line {
    width: 60px;
    height: 3px;
    background-color: #0088cc;
    margin: 0 auto;
}

/* 新闻标签页样式 */
.news-tabs {
    margin-bottom: 30px;
}

.news-section .nav-tabs {
    border: none;
    margin-bottom: 30px;
}

.news-section .nav-tabs .nav-item {
    margin: 0 15px;
}

.news-section .nav-tabs .nav-link {
    border: none;
    background: none;
    color: #666;
    font-size: 18px;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.news-section .nav-tabs .nav-link:hover {
    color: #0088cc;
}

.news-section .nav-tabs .nav-link.active {
    color: #0088cc;
    font-weight: bold;
}

.news-section .nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #0088cc;
}

/* 新闻列表样式 */
.news-item {
    display: flex;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.news-date {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid #eee;
    margin-right: 20px;
}

.news-date .date {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    line-height: 1;
    margin-bottom: 5px;
}

.news-date .month {
    display: block;
    font-size: 14px;
    color: #666;
}

.news-content {
    flex-grow: 1;
}

.news-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.4;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #0088cc;
}

.news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    height: 67px;
    overflow: hidden;
}

.news-more {
    text-align: right;
}

.news-more .read-more {
    color: #0088cc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-more .read-more:hover {
    color: #006699;
    text-decoration: underline;
}

/* 页脚样式 */
.footer h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    color: #fff;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #0088cc;
}

/* 页脚联系方式样式 */
.footer-contact .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-list li {
    margin-bottom: 5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
}

.footer-contact .contact-list li:last-child {
    margin-bottom: 0;
}

.footer-contact .contact-list li i {
    margin-right: 10px;
    font-size: 16px;
    color: #0088cc;
    width: 20px;
    text-align: center;
    margin-top: 4px;
}

.footer-contact .contact-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-list li a:hover {
    color: #0088cc;
}

/* 页脚二维码样式 */
.footer-qrcodes {
    padding-top: 2px;
}

.footer-qrcodes .qrcode-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-qrcodes .qrcode-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-qrcodes .qrcode-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.footer-qrcodes .qrcode-name {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
}

/* 响应式样式 */
@media (max-width: 991px) {
    .navbar-nav .nav-item {
        padding: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
    }
    
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1rem;
    }

    .service-card .card-body {
        padding: 1.5rem;
    }

    .about-section {
        min-height: var(--about-mobile-height, 400px) !important;
    }

    .about-section .about-content {
        padding: 40px 15px;
    }

    .about-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .about-section .about-desc {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .about-section .btn-more {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .news-section {
        padding: 50px 0;
    }

    .news-section .section-title h2 {
        font-size: 28px;
    }

    .news-section .nav-tabs .nav-item {
        margin: 0 10px;
    }

    .news-section .nav-tabs .nav-link {
        font-size: 16px;
        padding: 8px 15px;
    }

    .news-item {
        flex-direction: column;
        padding: 15px;
    }

    .news-date {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 0 0 10px 0;
        margin: 0 0 15px 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .news-date .date {
        font-size: 24px;
        margin: 0 10px 0 0;
    }

    .news-date .month {
        font-size: 13px;
    }

    .news-title {
        font-size: 16px;
    }

    .news-excerpt {
        height: auto;
        margin-bottom: 10px;
    }

    .footer h4 {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .footer h4::after {
        width: 40px;
    }

    .footer-qrcodes .qrcode-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .about-section .section-title {
        font-size: 1.8rem;
    }

    .about-section .about-desc {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Copyright 区域样式 */
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #0088cc;
}

/* 客户案例页面样式 */
.page-banner {
    position: relative;
    background-color: #f8f9fa;
}

.banner-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-title {
    position: relative;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    z-index: 1;
}

.case-section {
    padding: 80px 0;
    background-color: #fff;
}

.case-item {
    margin-bottom: 100px;
}

.case-item:last-child {
    margin-bottom: 0;
}

.case-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.case-image:hover img {
    transform: scale(1.02);
}

.case-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.case-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0088cc;
}

.case-description {
    color: #666;
    line-height: 1.8;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .case-item {
        margin-bottom: 60px;
    }

    .case-content {
        margin-top: 2rem;
    }

    .case-title {
        font-size: 1.5rem;
    }
}

/* 产品分类页面样式 */
.page-banner {
    position: relative;
    margin-bottom: 30px;
}

.banner-wrapper {
    position: relative;
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-title {
    position: relative;
    font-size: 2.5rem;
    font-weight: 600;
    z-index: 1;
}

.product-card {
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #0088cc;
}

.product-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 分页样式 */
.pagination-wrapper {
    text-align: center;
}

.pagination-wrapper .page-numbers {
    display: inline-flex;
    padding-left: 0;
    list-style: none;
    margin: 20px 0;
}

.pagination-wrapper .page-numbers li {
    margin: 0 2px;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
    display: inline-block;
    padding: 8px 16px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers a:hover {
    background-color: #f8f9fa;
    border-color: #0088cc;
    color: #0088cc;
}

.pagination-wrapper .page-numbers .current {
    background-color: #0088cc;
    border-color: #0088cc;
    color: #fff;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .product-image img {
        height: 200px;
    }
}

/* 产品详情页样式 */
.product-banner {
    position: relative;
    margin-bottom: 30px;
}

.product-banner .banner-wrapper {
    position: relative;
    height: 208px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.product-detail .product-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.product-detail .product-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0088cc;
}

.product-detail .product-meta {
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.95rem;
}

.product-detail .product-meta span {
    margin-right: 2rem;
}

.product-detail .product-meta i {
    margin-right: 0.5rem;
    color: #0088cc;
}

.product-detail .product-meta a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-detail .product-meta a:hover {
    color: #0088cc;
}

.product-detail .product-content {
    color: #333;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.product-detail .product-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

.product-detail .product-content p {
    margin-bottom: 1.5rem;
}

.product-navigation {
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.product-navigation .nav-previous,
.product-navigation .nav-next {
    position: relative;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.product-navigation .nav-previous:hover,
.product-navigation .nav-next:hover {
    background: #f1f3f5;
}

.product-navigation .nav-subtitle {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.product-navigation .nav-title {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-navigation .nav-title:hover {
    color: #0088cc;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .product-banner .banner-wrapper {
        height: 208px;
    }

    .product-detail .product-title {
        font-size: 2rem;
    }

    .product-detail .product-meta span {
        display: block;
        margin-bottom: 0.5rem;
    }

    .product-navigation .nav-previous,
    .product-navigation .nav-next {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .product-banner .banner-wrapper {
        height: 200px;
    }

    .product-detail .product-title {
        font-size: 1.8rem;
    }
}

/* 产品分类导航样式 */
.product-categories {
    margin-bottom: 40px;
}

.product-cat-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.product-cat-list .list-inline-item {
    margin: 0;
}

.product-cat-list .cat-link {
    display: inline-block;
    padding: 8px 20px;
    color: #666;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.product-cat-list .cat-link:hover,
.product-cat-list .cat-link.active {
    background-color: #0088cc;
    border-color: #0088cc;
    color: #fff;
}

@media (max-width: 768px) {
    .product-cat-list {
        gap: 8px;
    }

    .product-cat-list .cat-link {
        padding: 6px 15px;
        font-size: 13px;
    }
}

/* 文章分类导航样式 */
.news-nav-section {
    border-bottom: 1px solid #eee;
}

.news-cat-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.news-cat-list .list-inline-item {
    margin: 0;
}

.news-cat-list .cat-link {
    display: inline-block;
    padding: 8px 20px;
    color: #666;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-cat-list .cat-link:hover,
.news-cat-list .cat-link.active {
    background-color: #0088cc;
    border-color: #0088cc;
    color: #fff;
}

/* 文章列表样式 */
.news-list-section {
    background-color: #f8f9fa;
}

.news-item {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    transition: all 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.news-date {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid #eee;
    margin-right: 20px;
}

.news-date .date {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    line-height: 1;
    margin-bottom: 5px;
}

.news-date .month {
    display: block;
    font-size: 14px;
    color: #666;
}

.news-content {
    flex-grow: 1;
}

.news-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    line-height: 1.4;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #0088cc;
}

.news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.news-more {
    text-align: right;
}

.news-more .read-more {
    color: #0088cc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.news-more .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.news-more .read-more:hover {
    color: #006699;
}

.news-more .read-more:hover i {
    transform: translateX(3px);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-cat-list {
        gap: 8px;
    }

    .news-cat-list .cat-link {
        padding: 6px 15px;
        font-size: 13px;
    }

    .news-item {
        padding: 20px;
        flex-direction: column;
    }

    .news-date {
        width: 100%;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        margin-right: 0;
        margin-bottom: 15px;
        padding-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .news-date .date {
        font-size: 24px;
        margin: 0 10px 0 0;
    }

    .news-date .month {
        font-size: 13px;
    }

    .news-title {
        font-size: 18px;
    }
}

/* 文章详情页样式 */
.article-detail {
    background-color: #fff;
}

.article-meta {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.article-meta span {
    display: inline-block;
    margin-right: 2rem;
    color: #666;
    font-size: 0.95rem;
}

.article-meta i {
    margin-right: 0.5rem;
    color: #0088cc;
}

.article-meta a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-meta a:hover {
    color: #0088cc;
}

.article-content {
    color: #333;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.article-navigation {
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.article-navigation .nav-previous,
.article-navigation .nav-next {
    position: relative;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.article-navigation .nav-previous:hover,
.article-navigation .nav-next:hover {
    background: #f1f3f5;
}

.article-navigation .nav-subtitle {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.article-navigation .nav-title {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-navigation .nav-title:hover {
    color: #0088cc;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .article-meta span {
        display: block;
        margin-bottom: 0.5rem;
    }

    .article-navigation .nav-previous,
    .article-navigation .nav-next {
        margin-bottom: 1rem;
    }

    .article-content {
        font-size: 0.95rem;
    }
}

/* Contact Page Styles */
.page-banner {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-title {
    position: relative;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    /*margin-top: 120px;*/
}

.contact-info {
    background-color: #f8f9fa;
}

.contact-details {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #007bff;
}

.contact-details .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details .contact-list li {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-details .contact-list li:last-child {
    border-bottom: none;
}

.contact-details .contact-list li i {
    margin-right: 20px;
    font-size: 1.5rem;
    color: #007bff;
    width: 30px;
    text-align: center;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
        margin-top: 100px;
    }
    
    .contact-map {
        margin-top: 30px;
        min-height: 300px;
    }
    
    .contact-details {
        margin-bottom: 30px;
    }

    .footer-contact .contact-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-contact .contact-list li i {
        font-size: 14px;
        margin-top: 3px;
    }
    
    .contact-details .contact-list li {
        padding: 15px 0;
        font-size: 1rem;
    }
    
    .contact-details .contact-list li i {
        font-size: 1.2rem;
        margin-right: 15px;
    }
}

/* About Page Content Styles */
.page-content {
    background-color: #fff;
}

.page-content .entry-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.page-content .entry-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-content .entry-content h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #007bff;
}

.page-content .entry-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin: 25px 0 15px;
}

.page-content .entry-content p {
    margin-bottom: 1.5rem;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.page-content .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-content .entry-content ul,
.page-content .entry-content ol {
    margin: 20px 0;
    padding-left: 20px;
}

.page-content .entry-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.page-content .entry-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 5px solid #007bff;
    background: #f8f9fa;
    font-style: italic;
    color: #555;
}

.page-content .entry-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-content .entry-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-content .entry-content {
        padding: 0 15px;
    }
    
    .page-content .entry-content h2 {
        font-size: 24px;
    }
    
    .page-content .entry-content h3 {
        font-size: 20px;
    }
    
    .page-content .entry-content p {
        font-size: 15px;
    }
}

/* Contact Form Styles */
.contact-form-section {
    background-color: #f8f9fa;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 1px solid #dee2e6;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #0088cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 136, 204, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background-color: #0088cc;
    border-color: #0088cc;
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #006da3;
    border-color: #006da3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.2);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 20px !important;
    }
    
    .contact-form .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Contact Section Styles */
.contact-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.contact-details {
    height: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
    height: 100%;
    padding: 30px !important;
}

.section-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #0088cc;
}

.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    padding: 5px 0;
    color: #666;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list li i {
    margin-right: 15px;
    font-size: 1.2rem;
    color: #0088cc;
    width: 24px;
    text-align: center;
    margin-top: 4px;
}

.contact-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 1px solid #dee2e6;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #0088cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 136, 204, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background-color: #0088cc;
    border-color: #0088cc;
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #006da3;
    border-color: #006da3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.2);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-details,
    .contact-form-wrapper {
        margin-bottom: 30px;
        padding: 20px !important;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contact-list li {
        font-size: 0.95rem;
    }

    .contact-form .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }
}

