/* CSS Document */
html {
    /*touch-action: manipulation; !* 禁用双击缩放（部分浏览器支持） *!*/
    /*overflow: hidden; !* 禁止滚动（极端情况） *!*/
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: url("image/bg.jpg") no-repeat;
    background-size: 100% 100%;
}
header {
    width: 100%;
    height: 10%;
    color: white;
    text-align: left;
}
header .header_logo img{
    width: 80px;
    height: 80px;
    margin-top: 20px;
    margin-left: 30px;
}
main {
    height: 500px;
    padding: 1em;
    background: url("image/con-bg.png") no-repeat;
    background-size: 100% 100%;
    margin-top: 8px;
    padding-bottom: 0;
}
.display{
    background: #ffffff;
    border: 1px solid #0000ff;
    width: 80%;
    height: 42vh;
    margin: 0 auto;
    border-radius: 5vh;
    margin-top: 4vh;
}
.QR_code{
    width: 26vh;
    height: 26vh;
    margin: 0 auto;
    margin-top: 3vh;
}
.QR_code img{
    width: 100%;
    height: 100%;
}
.code_text{
    width: 86%;
    margin: 0 auto;
    height: 6vh;
    border-radius: 3vh;
    background: #1a20e8;
    text-align: center;
    color: #ffffff;
    line-height: 6vh;
    font-size: 1.4rem;
    font-weight: bold;
}
main .con{
    width: 86%;
    height: 90%;
    margin: 0 auto;
    margin-top: 15px;
}
.top_title{
    text-align: center;
    margin-top:20px;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 2px 2px 0 white, -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white;
}
.input{
    width: 100%;
    margin-top: 60px;
    font-size: 1.2rem;
}
.input .input_row{
    height: 20%;
    margin-top: 10px;
    border-bottom: 1px solid #ccc;
}
.input .input_row2{
    border-bottom: 1px solid #d81919;
}
.nullAlert{
    position: absolute;font-size: 14px;color:#d81919;
}
/* 输入框样式，只显示底部线条 */
input[type="tel"] {
    width: 100%;
    padding: 5px 0;
    border: none;
    background-color: transparent;
    outline: none;
    font-size: 1.2rem;
}
/* 输入框聚焦时去掉底部线条显示 */
input[type="tel"]:focus {
    border-bottom: none;
}
input[type="tel"]::placeholder {
    color: #2a2a2a;
    font-size: 1.1rem;
    opacity: 0.33;
}
.input button {
    width: 100%;
    height: 46px;
    padding: 10px;
    color: white;
    border: none;
    border-radius: 45px;
    cursor: pointer;
    background: #1a20e8;
    font-size: 1.2rem;
}
.input button:active {
    background: #2c30ae;
}
#getCodeBtn{
    background: none;
    border: none;
    color: #1a22e9;
    opacity: .88;
    cursor: pointer;
    line-height: 2.4vh;
    text-align: right;
    font-size: 1rem;
}
.getCodeBtn2{
    color: #ccc !important;
}
.input input[type="tel"]:active{
    border: none;
}
.verification-code-container {
    display: flex;
    align-items: center;
}
.footer {
    color: #2a2a2a;
    margin: 0 auto;
    text-align: left;
    width: 100%;
    /*height: 120px;*/
    background: url("image/footerbg.png") no-repeat;
    background-size: 100% 100%;
    padding-top: 1px;
}
.footer .footer_text{
    width: 80%;
    margin: 0 auto;

}
.footer .footer_text p{
    line-height: .6rem;
    font-size: .8rem;
}
.footer .footer_bg{
    width: 100%;
    /*height: 25vh;*/
}
button:focus{
    outline: none !important;
}