html{
    width: 100%;
    height: 100%;
}
body{
    position: relative;
    min-height: 100%;
    padding-bottom: 94px;
    box-sizing: border-box;
    overflow-x: hidden;
}
ul,li{
    list-style: none;
    margin: 0;
    padding: 0;
}
.wrap{
    width: 1000px;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.header{
    height: 100px;
    background-color: #234996;
}
.header .h-left{
    float: left;
    height: 100%;
   /*  width: 209px; */
}
.header .h-left .logo{
    width: 100%;
    height: 100%;
    /* background: url(../images/logo2.png) no-repeat center; */
    background-size: 100%;
}
.header .h-right{
    float: right;
    height: 100%;
}
.header .h-right .user-name{
    line-height: 100px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}
.header .h-right .user-name::before{
    display: inline-block;
    content: '';
    width: 20px;
    height: 23px;
    background: url(../images/user-icon.png) no-repeat center;
    background-size: 100%;
    vertical-align: middle;
    margin-right: 10px;
}
.public-footer{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 94px;
    line-height: 94px;
    background-color: #313131;
}
.public-footer .all-rights{
    font-size: 14px;
    color: #fff;
}

.btn-box{
    text-align: center;
    margin: 40px 0;
}
.btn{
    min-width: 206px;
    height: 56px;
    background-color: #234996;
    font-size: 24px;
    border: 0;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    outline: none;
    padding: 0;
}
a.btn{
    display: inline-block;
    line-height: 56px;
    text-decoration: none;
}

.modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
    text-align: center;
}
.modal.show{
    display: block;
}
.modal .m-wrap{
    position: absolute;
    top: 50%;
    left: 50%;
    height: 240px;
    width: 530px;
    margin-top: -120px;
    margin-left: -265px;
    background-color: #fff;
}
.modal .m-wrap .m-title{
    line-height: 56px;
    background-color: #234996;
    text-align: center;
    font-size: 22px;
    color: #fff;
}
.modal .m-wrap .m-cnt{
    font-size: 18px;
    padding: 40px 0;
}
.modal .m-wrap .m-btn-box{

}
.modal .m-wrap .m-btn-box button{
    width: 120px;
    line-height: 30px;
    margin: 0 10px;
    background-color: #234996;
    color: #fff;
    border: 0;
    border-radius: 4px;
}
.modal .m-wrap .m-btn-box button.b-not{
    background-color: #5c5c5c;
}
.cover-show {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    /* background-image: url(../images/cover_bg.png); */
    background-color: rgba(0,0,0,0.4);
    display: block;
    z-index: 5;
    -webkit-transition-duration: 350ms;
    transition-duration: 350ms;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%);
}
.loading>i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60px;
    height: 60px;
    background: url(../images/loading.gif);
    -webkit-background-size: auto 60px;
}