[v-cloak] {
    display: none !important;
}

/* .ad-container{
    width: 100%;
    height: 250px;
    background-color: #ccc;
} */
[flex-center] {
    display: flex;
    align-items: center;
    justify-content: center;
}

[flex-around] {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

[flex-between] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

[flex-shrink] {
    flex-shrink: 0;
}

[flex-align="start"] {
    align-items: start;
}

[flex-align="end"] {
    align-items: end;
}

[flex="auto"] {
    flex: auto;
}

[textLine="1"] {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

[textLine="2"] {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

[textLine="3"] {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    background: #FAFCFF;
}

* {
    box-sizing: border-box;
}

a {
    display: block;
    text-decoration: none;
}

a img {
    display: block;
}

#app {
    width: 100%;
}

header {
    height: 3rem;
    width: 100%;
    padding: 0 0.94rem;
}

header>a:nth-child(1),
header>div:nth-child(1) {
    gap: 0.5rem;
}

header>div:nth-child(2) {
    gap: 1rem;
}

header .icon {
    width: 1.06rem;
    height: 1.06rem;
}

header .logo {
    font-family: 'Roboto 600', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    letter-spacing: normal;
    color: #0C79FF;
}

header .search,
header a {
    width: 1.06rem;
    height: 1.06rem;
}

header .menu {
    width: 0.97rem;
    height: 0.89rem;
}

footer {
    text-align: center;
    font-size: .75rem;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: #4D4D4D;
    font-family: 'Roboto 400', sans-serif;
    padding: 1rem 0;
    border-top: 1px solid rgba(77, 77, 77, 0.3);
}

footer div:nth-child(1) {
    margin-bottom: 0.5rem;
}

footer span {
    margin: 0 0.625rem;
    opacity: 0.7;
    font-size: 0.75rem;
}

footer a {
    color: #4D4D4D;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: 0.03em;
    font-family: 'Roboto 400', sans-serif;
}

/* menu */
.menu_pannel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    height: 100vh;
    width: 11.25rem;
    padding: 3.69rem 2.5rem 0 0;
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(255deg, #3D71FF 28%, #193D89 72%), #8B312E;
    z-index: 10;
}

.menu_pannel .menu_item {
    background: #D2DEFF;
    width: 8.75rem;
    height: 3.06rem;
    padding: 0 0 0 0.4rem;
    border-radius: 0rem 0.2rem 0.2rem 0rem;
    font-family: 'Roboto 500', sans-serif;
    font-size: 1.06rem;
    line-height: normal;
    letter-spacing: normal;
    color: #0C79FF;
    position: relative;
    margin-bottom: 1.25rem;
}

.menu_pannel .menu_item::before {
    content: '';
    width: 0.19rem;
    height: 1.28rem;
    border-radius: 0.03rem;
    background: #0C79FF;
    position: absolute;
    left: 0.16rem;
    top: 50%;
    transform: translateY(-50%);
}

.menu_pannel .menu_item_select::before {
    border-radius: 0.03rem;
    background: #FFFFFF;
}

.menu_pannel .menu_item_select {
    border-radius: 0.03rem;
    background: #0C79FF;
    color: #FFFFFF;
}

.menu_mask {
    width: 100%;
    height: 100vh;
    display: none;
    background: rgba(0, 0, 0, 0.42);
    z-index: 9;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}