* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body, html { 
    margin: 0;
    border: 0;
    padding: 0;
    height: 100%
}

.main_warp {
    width: 100%;
    position: relative;
    max-width: 640px;
    min-width: 320px;
    margin: 0 auto;
    padding: 0px;
}

.top_bg img {
    width: 100%;
    height: auto;
}

.s_result {
    background-image: url('../images/bg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100%;
    overflow: hidden;
    margin-top: -6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scan {
    border: 1px solid white;
    width: 88%;
    height: 180px;
    margin-top: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 23px;
    width: 100%;
    padding: 0px 13px;
}

.query {
    display: flex;
    flex-direction: row;
    background-color: black;
    height: 50px;
    align-items:center;
}

    .query p {
        color: white;
    }

    .query img {
        height: 20px;
        padding-top:6px;
        padding-left:5px;
    }

.search-container {
    position: relative; /* 定位容器 */
    display: inline-block; /* 使容器适应内容大小 */
    margin-top: 20px;
    width: 89%;
    height: 60px;
}

.search-box {
    padding-right: 30px; /* 为图标预留空间 */
    width: 100%;
    height: 48px;
    border: 1px solid #c0c0c0;
    text-align: center;
    font-size:14px;
}

.search-icon {
    position: absolute; /* 绝对定位 */
    top: 38%; /* 垂直居中 */
    right: 10px; /* 距离右侧10px */
    transform: translateY(-50%); /* 微调以精确居中 */
    width: 20px; /* 设置图标大小 */
    height: auto; /* 保持图片宽高比 */
    
}

.reg {
    border: 1px solid white;
    width: 88%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    height: auto;
}

.regtitle {
    display: flex;
    flex-direction: row;
    background-color: white;
    width: 100%;
    justify-content: center;
    align-items:center;
    padding: 10px 10px;
}

    .regtitle img {
        height: 20px;
    }

.message_cont {
    padding: 16px 16px;
    width: 100%;
}

.message_input {
    font-size: 15px;
    border-bottom: 1px solid #4f4f4f;
    padding: 6px 0;
    color: white;
}

    .message_input b {
        font-size: 16px;
    }

input {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    padding-left: 24px;
}

.message_input input {
    font-size: 15px;
    height: 38px;
    line-height: 38px;
    width: calc(100% - 90px);
    outline: none;
    color: white;
}

    .message_input input.avtive_button {
        background-color: #FFFFFF;
        font-size: 15px;
        color: black;
        font-family: "Microsoft YaHei";
        height: 46px;
        line-height: 46px;
        width: 50%;
        /*border-radius: 3px;*/
        text-align: center;
    }

.message_input:last-child {
    border: 0;
    text-align: center;
    padding-top: 20px;
}

.tb {
    width: 88%;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    height: auto;
    justify-content: space-around;
}

    .tb img {
        width: 95px;
        height: 95px;
    }

.tbmx {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .tbmx p {
        color: white;
        margin-top:-6px;
        font-family: MiSans
    }

.bjdb{
    width: 88%;
    margin-top: 30px;
    height: auto;
}

.bjdb img {
    width: 100%;
}
input::placeholder {
    color: #545454; /* 设置placeholder的字体颜色 */
    opacity: 1; /* 确保placeholder的透明度 */
    font-size：12px;
}

input:-ms-input-placeholder { /* Internet Explorer 和 Edge 的旧语法 */
    color: #545454;
font-size：12px;
}

input::-ms-input-placeholder { /* 新的Internet Explorer和Edge语法 */
    color:#545454;
font-size：12px;
}