#home-header {
    height: 358px;
    background: no-repeat center / 600px url('../images/header_title.png'),
                no-repeat center / cover url('../images/header_bg.png');
}

#header-container {
    width: 1100px;
    margin: 0 auto;
    position: relative;
}

#home-logo {
    width: 190px;
    position: absolute;
    top: 20px;
    left: 0;
}

#home-search {
    position: absolute;
    bottom: 40px;
    line-height: 0;
    width: 316px;
    left: 50%;
    transform: translateX(-50%);
}

#home-search input {
    outline: none;
    padding: 0 6px;
    width: 290px;
    height: 26px;
    box-sizing: border-box;
    border: none;
}

#home-search button.home-search-button {
    background: no-repeat center / 55% url('../images/search_button.png');
    height: 26px;
    width: 26px;
    border: none;
    position: absolute;
    right: 0;
    z-index: 100;
    background-color: #bd271d;
    outline: none;
    cursor: pointer;
}

.share-list {
    position: absolute;
    right: 0;
    list-style: none;
    margin: 0;
    z-index: 100;
    display: flex;
    top: 20px;
}

.share-list li {
    margin-left: 5px;
}

.share-list li a {
    text-decoration: none;
}

.share-list li .iconfont {
    color: #fadd78;
    font-size: 18px;
}

.share-list li:hover .iconfont {
    color: white;
}

#header-nav {
    background-color: #d32c26;
}

#header-nav.nav-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

#header-nav-container {
    width: 1100px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

#header-nav-container > li {
    height: 38px;
    line-height: 38px;
    width: 100%;
    text-align: center;
}

#header-nav-container > li.active,
#header-nav-container > li:hover {
    background-color: white;
}

#header-nav-container > li.active a,
#header-nav-container > li:hover a {
    color: #d32c26;
}

#header-nav-container > li a {
    text-decoration: none;
    color: white;
}

.has-more a {
    display: flex;
    justify-content: center;
}

#header-nav-container .icon-down {
    font-size: 12px;
    display: inline-block;
    transform: rotate(-90deg);
    transition: all .5s;
}

#header-nav-container > li:hover .icon-down,
#header-nav-container > li.active .icon-down {
    transform: rotate(0deg);
}

#nav-item-container.show {
    display: flex;
}

#nav-item-container {
    position: absolute;
    bottom: -80px;
    left: 0;
    list-style: none;
    display: none;
    width: 1100px;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 5px 0;
    background-color: white;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#nav-item-container li {
    padding: 8px 10px;
}

#nav-item-container li:hover a {
    color: #d32c26;
}

#nav-item-container li a {
    text-decoration: none;
    color: #999;
}