/* 页面背景 */

body {
    background: url(../img/bg.jpg);
    background-repeat: no-repeat;
}

.user-register .logo-container {
    position: absolute;
    top: 50px;
    left: 70px;
    text-decoration: none;
}

.user-register .logo-container>img {
    width: 60px;
}

.user-register .logo-container .logo-txt {
    position: relative;
    top: -16px;
    font-size: 38px;
    color: #fff;
    font-weight: 800;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.text-container {
    position: absolute;
    top: 320px;
    left: 200px;
    font-size: 60px;
    color: #fff;
}

.text-container .text-description {
    font-size: 34px;
}


/* 作者权限 */

.register-author {
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 649px;
    left: 88px;
}

.register-author span {
    margin-right: 10px;
    font-family: PingFang-SC-Regular, Helvetica, "Microsoft Yahei", "微软雅黑";
    opacity: 0.5;
}

.register-author span a {
    color: #fff;
    font-size: 14px;
}


/* 表单容器 */

.form-container {
    position: absolute;
    right: 140px;
    width: 450px;
    height: 630px;
    background-color: rgba(255, 255, 255, .9);
    top: 50%;
    margin-top: -340px;
    border-radius: 12px;
}

.form-container-title {
    margin-top: 56px;
    margin-left: 35px;
}

.form-container-title .form-container-register {
    font-size: 40px;
}

.form-container-title .form-container-login {
    color: #666;
}

.form-container-title .form-container-login>a {
    color: #2e58fe;
}

.form-body {
    margin-top: 70px;
}


/* label标签 */

label {
    height: 40px;
    line-height: 40px;
    text-align: right;
    float: left;
    margin-right: 13px;
    width: 80px;
}


/* 输入框 */

.form-body .form-item input {
    height: 38px;
    width: 330px;
    text-indent: 20px;
    outline: none;
    border: 1px solid #ddd;
    float: left;
    border-radius: 6px;
}

.form-body .form-item {
    position: relative;
    margin-bottom: 40px;
    color: #666;
}

.form-body .form-item input:focus {
    border-color: #409eff;
}


/* 注册按钮 */

.register-btn {
    width: 397px;
    height: 48px;
    display: block;
    border-radius: 24px;
    font-size: 16px;
    color: #fff;
    margin: 0 auto;
    outline: none;
    border: none;
    background-color: #3f89ec;
    text-align: center;
    cursor: pointer;
}


/* 用户名输入提示 */

.tip-message {
    width: 317px;
    height: 39px;
    line-height: 30px;
    position: absolute;
    top: -46px;
    left: 97px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    background-size: cover;
    display: none;
    background-image: url(../img/check-username-bg.png);
}


/* 输入错误输入框边框会变色 */

.error-inp {
    border-color: #f55!important;
}


/* 输入错误提示 */

.error-message {
    font-size: 12px;
    color: #f55;
    position: absolute;
    left: 97px;
    top: 43px;
    display: none;
}


/* 隐式选项 */

.self-check {
    position: relative;
    top: 31px;
    left: 66px;
}

.self-label1 {
    font-size: 12px;
    position: relative;
    top: 0px;
    left: 65px;
    color: #666;
}

.myself-a1 {
    font-size: 12px;
    position: relative;
    top: 8px;
    left: 50px;
    text-decoration: none;
    color: #2e58fe;
}

.myself span {
    font-size: 12px;
    position: relative;
    top: 8px;
    left: 43px;
    color: #666;
}

.myself-a2 {
    font-size: 12px;
    position: relative;
    top: 8px;
    left: 36px;
    text-decoration: none;
    color: #2e58fe;
}


/* 鼠标触碰会出现下划线 */

.txt:hover {
    text-decoration: underline;
}