/* 背景 */
.content{
    width: 100%;
    height: 968px;
    background-image: linear-gradient(skyblue,pink);
    position: relative;
}
/* 中间框 */
.content .content-admin{
    width: 400px;
    height: 200px;
    background-color:#ffefef;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    border-radius: 15px;
}
/* 主要内容 */
.content .content-admin .admin-u1{
    margin: 0 auto;
    margin-top: 25px;
    width: 300px;
    height: 35px;
    line-height: 35px;
}
/* 主要内容里面的span */
.content .content-admin .admin-u1 span{
    display: block;
    width: 70px;
    font-size: 20px;
    margin: 0 auto;
    float: left;
    font-size: 15px;
}
/* 主要内容里面的input */
.content .content-admin .admin-u1 input{
    width: 200px;
    height: 30px;
    /*去除阴影*/
    box-shadow:none;
    /*聚焦input的蓝色边框*/
    outline: none;
    /*textarea 禁止拖拽*/
    resize: none;
    /*去除边框*/
    border: none;
    /*常用于IOS下移除原生样式*/
    -webkit-appearance: none;
    /*点击高亮的颜色*/
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    margin: auto 0;
    padding-left: 10px;
}
/* 获取验证码的btn */
.content .content-admin .admin-code button{
    width: 150px;
    height: 35px;
    border: none;
    background-color: skyblue;
}

/* 提交按钮 */
.content .content-admin .admin-btn button{
    width: 200px;
    height: 40px;
    border: none;
    font-size: 20px;
    background-color: skyblue;
}

/* 验证码图片 */
.content .content-admin .admin-code{
    display: flex;
    width: 300px;
    height: 35px;
    margin: 25px auto;
}
/* 短信验证码的input */
.content .content-admin .admin-code input{
    margin-right: 35px;
    /*去除阴影*/
    box-shadow:none;
    /*聚焦input的蓝色边框*/
    outline: none;
    /*textarea 禁止拖拽*/
    resize: none;
    /*去除边框*/
    border: none;
    /*常用于IOS下移除原生样式*/
    -webkit-appearance: none;
    /*点击高亮的颜色*/
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    padding-left: 10px;
}

/* 修改密码的页面 */
.content .content-password{
    width: 300px;
    height: 150px;
    background-color: #ffefef;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: none;
}
/* 页面的内容 */
.content .content-password .admin-d1{
    margin: 0 auto;
    margin-top: 10px;
    width: 300px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}
/* input */
.content .content-password .admin-d1 input{
    width: 200px;
    height: 35px;
    border: none;
    padding-left: 10px;
}
/* span */
.content .content-password .admin-d1 span{
    display: block;
    width: 80px;
    float: left;
    font-size: 15px;
}
/* button */
.content .content-password .admin-d1 button{
    width: 100px;
    height: 35px;
    border: none;
    background-color: skyblue;
}

/* 发送短信之前的验证码 */
.content-yzm{
    width: 150px;
    height: 100px;
    border: 1px solid #ff6700;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: none;
}
/* 发送短信验证码的图片 */
.content-yzm .yzm-img{
    width: 150px;
    height: 50px;
    background-color: #ff6700;
}
.content-yzm .yzm-img img{
    width: 100%;
    height: 100%;
}
/* 发送短信的input */
.content-yzm .yzm-inp{
    width: 150px;
    height: 30px;
}
.content-yzm .yzm-inp input{
    width: 150px;
    height: 30px;
    /*去除阴影*/
    box-shadow:none;
    /*聚焦input的蓝色边框*/
    outline: none;
    /*textarea 禁止拖拽*/
    resize: none;
    /*去除边框*/
    border: none;
    /*常用于IOS下移除原生样式*/
    -webkit-appearance: none;
    /*点击高亮的颜色*/
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    text-align: center;
}
/* 发送短信的button */
.content .content-yzm .yzm-btn button{
    width: 150px;
    height: 20px;
    margin: 0 auto;
}