body {
    background: #f4f6f9;
}

.container {
    margin: 20px auto 30px;
    width: 1200px;
}

.bread-nav {
    margin-bottom: 20px;
}

.bread-nav > li {
    display: inline-block;
}

.bread-nav > li > a {
    color: #999;
}

.bread-nav > li >span.iconfont {
    color: #999;
    font-size: 12px;
    margin: 0 6px;
}

.container-title{
    font-size: 24px;
    margin: 0 0 25px;
    position: relative;
}

.container-title:after{
    content: "";
    width: 4em;
    height: 4px;
    background-color: #4269c9;
    position: absolute;
    top: 100%;
    left: 0;
}

.content-left{
    float: left;
    width: 860px;
}

.left-box{
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 6px 38px rgba(0,0,0,.04);
    -webkit-box-shadow: 0 6px 38px rgba(0,0,0,.04);
    -moz-box-shadow: 0 6px 38px rgba(0,0,0,.04);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}

.word{
    margin-bottom: 20px;
}

.sort{
    float: left;
    font-size: 16px;
    color: #333;
    line-height: 38px;
}

.sort span{
    margin-left: 10px;
    cursor: pointer;
}

.sort span > .down, .sort span.reverse > .up{
    display: none;
}

.sort span > .up, .sort span.reverse > .down{
    display: inline-block;
}

.searchForm{
    float: right;
    
}

.searchForm > .s-text{
    width: 250px;
    height: 36px;
    border: 1px solid #dfdfdf;
    margin-right: 10px;
    padding: 0 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}

.searchForm > .s-text:focus-visible{
    border-color: #4269c9;
    outline: none;
}

.searchForm > .s-btn{
    width: 62px;
    height: 38px;
    border: 0;
    background-color: #4269c9;
    color: #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    cursor: pointer;
}

.searchForm > .s-btn:hover{
    background-color: #3859ab;
}

.result-text{
    float: right;
    line-height: 38px;
    color: #999;
    font-size: 12px;
    margin-right: 20px;
}

.info-list > li{
    border-top: 1px solid #f6f6f6;
    padding: 15px 0;
}

.info-list > li a{
    display: inline-block;
    max-width: 100%;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-list > li a:hover{
    color: #4269c9;
    text-decoration: underline;
}

.info-list > li .info-brief{
    font-size: 15px;
    color: #333;
    line-height: 1.8em;
    margin: 5px 0;
}

.info-list > li .info-date{
    color: #888;
    margin-top: 10px;
}

.info-list > li .info-date > span{
    margin-right: 30px;
}

.cN-pagination{
    margin-top: 20px;
    text-align: center;
}

.content-right{
    float: right;
    width: 320px;
}

.right-top, .right-bottom{
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 6px 38px rgba(0,0,0,.04);
    -webkit-box-shadow: 0 6px 38px rgba(0,0,0,.04);
    -moz-box-shadow: 0 6px 38px rgba(0,0,0,.04);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}

.right-title{
    font-size: 16px;
    position: relative;
}

.right-title:after{
    content: "";
    width: 4em;
    height: 4px;
    background-color: #4269c9;
    margin-top: 3px;
    position: absolute;
    top: 100%;
    left: 0;
}

.right-title > a{
    color: #999;
    font-size: 14px;
    font-weight: normal;
    float: right;
}

.right-title > a .iconfont{
    font-size: 13px;
    margin-left: 5px;
}

.hot-list > li{
    margin-top: 20px;
    overflow: hidden;
}

.hot-img{
    width: 128px;
    height: 78px;
    overflow: hidden;
    margin-right: 14px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    float: left;
}

.hot-img > img{
    display: block;
}

.hot-info{
    float: left;
    width: 138px;
}

.info-title{
    font-size: 15px;
    color: #3a3a3a;
}

.info-incharge, .info-school{
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-incharge{
    color: #999;
}

.info-school{
    color: #888;
    font-size: 13px;
}

@media screen and (max-width:640px) {
    .container{
        width: auto;
        margin: 0;
        padding: 20px;
    }
    
    .bread-nav{
        margin-bottom: 15px;
    }
    
    .container-title{
        font-size: 22px;
    }
    
    .content-left{
        width: 100%;
        float: none;
    }
    
    .sort{
        float: none;
        font-size: 15px;
        line-height: inherit;
        margin-bottom: 10px;
    }
    
    .searchForm{
        display: flex;
        display: -webkit-flex;
        float: none;
    }
    
    .searchForm > .s-text{
        width: auto;
        height: 32px;
        flex-grow: 1;
        -webkit-flex-grow: 1;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
    }
    
    .searchForm > .s-btn{
        min-width: 62px;
        height: 32px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
    }
    
    .info-list > li a{
        font-size: 16px;
    }
    
    .info-list > li .info-date {
        margin-top: 8px;
        font-size: 13px;
    }
    
    .info-list > li .info-date > span{
        margin-right: 20px;
    }
    
    .content-right{
        display: none;
    }
}