.tableBox{
    width: 100%;
    height: 250px;
    background: #F0F7FF;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 18px 10px 20px;
    position: relative;
}
.tableBox p#tableBox_title{
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    text-align: center;
}
.tableBox .tableInput{
    display: flex;
    align-items: center;
    margin-top: 20px;
    justify-content: space-between;
}
.tableBox .tableItem input{
    width: 210px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    padding-left: 35px;
    outline: transparent;
    font-size: 14px;
}
.tableBox .tableItem input::placeholder{
    color: #999;
    font-size: 14px;
}
.tableBox .tableInput label,
.tableBox .tableInput div{
    position: relative;
}
.tableBox .tableItem label img,
.tableBox .tableItem div img{
    position: absolute;
    width: 24px;
    height: 24px;
    left: 7px;
    top: 8px;
}
.tableBox .tableItem select{
    width: 210px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    padding-left: 35px;
    outline: transparent;
    font-size: 14px;
}
.tableBox .tableItem .tableBox_btn{
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.tableBox .tableBox_btn button{
    width: 200px;
    height: 50px;
    border-radius: 4px;
    font-size: 18px;
    border: transparent;
    outline: transparent;
    cursor: pointer;
}
.tableBox .tableBox_btn button.tableBox_sub{
    background: #1768D3;
    color: #FFFFFF;
}
.tableBox .tableBox_btn button.tableBox_res{
    background: #DADADA;
    color: #666666;
    margin-left: 30px;
}
.tableBox .tableItem .table_privacy input[type="checkbox"]{
    width: 17px;
    height: 17px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #999999;
    margin-right: 5px;
}
.tableBox .tableItem .table_privacy{
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}
.tableBox .tableItem .table_privacy span{
    color: #FF0000;
    font-size: 14px;
    cursor: pointer;
}
.tableBox .agreement_container {
    position: relative;
    justify-content: center;
}
.agreement_title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #088fdc;
    box-sizing: border-box;
    padding: 6px 12px;
}
.agreement_title h3,
.agreement_close {
    color: #fff;
}
.agreement_close {
   cursor: pointer;
}
.agreement_content {
    display: none;
    width: 600px;
    height: 285px;
    overflow: hidden;
    border-radius: 10px;
    position: absolute;
    bottom: 40px;
}
.agreement_item {
    height: 230px;
    overflow: auto;
    background-color: #f5f5f5;
    text-align: left;
    padding: 10px;
    font-size: 14px;
    color: #666;
}