:root {
    --color-brand-blue: #1c529b;
    --color-text-main: #222222;
}

* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}

.ad-container {
    margin: 16px auto;
}

.ad-container[data-ad-index="0"] {
    margin-top: 0;
}

.gptslot {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    min-height: 250px;
    max-width: 300px;
    margin: 0 auto;
}

.ad-label {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: start;
       -moz-box-align: start;
            align-items: start;
    position: relative;
    padding: 5px 0px 2px 0px;
    font-size: 14px;
    color: rgb(62, 62, 62);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #F7F8F9;
    margin: 0;
    background-size: 20px 20px;
    color: var(--color-text-main);
    line-height: 1.5;
}

a:visited {
    color: rgb(71, 147, 255);
}

.nav-route-node:visited {
    color: #222222;
}

.nav-inner-core,
.footer-inner-core {
    margin: 0 auto;
    padding: 0 20px;
}

.brand-identity-visual {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    background: #fff;
    padding: 8px 5px 8px 2px;
    font-style: italic;
}

.brand-identity-visual .logo-left {
    background: #F5C200;
    color: #1702A3;
    font-weight: 900;
    font-size: 22px;
    padding: 8px 12px;
    margin-right: 2px;
}

.brand-identity-visual .logo-right {
    color: #1702A3;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.brand-identity-visual .logo-right .logo-sub {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.2px;
    border-top: 1px solid #000;
    padding-top: 1px;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.masthead-scenic-zone {
    background: #F7C157;
}

.masthead-inner-core {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    padding: 50px 30px;
    margin: 0 auto;
}

.nav-inner-core {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 40px;
    min-height: 60px;
    max-width: none;
    margin-left: 0;
}

.nav-inner-core.mobile-open {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
            flex-direction: row;
}

.mobile-menu-btn {
    display: none;
    background: rgba(0, 0, 0, 0.02);
}

.main {
    display: block;
}

.main .articleview {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    max-width: 1200px;
    padding: 0 40px;
    margin: 0px auto;
    min-height: 80vh;

    background-color: #ffffff;
}

.main-left {
    width: 66%;
    position: relative;
    margin: 20px auto;
}

.main-right {
    width: 30%;
    margin: 20px auto;
}

.main-right .right-search-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    width: 100%;
    background-color: #FFF4F4;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 20px;
}

.main-right .right-search-box .search-label {
    font-size: 18px;
    margin: 0 0 8px 0;
    padding-left: 13px;
}

.main-right .right-search-box .search-input-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    padding-left: 0;
    width: 100%;
}

.main-right .right-myInput {
    height: 50px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
    min-width: 0;
    outline: 0;
    border: 1px solid #ddd;
    border-right: none;
    color: #6a6f77;
    display: inline-block;
    padding: 0 12px;
    text-decoration: none;
    border-radius: 4px 0 0 4px;
    font-size: 18px;
}

.main-right .right-myInput:focus {
    border-color: #999;
}

.main-right .search-btn {
    height: 50px;
    padding: 0 25px;
    background-color: #32373C;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: normal;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
}

.main-right .search-btn:hover {
    background-color: #333;
}

.main-right .spanbox {
    height: 20px;
    background-color: #fff;
    margin-bottom: 0;
}

.main-right .right-game,
.main-right .right-comment-game {
    width: 100%;
    background-color: #FFF4F4;
    padding: 30px;
    margin-bottom: 20px;
}

.rightlist_title {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: #333;
    font-size: 18px;
}

.rightlist_title a {
    color: rgb(71, 147, 255) !important;
}

.rightlist_title:hover {
    color: #1a56ad;
}

.rightlist_title:last-child {
    border-bottom: none;
}

.articlebox {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    margin-bottom: 20px;
}

.articlebox .art_inview {
    width: 100%;
    height: auto;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    min-height: 400px;
}

.articlebox .art_img {
    width: 100%;
    max-height: 390px;
    min-height: 450px;
    margin: 15px auto;
    background-color: #838383;
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.articlebox .art_channel {
    font-size: 24px;
    min-height: 39px;
    margin: 0 0 15px 0;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    padding-bottom: 15px;
}

.articlebox .art_channel::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50%;
    height: 3px;
    background-color: red;
}

.art_title {
    width: 100%;
    height: auto;
    min-height: 40px;
    line-height: 52px;
    font-size: 40px;
    font-weight: 400;
    white-space: normal;
    word-wrap: break-word;
    color: #333;
    text-decoration: none;
}

#ez-toc-container {
    background: #f9f9f9;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0px 25px;
    font-size: 14px;
    margin-bottom: 20px;
}

#ez-toc-container .ez-toc-title-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    border-bottom: 1px solid #dee2e6;
}

#ez-toc-container .ez-toc-title {
    text-align: left;
    line-height: 1.45;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
}

#ez-toc-container .ez-toc-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #999;
}

#ez-toc-container .ez-toc-toggle:hover {
    color: #333;
}

#ez-toc-container .ez-toc-icon-toggle-span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    width: 35px;
    height: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    direction: ltr;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f9f9f9;
}

#ez-toc-container nav {
    display: block;
}

#ez-toc-container .ez-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#ez-toc-container .ez-toc-list li {
    margin-bottom: 8px;
    padding-left: 0;
}

