html,body {
    color: #333;
    margin: 0;
    font-family: 'ASLHauss',Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: normal;
}


html, body, div, dl, dt, dd, ol, ul, li, h1, h2, h3, h4, h5, h6, p, blockquote, pre, button, fieldset, form, input, legend, textarea, th, td {
    margin: 0;
    padding: 0;
} 

a {
    text-decoration: none;
    color: #666;
}

button {
    outline: 0;
}

img {
    border: 0;
}


li {
    list-style: none;
}


.clearfix::after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}




body {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-top: 1.5rem;
}

.logo {
    width: 300px;
}

.title {
    color: #13386c;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 1.75rem;
    margin-bottom: 30px;
}
.input-group {
    margin-bottom: 1rem;
    text-align: left;
    
}
.input-group .text{
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    padding: 3px;
}

.input-field {
    width: 100%;
    height: 44px;
    padding: 10px 15px;
    border: 2px solid #38bdf8;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}
.input-field:focus {
    outline: none;
    border-color: #1c64f2;
}



.header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 65px;
    background-color: #313131;
    z-index: 99;
}
.header .header_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 75rem;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 1.5rem;
}
.header .header_box img{
    width: 24px;
}
.header .header_box #account {
    font-size: 25px;
    color: #757575;
    font-weight: bold;
    text-align: right;
}
.header .header_box #userName {
    font-size: 15px;
    color: #757575;
    font-weight: normal;
    text-align: right;
}

.contant{
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 1.5rem;
    margin-top: 65px;
    box-sizing: border-box;
}
.menu_box{
    position: relative;
    width: 100%;
    height: 40px;
    margin-bottom:  1rem;
    border-radius: 20px;
    box-sizing: border-box;
    background-color: #7d7d7d;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu_box .round{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #fb5a41;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.menu_box .menu_btn{
    width: 38%;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.maskModel{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    background-color: rgba(0,0,0,.4);
    box-sizing: border-box;
    display: none;
}

.menu_iframe{ 
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 100;
    background-color: #fff;
}
.menu_iframe iframe{
    height: 100%;
    border: 0;
}

.menuModel_btnGroup {
    position: absolute;
    top: 360px;
    right: 10px;
    z-index: 101;
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px;
}
.menuModel_btnGroup .btnItem {
    width: 50%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background-color: #555555; /* 深灰色登录按钮 */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    letter-spacing: 2px;    
}

.queryBtn {
   width:80px;
   height:42px;
   border-radius: 5px;
   color: #fff;
   text-align:center;
   line-height: 42px;
   background-color:  #31c48d;
   margin-bottom: 1rem;
   cursor: pointer;
}

/* 消息提示框 */
        .mask {
            width: 100%;
            height: 100%;
            position: fixed;
            /* 给遮罩层绝对定位 */
            z-index: 9999;
            /* 设置z-index值（要小于弹出框） */
            top: 0px;
            background-color: rgba(0,0,0,.4);
            /* 设置 div 元素的不透明级别 */
            display: none;
        }
        .mask .box {
            padding: 10px;
            min-width: 230px;
            max-width: 70%;
            width: auto;
            height: 70px;
            text-align: center;
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 10000;
            /* 设置z-index值（要大于遮罩层） */
            box-shadow: 2px 2px 4px #ccc;
            background-color: #fff9f9;
            border-radius: 4px;
            overflow: hidden;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }