@charset "utf-8";

/* 公共头部样式 - 联系方式栏 */
.top_contact_bar {
    background: #1e5799;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
}

.top_contact_bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top_contact_info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top_contact_info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top_contact_info a:hover {
    color: #ffcc00;
}

.top_contact_info i {
    margin-right: 5px;
}

/* Logo文字样式 */
.logo_text {
    font-size: 16px;
    font-weight: 700;
    color: #1e5799;
    text-decoration: none;
    line-height: 1.4;
    display: inline-block;
    transition: color 0.3s ease;
}

.logo_text:hover {
    color: #ffcc00;
}

/* 导航栏样式调整 */
.header {
    position: relative;
}

.header_content {
    padding: 15px 0;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .top_contact_bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo_text {
        font-size: 14px;
    }
}
