body {
    margin: 0;
    padding: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("/static/images/index/index_bg.png");
}

a {
    text-decoration: none;
}

.more-text {
    height: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #B4B4B4;
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.more-text:hover {
    cursor: pointer;
}

.page-box {
    width: 100%;
    height: 30px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 78px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 30px;
}

.pre-page-button {
    width: 70px;
    height: 30px;
    margin: 0 7px;
    background-image: url("/static/images/icon/pre_page.png");
}

.pre-page-button:hover {
    cursor: pointer;
}

.pre-page-button:active {
    background-image: url("/static/images/icon/pre_page_clicked.png");
}

.next-page-button {
    width: 70px;
    height: 30px;
    margin: 0 7px;
    background-image: url("/static/images/icon/next_page.png");
}

.next-page-button:hover {
    cursor: pointer;
}

.next-page-button:active {
    background-image: url("/static/images/icon/next_page_clicked.png");
}

.jump-page-button {
    width: 56px;
    height: 30px;
    margin: 0 7px;
    background-image: url("/static/images/icon/jump_page.png");
}

.jump-page-button:hover {
    cursor: pointer;
}

.jump-page-button:active {
    background-image: url("/static/images/icon/jump_page_clicked.png");
}

.page-input {
    width: 48px;
    height: 30px;
    background-color: #F3F7FF;
    border: none;
    margin: 0 5px;
}

.page-input:focus {
    outline: none;
}

.page-number-box {
    width: 30px;
    height: 30px;
    background: #F3F7FF;
    margin: 0 7px;
    text-align: center;
}

.page-number-box:hover {
    cursor: pointer;
}

.page-number-box-select {
    border: 1px solid #0B3798;
}


.container {
    width: calc(100% - 30px);
    min-height: calc(100vh - 165px);
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.modal-box {
    width: 100vw;
    height: 100vh;
    background-color: #2a2d2e38;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-box video {
    max-width: 80%;
    max-height: 80vh;
}

@media (max-width: 768px) {

    body {
        background-image: url("/static/images/index/index_bg_mobile.png");
    }

    .container {
        max-width: 100vw;
    }

    .page-box {
        display: none;
    }

    .modal-box video {
        max-width: 100vw;
    }
}

.bg_cover {
    background-size: 100% 100% !important;
    -webkit-background-size: 100% 100% !important;
    -o-background-size: 100% 100% !important;
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px
    }
}
