header {
    background-color: #fff;
    box-shadow: 0 0 10px #ddd;
}

header .top-bar {
    background: #FFA415;
    color: #fff;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
}

header .top-bar .container {
    display: flex;
    justify-content: space-between;
}

header .top-left{
    display: flex;
    align-items: center;
    gap: 0 10px;
}

header .top-left .portrait {
    width: 26px;
    height: 26px;
    border-radius: 13px;
    overflow: hidden;
}

header .top-left .portrait img {
    vertical-align: top;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

header .top-right a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.head_top {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.head_top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head_top .logo {
    display: flex;
    align-items: center;
}

.head_top .logo-icon {
    height: 50px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.head_top .logo-icon img{
    max-height: 100%;
}

.head_top .logo-text h1 {
    font-size: 24px;
    color: #FFA415;
}

.head_top .logo-text p {
    font-size: 13px;
    color: #666;
}

.head_top .search-box {
    display: flex;
}

.head_top .search-box input {
    width: 260px;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 15px;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.head_top .search-box button {
    width: 80px;
    height: 40px;
    background: #FFA415;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}


header .head_bottom {
    height: 64px;
    background-color: #FFA415;
}

header .head_bottom ul {
    width: 1200px;
    height: 64px;
    margin: 0 auto;
    overflow: hidden;
}

header .head_bottom ul li {
    float: left;
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
    border-radius: 18px;
    color: #fff;
    font-size: 18px;
    margin-top: 13px;
    cursor: pointer;
}

header .head_bottom ul li.cur {
    background-color: #fff;
    color: #FFA415;
}

header .head_bottom ul li+li {
    margin-left: 16px;
}