/* 取消input的上下箭头 start*/
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
 
}
 
input::-webkit-outer-spin-button{
  -webkit-appearance: none !important;
 
}
 
input[type="number"]{
  -moz-appearance: textfield;
 
}
/* 取消input的上下箭头 end*/


.layui-input, .layui-textarea{
    border-radius: 8px;
}

.mainPageLayOut{
    min-height: 100vh;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
}


/* 登录页表单 start */
.submitFrom{
    width: 80%;
    margin: 0 auto;
    max-width: 500px;
    background-color: #9e9e9e;
    border-radius: 8px;
    /* padding: 46px 20px;
    min-height: 300px; */
    padding: 35px 10%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 15px rgba(0,0,0,.8);
}


.layui-form-item{
    display: flex;
    flex-direction: column;

}

.layui-form-label{
    width: 100%;
    padding: 9px 6px;
    text-align: start;
    color: #fff;
}

.layui-input-block{
    margin-left: 0;
}


.btnBox{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.submitBtn{
    display: block;
    padding: 6px 14px;
    background-color: #565656;
    color: #fff;
    border-radius: 4px;
    border: 1px solid #2271b1;
    cursor: pointer;
}

.noPerson{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(0,0,0,0.3);
}

.noPersonBox{
    position: relative;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    padding: 10px 20px 40px;
    background-color: #fff;
}

.tipsTitle{
    border-bottom: 1px solid #dadada;
    line-height: 34px;
}

.tipsContent{
    padding: 15px 0;
    min-height: 100px;
    color: #000;
}

.btnArr{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.btnItem{
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.newForm{
    margin-bottom: 10px;
    background-color: #8CC441;
    color: #fff;
}
.tryAgain{
    background-color: #e0c14d;
    color: #fff;
}



/* 登录页表单 end */


/* 选择页面 */
.chooseName{
    width: 80%;
    max-height: 80vh;
    overflow: auto;
    margin: 0 auto;
    max-width: 500px;
    background-color: #9e9e9e;
    border-radius: 8px;
    padding: 26px 20px 46px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content:center;
    box-shadow: 0 0 15px rgba(0,0,0,.8);
}

.nameTips{
    width: 100%;
    line-height: 34px;
    text-align: center;
    color: #fff;
    font-weight: bold;
}


.chooseNameList{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nameItem{
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10px;
    padding: 12px 10px;
    background-color: #fff;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
}

.nameItem:nth-last-of-type(1){
    margin-bottom: 0;
}










