.content-box {
    width: 1200px;
    min-height: 540px;
    height: auto;
    /* background-color: #fff; */
    /* background: rgba(0, 0, 0, .5); */
    background-color: rgba(255, 255, 255, .5);
    box-shadow: 0 0 4px #202E72;
    margin-top: 20px;
    border-radius: 20px 20px 0 20px;
    padding: 10px;}

.current-page {
    width: 1000px;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;}

.box-detail {
    width: 1000px;
    min-height: 500px;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 10px 20px 0 0;}

.box-detail .name {
    width: 100%;
    height: 40px;
    background-color: #f1f2f6;
    border-radius: 10px 20px 20px 0;
    line-height: 40px;
    color: crimson;
    font-weight: bold;}

.box-detail .name span {
    margin-left: 6px;}

.box-detail .article-list {
    width: 96%;
    margin-top: 10px;
    min-height: 400px;
    height: auto;}

.box-detail .article-list .list {
    height: auto;
    list-style: none;
    padding: 0;
    margin: 0;}

.box-detail .article-list .list li {
    height: 40px;
    line-height: 40px;
    border-bottom: 1px dashed #f1f2f6;}

.box-detail .article-list .list li:hover {
    border-bottom: 1px dashed #202E72;
    transition: all .3s linear;}

.box-detail .article-list .list li a {
    color: black;
    text-decoration: none;}