/*共用*/
html,body {
    background: #FFFFFF;
    color: #1B1B1B;
    font-family: PingFangSC, PingFang SC;
}
.putaway {
    display: none;
}
i, img, input, s, span, textarea {
    display: inline-block;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    position: relative;
    top: .01rem;
    color: #999999;
}
input::-moz-placeholder { /* Firefox 19+ */
    position: relative;
    top: .01rem;
    color: #999999;
}
input:-ms-input-placeholder { /* IE 10+ */
    position: relative;
    top: .01rem;
    color: #999999;
}
input:-moz-placeholder { /* Firefox 18- */
    position: relative;
    top: .01rem;
    color: #999999;
}
.modal {
    background:rgba(0,0,0,1);
    opacity:0.5;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    display: none;
}
.mui-poppicker-header {
    background: #fff;
}
.mui-poppicker-header .mui-poppicker-btn-ok {
    background: #1483F7;
    border: 1px solid #1483F7;
}
.mui-picker {
    background: #fff !important;
}
.mui-dtpicker-header {
    background: #fff !important;
}
.mui-dtpicker-title h5 {
    background: #fff !important;
    border-top: 1px solid #fff !important;
}
.mui-dtpicker-header .mui-btn-blue {
    background: #1483F7 !important;
    border: 1px solid #1483F7 !important;
}
.flex {
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-center {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}
.align-center {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.space-between {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}
.space-around {
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}
.flex-start {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
}
.flex-end {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -o-justify-content: flex-end;
    justify-content: flex-end;
}
.flex-inherit {
    -webkit-justify-content: inherit;
    -moz-justify-content: inherit;
    -ms-justify-content: inherit;
    -o-justify-content: inherit;
    justify-content: inherit;
}
.flex-initial {
    -webkit-justify-content: initial;
    -moz-justify-content: initial;
    -ms-justify-content: initial;
    -o-justify-content: initial;
    justify-content: initial;
}
.align-start {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
}
.align-end {
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
}
.align-stretch {
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
}
.align-initial {
    -webkit-align-items: initial;
    -moz-align-items: initial;
    -ms-align-items: initial;
    -o-align-items: initial;
    align-items: initial;
}
.align-inherit {
    -webkit-align-items: inherit;
    -moz-align-items: inherit;
    -ms-align-items: inherit;
    -o-align-items: inherit;
    align-items: inherit;
}
.flex-1 {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    width: 20%;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.flex-row {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}
.flex-column {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
.translateXY50 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.translateX50 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}
.translateY50 {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
}
.transitionAll05 {
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scroll-bar::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0);
    border-left: 1px solid rgba(0, 0, 0, 0);
}
.scroll-bar::-webkit-scrollbar {
    width: 5px;
    height: 2px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.scroll-bar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    min-height: 28px;
}
.scroll-bar::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.clearfix {
    display: block;
    content: '';
    overflow: hidden;
    clear: both;
}

/*分页*/
.page {
    text-align: center;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination .disabled span {
    color: #eee;
}
.pagination .active span {
    background: #E93C43;
    color: #fff;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/*头部样式*/
.header {
    width: 75%;
    height: 96px;
    margin: 0 auto;

}
.header .left .logo {
    width: 56px;
    height: 56px;
}
.header .left .logo img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.header .left .title_box {
    margin-left: 16px;
}
.header .left .title_box .title {
    height: 56px;
    font-size: 30px;
    font-weight: 600;
    line-height: 56px;
}
.header .left .title_box .tips {
    height: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #E93C43;
    line-height: 25px;
}
.header .right .username {
    background-color: #00a0e9;
    border-radius: 20px;
    height: 30px;
    line-height: 30px;
    padding: 3px 10px;
    font-size: 14px;
    color: #ffffff;
}
.header .right .btn {
    display: inline-block;
    width: 70px;
    height: 40px;
    line-height: 40px;
    color: #999;
    text-align: center;
    cursor: pointer;
    margin-left: 20px;
}
/*底部*/
.footer {
    height: 64px;
    line-height: 64px;
    text-align: center;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 10000;
}