.header {
    width: 100%;
    height: 110px;
    background: url(../../image/index/topbg.jpg) no-repeat;
    background-size: 100% 100%;
}

.headTop {
    width: 100%;
    height: 110px;
    display: flex;
    padding-top: 14px;
    justify-content: space-between;
}

.headTop .leftBox {
    display: flex;
    justify-content: flex-start;
}

.headTop .logoBox {
    height: 68px;
}

.headTop .logoBox img {
    width: 100%;
    height: 100%;
}

.headTop .schoolName {
    font-size: 24px;
    color: red;
}

.headTop .rightBox {
    padding-top: 20px;
    color: #FFFFFF;
    font-size: 16px;
}

.headTop .rightBox .input {
    width: 200px;
    height: 31px;
    background-color: #fff;
    border: 1px solid #dddddd;
    box-sizing: border-box;
    text-indent: 8px;
    outline: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.headTop .rightBox .btn {
    width: 66px;
    height: 30px;
    line-height: 30px;
    background: url(../../image/index/blue.png) repeat-x;
    border: none;
    color: #fff;
    margin-left: -5px;
    cursor: pointer;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.menu > ul {
    display: flex;
    justify-content: flex-start;
    background: url(../../image/index/blue.png) repeat-x;
}

.menu > ul > li {
    width: 120px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    position: relative;
}

.menu > ul > li a {
    display: block;
    width: 94%;
    height: 36px;
    margin: 0 auto;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .2s;
}

.menu > ul > li a:hover {
    color: red;
}

.menu > ul > li::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background-color: #fff;
    right: 0;
    top: 0;
}

.menu > ul > li:nth-last-child(1)::before {
    display: none;
}

.menu > ul > li:hover .menu-child {
    display: block;
}

.menu > ul > li .menu-child {
    display: none;
    padding-top: 2px;
    position: absolute;
    top: 36px;
    left: 0px;
    width: 94%;
    z-index: 999;
}

.menu > ul > li .menu-child li {
    background: url(../../image/index/blue.png) repeat-x;
}

.menu > ul > li .menu-child li + li {
    margin-top: 1px;
}

/* subbar */
.subbar {
    background: #fff;
    padding: 6px 0;
}

.subbar .subbarBox {
    height: 38px;
    line-height: 38px;
    background: #fafafa;
    color: #666;
    padding: 0 15px;
}

.subbar i {
    padding: 0 14px;
    background: url(../../image/index/sun.png) no-repeat center;
}

.subbar .fr {
    font-size: 12px;
    color: #333;
    width: 135px;
    height: 32px;
    float: right;
    overflow: hidden;
    padding-top: 5px;
    line-height: 32px;
}