*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
a{
    text-decoration: none;
    color:unset;
}
body{
    font-family:"Microsoft YaHei",Arial,Helvetica,sans-serif;
    -webkit-text-size-adjust:none;
    margin:0 auto;
    background-color: #f5f4f4;
    min-width:1200px;
}
 /*去掉苹果的默认UI来渲染按钮*/
input,button,select,textarea{
    outline:none;
    border-radius:0; 
    border:none;
}
ol,ul{
    list-style: none;
}
textarea{
    overflow:auto;
    resize:none;
}
button{
    cursor: pointer;
}
button[disabled]{
    opacity: 0.6;
    cursor: not-allowed !important;
}
img{
    border:0;
    max-width: 100%;
}
hr{
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #e4eaec;
}
[v-cloak]{
    display: none;
}
.help-block{
    font-size: 12px;
    margin-top: 5px;
    color: #F24F4C;
    display: block;
}
.has-error input,
.has-error select{
    border-color: #F24F4C!important;
}
.has-success input,
.has-success select{
    /*border-color: #9834FF!important;*/
}
.breadcrumb{
    background-image: url(../images/icon-home.png);
    background-size: 14px 14px;
    background-repeat: no-repeat;
    padding-left: 14px;
    line-height: normal;
    background-position: 0 center;
    margin: 24px 0;
}
.clearfix:before,
.clearfix:after,
.breadcrumb:before,
.breadcrumb:after{
    display: table;
    content: " ";
    clear: both;
}
.breadcrumb > li{
    font-size: 14px;
    color: #999;
    float: left;
    margin-left: 8px;
}
.breadcrumb > li > a{
    color: #777;
    background-image: url(../images/arrow-right.png);
    background-size: 14px 14px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 22px;
}
.breadcrumb > li > a:hover{
    text-decoration: underline;
}
.breadcrumb > li:last-child{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 500px;
}
.no-data{
    text-align: center;
    padding: 150px 0;
}
.no-data .icon{
    height: 60px;
    margin-bottom: 10px;
}
.no-data .text{
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}
.no-data .link{
    font-size: 16px;
}
.popup-tips{
    position:fixed;
    top: 50%;
    width: 200px;
    left: 50%;
    z-index: 1005;
    display: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    margin-left: -100px;
}
.popup-tips .tips-text{
    display: inline-block;
    max-width: 100%;
    border-radius: 5px;
    background-color:rgba(0, 0, 0, 0.65);
    padding: 12px 16px;
    min-width: 200px;
    font-size: 0;
}
.popup-tips .tips-text>img{
    width: 80px;
    height: 80px;
    margin: 10px 0;
}
.popup-tips .tips-text>span{
    font-size: 12px;
    color: #fff;
    word-break: break-all;
}

.popup-loading{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1005;
}
.popup-loading .loading-box{
    padding: 12px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -64px 0 0 -64px;
}
.popup-loading .loading-box .icon-loading{
    -webkit-animation: loading 1.5s infinite linear;
    animation: loading 1.5s infinite linear;
    width: 60px;
    height: 60px;
    background-image: url(../images/icon-loading.png);
    background-size: 100% 100%;
}
@-webkit-keyframes loading{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
@keyframes loading{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
.pagination-container{
    padding: 40px 0;
    text-align: center;
    font-size: 0;
}
.pagination-container .page-btn{
    width: 38px;
    height: 38px;
    border: 1px solid #E6E6E6;
    background-color: #fff;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    vertical-align: top;
}
.pagination-container .page-btn.disabled{
    cursor: not-allowed;
}
.pagination-container .page-btn .icon{
    width: 18px;
    height: 18px;
    margin-top: 10px;
}
.pagination-container .page-btn .page-prev{
    border-radius: 4px 0 0 4px;
}
.pagination-container .page-btn .page-next{
    border-radius: 0 4px 4px 0;
}
.pagination-container .page-size{
    margin: 0 12px;
    display: inline-block;
    border: 1px solid #E6E6E6;
    vertical-align: top;
}
.pagination-container .page-size > li{
    display: inline-block;
    border-right: 1px solid #E6E6E6;
    height: 36px;
    width: 38px;
    font-size: 12px;
    color: #333333;
    line-height: 36px;
    background-color: #fff;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pagination-container .page-size > li.active{
    background-color: #eee;
    font-weight: bold;
}
.pagination-container .page-btn:not(.disabled):hover,
.pagination-container .page-size li:not(.disabled):hover{
    background-color: #eee;
    font-weight: bold;
}
.pagination-container .page-size > li:last-child{
    border-right: 0;
}

.window-shadow{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    top: 0;
    z-index: 1000;
}
/*公共弹窗*/
.popup-confirm .shadow{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
}
.popup-confirm .popup-content.show{
    transform: translate(0,-50%);
    opacity:1;
}
.popup-confirm .popup-content .close{
    width: 14px;
    height: 14px;
    position: absolute;
    top: 24px;
    right: 22px;
    cursor: pointer;
}
.popup-confirm .popup-content{
    position: fixed;
    z-index: 1002;
    width: 450px;
    left: 50%;
    top: 50%;
    margin-left: -225px;
    overflow: hidden;
    transform: translate(0,30vh);
    opacity:0;
    transition: all 0.5s;
    background-color: #fff;
}
.popup-confirm .popup-title{
    font-size: 16px;
    padding-top: 20px;
    color: #333;
    padding-left: 24px;
}
.popup-confirm .popup-message{
    font-size: 16px;
    line-height: 1.5;
    word-break: break-all;
    padding: 50px 20px;
    color: #333;
    text-align: center;
}
.popup-confirm .popup-form{
    margin:24px;
}
.popup-confirm .popup-form .form-list{
    margin-bottom: 15px;
    font-size: 0;
}
.popup-confirm .popup-form .form-list:last-child{
    margin-bottom: 0;
}
.popup-confirm .popup-form .form-list .label{
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    color: #333;
    padding-top:10px;
}
.popup-confirm .popup-form .form-list .form-group{
    display: inline-block;
    vertical-align: top;
    width: 330px;
}
.popup-confirm .popup-buttons{
    padding: 14px 0;
    border-top: solid 1PX #E5E5E5;
    font-size: 0;
}
.popup-confirm .popup-buttons .buttons{
    width: 50%;
    font-size: 16px;
    flex: 1;
    height: 44px;
    border-right: solid 1PX #E5E5E5;
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    cursor: pointer;
}
.popup-confirm .popup-buttons .buttons:last-child{
    border-right: 0;
}
.popup-confirm .popup-buttons .btn-cancel{
    color: #666;
}