﻿/*消息提示*/
.global_tip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-100%,0);
    -webkit-transform: translate3d(-50%,-100%,0);
    width: 80%;
    max-width: 500px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    border: 1px solid rgba(0,0,0,.2);
    z-index: 999999;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    border-radius: 4px;
    overflow: hidden;
    display: none;
    opacity: 0;
}
.layout-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,0,0);
    -webkit-transform: translate3d(-50%,0,0);
    width: 80%;
    max-width: 500px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    border: 1px solid rgba(0,0,0,.2);
    z-index: 999999;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    border-radius: 4px;
    overflow: hidden;
    display: none;
    opacity: 0;
}
.layout-box .layout-header {
    position: relative;
    font-size: 16px;
    color: #333;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    line-height: 1.4;
}
.layout-box .layout-header .close-btn {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    color: #333;
    top: 5px;
    right: 5px;
}
.layout-box .layout-content {
    padding: 15px;
    font-size: 14px;
    color: #333;
}
.layout-box .layout-footer {
    height: 35px;
    border-top: 1px solid #e5e5e5;
}
.layout-box .layout-footer .yes,
.layout-box .layout-footer .no {
    text-align: center;
    width: 50%;
    float: left;
    height: 100%;
    line-height: 35px;
    color: #fff;
    cursor: pointer;
}
.layout-box .layout-footer .yes {
    background: #fe716a;
}
.layout-box .layout-footer .no {
    background: #babbcd;
}
.success_tip {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    width: 120px;
    height: 120px;
    background: rgba(0,0,0,0.7);
    border-radius: 10px;
    text-align: center;
    display: none;
    z-index: 999999;
    opacity: 0;
}
.success_tip .success-icon {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 90px;
    height: 90px;
    font-size: 40px;
    color: #fff;
}
.success_tip .msg {
    text-align: center;
    line-height: 1;
    margin: 0;
    font-size: 14px;
    color: #fff;
}
.showup {
    opacity: 1;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform: translate3d(-50%,-50%,0);
}