* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: PingFang SC, BlinkMacSystemFont, Segoe UI,
        Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial,
        sans-serif;
    background: #fff;
    -webkit-transition: background 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: background 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    overflow-x: hidden;
    -webkit-user-select: initial !important;
    -moz-user-select: initial !important;
    -ms-user-select: initial !important;
    user-select: auto !important;
    position: relative;
}


body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #BCC1C2;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #BCC1C2;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #BCC1C2;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #BCC1C2;
}


/* 颜色 */
.active_color {
    color: #16AD90;
}

.primary_color {
    color: #27393B;
}

.info_color {
    color: #BCC1C2;
}
/* 边框 */
.b_b {
    border-bottom: 1px solid rgba(219, 219, 219, 1)
}

.b_active_color {
    border-color: #16AD90;
}

/* 外边距 */
.m_t_30 {
    margin-top: 0.3rem;
}

.m_t_25 {
    margin-top: 0.25rem;
}

.m_t_15 {
    margin-top: 0.15rem;
}

/* 显示与隐藏 */
.hide {
    display: none !important;
}

.show {
    display: block;
}

/* 按钮 */
.btn_disabled {
    background: rgba(238, 238, 238, 1);
}

.btn_active {
    background: #16AD90;
}

.btn_active:active {
    opacity: 0.5;
}

/* 动画 */

@keyframes lineAnimation {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.mask {
    font-size: 0.3rem;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    text-align: center;
}

/*loading中间*/
.loading-middle {
    display: inline-block;
    text-align: center;
    position: relative;
    top: 50%;
    -ms-transform: translate(0, -50%);
    /* IE 9 */
    -moz-transform: translate(0, -50%);
    /* Firefox */
    -o-transform: translate(0, -50%);
    /* Opera */
    -webkit-transform: translate(0, -50%);
    /* Safari 和 Chrome */
    transform: translate(0, -50%);
    background: rgba(125,132,142,0.5);
    border-radius: 0.1rem;
}

.loading-middle img {
    width: 1.6rem;
    height: 1.2rem;
}

/* toast */
.toast-box {
    font-size: 0.15rem !important;
    position: fixed;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0);
    animation: toast-fadein 3s forwards;
    -webkit-animation: toast-fadein 3s forwards;
    z-index: 9999;
}

.toast-box>p {
    /*overflow: hidden;*/
    position: relative;
    display: inline-block;
    line-height: 0.38rem;
    max-width: 60%;
    padding: 0 0.1rem;
    color: #ffffff;
    background: #535353;
    border-radius: 0.1rem;
    -ms-transform: translate(0, -50%);
    /* IE 9 */
    -moz-transform: translate(0, -50%);
    /* Firefox */
    -o-transform: translate(0, -50%);
    /* Opera */
    -webkit-transform: translate(0, -50%);
    /* Safari 和 Chrome */
    transform: translate(0, -50%);
}


