@charset "utf-8";
/* 角色绑定流程相关页面样式文件 start */
html,body {
    margin: 0;
    padding: 0;
}
.flex {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}

.identity-body {
    box-sizing: border-box;
    padding-top: -webkit-calc((100vh - 800px)/2);
    padding-top: -moz-calc((100vh - 800px)/2);
    padding-top: calc((100vh - 800px)/2);
    margin: 0;
    width: 100%;
    height: 100%;
    min-width: 1200px;
    min-height: 800px;
    background: url("../img/userrole/bg.png") no-repeat center center;
    background-size: cover;
}

.identity-mid {
    width: 1200px;
    height: 800px;
    margin: 0 auto;
    justify-content: space-between;
}

.identity-box {
    box-sizing: border-box;
    width: 680px;
    height: auto;
    margin: 0;
    padding: 40px 65px;
    background: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    position: relative;
}

.identity-box .back-choose {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 18px;
    line-height: 36px;
    padding-right: 26px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    background: url("../img/userrole/right-arrow.png") no-repeat right center;
    background-size: 10px 14px;
}

.identity-box .back-choose:hover {
    color: #26d2bc;
    background: url("../img/userrole/right-arrow-active.png") no-repeat right center;
    background-size: 10px 14px;
}

.identity-box h3 {
    font-size: 26px;
    color: #e85f3e;
    margin-bottom: 50px;
}

.identity-fill-box h3{
    text-align: left;
}

@media screen and (max-width: 1200px) {
    .identity-mid {
        width: 1000px;
    }

    .identity-box {
        width: 580px;
    }
}

@media screen and (min-width: 1600px) {
    .identity-mid {
        width: 1400px;
    }
}

.role-ul {
    width: 100%;
    margin: 0 auto 40px;
}

.role-li {
    box-sizing: border-box;
    margin-bottom: 25px;
    width: 100%;
    height: 110px;
    border: 2px solid #f4f7fb;
    background: #f4f7fb;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    color: #191919;
    justify-content: flex-start;
}

.role-li:hover,
.role-li.active {
    color: #26d2bc;
    border: 2px solid #26d2bc;
    cursor: pointer;
}

.role-li:after {
    content: "";
    position: absolute;
    right: 56px;
    top: 46px;
    width: 11px;
    height: 18px;
    background: url("../img/userrole/right-arrow.png") no-repeat right center;
    background-size: contain;
}

.role-li:hover:after,
.role-li.active:after {
    background: url("../img/userrole/right-arrow-active.png") no-repeat right center;
    background-size: contain;
}

.role-pic {
    margin: 0 60px 0;
    width: 104px;
    height: 104px;
}

.role-txt {
    width: 110px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.role-tips-box {
    width: 100%;
    margin: 0 auto 40px;
}

.role-tips-box h5 {
    font-size: 22px;
    text-align: left;
    font-weight: bold;
    line-height: 48px;
    color: #272b30;
}

.role-tips {
    font-size: 18px;
    line-height: 28px;
    color: #696969;
    text-align: justify;
}

.bot-btn {
    width: 100%;
    height: 68px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: #16ca82;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 0 0 rgba(22, 202, 130, .5);
    -moz-box-shadow: 0 0 0 0 rgba(22, 202, 130, .5);
    box-shadow: 0 0 0 0 rgba(22, 202, 130, .5);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
}

.bot-btn:hover {
    cursor: pointer;
    -webkit-box-shadow: 0 3px 8px 0 rgba(22, 202, 130, .5);
    -moz-box-shadow: 0 3px 8px 0 rgba(22, 202, 130, .5);
    box-shadow: 0 3px 8px 0 rgba(22, 202, 130, .5);
}

.confirm-btn,
.next-btn {
    /*display: none;*/
}


/* 填写身份信息 start */
.fill-in-form {
    margin: 0 auto 50px;
    width: 100%;
    height: auto;
}

.fill-in-input {
    box-sizing: border-box;
    padding: 0 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 44px;
    line-height: 44px;
    border: 2px solid #f4f7fb;
    background: #f4f7fb;
    font-size: 16px;
    color: #191919;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.fill-in-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 16px;
    color: #b1b1b1;
}
.fill-in-input::-moz-placeholder { /* Firefox 19+ */
    font-size: 16px;
    color: #b1b1b1;
}
.fill-in-input:-ms-input-placeholder { /* IE 10+ */
    font-size: 16px;
    color: #b1b1b1;
}
.fill-in-input:-moz-placeholder { /* Firefox 18- */
    font-size: 16px;
    color: #b1b1b1;
}

.fill-in-input:focus {
    border: 2px solid #26d2bc;
}

.short-btn {
    margin: 0 auto;
    width: 300px;
    height: 58px;
}

/* 填写身份信息 end */

/* 认证成功 start */
.state-box {
    margin:  0 auto 60px;
    width: 100%;
    height: auto;
}

.state-pic {
    margin-bottom: 50px;
    width: 224px;
    height: 181px;
    background: url("../img/userrole/id.png") no-repeat center top;
    background-size: contain;
}

.state-p {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #191919;

}
/* 认证成功 end */

/* 角色绑定流程相关页面样式文件 end */
