* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 悬浮联系方式 */
.floating-contact {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.contact-toggle {
    background: #7030A0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50% 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
}

.contact-content {
    background: white;
    padding: 15px;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    min-width: 180px;
}

.floating-contact:hover .contact-content {
    transform: translateX(0);
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    color: #7030A0;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    font-weight: 500;
}

.qr-code {
    width: 100px;
    height: 100px;
    margin-top: 5px;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* 回到顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #7030A0;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #5a2480;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}


/* 头部样式 */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    color: #7030A0;
    font-size: 48px;
    font-weight: 700;
}

.logo p {
    color: #666;
    font-size: 16px;
    padding-left: 78px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #7030A0;
    background-color: rgba(112, 48, 160, 0.1);
}

/* 主体内容 */
main {
    margin-top: 130px;
}

/* 首页横幅 */
.hero {
    background: linear-gradient(rgba(112, 48, 160, 0.8), rgba(112, 48, 160, 0.9)), url('https://images.unsplash.com/photo-1541589319118-9656de406560?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 首页横幅轮播 */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide:nth-child(1) {
    background: linear-gradient(rgba(112, 48, 160, 0.8), rgba(112, 48, 160, 0.9)), url('https://images.unsplash.com/photo-1541589319118-9656de406560?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

.hero-slide:nth-child(2) {
    background: linear-gradient(rgba(112, 48, 160, 0.8), rgba(112, 48, 160, 0.9)), url('https://images.unsplash.com/photo-1584232619375-9c4bb3b9e4a5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

.hero-slide:nth-child(3) {
    background: linear-gradient(rgba(112, 48, 160, 0.8), rgba(112, 48, 160, 0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
}

.prev-btn, .next-btn {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(112, 48, 160, 0.8);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #7030A0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.btn-primary {
    display: inline-block;
    background-color: #7030A0;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid #7030A0;
}

.btn-primary:hover {
    background-color: transparent;
    color: #7030A0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 服务预览 */
.services-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #7030A0;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #7030A0;
    margin: 15px auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 68px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #7030A0;
    font-size: 22px;
    margin-bottom: 15px;
}

/* 关于我们预览 */
.about-preview {
    padding: 80px 0;
}

.about-preview .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.about-content ul li {
    margin-bottom: 15px;
    font-size: 16px;
}

.about-content ul li::before {
    content: "✓";
    color: #7030A0;
    font-weight: bold;
    margin-right: 10px;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #7030A0;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #7030A0;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #7030A0;
    color: white;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 联系信息预览 */
.contact-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item .icon {
    font-size: 58px;
    margin-bottom: 20px;
    color: #7030A0;
}

.contact-item h3 {
    color: #7030A0;
    margin-bottom: 15px;
}

/* 页脚 */
footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #7030A0;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #7030A0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #aaa;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 15px 0;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .about-preview .container {
        flex-direction: column;
    }
    
    main {
        margin-top: 130px;
    }

    /* 在现有CSS基础上添加以下代码 */
}
/* 页面标题 */
.page-header {
    background: linear-gradient(rgba(112, 48, 160, 0.8), rgba(112, 48, 160, 0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

/* 联系详情 */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .contact-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #7030A0;
}

.contact-card h3 {
    color: #7030A0;
    margin-bottom: 15px;
}

/* 联系表单 */
.contact-form-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.contact-form-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: #7030A0;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7030A0;
}

.map-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container h2 {
    color: #7030A0;
    margin-bottom: 25px;
    text-align: center;
}

.map-placeholder {
    height: 500px;
    background-color: #eee;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #666;
}

/* 常见问题 */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: #7030A0;
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    background-color: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.open .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* 设施环境页面样式 */
.environment-grid,
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.environment-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.environment-item:hover {
    transform: translateY(-10px);
}

.environment-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.environment-info {
    padding: 20px;
    background: white;
}

.environment-info h3 {
    color: #7030A0;
    margin-bottom: 10px;
}

.areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.area-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.area-item:hover {
    transform: translateY(-5px);
}

.area-item .area-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #7030A0;
}

.area-item h3 {
    color: #7030A0;
    margin-bottom: 15px;
}

/* 环境特色 */
.features-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-number {
    background-color: #7030A0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-text h3 {
    color: #7030A0;
    margin-bottom: 10px;
}

/* 服务详情 */
.service-category {
    margin-bottom: 50px;
}

.service-category h2 {
    color: #7030A0;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #7030A0;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    display: flex;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 30px;
    margin-right: 20px;
    color: #7030A0;
}

.service-text h3 {
    color: #7030A0;
    margin-bottom: 10px;
}

/* 服务优势 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #7030A0;
}

.advantage-item h3 {
    color: #7030A0;
    margin-bottom: 15px;
}

/* 关于我们详情 */
.about-detail {
    padding: 50px 0;
}

.about-detail .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.about-detail-content h2,
.about-detail-content h3 {
    color: #7030A0;
    margin-bottom: 20px;
}

.about-detail-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 4px solid #7030A0;
}

.values-list li strong {
    color: #7030A0;
}

.about-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* 团队介绍 */
.team {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    color: #7030A0;
    margin-bottom: 10px;
}

/* 响应式设计增强 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .about-detail .container {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section .container {
        grid-template-columns: 1fr;
    }
    
    .features-content {
        grid-template-columns: 1fr;
    }
}



.service-card h3 {
    color: #7030A0;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* 公司实力介绍 */
.strengths-preview {
    padding: 80px 0;
    background-color: #fff;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.strength-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.strength-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.strength-content {
    padding: 20px;
    text-align: center;
}

.strength-content h3 {
    color: #7030A0;
    font-size: 22px;
    margin-bottom: 10px;
}

.strength-data {
    color: #7030A0;
    font-weight: 500;
    margin-bottom: 10px;
}

.strength-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 响应式设计增强 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .about-detail .container {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section .container {
        grid-template-columns: 1fr;
    }
    
    .features-content {
        grid-template-columns: 1fr;
    }
}

/* 公司实力介绍移动端适配 */
@media (max-width: 768px) {
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strength-card {
        margin: 0 10px;
    }
    
    .strength-image img {
        height: 180px;
    }
    
    .strength-content {
        padding: 15px;
    }
    
    .strength-content h3 {
        font-size: 20px;
    }
    
    .strength-data {
        font-size: 14px;
    }
}

    /* 联系页面主容器 */
.contact-main-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

/* 联系信息部分 */
.contact-info-section {
    flex: 1;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .contact-icon {
    font-size: 58px;
    margin-bottom: 15px;
    color: #7030A0;
}

.contact-card h3 {
    color: #7030A0;
    margin-bottom: 10px;
}

/* 联系表单部分 */
.contact-form-section {
    flex: 1;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.form-container h2 {
    color: #7030A0;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7030A0;
}

/* 地图容器 */
.map-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.map-container h2 {
    color: #7030A0;
    margin-bottom: 25px;
    text-align: center;
}

.map-placeholder {
    height: 300px;
    background-color: #eee;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info-section,
    .contact-form-section {
        width: 100%;
    }
    
    .contact-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .contact-main-section {
        padding: 30px 0;
    }
}