@keyframes toast-fadein {
    0% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes toast-fadein {
    0% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.drawer_box {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(0, 0, 0, 0.3);
}

.drawer_container {
    margin-top: auto;
    background: #fff;
    border-radius: 8px 8px 0px 0px;
    transform: translateY(100%);
    transition: all 0.3s 1s;
}

.drawer_container_ty {

    transform: translateY(0);
}

.drawer_title {
    width: 3.75rem;
    height: 0.5rem;
    line-height: 0.5rem;
    text-align: center;
    font-size: 0.16rem;
    font-family: PingFangSC;
    font-weight: 500;
    color: rgba(39, 57, 59, 1);
    border-bottom: 1px solid #EEEEEE;
}

.drawer_content {
    font-size: 0.15rem;
    font-family: PingFangSC;
    font-weight: 400;
    color: rgba(88, 100, 99, 1);
    line-height: 0.23rem;
    max-height: 4.5rem;
    overflow-y: scroll;
    padding: 0.1rem 0.2rem;
}

.drawer_btn {
    width: 3.75rem;
    height: 0.5rem;
    font-size: 0.18rem;
    font-family: PingFangSC;
    font-weight: 400;
    color: #fff;
    line-height: 0.25rem;
    letter-spacing: 1px;
    text-align: center;
    line-height: 0.5rem;
}

/* 光标 */
.line {
    animation: lineAnimation 1s infinite;
}

/* 登录 */
.login_layout,
.result_layout {
    height: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.login_layout .login_container {
    padding: 0.15rem 0.2rem 0;
}

.result_layout .container {
    padding: 0.64rem 0.45rem 0.15rem 0.45rem;
}

.login_layout .logo,
.result_layout .logo {
    font-size: 0;
    height: 0.13rem;
    margin-top: auto;
    text-align: center;
    line-height: 0.13rem;
    margin-bottom: 0.12rem;
}

.logo img {
    width: 1.27rem;
    height: 0.13rem;
}

.title {
    font-size: 0.22rem;
    font-family: PingFangSC;
    font-weight: 500;
    color: rgba(39, 57, 59, 1);
    line-height: 0.3rem;
}

.title_desc {
    display: inline-block;
    margin-top: 0.05rem;
    font-size: 0.12rem;
    font-family: PingFangSC;
    font-weight: 400;
    color: rgba(188, 193, 194, 1);
    line-height: 0.17rem;
}

.login_container .phone,
.login_container .name,
.login_container .ident_card,
.login_container .ident_code {
    font-size: 0.15rem;
    font-family: PingFangSC;
    font-weight: 400;
    color: rgba(188, 193, 194, 1);
    line-height: 0.22rem;
}

.phone .common-inp,.code .common-inp,.name .common-inp,.ident_card .common-inp, .basic_input .common-inp{
    outline: none;
    border: none;
    line-height: 35px;
    width: 90%;
    font-size: 0.15rem;
    vertical-align: middle;
    padding: 0.1rem 0;
    color: #27393B;
    text-overflow: ellipsis;
}

.self_input {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.self_input.name,
.self_input.ident_card {
    justify-content: start;
}

.self_input .label {
    display: inline-block;
    font-size: 0.15rem;
    font-family: PingFangSC;
    font-weight: 400;
    color: rgba(88, 100, 99, 1);
    line-height: 0.21rem;
    width: 0.9rem;
}

.self_input .icon_clear {
    width: 0.2rem;
    height: 0.2rem;
}

.login_container .ident_code {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .login_container .ident_code .code {
    width: 2rem;
} */
.login_container .inp_name {
    border: none;
    outline: none;
}
.inp_box {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login_container .ident_card .val {
    display: inline-block;
    overflow-x: auto;
    max-width: 1.8rem;
    vertical-align: middle;
}

.login_container .ident_card .code,
.name {
    display: flex;
    flex: 1;
}

.login_container .agreement_content {
    display: flex;
    font-size: 0.14rem;
    font-family: PingFangSC;
    font-weight: 400;
    color: rgba(88, 100, 99, 1);
    line-height: 0.2rem;
}

.ident_card img,
.name img {
    margin-left: auto;
}

.inp_box .inp_name {
    position: absolute;
    z-index: 1;
    background: transparent;
}

.inp_box .inp_name {
    font-size: 0.15rem;
    font-family: PingFangSC;
    font-weight: 400;
    color: rgba(39, 57, 59, 1);
    line-height: 0.21rem;
}

.inp_box .pla {
    position: absolute;
    z-index: -1;
}

.login_container .agreement_content img {
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.05rem;
}

.login_container .sub_btn,.result_layout  .sub_btn {
    width: 2.95rem;
    height: 0.5rem;
    border-radius: 0.25rem;
    margin: auto;
    font-size: 0.18rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    line-height: 0.25rem;
    letter-spacing: 1px;
    text-align: center;
    line-height: 0.5rem;
}

.login_container .auth_btn,
.login_container .sub_btn,
.result_layout  .sub_btn{
    margin: 0.25rem auto;
}

.result_layout .container .result_icon {
    text-align: center;
}

.result_layout .container .result_icon img {
    width: 0.8rem;
    height: 0.96rem;
}
.result_layout .container .result_box {
    margin-top: 0.2rem;
    margin-bottom: 0.8rem;
}

.result_layout .container .result_box .result {
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.25rem;
    text-align: center;
    margin-bottom: 0.1rem;
}

.result_layout .container .result_box .result_desc {
    font-size: 0.15rem;
    font-weight: 400;
    line-height: 0.21rem;
    text-align: center;
}

.custom-select {
  position: relative;
}
.custom-select::after{
    content: '';
    position: absolute;
    right: 0.1rem;
    top: 0.15rem;
    width: 0.2rem;
    height: 0.2rem;
    background: url('../img/arrow-down.png') no-repeat;
    background-size: 100% 100%;
}