@charset "utf-8";

/* ===== 联系我们页面样式 ===== */
.container {
    padding-top: 90px;
    background: #f9f9f9;
}

/* 导航面包屑 */
.nav {
    background: #f5f5f5;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.nav .con-center {
    font-size: 14px;
    color: #666;
}

.nav a {
    color: #666;
    margin: 0 5px;
    text-decoration: none;
}

.nav a:hover {
    color: #009B96;
}

.nav i {
    font-style: normal;
    margin: 0 5px;
    color: #ccc;
}

.nav span {
    color: #009B96;
    margin-left: 5px;
}

/* 联系我们区域 */
.we {
    background: #fff;
    padding: 50px 0;
}

/* 标题样式 */
.title {
    text-align: center;
    margin: 40px 0 30px;
}

.title h4 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.title h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #009B96;
}

.title p {
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title hr {
    display: none;
}

/* 地图 */
#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

/* 联系我们内容 */
.we-content {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.we-content-le {
    flex: 1;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.we-content-le h5 {
    font-size: 22px;
    font-weight: 600;
    color: #009B96;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #009B96;
}

.we-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.we-ul li {
    display: flex;
    margin-bottom: 20px;
}

.we-ul li h6 {
    width: 60px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin: 0;
}

.we-ul li p {
    flex: 1;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.we-ul1 {
    width: 380px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    list-style: none;
    margin: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.we-ul1 li {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.we-ul1 li:last-child {
    margin-bottom: 0;
}

.we-icon {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.we-icon1 {
    background: #e0f0f0;
}

.we-icon2 {
    background: #e0f0f0;
}

.we-icon1::before {
    content: '📞';
    display: block;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
}

.we-icon2::before {
    content: '📱';
    display: block;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
}

.we-ul1 li .le {
    flex: 1;
}

.we-ul1 li .le h6 {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.we-ul1 li .le p {
    color: #333;
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
}

.we-phone,
.fix-phone {
    font-weight: 500;
}

.we-code {
    width: 100px;
    height: 100px;
    border: 2px solid #009B96;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}

.we-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 留言反馈区域 */
.we-us {
    background: #fff;
    border-radius: 10px;
    padding: 50px;
    margin: 0 auto 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.we-lx {
    max-width: 800px;
    margin: 0 auto;
}

.we-lx-ul {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    list-style: none;
    padding: 0;
}

.we-lx-ul li {
    flex: 1;
}

.we-lx-ul input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s;
}

.we-lx-ul input:focus {
    outline: none;
    border-color: #009B96;
    box-shadow: 0 0 0 3px rgba(0,155,150,0.1);
}

.we-lx textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    resize: vertical;
    margin-bottom: 25px;
    transition: all 0.3s;
    font-family: inherit;
}

.we-lx textarea:focus {
    outline: none;
    border-color: #009B96;
    box-shadow: 0 0 0 3px rgba(0,155,150,0.1);
}

/* 提交按钮 */
.lx-btn {
    display: block;
    width: 200px;
    height: 50px;
    margin: 0 auto;
    background: #009B96;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,155,150,0.2);
}

.lx-btn:hover {
    background: #007B76;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,155,150,0.3);
}

/* 错误提示 */
.uname-p,
.phone-p,
.liuyan-p {
    color: #ff4444;
    font-size: 13px;
    margin-top: 5px;
    min-height: 20px;
}

/* 留言提示 */
.we-prompt {
    text-align: center;
    margin-top: 20px;
}

.we-prompt-text {
    display: inline-block;
    padding: 10px 30px;
    background: #e8f5e8;
    color: #009B96;
    border-radius: 20px;
    font-size: 14px;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1200px) {
    .con-center {
        width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .we-content {
        flex-direction: column;
    }
    
    .we-ul1 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .we-lx-ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .we-us {
        padding: 30px 20px;
    }
    
    .title h4 {
        font-size: 28px;
    }
    
    #map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .we-ul li {
        flex-direction: column;
    }
    
    .we-ul li h6 {
        width: auto;
        margin-bottom: 5px;
    }
    
    .we-ul1 li {
        flex-direction: column;
        text-align: center;
    }
    
    .we-icon {
        margin: 0 auto 15px;
    }
    
    .lx-btn {
        width: 100%;
    }
}