html, body {
    height: 100%;
}

.wgl-login{
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 100;
    display: none;
}

.wgl-child {
    position: absolute;
    left: 0px;
    top: 0px;
    transform: translate(-0, 0);
    z-index: 100;
}

.image-button {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    width:110px;
    height: auto;
}
.qp-button {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    width: 9.35vmin;
    height: 11vmin;
    background-image: url('../img/quanping.png');
    background-size:100% 100%;
    background-repeat: no-repeat;
}

.qp-button:not(.off) {
    background-image: url('../img/quanping.png');
}

.qp-button.off {
    background-image: url('../img/quanping-off.png');
}


.image-button img {
    width: 100%; /* 或者你需要的具体宽度 */
    height: auto; /* 保持图片的宽高比 */
    display: block; /* 移除图片下方的空白间隙 */
}
.image-button:hover {
    opacity: 0.8; /* 鼠标悬停时，降低透明度 */
}

.fs-back{
    height: 100%;
    background-image: url('../img/BG.png');
    background-size:100% 100%;
    background-repeat: no-repeat;
    background-color: #f0f9fd !important;
}
.fs-vertical-back{
    height: 100%;
    background-image: url('../img/check_orientation.png');
    background-size:100% 100%;
    background-repeat: no-repeat;
    background-color: #f0f9fd !important;
}


.sex-image-button {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    width:180px;
    height: auto;
    margin-right:3px;
}
.sex-image-button img {
    width: 100%; /* 或者你需要的具体宽度 */
    height: auto; /* 保持图片的宽高比 */
    display: block; /* 移除图片下方的空白间隙 */
}

.audio-zone{
    z-index: 101;
    bottom: 20px;
    right: 20px;
    position: absolute;
}

.audio-image-button{
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    width:50px;
    height:50px;
}

.audio-image-button img {
    width: 100%; /* 或者你需要的具体宽度 */
    height: auto; /* 保持图片的宽高比 */
}

.fs-model-back{
    height: 100%;background-image: url('../img/model_bak.png');
    background-size:100% auto;
    background-repeat: no-repeat;

}
.fs-model-box {
    border:none !important;
    border-radius: 0 5px 5px 5px; /* 所有角都是20像素的圆角 */
}
.fs-img-circle {
    border-radius: 50%;
    width: 20%;
    height: auto;
    margin: 10px 5%;
}


 .input-wrapper {
     padding-left: 0 !important;
     padding-right:0 !important;
     padding-top:10px;
 }

.input-wrapper input {
    width: 100%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;

    background: transparent !important;
    background-clip: padding-box !important;  /* 关键，防止默认白底 */

    border-bottom: 1px solid #fff400 !important;
    padding: 10px;
    font-size: 16px;
    color: white;
    border-radius: 0;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* 处理自动填充导致的白底问题 */
.input-wrapper input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 9999s ease-in-out 0s !important;
}

/* 关键：强制去掉 focus 时的阴影 */
.input-wrapper input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #fff400 !important; /* 这里你可以自定义，比如高亮 */
}

.input-wrapper input::placeholder { /* 标准 */
    color: rgba(255, 255, 255, 0.9);
}
.input-wrapper input:-ms-input-placeholder { /* IE 10+ */
    color: rgba(255, 255, 255, 0.9);
}
.input-wrapper input::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(255, 255, 255, 0.9);
}
.input-wrapper input::-webkit-input-placeholder { /* Chrome/Safari */
    color: rgba(255, 255, 255, 0.9);
}
.input-wrapper input::-moz-placeholder { /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.9);
}
