@charset "utf-8";

/* 联系我们页面样式 */
.container {
    padding-top: 80px;
}

/* banner区域 */
.banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #009B96 0%, #006B66 100%);
}

.banner-img {
    width: 100%;
    height: 100%;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* 导航面包屑 */
.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;
}

.nav a:hover {
    color: #009B96;
}

.nav i {
    font-style: normal;
    margin: 0 5px;
    color: #ccc;
}

.nav span {
    color: #009B96;
    margin-left: 5px;
}

/* 联系我们区域 */
.we {
    background: #f9f9f9;
    padding: 40px 0;
}

.title {
    text-align: center;
    margin: 40px 0 30px;
}

.title h4 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.title p {
    font-size: 18px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title hr {
    width: 60px;
    height: 3px;
    background: #009B96;
    border: none;
    margin: 20px auto;
}

/* 地图 */
#map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

/* 联系我们内容 */
.we-content {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.we-content-le {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.we-content-le h5 {
    font-size: 22px;
    color: #009B96;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #009B96;
}

.we-ul {
    margin-bottom: 25px;
}

.we-ul li {
    display: flex;
    margin-bottom: 20px;
}

.we-ul li h6 {
    width: 60px;
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.we-ul li p {
    flex: 1;
    color: #333;
    line-height: 1.6;
}

.we-ul1 {
    width: 400px;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 15px 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;
    margin-right: 15px;
}

.we-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.we-ul1 li .le h6 {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
    font-weight: normal;
}

.we-ul1 li .le p {
    color: #333;
    line-height: 1.6;
}

.we-code {
    width: 120px;
    height: 120px;
    border: 1px solid #ddd;
    margin-top: 10px;
}

.we-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 留言反馈 */
.we-us {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    margin: 40px auto;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.we-lx {
    max-width: 800px;
    margin: 0 auto;
}

.we-lx-ul {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.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: 16px;
    transition: border-color 0.3s;
}

.we-lx-ul input:focus {
    outline: none;
    border-color: #009B96;
}

.we-lx textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    resize: vertical;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.we-lx textarea:focus {
    outline: none;
    border-color: #009B96;
}

.lx-btn {
    display: block;
    width: 200px;
    height: 50px;
    margin: 0 auto;
    background: #009B96;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.lx-btn:hover {
    background: #007B76;
}

/* 错误提示 */
.uname-p,
.liuyan-p {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

/* 响应式 */
@media (max-width: 768px) {
    .we-content {
        flex-direction: column;
    }

    .we-ul1 {
        width: 100%;
    }

    .we-lx-ul {
        flex-direction: column;
        gap: 10px;
    }
}