/* 顶部header外层容器 - 撑满整个屏幕宽度 */
.wst-top-header-wrapper {
    width: 100%;
    background: #fff;
  
}

/* 顶部header内层容器 - 1200px居中 */
.wst-top-header {
    width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wst-top-logo {
    flex-shrink: 0;
}

.wst-top-company-info {
    flex: 1;
    padding: 0 20px;
    border-left: 2px dotted #1088cb;
    margin: 0 20px;
}

.wst-top-company-name-cn {
    color: #659b0d;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.wst-top-company-name-en {
    color: #659b0d;
    font-size: 12px;
    margin-bottom: 10px;
}

.wst-top-company-desc {
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.wst-top-company-desc2 {
    color: #333;
    font-size: 12px;
}

.wst-top-login-register {
    flex-shrink: 0;
    text-align: right;
    padding-right: 20px;
}

.wst-top-login-register a {
    color: #ff5c5b;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
}

.wst-top-login-register a:hover {
    text-decoration: underline;
}

/* 搜索容器外层 - 已移到导航栏内，保留样式以防其他地方使用 */
.wst-search-container-wrapper {
    width: 100%;
    display: none; /* 隐藏原来的搜索容器 */
}

/* 搜索容器内层 - 已移到导航栏内 */
.wst-search-container {
    width: 1200px;
    margin: 0 auto;
    display: none; /* 隐藏原来的搜索容器 */
}

/* 导航菜单外层 - 撑满整个屏幕宽度 */
.wst-nav-menus-wrapper {
    width: 100%;
    background: #DF2003;
    border-bottom: 2px solid #DF2003;
}

/* 导航菜单内层 - 1200px居中 */
.wst-nav-menus {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
}

/* 导航菜单容器 - 使用flex布局 */
.wst-nav-menus .nav-w {
    width: 100%;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wst-nav-menus .w-spacer {
    display: none;
}

/* 导航栏样式 - 左侧 */
#wst-nav-items {
    float: left !important;
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    flex: 1 !important;
    visibility: visible !important;
}

#wst-nav-items ul {
    float: left !important;
    overflow: visible !important;
    height: 36px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    visibility: visible !important;
}

#wst-nav-items li {
    float: left !important;
    list-style: none !important;
    display: block !important;
    visibility: visible !important;
}

#wst-nav-items a {
    color: white !important;
    font: 400 16px/36px "microsoft yahei" !important;
    height: 36px !important;
    padding: 0 20px !important;
    text-align: center !important;
    text-decoration: none !important;
    display: block !important;
    float: left !important;
    visibility: visible !important;
    line-height: 36px !important;
}

#wst-nav-items a:hover {
    color: #00CCCC !important;
}

/* 搜索框容器 - 右侧 */
.wst-search-box-in-nav {
    float: right !important;
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    margin-right: 20px !important;
}

.wst-search-box-in-nav .wst-search {
    border: none !important;
    height: 36px !important;
    margin: 0 !important;
    position: relative !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.wst-search-box-in-nav .wst-search .j-search-type {
    display: none !important;
}

.wst-search-box-in-nav .wst-search .search-ipt {
    border: none !important;
    color: #333 !important;
    font-family: Microsoft Yahei !important;
    font-size: 14px !important;
    line-height: 36px !important;
    padding: 0 20px !important;
    width: 300px !important;
    height: 36px !important;
    outline: 0 !important;
    background: #fff !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
}

.wst-search-box-in-nav .wst-search .search-ipt::placeholder {
    color: #999 !important;
}

.wst-search-box-in-nav .wst-search .search-btn {
    background-image: url(../img/1_07.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 20px 20px !important;
    cursor: pointer !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 18px !important;
    border: none !important;
    padding: 0 !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}


