.container {
    width: 1220px;
    margin: 0px auto 0;
    position: relative;
    background: #F5F6FA;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 30px 0;
}

.menus {
    background-color: #fff;
    width: 220px;
}

.m_title {
    width: 220px;
    height: 77px;
    background: linear-gradient(56deg, #DC0D0D 0%, #FF4B4B 100%);
    font-size: 22px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #DC0D0D;
    cursor: pointer;
}

.m_title span {
    font-size: 40px;
}

.m_item {
    width: 220px;
    height: 70px;
    font-size: 18px;
    text-align: center;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: bold;
    color: #222222;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E6E6E6;
    position: relative;
    border-top: none;
    cursor: pointer;
    padding: 5px 20px;
}

.m_item.active {
    color: #DC0D0D;
}

.m_item.active .active_bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 20px solid #DC0D0D;
    border-left: 20px solid transparent;
}

.contents {
    width: 970px;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px 0px rgba(216, 216, 216, 0.5);
    border-radius: 2px;
    min-height: 500px;
}

.c_title {
    width: 100%;
    height: 77px;
    border-bottom: 1px solid #E6E6E6;
    line-height: 77px;
    text-indent: 30px;
    font-size: 20px;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
    font-weight: bold;
    color: #DC0D0D;
}

.c_title a {
    color: #DC0D0D;
}

.c_list {
    width: 910px;
    margin: 0 auto;
    padding-top: 30px;
}

.pure-table {
    width: 100%;
    border: none;
}

.pure-table tr td:last-of-type {
    text-align: center;
}

.pure-table-odd td,
.pure-table-striped tr:nth-child(2n-1) td {
    background-color: #f5f5f5;
}

.pure-table td,
.pure-table th {
    border-left-color: #EDEDED;
}

.pure-table tbody tr.pure-table-odd:hover td,
.pure-table tbody tr:hover {
    background-color: #cdcdcd;
}

.pure-table a {
    color: #DC0D0D;
    text-decoration: underline;
}

.pure-table td,
.pure-table th {
    padding: 0.6em 1em;
}

.c_pagination {
    padding: 20px 0;
    height: 74px;
}