/* 新的头部样式 */
.wst-search-container{
    
}
.wst-new-header {
    position: relative;
    z-index: 2;
    height: 130px;
    background: url('../img/1_01.png') no-repeat center/100% 100%;
}
.wst-new-header-inner,.wst-new-nav,.wst-new-nav-inner{
    height: 98px;
}
.wst-new-header-inner {
    width: 1200px;
    margin: 0 auto;
    /* height: 100px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo 样式 */
.wst-new-logo {
    flex: 0 0 auto;
    margin-right: 40px;
}

.wst-new-logo img {
    height: 60px;
    width: auto;
}

/* 搜索框样式 */
.wst-new-search {
    width: 160px;
    margin: 0 20px 0 40px;
}

.wst-new-search-box {
    display: flex;
    align-items: center;
    border: 1px solid #F6D18B;
    border-radius: 25px;
    padding: 10px 15px;
}

/* .wst-new-search-box .search-icon {
    width: 18px;
    height: 18px;
} */

.wst-new-search-box img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.wst-new-search-box input {
    width: 102px;
    color: #F6D18B;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.wst-new-search-box input::placeholder {
    color: #F6D18B;
    font-size: 16px;
}

.wst-new-search-box button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: none;
}

/* 右侧操作区 */
.wst-new-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wst-new-action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #F6D18B;
    font-size: 14px;
    white-space: nowrap;
}

.wst-new-action-item img {
    /* width: 20px;
    height: 20px; */
}

.wst-new-action-item:hover {
    color: #d6b476;
        /*font-weight: 600;*/
}

.wst-new-divider {
    color: #ddd;
}

/* 导航栏样式 - 红色到粉色渐变 */
.wst-new-nav {
    flex: 1;
    /* background: linear-gradient(to right, #ff3344 0%, #ff4466 25%, #ff5588 50%, #ff66aa 75%, #ff77cc 100%); */
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

.wst-new-nav-inner {
    /* max-width: 1200px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 60px; */
}

.wst-new-nav-inner a {
    display: inline-block;
    height: 98px;
    line-height: 98px;
    color: #F6D18B;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    /* padding: 0 10px; */
}

/* .wst-new-nav-inner a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
} */

.wst-new-nav-inner a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s; */
    width: 0;           
    height: 0;      
    background: url('../img/2_08.png') no-repeat center center; 
    background-size: 100% 100%; /* 完全填充伪元素 */
    transition: all 0.3s ease;
}
.wst-new-nav-inner a:hover {
    /* font-size: 19px; */
    font-weight: 600;
    /* background-color: rgba(202, 200, 200, 0.5); */
}
/* .wst-new-nav-inner a:hover::after {
    width: 80px;    
    height: 10px;  
} */

/* 选中状态 - 保持图片显示 */
.wst-new-nav-inner a.active::after {
    width: 80px;   
    height: 10px;   
}