﻿body {
    margin: 0px auto;
    padding: 0px;
    font-family: "Microsoft Yahei",Tahoma,"宋体";
    font-size: 14px;
}
input, textarea, select, button {
    font-family: inherit;
}
a {
    color: #333;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}
    a:focus, a:active {
        color: #333;
        outline: none;
        text-decoration: none;
    }
    a:hover {
        color:#333;
        text-decoration: none;
    }
.txtone {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    white-space: normal;
}

.txttwo {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    white-space: normal;
}
.clearfix::after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}
/**暂无数据**/
.dataempty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 200px 20px;
    text-align: center;
}

    .dataempty .emptyicon {
        width: 80px;
        height: 80px;
        color: #cccccc;
        margin-bottom: 16px;
    }

    .dataempty .emptytext {
        font-size: 15px;
        color: #999999;
        line-height: 1.6;
    }