/* 顶部横幅 */
.contact-banner {
    margin-top: 80px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 24px;
}

/* 联系信息和地图 */
.contact-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item img {
    width: 40px;
    margin-right: 20px;
}

.info-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.contact-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 在线留言 */
.message-section {
    padding: 80px 0;
}

.message-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.message-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.message-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: #c41230;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #a30f28;
}

/* 门店信息 */
.stores-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.stores-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stores-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.store-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.store-card:hover {
    transform: translateY(-5px);
}

.store-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.store-info {
    padding: 20px;
}

.store-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.store-info p {
    color: #666;
    margin-bottom: 10px;
}

/* 招商加盟 */
.franchise-section {
    padding: 80px 0;
}

.franchise-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.franchise-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.franchise-content > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.franchise-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.franchise-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.franchise-info li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.franchise-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #c41230;
    border-radius: 50%;
}

.franchise-btn {
    display: inline-block;
    background: #c41230;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.franchise-btn:hover {
    background: #a30f28;
}

.franchise-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
} 