/* 新的头部样式 */
.wst-new-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.wst-new-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

/* 搜索框样式 */
.wst-new-search {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

.wst-new-search-box {
    display: flex;
    border: 2px solid #ff4444;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.wst-new-search-box .search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    background: #fff;
}

.wst-new-search-box .search-icon img {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

.wst-new-search-box input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.wst-new-search-box input::placeholder {
    color: #999;
}

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

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

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

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

.wst-new-action-item:hover {
    color: #ff4444;
}

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

/* 导航栏样式 - 红色到粉色渐变 */
.wst-new-nav {
    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;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 15px 0;
}

.wst-new-nav-inner a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    /*padding: 5px 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;
}
.wst-new-nav-inner a:hover::after {
    width: 80%;
}