* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body,
.innerContainer {
    width: 100%;
    font-family: MicrosoftYaHei;
}


/* 大容器 */

.innerContainer {
    padding-bottom: 200px;
    background-color: rgb(242, 243, 244);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-left: 0px;
    padding-right: 0px;
}
.personal_common_bg_box{
    width: 100%;
    height: 100%;
    min-height: 600px;
}
.personal_common_bg_img{
    position: absolute;

    bottom: -105px;
}
.personal_common_bg_img img{
    width: 100%;
    /* height: 751px; */
    object-fit: contain;

}

/* 二容器 */

.regist {
    display: flex;
    justify-content: center;
    z-index: 2;
}


/*具体容器  */

.sign {
    width: 60%;
    padding: 30px;
    background: #fff;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
    z-index: 2;
}

ul>li {
    list-style: none;
    margin-top: 15px;
}

button {
    outline: none;
    filter: chroma(color=#000000);
}

input {
    background: none;
    outline: none;
    border: 1px solid #ccc;
}


/* 复选框 */

.checkbox {
    position: relative;
    height: 30px;
}

.checkbox input[type='checkbox'] {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    opacity: 0;
    z-index: 99;
}

.checkbox label {
    position: absolute;
    left: 30px;
    top: 0;
    height: 20px;
    line-height: 20px;
    width: auto;
}

.checkbox label:before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.checkbox label:after {
    content: '';
    position: absolute;
    left: -22px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: 0;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    background: #fff;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    /* transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease; */
}

.checkbox input[type='checkbox']:checked+label:before {
    background: #4cd764;
}

.checkbox input[type='checkbox']:checked+label:after {
    background: #4cd764;
}

.banner {
    height: 292px;
    background: url("../images/banner.jpg") center center no-repeat;
    background-size: 1920px 100%;
    margin-top: 99px;
}


/* 标题 */

.title {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    font-family: MicrosoftYaHei;
}

.title>div:nth-child(1) {
    width: 150px;
    height: 29px;
    font-family: MicrosoftYaHeiSemibold;
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 28px;
    letter-spacing: 4px;
    color: #00b87a;
    margin: 0 auto;
}

.title>div:nth-child(2) {
    width: 170px;
    height: 20px;
    font-family: PFDinTextCondPro-Regular;
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 28px;
    letter-spacing: 2px;
    color: #adadad;
    margin: 0 auto;
}
.hoverLable:hover{
    text-decoration: underline;
    color: #00b87a!important;
}