html,
body,
div,
ul,
li,
dl,
dt,
dd,
a {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    color: #333;
}
a:hover{
	color: #3E7EFF;
}
body {
    font-size: 14px;
    font-family: SourceHanSansCN-Bold, SourceHanSansCN;
    color: #333333;
    line-height: 32px;
    background: #fff;
}

.box {
    width: 1200px;
    margin: 0 auto;
}

.header {
    width: 100%;
    height: 150px;
    background: url("../images/head_bg.png") no-repeat;
    background-size: cover;
}

.header .title {
    font-size: 50px;
    font-family: AlimamaShuHeiTi-Bold, AlimamaShuHeiTi;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 77px;
    padding-top: 36px;
    display: flex;
    align-items: center;
}
.header .title img{
    height: 70px;
    margin-right: 15px;
    margin-bottom: 15px;
}
.menu {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu .menu-list {
    flex: 1;
    display: flex;
}

.menu .menu-list li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 70px;
    padding: 0 36px;
    display: inline-block;
}

.menu .menu-list li a.on {
    font-weight: bold;
    color: #FFFFFF;
    background: #417CFE;
}

.menu .change {
    height: 40px;
}

.menu .change a {
    display: flex;
    align-items: center;
    padding: 0 15px 0 20px;
    height: 40px;
    background: #F67449;
    border-radius: 4px;
    line-height: 40px;
    padding-left: 13px;
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
}
.menu .change a img{
    margin-left: 10px;
    width: 14px;
    height: 14px;
}
.notice {
    height: 48px;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
}

.notice .date {
    font-weight: bold;
    margin-right: 30px;
    white-space: nowrap;
}

.notice .msg-title {
    font-weight: bold;
    line-height: 24px;
    padding: 0 28px;
    flex-shrink: 0;
    background: url('../images/msg.png') left center no-repeat;
}

.notice .msg-name {
    flex: 1;
    height: 48px;
    overflow: hidden;
    position: relative;
}
.notice .notice-list{
	transition: top 0.5s;
}
.notice .msg-name li {
    width: 100%;
    height: 48px;

}

.notice .msg-name li a {
    width: 100%;
    height: 48px;
    color: #3E7EFF;
    line-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    font-weight: 400;
}
.footer {
    height: 60px;
    background: #F8F8F8;
    text-align: center;
    line-height: 60px;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
}