body,html{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.backdrop{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-image: url(/src/images/login/19008@2x.png);*/
    background-image: url("http://static.tica.com/2026/ocss/19008@2x.png");
    background-repeat:no-repeat;
    background-position: center center;
    background-size: cover;
}

.backdrop .box{
    width: 750px;
    height: 70%;
    background: #FFFFFF;
    box-shadow: 0 3px 6px rgba(113, 152, 253, 0.36);
    opacity: 1;
    border-radius: 10px;
    text-align: center;
    max-height: 650px;
    max-width: 800px;
}
.backdrop .box .box-logo{
    width: 45%;
    height:auto;
    margin: 50px auto 20px auto;
}
.backdrop .box .text{
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #262A33;
    opacity: 1;
    margin-bottom: 40px;
}
.backdrop .box .box-i{
    width: 80%;
    height: 50px;
    border-bottom: 1px solid #DFE0E2;
    display: flex;
    align-items: center;
    margin: 20px auto;
}
.backdrop .box .box-i:hover{
    border-bottom: 1px solid #5382FC;
}
.backdrop .box .box-i .top{
    width: 16px;
}
.backdrop .box .box-i .enter{
    flex: 1;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
}
.backdrop .box .box-i .enter .mobile{
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: none;
    font-size: 16px;
    outline:none;
}
.backdrop .box .box-i .enter .code{
    width: auto;
    height: 52px;
    border: none;
}
.backdrop .box .login{
    width: 80%;
    height: 41px;
    background: #F0F1F4;
    opacity: 1;
    border-radius: 21px;
    text-align: center;
    line-height: 41px;
    margin: 40px auto 20px auto;
    color: #333333;
    cursor: pointer;
}
.backdrop .box .login:hover{
    background: #5382FC;
    color: #ffffff;
}
.backdrop .box .forget{
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
    opacity: 1;
    color: #929292;
    cursor: pointer;
}
.backdrop .box .forget:hover{
    color: #5382FC;
}

.recordInformation{
    position: fixed;
    width: 100%;
    text-align: center;
    height: 17px;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 1;
    bottom: 30px;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset
}

@media screen and (max-width: 800px) {
    .backdrop .box{
        width: 70%;
    }
}

@media screen and (max-width: 600px) {
    .backdrop .box{
        width: 90%;
    }
}

@media screen and (max-height: 750px) {
    .backdrop .box .text{
        margin-bottom: 10px;
    }
    .backdrop .box .box-i {
        margin: 0 auto;
    }
}

@media screen and (max-height: 600px) {
    .backdrop .box .box-logo{
        margin: 20px auto 10px auto;
    }
    .backdrop .box .text{
        margin-bottom: 10px;
    }
    .backdrop .box .box-i {
        margin: 0 auto;
    }
    .backdrop .box .login{
        margin: 20px auto;
    }
}


/* 通用：现代浏览器（Chrome, Edge, Firefox 19+, Safari 10+） */
input::placeholder {
    color: #d3d3d3;

}

/* Firefox < 19 兼容（可选） */
input::-moz-placeholder {
    color: #d3d3d3;
}

/* 旧版 WebKit（Safari, Chrome < 57） */
input::-webkit-input-placeholder {
    color: #d3d3d3;
}