/* 联系信息页面样式 */
.contact-content {
    padding-top: 100px;
}

.contact-page-head {
    width: 100vw;
    height: 80px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-page-head-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-page-head-box-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contact-page-head-box-left a {
    display: block;
    height: 77px;
    margin-right: 50px;
    border-bottom: 3px solid transparent;
    font-size: 18px;
    text-decoration: none;
    line-height: 80px;
    color: #333333;
    transition: all 0.3s ease;
}

.contact-page-head-box-left a:hover,
.contact-page-head-box-left a.active {
    color: #48877A;
    border-bottom: 3px solid #48877A;
}

.contact-page-head-box-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    color: #666666;
}

.contact-page-head-box-right a {
    color: inherit;
}

/* 空状态 */
.contact-empty {
    height: 400px;
    padding: 120px 0 160px 0;
    background: #ffffff;
}

.contact-empty-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666666;
}

.contact-empty-box .iconfont {
    font-size: 60px;
    color: #E6F1EF;
}

.contact-empty-title {
    font-size: 22px;
    color: #333333;
    margin-top: 20px;
}

.contact-empty-desc {
    font-size: 16px;
    color: #999999;
    margin-top: 10px;
}

/* 联系信息列表 */
.contact-list {
    padding: 100px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    width: 700px;
    height: 300px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-item-content {
    width: 420px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.contact-item-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}

.contact-item-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-phone,
.contact-item-email,
.contact-item-address {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.contact-item-phone .iconfont,
.contact-item-email .iconfont,
.contact-item-address .iconfont {
    color: #48877A;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contact-item-image {
    width: 220px;
    height: 100%;
    overflow: hidden;
}

.contact-item-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-item-image img {
    transform: scale(1.05);
}