/* Header 布局样式 - 底部对齐，间距20px - 专用样式表，最高优先级 */
.tops_bg.tops_bg.tops_bg.tops_bg { 
    width: 100% !important; 
    height: 90px !important; 
    border-bottom: 1px solid #ccc !important; 
    background: #fff !important; 
    display: block !important;
}
.tops_bg .tops.tops.tops.tops {
    width: 1200px !important;
    margin: 0 auto !important;
    height: 90px !important;
    display: flex !important;
    align-items: flex-end !important; /* 底部对齐 */
    justify-content: flex-start !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    padding-bottom: 10px !important; /* 让元素距离底部有一定空间 */
    position: relative !important;
}

/* Logo */
.tops .logo-wrapper.logo-wrapper.logo-wrapper.logo-wrapper {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: flex-end !important; /* 底部对齐 */
    margin-right: 20px !important;
    height: 70px !important; /* 确保有足够的垂直空间 */
    position: relative !important;
    z-index: 100 !important;
}
.tops .logo-wrapper .logo-img {
    height: 60px !important;
    width: auto !important;
    display: block !important;
}

/* 公司名称 */
.tops .company-name.company-name.company-name.company-name {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: flex-end !important; /* 底部对齐 */
    margin-right: 20px !important;
    height: 70px !important; /* 确保有足够的垂直空间 */
    position: relative !important;
    z-index: 100 !important;
}
.tops .company-name .company-name-en {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #00468c !important;
    font-family: Arial, sans-serif !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

/* 搜索框 - 放在公司名称右边，语言切换左边 */
.tops .search_box.search_box.search_box.search_box {
    flex-shrink: 0 !important;
    width: 180px !important;
    display: flex !important;
    align-items: flex-end !important;
    margin-right: 20px !important;
    height: 70px !important;
    position: relative !important;
    z-index: 100 !important;
    padding-bottom: 0 !important;
}
.tops .search_box form {
    width: 100% !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
}
.tops .search_box .texts {
    width: 100% !important;
    height: 36px !important;
    line-height: 36px !important;
    padding: 0 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    box-sizing: border-box !important;
}

/* 语言切换器 */
.tops .lang-select-wrapper.lang-select-wrapper.lang-select-wrapper.lang-select-wrapper {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: flex-end !important; /* 底部对齐 */
    margin-right: 20px !important;
    height: 70px !important; /* 确保有足够的垂直空间 */
    position: relative !important;
    z-index: 100 !important;
}
.tops .lang-select-wrapper .lang-select {
    padding: 0 10px !important;
    font-size: 13px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    background: #fff !important;
    cursor: pointer !important;
    min-width: 100px !important;
    height: 36px !important;
}

/* Hotline */
.tops .phone.phone.phone.phone {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: flex-end !important; /* 底部对齐 */
    height: 70px !important; /* 确保有足够的垂直空间 */
    position: relative !important;
    z-index: 100 !important;
}
.tops .phone img {
    width: 30px !important;
    height: 30px !important;
    margin-right: 8px !important;
    display: block !important;
}
.tops .phone .phone-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}
.tops .phone .phone-info span {
    font-size: 12px !important;
    color: #666 !important;
    margin: 0 0 2px 0 !important;
    line-height: 1.2 !important;
}
.tops .phone .phone-info p {
    font-size: 15px !important;
    color: #00468c !important;
    font-weight: bold !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .tops_bg .tops.tops.tops.tops {
        width: 100% !important;
        flex-wrap: wrap !important;
        height: auto !important;
        padding: 10px !important;
    }
    .tops .logo-wrapper,
    .tops .company-name,
    .tops .search_box,
    .tops .lang-select-wrapper,
    .tops .phone {
        margin-right: 10px !important;
        height: auto !important;
    }
}