html {
    width: 100%;
}

body {
    width: 100%;
    position: relative;
}

* {
    font-family: "Adobe 黑体 Std" !important;
}

img {
    border: none;
}

a {
    text-decoration: none;
}

.hidden_layer {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.layer_box{
    width: max-content;
    padding: 20px 30px;
    box-sizing: border-box;
    background-color: white;
    border-radius: 10px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.layer_close{
    width: 24px;
    height: 24px;
    display: block;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.layer_tit{
    width: 100%;
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 20px;
}

.layer_cent{
    width: max-content;
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.layer_cent p{
    font-size: 16px;
    color: #333333;
}

.layer_inp{
    width: 350px;
    font-size: 16px;
    padding: 10px 20px;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    box-sizing: border-box;
    margin-left: 20px;
}

.layer_btn{
    width: 150px;
    height: 40px;
    font-size: 16px;
    color: white;
    background-color: #4E94FF;
    border-radius: 10px;
    display: block;
    margin-top: 35px;
    margin-left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}