* {
    padding: 0;
    margin: 0;
    /* border: 1px solid red; */
}
body {
    background: #f0f0f0;
    height: 100vh;
}
.flex {
    display: flex;
}
.column {
    flex-direction: column;
}
.row {
    flex-direction: row;
}
.default {
    cursor: default;
}
.pointer {
    cursor: pointer;
}
.top_container {
    width: 100vw;
    padding-top: 1vh;
    padding-bottom: 1vh;
    box-shadow: 0px 6px 7px rgba(79 ,79 ,79 ,0.2);
    align-items: center;
    position: fixed;
    top: 0;
}
.top_container .logo {
    width: 60px;
    height: 60px;
    background: url(../../src/lq/logo.png) no-repeat;
    background-size: 100% 100%;
    margin-left: 3vw;
}
.top_container .text {
    font-size: 15pt;
    margin-left: 1vw;
}
.top_container .userinfo {
    justify-content: end;
    margin-left: auto;
    margin-right: 4vw;
    text-align: center;
}
.top_container .userinfo .quit {
    justify-content: center;
}
.content_container {
    width: 100vw;
    /* flex: 9; */
    margin-top: 100px;
}
.content_container .ticket {
    width: 46vw;
    height: 30vh;
    border: 1px solid red;
}
