/* 弹窗 (background) */
.modal {
    display: block; /* 默认隐藏 */
    position: sticky; /* 固定定位 */
    z-index: 2147483647!important; /* 设置在顶层 */
    top:50px;
    overflow-y:hidden !important;
    background-color:rgba(0,0,255,0);

    opacity: 0;
    transition:opacity 1s;
    -webkit-transition: opacity 1s; /* Safari */

}

/* 弹窗内容 */
.modal-content {
    position: sticky!important;
    top:150px;
    margin:0 auto;
    padding:5px;
    width: 400px !important;
    overflow-y:hidden;
    background-color: rgba(0, 0, 255, 0) !important;
    border: none !important;

}

/* 关闭按钮 */
.close {
    color: #aaa;
     margin-left: 350px;
    font-size: 28px;
    font-weight: bold;
    width: fit-content;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.wrapper {

    /* width: 884px; */
    overflow-y:hidden;
    overflow-x: hidden;
}

.loginBox {
    background-color: #F0F4F6;
    /*上divcolor*/
    border: 1px solid #BfD6E1;
    border-radius: 5px;
    color: #444;
    font: 14px 'Microsoft YaHei', '微软雅黑';
    margin: 0 auto;
    width: 388px;

}

.loginBox .loginBoxCenter {
    border-bottom: 1px solid #DDE0E8;
    padding: 24px;
    height: auto;
}

.loginBox .loginBoxCenter p {
    margin-bottom: 10px
}

.loginBox .loginBoxButtons {
    /*background-color: #F0F4F6;*/
    /*下divcolor*/
    border-top: 0 solid #FFF;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    line-height: 28px;
    overflow: hidden;
    padding: 20px 24px;
    vertical-align: center;
    filter: alpha(Opacity=80);
    -moz-opacity: 0.5;

}

.loginBox .loginInput {

    color: #444;
    font: 12px 'Microsoft YaHei', '微软雅黑';
    padding: 8px 14px;
    margin-bottom: 8px;
    width: 310px;
    border: 0;
    outline: none;
    margin-right: 34px;
    /*height: 32px;*/

}
.loginBox .passwordInput {

    color: #444;
    font: 12px 'Microsoft YaHei', '微软雅黑';
    padding: 8px 0 8px 14px;
    margin-bottom: 8px;
    width:290px;
    border: 0;
    /* 取消蓝色边框 */
    outline: none;
}

/*.loginBox .loginInput:FOCUS {*/
/*    border: 1px solid #B7D4EA;*/
/*    box-shadow: 0 0 8px #B7D4EA;*/
/*}*/

.loginBox .loginBtn {
    background-image: -moz-linear-gradient(to bottom, blue, #85CFEE);
    border: 1px solid #98CCE7;
    border-radius: 20px;
    box-shadow: inset rgba(255, 255, 255, 0.6) 0 1px 1px, rgba(0, 0, 0, 0.1) 0 1px 1px;
    color: #444;
    /*登录*/
    cursor: pointer;
    float: right;
    font: bold 13px Arial;
    padding: 10px 50px;
}

.loginBox .loginBtn:HOVER {
    background-image: -moz-linear-gradient(to top, blue, #85CFEE);
}

.loginBox a.forgetLink {
    color: #ABABAB;
    cursor: pointer;
    float: right;
    font: 11px/20px Arial;
    text-decoration: none;
    vertical-align: middle;
    /*忘记密码*/
}
.loginBox a.registerLink {
    color: #ABABAB;
    cursor: pointer;
    float: left;
    font: 11px/20px Arial;
    text-decoration: none;
    vertical-align: middle;
    /*新用户注册*/
}
.loginBox a.code {
    color: #ABABAB;
    cursor: pointer;
    float: left;
    font: 11px/20px Arial;
    text-decoration: none;
    vertical-align: middle;
    /*验证码*/
}
.loginBox a.code:HOVER {
    color: #000000;
    text-decoration: none;
    /*验证码*/
}
.loginBox a.registerLink:HOVER {
    color: #000000;
    text-decoration: none;
    /*新用户注册*/
}
.loginBox a.forgetLink:HOVER {
    color: #000000;
    text-decoration: none;
    /*忘记密码*/
}

.loginBox input#remember {
    vertical-align: middle;
}

.loginBox label[for="remember"] {
    font: 11px Arial;
}
.passwordDiv{
    width:310px;
    height: 32px;
    background-color: white;
    /*border: 1px solid #D2D9dC;*/
    /*border-radius: 2px;*/

}

/*去除ie edge的密码框默认出现的小眼睛
		给人添乱这一块，巨硬从来都没让我失望过*/
input[type="password"]::-ms-reveal{
    display: none;
}
input[type="password"]::-ms-clear{
    display: none;
}
input[type="password"]::-o-clear{
    display: none;
}


/*底部导航栏中的边距*/
#copyRight p{
    margin: 0;
}

#copyRight{
    width:80%;
    margin: auto;
    height: auto;
    border-bottom-right-radius:150px;
    border-bottom: white solid 4px;
    border-right: white solid 4px;
    padding-bottom: 40px
}