

.iconBox{
    position: absolute;
    left: 25%;
    top:60px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.iconBox img{
    width:210px;
    /*height: 70px;*/
    margin: 0 10px 0 0;
}
.titleBox{
    position: absolute;
    left: 25%;
    top:50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 40px;
}


.loginBox {
    width: 325px;
    background: #FFFFFF;
    box-shadow: 25px 25px 50px 0px rgba(2, 8, 22, 0.3);
    border-radius: 5px;
    position: absolute;
    right: 25%;
    top:50%;
    transform: translateY(-50%);
}

.loginBox .changeLine {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
}

.loginBox .changeLine .type {
    width: 50%;
    font-size: 16px;
    height: 30px;
    cursor: pointer;
}

.loginBox .changeLine .type.active {
    color: #C94146;
}

.loginBox .changeLine .type p {
    height: 2px;
    background-color: #C94146;
    width: 16px;
    border-radius: 4px;
    margin: 2px auto 0;
}

.loginBox .changeLine .type .line2 {
    display: none;
}

.loginBox .formBox {
    margin: 0 27px;
}
/* 密码登录 */
.loginBox .formBox2 {
    display: none;
}

.loginBox .formBox .input {
    font-size: 12px;
    height: 45px;
}


.loginBox .formBox .form-group {
    position: relative;
    margin:0 0 26px;
}
/* 必填提示 */
.loginBox .formBox .form-group .help-block{
    position: absolute;
    bottom: -22px;
    color: #FC4E48;
    text-align: right;
    display: block;
    width: 100%;
    left: 0;
    font-size: 12px;
}

.loginBox .formBox .form-group .codeButton {
    color: #C94146;
    font-size: 12px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.loginBox .button, .loginBox .button2{
    width: 271px;
    height: 45px;
    background: #C94146;
    /*box-shadow: 0px 8px 12px 0px rgba(201,65,70, 0.2);*/
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 同意协议 */
.loginBox .readBox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin: 6px 0 20px;
}

.loginBox .readBox input {
    margin: 0 10px 0 0;
}

.loginBox .read{
    width:8px;
    height:8px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    position: relative;
}
.loginBox .read::before{
    content: "";
    position: absolute;
    top:-5px;
    left: -8px;
    background: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #d9d9d9;
}
.loginBox .read:checked::before{
    content: "\2713";
    position: absolute;
    top:-5px;
    left: -8px;
    width: 18px;
    height: 18px;
    border: 1px solid #C94146;
    color:#fff;
    font-size: 10px;
    line-height: 16px;
    background-color: #C94146;
    border-radius: 50%;
}

.loginBox .readBox div {
    font-size: 10px;
    color: #999;
    height: 30px;
    display: flex;
    align-items: center;
}

.loginBox .readBox div a {
    margin: 0 2px;
}
.loginBox .readBox div a:hover {
    color: #C94146;
}


.loginBox .othetLine {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 12px;
    color: #595F6F;
    height: 58px;
}

.loginBox .othetLine a {
    text-decoration: none;
}

.loginBox .othetLine a:hover {
    color: #C94146;
}