#ez-toc-container .ez-toc-list a {
    color: inherit;
    text-decoration: none;
}

#ez-toc-container .ez-toc-list a:hover {
    color: inherit;
    text-decoration: none;
}

#ez-toc-container ul.ez-toc-list li.ez-toc-heading-level-3 {
    padding-left: 20px !important;
    margin: 5px 0;
}

#ez-toc-container ul.ez-toc-list li.ez-toc-heading-level-3>a {
    font-size: 14px;
}

#ez-toc-container ul.ez-toc-list li.ez-toc-heading-level-4 {
    margin: 3px 0;
    list-style: none;
}

#ez-toc-container ul.ez-toc-list li.ez-toc-heading-level-4>a {
    font-size: 13px;
    color: #666;
}

.articlebox .art_message {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    font-size: 16px;
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
}

.articlebox .art_message .releaseDate {
    margin-right: 10px;
}

.articlebox .art_message .author {
    margin-left: 10px;
}

.contentp {
    margin: 0 0 30px;
}

.contentp .read-more {
    width: 40%;
    margin: 10px 0;
    padding: 10px;
    text-decoration: underline;
    height: 30px;
    color: #4793ff;
    border: 0;
    cursor: pointer;
}

.art_inview .bottomline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    width: 100%;
}

.bottomline a {
    color: #4793ff;
    text-decoration: underline;
}

.bottomline .icon {
    color: #89898F;
    margin-right: 4px;
}

.icon_text {
    color: #6DCEFF;
    text-decoration: underline;
    margin: 0 0px 10px;
    word-wrap: break-word;
    line-height: 1.4;
}

.loading-spinner {
    position: absolute;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-animation: rotate 1s linear infinite;
            animation: rotate 1s linear infinite;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.loading-spinner.hidden {
    opacity: 0;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.main-left .pagination {
    width: 100%;
    margin: 0 auto;
    background-color: white;
    height: 70px;
    line-height: 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
}

.pagination button {
    background: none;
    margin: auto;
    padding: 15px;
    border: none;
    cursor: pointer;
    color: #0047ab;
    text-decoration: underline;
    white-space: nowrap;
}

.pagination button.active {
    font-weight: bold;
    color: inherit;
    text-decoration: none;
    cursor: default;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-route-node,
a.nav-route-node {
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: var(--color-text-main);
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    text-decoration: none;
}

@media (min-width: 769px) {
    .nav-route-node[data-cat-count="1"] {
        display: none;
    }

    .contentp {
        font-size: 18px;
    }

    .icon_text {
        font-size: 16px;
    }
}

.nav-route-node:hover {
    color: #FF0000;
}

.site-footer-terminal {
    background: #F7C157;
    padding: 50px 0;
    position: relative;
}

.copyright-text {
    color: #fff;
}

.footer-inner-core {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.footer-route-cluster {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    gap: 15px;
    color: #fff;
    font-size: 17px;
}

.route-row-primary,
.route-row-secondary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
            flex-direction: row;
    gap: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
}

.route-row-secondary a {
    color: #fff;
    cursor: pointer;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.route-row-secondary a:hover {
    color: var(--color-brand-blue);
}

.scroll-apex-trigger {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background: var(--color-brand-blue);
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.sidebar-article-row {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.sidebar-article-title {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background-color: #0048b9;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    cursor: pointer;
    z-index: 1000;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.arrow-up {
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-top: 5px;
}

.back-to-top:hover {
    background-color: #1565c0;
}

.td-six-part {
    width: 60%;
}

@media (max-width: 900px) {

    .nav-inner-core {
        min-height: 50px;
        max-width: 600px;
        -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
        overflow: auto;
    }

    .nav-route-node {
        padding: 0 12px;
        font-size: 12px;
    }

    .footer-inner-core {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
           -moz-box-orient: vertical;
           -moz-box-direction: reverse;
                flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }


    .td-six-part {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
    }

    .masthead-inner-core {
        width: 100%;
        padding: 20px 40px;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 24px;
        cursor: pointer;
        padding: 10px 15px;
        color: #fff;
    }

    .nav-inner-core {
        display: none;
    }

    .nav-inner-core.mobile-open {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        gap: 20px;
        width: -webkit-calc(100% - 60px);
        width: calc(100% - 60px);
        background: rgba(0, 0, 0, 0.02);
        padding: 30px 10px;
        margin: 0 auto;
    }

    .nav-inner-core.mobile-open.active {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: flex;
    }

    .nav-inner-core.mobile-open .nav-route-node {
        padding: 12px 20px;
        width: 100%;
    }
}

@media (max-width: 480px) {

    .nav-inner-core,
    .footer-inner-core {
        padding: 0 15px;
    }

    .route-row-primary,
    .route-row-secondary {
        -webkit-flex-wrap: wrap;
                flex-wrap: wrap;
        gap: 10px;
        max-width: 320px;
    }


    .main .articleview {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
        padding: 0 30px;
    }

    .main-left {
        width: 100%;
    }

    .main-right {
        display: none;
    }

    .articlebox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
    }

    .articlebox .art_img {
        max-height: 200px;
    }

    .art_title {
        font-size: 36px;
        line-height: 45px;
        margin-top: 20px;
    }
}
