
@import 'base_1.css';
/* content */
.signList {
    padding: 0;
    margin: 0;
    list-style: none;
}
.signList li {
	border-bottom: 1px solid #E5E5E5;
	font-size: 14px;
    color: #333;
    padding: 10px 0;
    position: relative;
}
.signList li a {
    display: block;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 100px;
}
.signList li a:hover {
    color: #DF1129;
}
.signList li p span {
    color: #666;
    font-size: 12px;
    padding-left: 10px;
}
button.signupBtn {
    position: absolute;
    right: 10px;
    top: 17px;
    width: 70px;
    height: 30px;
    border: 1px solid #666666;
    border-radius: 2px;
    color: #333;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
}
button.signupBtn:hover {
    background: #DF1129;
    color: #fff;
    border: 1px solid #DF1129;
}
button.disabledStatus {
    position: absolute;
    right: 10px;
    top: 17px;
    width: 70px;
    height: 30px;
    border-radius: 2px;
    text-align: center;
    font-size: 12px;
    background: #DCDCDC;
    color: #999;
    border: 1px solid #DCDCDC;
    cursor: not-allowed;
}
/* 小分辨率 */
@media screen and (min-width: 992px){

}
/* 手机 */
@media screen and (max-width: 768px){

}
