:root {
    --primary-color: #27B148;
    --button-color: #52CC6F;
    --confirm-color: #77d78d;
    --border-color: #DBDBDB;
    --eval-color: #999999;
    --gray-color: #666666;
    --little-gray-color: #888888;
}
body {
    margin: 0;
    padding: 0;
}
input {
    appearance: none;
    border-radius: 0;
    outline: none;
    border: none;
    padding: 0 15px;
}

.login-container {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url("../../../../icp/images/files/bg.png") no-repeat fixed center center;
    background-size: cover;
}
.login-shadow {
    background: linear-gradient(180deg, rgba(0,123,211,0.08) 0%,rgba(3,67,115,0.64) 100%);
}
.login-modal {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: -215px;
    width: 400px;
    height: 440px;
    padding: 57px 33px;
    line-height: 20px;
    border-radius: 15px;
    background-color: rgb(255, 255, 255);
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0px 2px 6px 0px rgba(50, 145, 248, 0.25);
}
.label-context .form-group, .label-context .input-group{
    margin-top: 25px;
    display: flex;
    align-items: center;

}
.label-context .input-group input {
    flex: 1;
    margin-right: 0px;
    box-sizing: border-box;
}
.label-context .form-group label{
    width: 50px;
    display: flex;
    color: rgba(80, 85, 89, 1);
    font-size: 14px;
    align-items: center;
    justify-content: center;
    height: 20px;
    margin: 0;
    font-weight: 400;
    border-right: 1px solid rgba(80, 85, 89, 0.47);
}
.login-modal .title {
    color: rgba(0, 0, 0, 1);
    font-size: 20px;
}
.box-flowing-light {
    height: 45px;
    border: 1px solid rgba(228, 228, 228, 1) !important;
    border-radius: 4px;
    box-sizing: border-box;
    background: transparent;
    letter-spacing: 1px;
    color: rgba(80, 85, 89, 1);
}
.label-context .form-group input{
    flex: 1;
    height: 100%;
    background: transparent;
    letter-spacing: 1px;
    color: rgba(80, 85, 89, 1);
    border: none;
}
.label-context .form-group input::placeholder,.label-context .input-group input::placeholder {
    color: rgba(153, 153, 153, 1);
}

.input-group-addon {
    height: 45px;
    width: unset;
}
.input-group img {
    height: 100%;
    width: 100%;
}
.btn-radius-blue{
    width: 100%;
    height: 38px;
    border-radius: 4px;
    background-color: rgba(50, 145, 248, 0.99);
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    margin-top: 43px;
    border: none;
    box-shadow: 0px 2px 6px 0px rgba(255, 255, 255, 0.49);
}

.btn-radius-blue{

}

.btn-radius-blue:hover {
    background-color: rgba(27, 134, 250, 0.99);
}

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    -webkit-text-fill-color: #807c7c;
    color: rgba(80, 85, 89, 1) !important;
    transition: background-color 5000s ease-out 0.5s;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition-delay: 99999s;
    transition: color 99999s ease-out, background-color 99999s ease-out;
    -webkit-transition-delay: 99999s;
    -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
    -webkit-text-fill-color:  rgba(80, 85, 89, 1);
    color:  rgba(80, 85, 89, 1) !important;
}


/*msg*/
.self_alert {
    position: fixed;
    top: -100px; /* 初始位置在页面顶部之外 */
    left: 50%; /* 水平居中 */
    transform: translateX(-50%); /* 水平居中 */
    width: 300px; /* 宽度 */
    transition: top 0.5s ease-in-out; /* 过渡动画 */
    z-index: 9999; /* 确保警告框在其他内容之上 */
    padding: 1rem; /* 内边距 */
    border-radius: 4px;
    display: flex !important;
    align-items: center;
    line-height: 1;
}
.self_alert.alert-success {
    color: rgba(82, 204, 111, 1) !important;
    background-color: #f5fdf7 !important;
    border: 1px solid rgba(221, 250, 228, 1) !important;
    background-image: unset !important;
}
.self_alert.alert-error {
    color: rgba(255, 37, 37, 1);
    background-image: unset !important;
    background-color: #fff8f8 !important;
    text-align: center !important;
    border: 1px solid rgba(255, 179, 179, 1) !important;
}
.self_alert.alert-warn {
    color: rgba(255, 98, 0, 1) !important;
    background-color: #fffaf7 !important;
    border: 1px solid rgba(255, 201, 166, 1) !important;
    background-image: unset !important;
}
.self_alert img {
    width: 24px;
    height: 24px;
    margin: 0 5px;
}
.self_alert.show {
    top: 50px; /* 滑入后的位置 */
}

.tips_desc {
    color: #717171;
    font-size: 12px;
    text-align: left;
    margin-top: 5px;
    margin-bottom: -16px;
}
.tips_desc>span {
    text-decoration: underline;
    cursor: pointer;
    color: #474747;
}
.form-modal .form-group {
    align-items: center;
    margin: 8px 0;
}
.form-modal .form-group .control-label{
    min-width: 100px;
    max-width: 100px;
    margin-bottom: 0;

}
.modal_tips_desc {
    color: rgba(153, 153, 153, 1);
    font-size: 12px;
    margin-left: 100px;
    margin-bottom: 2px;
    margin-top: 2px;
}
.tips_desc_main {
    color: #FF6200;
    font-size: 11px;
    text-align: left;
    margin: 2px 18px 10px 100px;
}
.re_send_code {
    text-decoration: underline;
    cursor: pointer;
    color: #1362BA;
    font-size: 12px;
    position: absolute;
    right: 20px;
    height: 30px;
    line-height: 30px;
    width: 90px;
    text-align: center;
}

.input-eyes {
    width: 17px;
    height: 17px;
    position: absolute;
    right: 27px;
    top: 50%;
    margin-top: -12px;
}
.input-eyes.eyes-close {
    width: 17px;
    height: 17px;
    top: 50%;
    margin-top: -9px;
    right: 27px;
}

.modal input:-webkit-autofill,.modal  input:-webkit-autofill:hover,.modal  input:-webkit-autofill:focus,.modal  input:-webkit-autofill:active {
    color: #555 !important;
    -webkit-text-fill-color:#555 !important;
}

.beian_link{
    position: fixed;
    text-align: center;
    width: 100%;
    bottom: 55px;
    display: flex;
    justify-content: center;
}
.beian_link a {
    color: #ffffff;
    font-size: 14px;
}

.view_form>.input-eyes {
    width: 19px;
    height: 19px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -7px;
}
.view_form>.input-eyes.eyes-close {
    width: 19px;
    height: 19px;
    top: 50%;
    margin-top: -10px;
    right: 15px;
}

.beian_forget {
    margin-top: 5px;
    display: flex;
    justify-content: flex-end;
    padding: 0;
}
.beian_forget .beian_text {
    text-decoration: underline;
    font-size: 10px;
    color: #585858;
    cursor: pointer;
}
.beian_forget .beian_text:hover {
    color: #000;
}
