* {
    box-sizing: border-box;
}

li {
    list-style: none;
}

/* 清除浮动 */

.clearfix {
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: '';
    line-height: 0;
}

.clearfix:after {
    clear: both;
}

/* 清除浮动 */

.fl {
    float: left;
}

.fr {
    float: right;
}

li {
    list-style: none;
    margin: 0;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: underline;
}

ul {
    padding: 0;
    margin: 0;
}

p {
    margin: 0;
}

body {
    margin: 0;
}

img {
    max-width: 100%;
}

/* 短列表 */

.commonList {
    margin: 30px 0 0;
    font-size: 18px;
}

.commonList li {
    padding-left: 20px;
    position: relative;
    line-height: 40px;
}

.commonList li a {
    overflow: hidden;
    color: #333;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.commonList li a:hover {
    color: #be0000
}

.commonList li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #333;
    border-radius: 50%;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

/* 短列表 */

/* 长列表 */

#dash-table li a:hover {
    color: #be0000;
}

/* 长列表 */

/* 带时间的短列表 */

.commonListWithTime {
    margin: 30px 0 0;
    font-size: 18px;
}

.commonListWithTime li {
    padding-left: 20px;
    position: relative;
    line-height: 40px;
    overflow: hidden;
}

.commonListWithTime li a {
    overflow: hidden;
    color: #333;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 85%;
    float: left;
}

.commonListWithTime li span {
    float: right;
}

.commonListWithTime li a:hover {
    color: #be0000
}

.commonListWithTime li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #333;
    border-radius: 50%;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

/* 带时间的短列表 */

.swgh {
    padding-top: 20px;
}

@media (max-width: 768px) {
    .swgh {
        width: 250px;
    }
    .commonListWithTime li a {
        width: 75%;
    }
}

@media (max-width: 425px) {
    .swgh {
        width: 190px;
        padding-top: 10px;
    }
    .commonListWithTime li a {
        width: 70%;
    }
}