/*job页面css样式*/


/*谷歌*/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}


/* 火狐 */

input {
    -moz-appearance: textfield;
}


/*阻止gecko内核浏览器的必填项目的警告框*/

input[required]:invalid,
input:focus:invalid,
textarea[required]:invalid,
textarea:focus:invalid {
    box-shadow: none;
}

.form div {
    padding: 0.5rem 1rem;
}

.form div label {
    font-size: 16px;
    color: #666666;
}

.form div input {
    border: 0;
    height: 2rem;
    text-indent: 2rem;
    margin-top: 0.5rem;
    border-bottom: 1px #CCCCCC solid;
}

.form-button button {
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    border: 0;
    color: white;
    border-radius: 5px;
}

.submit {
    background-color: #5DD5C8;
}

.reset {
    background-color: #CCCCCC;
}


/*单选样式*/

.sex-radio {
    margin: 0 !important;
    padding-top: 0.5rem !important;
}

.sex-radio input[type="radio"] {
    margin-top: -0.1rem;
    border: 1px #5DD5C8 solid !important;
    margin-left: 2rem;
    margin-right: 0.5rem;
    content: "\a0";
    /*不换行空格*/
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 2px;
    text-align: center;
    line-height: 1rem;
    border: 1px solid #ddd;
}

.sex-radio input[type="radio"]:checked {
    background-color: #5DD5C8;
    /*背景图的写法是生效的*/
    border: none;
}


/*基本信息页*/

.marital {
    margin-top: 0.5rem;
    border: 0;
    padding-left: 2rem;
    border-bottom: 1px #cccccc solid;
    height: 2rem;
}

.marital option {
    text-indent: 2rem;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari 和 Chrome */
}


/*增加信息条数*/

.addmessage {
    height: 2rem;
    max-height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.addmessage img {
    height: 2rem;
    width: 2rem;
}

.adddiv {
    margin: 1rem;
    border-radius: 0.5rem;
    background-color: white;
}


/* 清除iput浏览器保存输入的样式 */

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: #000 !important;
    /* -webkit-box-shadow: 0 0 0px 1000px transparent inset !important; */
    background-color: transparent;
    background-image: none;
    transition: background-color 50000s ease-in-out 0s;
    /* 背景色透明 生效时长 过渡效果 启用时延迟的时间 */
}


/**/

.box {
    margin: 1rem;
    border-radius: 0.5rem;
    background-color: white;
}


/**/

input[type="date"] {
    width: 100%;
}