/* 页面标题 */
.page-title {
    margin-top: 80px;
    padding: 40px 0;
    background: #f8f8f8;
    text-align: center;
}

.page-title h2 {
    font-size: 36px;
    color: #333;
}

/* 联系信息 */
.contact-info {
    padding: 60px 0;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.info-item p {
    color: #666;
    margin: 5px 0;
}

/* 地图位置 */
.location-map {
    padding: 60px 0;
    background: #f8f8f8;
}

.map-wrapper {
    display: flex;
    gap: 40px;
}

.map {
    flex: 2;
    height: 400px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.traffic-guide {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.traffic-guide h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.traffic-guide ul {
    list-style: none;
}

.traffic-guide li {
    color: #666;
    margin: 15px 0;
    padding-left: 20px;
    position: relative;
}

.traffic-guide li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #FF6B6B;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* 在线留言 */
.message-form {
    padding: 60px 0;
}

.message-form form {
    max-width: 800px;
    margin: 0 auto;
    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: 5px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* 关注我们 */
.follow-us {
    padding: 60px 0;
    background: #f8f8f8;
}

.qrcode-list {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.qrcode-item p {
    color: #666;
}

/* 通用样式 */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #FF6B6B;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #ff5252;
} 