.idcardBox  {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.41);
    top: 0;
    left: 0;
    z-index: 99;
}

.idcardBox .idcardArea {
    position: fixed;
    width: 600px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: auto;
    border-radius: 5px;
    background-color: rgb(98, 78, 58);
}

.idcardBox .idcardArea .idcard_top {
    position: relative;
    width: 600px;
    height: 77px;
    background-color: rgb(156, 100, 43);
    border-bottom: 2px solid rgb(89, 44, 0);
}

.idcardBox .idcardArea .idcard_title {
    font-size: 21px;
    font-family: "Microsoft YaHei";
    color: rgb(255, 218, 174);
    font-weight: bold;
    text-align: center;
    line-height: 77px;
}

.idcardBox .idcardArea .idcard_top .idcard_x {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 30px;
    font-family: "Microsoft YaHei";
    color: rgb(217, 217, 217);
    cursor: pointer;
}

.idcardBox .idcardArea .idcard_top .idcard_x:hover {
    color: rgb(255, 255, 255);
}

.idcard_form {
    width: 600px;
    margin: 40px auto;
}

.idcard_form .idcard_form_row {
    display: flex;
    margin-bottom: 20px;
}

.idcard_lable {
    width: 100px;
    position: relative;
    top: 6px;
    text-align: right;
}

.idcard_lable span {
    color: red;
}

.idcard_lable label {
    font-size: 15px;
    font-family: "Microsoft YaHei";
    color: rgb(254, 192, 119);
}

.idcard_form_phone .idcard_form_input input {
    width: 378px;
    height: 37px;
    border-width: 1px;
    border-color: rgb(157, 117, 76);
    border-style: solid;
    border-radius: 5px;
    background-color: rgb(98, 76, 57);
    padding-left: 20px;
    font-size: 15px;
    font-family: "Microsoft YaHei";
    color: rgb(217, 96, 14);;
}

/* 针对大多数现代浏览器 */
.idcard_form_phone .idcard_form_input input::placeholder,
.change_phone_form_verification .change_phone_form_input input::placeholder { /* Firefox 52+, Chrome 51+, Opera 39+, Safari 10.1+ */
    color: rgb(254, 192, 119); /* 设置占位符文本颜色 */
    opacity: 1; /* 解决Firefox默认的透明度问题 */
}

/* 对于旧版WebKit浏览器，如旧版Safari和Chrome */
.idcard_form_phone .idcard_form_input input::-webkit-input-placeholder,
.change_phone_form_verification .change_phone_form_input input::-webkit-input-placeholder {
    color: rgb(254, 192, 119);
}

/* 对于Firefox 19-51版本 */
.idcard_form_phone .idcard_form_input input:-moz-placeholder,
.change_phone_form_verification .change_phone_form_input input:-moz-placeholder {  
    color: rgb(254, 192, 119);
    opacity: 1;
}

/* 对于Firefox 4-18版本 */
.idcard_form_phone .idcard_form_input input::-moz-placeholder,
.change_phone_form_verification .change_phone_form_input input::-moz-placeholder {
    color: rgb(254, 192, 119);
    opacity: 1;
}

/* 对于IE 10+ */
.idcard_form_phone .idcard_form_input input:-ms-input-placeholder,
.change_phone_form_verification .change_phone_form_input input:-ms-input-placeholder {  
    color: rgb(254, 192, 119);
}

.idcard_form .idcard_btn {
    width: 133px;
    height: 36px;
    border-radius: 5px;
    background-image: -moz-linear-gradient(90deg, rgb(177, 48, 34) 0%, rgb(96, 12, 10) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(177, 48, 34) 0%, rgb(96, 12, 10) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(177, 48, 34) 0%, rgb(96, 12, 10) 100%);
    box-shadow: 0.766px 0.643px 1px 0px rgba(0, 0, 0, 0.27);
    font-size: 14px;
    font-family: "Microsoft YaHei";
    color: rgb(254, 192, 119);
    text-align: center;
    padding: 0;
    line-height: 36px;
    margin: 0 auto;
    cursor: pointer;
}