body{background-color:#f7fafa;}
body,p,h1,h2,h3,h4,h5,h6,ul,ol,dl,li,dt,dd{
    /* 默认有边距，都要清除 */
    margin: 0;
    padding: 0;
    /*字体设置*/
    font-size: 14px;
    font-family: "Microsoft Yahei",sans-serif;
    color: #333;
    /* 去掉列表的原点 */
    list-style: none;
    /* 默认鼠标 */
    cursor: default;
}
.logo a{background: url(/Public/home/images/logo1.png) no-repeat;
    font-size: 20px;
    font-weight: bold;
    background-size: 35px;
    padding-left: 40px;
    background-position: 0px 2px;}
.logo a span{font-weight: 400;
    font-size: 15px;
    margin-left: 6px;}
/*行内块元素*/
input,img{
    margin: 0;
    padding: 0;
    border: 0 none;
    outline-style: none;
    vertical-align: bottom;
    max-width: 100%;
}
 
/*行内元素*/
a,a:active,a:visited{
    /*下划线和颜色*/
    text-decoration: none;
    color: #333;
}
 
a:hover{
    color:#333;
}
 
textarea{
    /* 边框清零 */
    border:none;
    /* 轮廓线清零 */
    outline: none;
    /* 防止文本域被随意拖拽 */
    resize: none;
}
 
i{
    /*文字样式*/
    font-style: normal; 
}
 
table{
    /*边框合并*/
    border-collapse:collapse;
    border-spacing:0;
}
 
 
/* 使用伪元素清除浮动 */
.clearfix::before,
.clearfix::after{
    content:"";
    height: 0;
    line-height: 0;
    display: block;
    visibility: none;
    clear: both;
}
 
.clearfix {
    *zoom: 1;
}
 
/* 版心*/
.w{
    width: 1883px;
    margin: 0 auto;
}
 
/*可选*/
/*单选框和复选框的配置，一般是分开的*/
input[type="radio"],input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    display: none;
}
 
label{
    display: inline-block;
    cursor: pointer;
}
 
label input[type="radio"]+span,label input[type="checkbox"]+span{
    width: 16px;
    height: 16px;
    display: inline-block;
    /* background: url("../images/nocheck.png") no-repeat; */
}
 
label input[type="radio"]:checked+span,label input[type="checkbox"]:checked+span{
    /* background: url("../images/check.png") no-repeat; */
}
 
label input[type="radio"]:checked~i,label input[type="checkbox"]:checked~i{
    color: #38d6ff;
}
 


.justify-between {
    justify-content: space-between;
}
.items-center {
    align-items: center;
}
.flex {
    display: flex;
}
.flex-1 {
    flex: 1 1;
}
.relative {
    position: relative;
}
.flex-col {
    flex-direction: column;
}
.leading-none {
    line-height: 1;
}
.cursor-pointer {
    cursor: pointer;
}
.mb-4, .my-4 {
    margin-bottom: 1.5rem!important;
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.flex-fill {
    -ms-flex: 1 1 auto!important;
    flex: 1 1 auto!important;
}
.card-ndes{width: calc( 100% - 40px )}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}
.text-gray {
    color: #555;
}
.text-lg {
    font-size: 1.125rem !important;
}
.m-0 {
    margin: 0!important;
}
.text-xs {
    font-size: .75rem !important;
}
/*分页*/
.pagination{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.pagination li{
    padding: 5px 15px;
    cursor: pointer;
    background-color: #eee;
    margin: 0 6px;
    border-radius: 5px;
}
.pagination li a{
    color: #333;
}
.pagination li.active,.pagination li:hover{
    background-color: #3067b1;
}
.pagination li.active a,.pagination li:hover a{
    color: #fff;
}