body {
    background: #fff;
}

.queryBox {
    width: 630px;
    height: 44px;
    margin: auto;
    margin-top: 40px;
    display: flex;
    align-items: center;
    border: 2px solid #C4C7CE;
    border-radius: 6px 0px 0px 6px;
    border-right: none;
    margin-bottom: 32px;
}

.queryBox input {
    flex: 1;
    padding: 10px 10px;
    box-sizing: border;
    border: none;
    outline: none;
}

.hhr {
    width: 100%;
    border-top: 1px solid #cecece;
}

.queryBox div {
    padding: 13px 21px;
    box-sizing: border;
    cursor: pointer;
    color: #fff;
    background: #746CFF;
    border-radius: 0px 6px 6px 0px;
    user-select: none;
}

.queryContent {
    width: 1112px;
    margin: auto;
    /* display: none; */
    margin-bottom: 70px;
}

.queryContent .queryTitle {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    padding-left: 10px;
    box-sizing: border-box;
    border-left: 6px solid #746CFF;
    margin: 0 0 23px 0;
}

.queryContent .queryTable {
    width: 100%;
    border: 1px solid #DDDDDD;
}

.queryContent .queryTable ul {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.queryContent .queryTable ul li:nth-child(1) {
    width: 200px;
    padding: 14px 40px;
    box-sizing: border-box;
    text-align: right;
    color: #000000;
    background-color: #DBD8FF;
}

.queryContent .queryTable ul li:nth-child(2) {
    flex: 1;
    background-color: rgba(246, 245, 255, 0.4);
    padding: 14px 40px;
    box-sizing: border-box;
    text-align: left;
}

.queryContent .queryTable ul li:nth-child(2):hover {
    background-color: rgba(246, 245, 255, 1);
}

.queryContent .queryTable .imgUl li:nth-child(1) {
    padding: 63px 40px;
    box-sizing: border-box;
}

.queryContent .queryTable .imgUl li:nth-child(2) {
    padding: 20px 40px;
    box-sizing: border-box;
}

.queryContent .queryTable .imgUl li:nth-child(2) img {
    width: 145px;
    height: 103px;
    cursor: pointer;
}

.queryContent .queryTable ul:nth-child(2n) li:nth-child(2) {
    background-color: rgba(246, 245, 255, 1);
}

.xxxx {
    margin-bottom: 0 !important;
}

.mask {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: all 0.3s linear;
}

.mask img {
    width: 70%;
    height: 80%;
}

.empty {
    text-align: center;
    margin: 80px 0;
}

.laoding {
    margin-left: 50%;
    transform: translate(-50%);
    display: none;
}