/*
本代码由素材家园收集并编辑整理;
尊重他人劳动成果;
转载请保留素材家园链接 - www.sucaijiayuan.com
*/

.bzm-content {
    display: none;
    position: absolute;
    z-index: 9999;
    width: 100%;
    max-width: 960px;
    _width: expression((documentElement.clientWidth >960) ? "960px": "auto");
    height: auto;
    margin: 0 auto;
    font-family: '微软雅黑';
}

.bzm,
.bzm * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.bzm {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    font: 400 16px sans-serif;
    background: #222;
    background: rgba(55, 58, 71, 0.9);
    opacity: 0;
    -webkit-transform: scale(0) translateZ(0);
    transform: scale(0) translateZ(0);
    -webkit-transition: opacity 300ms ease 300ms, -webkit-transform 0 ease 600ms;
    transition: opacity 300ms ease 300ms, transform 0 ease 600ms;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
}

.bzm h2 {
    color: #000;
    text-indent: 2em;
    padding: 0.6em 0;
}

.bzm h3 {
    font-size: 18px;
    color: #000;
    padding: 0.5em 0;
}

.bzm h4 {
    color: #000;
    text-indent: 2em;
    line-height: 1.5em;
    padding: 0.4em 0;
}

.bzm p {
    color: #696a6a;
    text-indent: 2em;
    line-height: 1.8em;
    text-align: left;
    word-wrap: break-word;
}

.bzm table tr td p {
    text-align: center;
}

.bzm p a {
    color: #97070e;
    text-decoration: underline;
    text-indent: 2em;
    line-height: 1.2em;
}

.bzm--oldie {
    display: none;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.bzm--show {
    opacity: 1;
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
    -webkit-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
}

.bzm--oldie-show {
    display: block;
}

.bzm-dialog {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0 2%;
    color: #222;
    background: #fff;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    will-change: transform;
}

.bzm--oldie .bzm-dialog {
    top: 0;
    bottom: auto;
}

.bzm--show .bzm-dialog {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 300ms ease 300ms;
    transition: transform 300ms ease 300ms;
}

.bzm-header,
.bzm-body,
.bzm-footer {
    padding: 16px;
}

.bzm-header {
    border-bottom: solid 1px #ddd;
}

.bzm-header .bzm-title{
    font-size: 22px;
     font-weight: 700; 
 }

.bzm-footer {
    border-top: solid 1px #ddd;
    text-align: center;
}

.bzm-title {
    margin: 0;
}

.bzm-header-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    border: 0;
    overflow: hidden;
    text-indent: -200px;
    color: #888;
    background: none;
}

.bzm-header-close:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 1;
    text-indent: 0;
    content: '\00d7';
}

.bzm-header-close:hover,
.bzm-header-close:focus {
    color: #222;
}

.bzm-btn {
    padding: 8px 16px;
    border: solid 1px #101f6a;
    line-height: 1.4;
    color: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 6px;
    background: #101f6a;
}

.bzm-btn:hover,
.bzm-btn:focus {
    border: solid 1px #0f2ab2;
    color: #fff;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #0f2ab2;
}

.bzm-btn:focus {
    outline: #101f6a solid 1px;
}

.bzm-btn:active {
    background: #101f6a;
    -webkit-transform: scale(.98);
    -ms-transform: scale(.98);
    transform: scale(.98);
}

.bzm-disable-scroll {
    max-height: 100%;
    overflow: hidden;
}