.container {
    width: 1280px !important;
}

/* 联系方式卡片样式 */
.contact-cards {
    width: 100%;
}

.contact-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 30%;
    transition: all 0.3s ease;
}

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

.contact-icon {
    margin-right: 20px;
}

.contact-icon .fa {
    font-size: 36px;
    color: #ff0031;
}

.contact-text h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 16px;
    color: #666;
}

/* 公司地址样式 */


.address-container {
    width: 100%;
}

.address-info {
    width: 40%;
}

.address-info h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
}

.address-item h4 {
    font-size: 18px;
    font-weight: 500;
}

.address-item {
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-item:hover {
    background-color: #f0f0f0;
}

.address-item.active {
    background-color: #f0f0f0;
    border-left: 3px solid #ff0031;
}

.address-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.address-map {
    width: 55%;
}

#map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

/* 信息窗体样式 */
.info-window {
    padding: 10px;
}

.info-window h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.info-window p {
    font-size: 14px;
    color: #666;
}

/* 表单样式 */
.contact-form {
    background-color: #f5f5f7;
}

.form-title {
    font-size: 24px;
    font-weight: 500;
    color: #000;
}

.inquiry-form {
    width: 100%;
}

.form-row {
    width: 100%;
}

.form-group {
    width: 32%;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff0031;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 0, 49, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check input[type="checkbox"] {
    margin-right: 8px;
}

.form-check label {
    font-size: 14px;
    color: #666;
}

.submit-btn {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 40px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #ff0031;
    color: #fff;
    border-color: #ff0031;
}

/* 隐私政策链接样式 */
.privacy-link {
    color: #ff0031;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: #cc0025;
    text-decoration: underline;
}

/* 隐私政策弹窗样式 */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.privacy-modal-content {
    background-color: #fff;
    margin: 2% auto;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px 12px 0 0;
}

.privacy-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.privacy-close {
    color: #999;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.privacy-close:hover {
    color: #ff0031;
    background-color: #fff;
    transform: scale(1.1);
}

.privacy-modal-body {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    max-height: 60vh;
}

.privacy-content h4 {
    color: #333;
    margin: 20px 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.privacy-content h4:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-content ul {
    color: #666;
    line-height: 1.6;
    margin: 10px 0 15px 20px;
}

.privacy-content li {
    margin-bottom: 5px;
}

.privacy-update {
    color: #999;
    font-size: 14px;
    font-style: italic;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.privacy-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    background-color: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.privacy-agree-btn,
.privacy-close-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.privacy-agree-btn {
    background-color: #ff0031;
    color: white;
}

.privacy-agree-btn:hover {
    background-color: #cc0025;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 49, 0.3);
}

.privacy-close-btn {
    background-color: #6c757d;
    color: white;
}

.privacy-close-btn:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .privacy-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }

    .privacy-modal-header {
        padding: 15px 20px;
    }

    .privacy-modal-header h3 {
        font-size: 20px;
    }

    .privacy-modal-body {
        padding: 20px;
    }

    .privacy-modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }

    .privacy-agree-btn,
    .privacy-close-btn {
        width: 100%;
    }
}