*{
    margin: 0 ;
    padding: 0;
    box-sizing: border-box !important;
}

a{
    color: #000;
    text-decoration: none;
}

ul{
    list-style: none;
}

button{
    height: 40px;
    padding: 0 10px;
}

.main{
    min-width: 1120px;
    max-width: 1320px;
    margin: 25px auto !important;
}

.bgF{
    background: #fff;
}
.mouse{
    cursor: pointer;
}

.Title {
    height: 59px;
    margin-top: 25px;
    line-height: 59px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #F9F9F9;
    border: 1px solid #E9E9E9;
}
/* 弹出层  page */
.layui-layer{
    border-radius: 10px;
}

select {
    height: 38px;
    width: 100%;
    margin-bottom: 11px;
    border: 1px solid #eee;
    color: #5f5f5f;
}

.layui-layer-setwin .layui-layer-close2 {
    padding: 2px;
    font-size: 15px;
    width: 25px;
    height: 25px;
}



/* 遮罩层 */
.shade{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #212121;
    opacity: .3;
}

/* 对话框 */
.box{
    /* display: none; */
    z-index: 999;
    min-width: 350px;
}


.pl1{
    padding-left: 5px;
}
.pl2{
    padding-left: 10px;
}
.pl3{
    padding-left: 15px;
}
.pl4{
    padding-left: 20px;
}
.pl5{
    padding-left: 25px;
}
.pt0{
    padding-top: 0 !important;
}
.pt1{
    padding-top: 5px;
}
.pt2{
    padding-top: 10px;
}
.pt3{
    padding-top: 15px;
}
.pt4{
    padding-top: 20px;
}
.pt5{
    padding-top: 25px;
}

.pr1{
    padding-right: 5px;
}
.pr2{
    padding-right: 10px;
}
.pr3{
    padding-right: 15px;
}
.pr4{
    padding-right: 20px;
}
.pr5{
    padding-right: 25px;
}

.pb1{
    padding-bottom: 5px;
}
.pb2{
    padding-bottom: 10px;
}
.pb3{
    padding-bottom: 15px;
}
.pb4{
    padding-bottom: 20px;
}
.pb5{
    padding-bottom: 25px;
}
.pa1{
    padding: 5px;
}
.pa2{
    padding: 10px;
}
.pa3{
    padding: 15px;
}
.pa4{
    padding: 20px;
}
.pa5{
    padding: 25px;
}
.radius-5{
    border-radius: 5px;
}
.radius-10{
    border-radius: 10px;
}

.c3{
    color: #333;
}
.c6{
    color: #666;
}
.c9{
    color: #999;
}


.fw6{
    font-weight: 600;
}

.t-center{
    text-align: center;
}
.t-left{
    text-align: left;
}
.t-right{
    text-align: right;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.absolute-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.fixed{
    position: fixed;
}

.d-flex{
    display: flex;
}
.d-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.d-column-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.align-center{
    display: flex;
    align-items: center;
}
.justify-center{
    display: flex;
    justify-content: center;
}
.justify-space-between{
    display: flex;
    justify-content: space-between;
}
.justify-space-around{
    display: flex;
    justify-content: space-around;
}