﻿.header {
    background: url(../image/comm_bg.png) no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    box-sizing: border-box;
    height: 386px;
    width: 100%
}

.header .energy {
    align-items: center;
    display: flex;
    height: 44px;
    justify-content: space-between
}

.header .energy .theme-popup {
    --total_text_color: #2d4856;
    --btn_bg: #e9f4ff;
    --btn_padding: .5em;
    --btn_height: 2em;
    --btn_border_radius: .3125em;
    --btn_outline_width: .0625em;
    --btn_outline_color: #081c57;
    --btn_outline_offset: .0625em;
    --btn_gap: .3125em;
    --list_padding: .5em;
    --list_bg: var(--btn_bg);
    --list_border_radius: var(--btn_border_radius);
    --list_gap: .1875em;
    --list_btn_hover_bg: #e9f4ff;
    --list_btn_active: #081c57;
    --list_btn_border_radius: .25em;
    --list_btn_padding: .35em 1em;
    --list_btn_gap: .4375em;
    --list_btn_outline_width: .0625em;
    --list_btn_outline_color: #d4d2d2;
    --list_offset: .35em;
    --list_btn_font_size: 14px;
    --list_position_left: 0;
    --list_position_right: unset;
    color: var(--total_text_color);
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.header .energy .theme-popup .theme-popup__list-container {
    left: var(--list_position_left);
    position: absolute;
    right: var(--list_position_right);
    top: calc(var(--btn_height) + var(--list_offset));
    z-index: 99
}

.header .energy .theme-popup .theme-popup__icons {
    align-items: center;
    display: flex;
    height: 16px;
    justify-content: center;
    width: 16px
}

.header .energy .theme-popup .theme-popup__button {
    align-items: center;
    background-color: var(--btn_bg);
    border: none;
    border-radius: var(--btn_border_radius);
    color: inherit;
    -moz-column-gap: var(--btn_gap);
    column-gap: var(--btn_gap);
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    line-height: var(--btn_height);
    outline: none;
    padding: 0 var(--btn_padding)
}

.header .energy .theme-popup .theme-popup__list {
    background-color: var(--list_bg);
    border-radius: var(--list_border_radius);
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin: 0;
    padding: var(--list_padding);
    row-gap: var(--list_gap)
}

.header .energy .theme-popup .theme-popup__list label {
    align-items: center;
    border-radius: var(--list_btn_border_radius);
    -moz-column-gap: var(--list_btn_gap);
    column-gap: var(--list_btn_gap);
    cursor: pointer;
    display: flex;
    justify-content: start;
    padding: var(--list_btn_padding);
    white-space: nowrap
}

.header .energy .theme-popup .theme-popup__list label.is_active,
.header .energy .theme-popup .theme-popup__list label:hover {
    background-color: var(--list_btn_active);
    color: #fff
}

.header .energy .theme-popup .theme-popup__list label span {
    font-size: var(--list_btn_font_size)
}

.header .energy .theme-popup .list-enter-active,
.header .energy .theme-popup .list-leave-active {
    transition: all .5s ease
}

.header .energy .theme-popup .list-enter-from {
    transform: translateY(50%)
}

.header .energy .theme-popup .list-leave-to {
    opacity: 0;
    transform: translateY(50%)
}

.header .energy .scale_screen {
    align-items: center;
    display: flex;
    gap: 15px
}

.header .energy .scale_screen span {
    cursor: pointer
}

.header .energy .scale_screen span .svg-icon {
    fill: #d3d7e3;
    font-size: 18px
}

@media screen and (max-width:768px) {
    .header .energy .scale_screen {
        gap: .2rem
    }

    .header .energy .scale_screen span .svg-icon {
        font-size: .4266666667rem
    }

    .header .energy {
        height: .8533333333rem
    }

    .header .energy .theme-popup .theme-popup__button {
        font-size: .3466666667rem
    }

    .header .energy .theme-popup .theme-popup__button .theme-popup__icons {
        font-size: .4266666667rem
    }

    .header .energy .theme-popup .theme-popup__list label {
        gap: .0666666667rem;
        padding: 0 .1333333333rem
    }

    .header .energy .theme-popup .theme-popup__list label .theme-popup__icons {
        font-size: .4266666667rem
    }

    .header .energy .theme-popup .theme-popup__list label span {
        font-size: .2933333333rem
    }
}

.header .navigation {
    height: 74px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%
}

@media screen and (max-width:1000px) {
    .header .navigation {
        padding: 0 10px
    }
}

@media screen and (max-width:768px) {
    .header .navigation nav {
        display: none
    }
}

html[data-theme=light] .header .navigation {
    background-image: linear-gradient(180deg, #fff, #cde9ff)
}

html[data-theme=dark] .header .navigation {
    background-image: linear-gradient(180deg, #061952, #112578)
}

.header .navigation .contents {
    align-items: center;
    display: flex;
    gap: 25px;
    height: 100%
}

.header .navigation .contents .logo {
    height: 35px;
    width: -moz-fit-content;
    width: fit-content
}

.header .navigation .contents .logo a {
    display: block;
    height: 100%;
    width: -moz-fit-content;
    width: fit-content
}

.header .navigation .contents .logo a img {
    height: 100%;
    width: auto
}

.header .navigation .contents nav {
    flex: 1;
    height: 100%;
    overflow-x: auto;
    width: 0
}

.header .navigation .contents nav ul {
    align-items: center;
    display: flex;
    height: 100%
}

.header .navigation .contents nav ul li {
    height: 100%;
    position: relative;
    white-space: nowrap
}

.header .navigation .contents nav ul li a {
    align-items: center;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 2
}

html[data-theme=light] .header .navigation .contents nav ul li a {
    color: #232d3e
}

html[data-theme=dark] .header .navigation .contents nav ul li a {
    color: #fff
}

.header .navigation .contents nav ul li:after {
    border-top: 4px solid transparent;
    box-sizing: border-box;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .5s;
    width: 100%
}

html[data-theme=dark] .header .navigation .contents nav ul li:hover a,
html[data-theme=light] .header .navigation .contents nav ul li:hover a {
    color: #31a7de
}

.header .navigation .contents nav ul li:hover:after {
    background: #f1f5f8;
    border-top-color: #31a7de;
    height: 100%
}

html[data-theme=dark] .header .navigation .contents nav ul li.is_active a,
html[data-theme=light] .header .navigation .contents nav ul li.is_active a {
    color: #31a7de
}

.header .navigation .contents nav ul li.is_active:after {
    background: #f1f5f8;
    border-top-color: #31a7de;
    height: 100%
}

@media screen and (max-width:768px) {
    .header {
        height: 2rem;
        position: relative
    }

    .header .energy {
        height: 1.1466666667rem;
        padding: 0 .2666666667rem
    }

    html[data-theme=light] .header .energy {
        background-image: linear-gradient(180deg, #fff, #cde9ff)
    }

    html[data-theme=dark] .header .energy {
        background-image: linear-gradient(180deg, #061952, #112578)
    }

    .header .navigation {
        height: 0
    }

    .header .navigation .contents .logo {
        height: .64rem;
        left: 50%;
        position: absolute;
        top: .2666666667rem;
        transform: translate(-50%)
    }
}

.header .m_nav {
    display: none
}

@media screen and (max-width:768px) {
    .header .m_nav {
        display: block
    }
}

.footer {
    background: url(../image/comm_bg.png) no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding-bottom: 142px;
    padding-top: 62px;
    width: 100%
}

.footer .specific {
    display: grid;
    gap: 32px;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 0 10px
}

.footer .specific .indicate {
    align-items: center;
    display: flex;
    gap: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%
}

.footer .specific .indicate strong {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap
}

.footer .specific .indicate .line {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 3px
}

.footer .specific .indicate .line:after,
.footer .specific .indicate .line:before {
    background: #b4b2b0;
    content: "";
    height: 1px;
    width: 100%
}

.footer .specific .union {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%
}

.footer .specific .union p {
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    text-align: center
}

.footer .specific .union p a {
    color: #fff
}

.footer .specific .union p img {
    height: 12px;
    vertical-align: middle
}

.footer .specific .guide,
.footer .specific .guide ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer .specific .guide ul li {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap
}

.footer .specific .guide ul li a {
    color: #fff;
    font-size: 12px
}

@media screen and (max-width:768px) {
    .footer {
        padding-bottom: 4.8rem;
        padding-top: .8266666667rem
    }

    .footer .specific {
        gap: .4266666667rem;
        grid-template-columns: auto;
        padding: 0 .1333333333rem
    }

    .footer .specific .indicate {
        gap: .1333333333rem
    }

    .footer .specific .indicate strong {
        font-size: .32rem
    }

    .footer .specific .indicate .line {
        gap: .08rem
    }

    .footer .specific .union {
        gap: .1333333333rem
    }

    .footer .specific .union p {
        font-size: .3066666667rem;
        line-height: .4533333333rem
    }

    .footer .specific .union p img {
        height: .32rem
    }

    .footer .specific .guide {
        gap: .1333333333rem
    }

    .footer .specific .guide ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: .1333333333rem
    }

    .footer .specific .guide ul li a {
        font-size: .3066666667rem
    }
}

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animate__animated.animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animate__animated.animate__repeat-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: var(--animate-repeat);
    animation-iteration-count: var(--animate-repeat)
}

.animate__animated.animate__repeat-2 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
    -webkit-animation-iteration-count: calc(var(--animate-repeat)*2);
    animation-iteration-count: calc(var(--animate-repeat)*2)
}

.animate__animated.animate__repeat-3 {
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
    -webkit-animation-iteration-count: calc(var(--animate-repeat)*3);
    animation-iteration-count: calc(var(--animate-repeat)*3)
}

.animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay)
}

.animate__animated.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay)*2);
    animation-delay: calc(var(--animate-delay)*2)
}

.animate__animated.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay)*3);
    animation-delay: calc(var(--animate-delay)*3)
}

.animate__animated.animate__delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation-delay: calc(var(--animate-delay)*4);
    animation-delay: calc(var(--animate-delay)*4)
}

.animate__animated.animate__delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation-delay: calc(var(--animate-delay)*5);
    animation-delay: calc(var(--animate-delay)*5)
}

.animate__animated.animate__faster {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-duration: calc(var(--animate-duration)/2);
    animation-duration: calc(var(--animate-duration)/2)
}

.animate__animated.animate__fast {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-duration: calc(var(--animate-duration)*.8);
    animation-duration: calc(var(--animate-duration)*.8)
}

.animate__animated.animate__slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration)*2);
    animation-duration: calc(var(--animate-duration)*2)
}

.animate__animated.animate__slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-duration: calc(var(--animate-duration)*3);
    animation-duration: calc(var(--animate-duration)*3)
}

@media (prefers-reduced-motion:reduce),
print {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important
    }

    .animate__animated[class*=Out] {
        opacity: 0
    }
}

@-webkit-keyframes bounce {

    0%,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05)
    }

    80% {
        -webkit-transform: translateZ(0) scaleY(.95);
        transform: translateZ(0) scaleY(.95);
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02)
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05)
    }

    80% {
        -webkit-transform: translateZ(0) scaleY(.95);
        transform: translateZ(0) scaleY(.95);
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02)
    }
}

.animate__bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.animate__flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shakeX {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shakeX {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

.animate__shakeX {
    -webkit-animation-name: shakeX;
    animation-name: shakeX
}

@-webkit-keyframes shakeY {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
}

@keyframes shakeY {

    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
}

.animate__shakeY {
    -webkit-animation-name: shakeY;
    animation-name: shakeY
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translate(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translate(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translate(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translate(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translate(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translate(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translate(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translate(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translate(0)
    }
}

.animate__headShake {
    -webkit-animation-name: headShake;
    animation-name: headShake;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0)
    }
}

.animate__swing {
    -webkit-animation-name: swing;
    animation-name: swing;
    -webkit-transform-origin: top center;
    transform-origin: top center
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skew(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skew(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skew(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skew(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skew(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skew(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skew(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skew(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skew(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skew(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skew(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skew(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skew(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skew(-.1953125deg) skewY(-.1953125deg)
    }
}

.animate__jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__heartBeat {
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-duration: calc(var(--animate-duration)*1.3);
    animation-duration: calc(var(--animate-duration)*1.3);
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes backInDown {
    0% {
        opacity: .7;
        -webkit-transform: translateY(-1200px) scale(.7);
        transform: translateY(-1200px) scale(.7)
    }

    80% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes backInDown {
    0% {
        opacity: .7;
        -webkit-transform: translateY(-1200px) scale(.7);
        transform: translateY(-1200px) scale(.7)
    }

    80% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__backInDown {
    -webkit-animation-name: backInDown;
    animation-name: backInDown
}

@-webkit-keyframes backInLeft {
    0% {
        opacity: .7;
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translate(-2000px) scale(.7)
    }

    80% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes backInLeft {
    0% {
        opacity: .7;
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translate(-2000px) scale(.7)
    }

    80% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__backInLeft {
    -webkit-animation-name: backInLeft;
    animation-name: backInLeft
}

@-webkit-keyframes backInRight {
    0% {
        opacity: .7;
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translate(2000px) scale(.7)
    }

    80% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes backInRight {
    0% {
        opacity: .7;
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translate(2000px) scale(.7)
    }

    80% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__backInRight {
    -webkit-animation-name: backInRight;
    animation-name: backInRight
}

@-webkit-keyframes backInUp {
    0% {
        opacity: .7;
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7)
    }

    80% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes backInUp {
    0% {
        opacity: .7;
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7)
    }

    80% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp
}

@-webkit-keyframes backOutDown {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: .7;
        -webkit-transform: translateY(700px) scale(.7);
        transform: translateY(700px) scale(.7)
    }
}

@keyframes backOutDown {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: .7;
        -webkit-transform: translateY(700px) scale(.7);
        transform: translateY(700px) scale(.7)
    }
}

.animate__backOutDown {
    -webkit-animation-name: backOutDown;
    animation-name: backOutDown
}

@-webkit-keyframes backOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7)
    }

    to {
        opacity: .7;
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translate(-2000px) scale(.7)
    }
}

@keyframes backOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7)
    }

    to {
        opacity: .7;
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translate(-2000px) scale(.7)
    }
}

.animate__backOutLeft {
    -webkit-animation-name: backOutLeft;
    animation-name: backOutLeft
}

@-webkit-keyframes backOutRight {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7)
    }

    to {
        opacity: .7;
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translate(2000px) scale(.7)
    }
}

@keyframes backOutRight {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: .7;
        -webkit-transform: translateX(0) scale(.7);
        transform: translate(0) scale(.7)
    }

    to {
        opacity: .7;
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translate(2000px) scale(.7)
    }
}

.animate__backOutRight {
    -webkit-animation-name: backOutRight;
    animation-name: backOutRight
}

@-webkit-keyframes backOutUp {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: .7;
        -webkit-transform: translateY(-700px) scale(.7);
        transform: translateY(-700px) scale(.7)
    }
}

@keyframes backOutUp {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        opacity: .7;
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7)
    }

    to {
        opacity: .7;
        -webkit-transform: translateY(-700px) scale(.7);
        transform: translateY(-700px) scale(.7)
    }
}

.animate__backOutUp {
    -webkit-animation-name: backOutUp;
    animation-name: backOutUp
}

@-webkit-keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__bounceIn {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
        transform: translate3d(0, -3000px, 0) scaleY(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
        transform: translate3d(0, 25px, 0) scaleY(.9)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
        transform: translate3d(0, -10px, 0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
        transform: translate3d(0, 5px, 0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
        transform: translate3d(0, -3000px, 0) scaleY(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
        transform: translate3d(0, 25px, 0) scaleY(.9)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
        transform: translate3d(0, -10px, 0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
        transform: translate3d(0, 5px, 0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
        transform: translate3d(-3000px, 0, 0) scaleX(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
        transform: translate3d(25px, 0, 0) scaleX(1)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
        transform: translate3d(-10px, 0, 0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
        transform: translate3d(5px, 0, 0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
        transform: translate3d(-3000px, 0, 0) scaleX(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
        transform: translate3d(25px, 0, 0) scaleX(1)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
        transform: translate3d(-10px, 0, 0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
        transform: translate3d(5px, 0, 0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
        transform: translate3d(3000px, 0, 0) scaleX(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
        transform: translate3d(-25px, 0, 0) scaleX(1)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
        transform: translate3d(10px, 0, 0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
        transform: translate3d(-5px, 0, 0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
        transform: translate3d(3000px, 0, 0) scaleX(3)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
        transform: translate3d(-25px, 0, 0) scaleX(1)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
        transform: translate3d(10px, 0, 0) scaleX(.98)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
        transform: translate3d(-5px, 0, 0) scaleX(.995)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
        transform: translate3d(0, 3000px, 0) scaleY(5)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
        transform: translate3d(0, 10px, 0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
        transform: translate3d(0, -5px, 0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
        transform: translate3d(0, 3000px, 0) scaleY(5)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
        transform: translate3d(0, 10px, 0) scaleY(.95)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
        transform: translate3d(0, -5px, 0) scaleY(.985)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

.animate__bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
        transform: translate3d(0, 10px, 0) scaleY(.985)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
        transform: translate3d(0, 2000px, 0) scaleY(3)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
        transform: translate3d(0, 10px, 0) scaleY(.985)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
        transform: translate3d(0, 2000px, 0) scaleY(3)
    }
}

.animate__bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
        transform: translate3d(20px, 0, 0) scaleX(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
        transform: translate3d(-2000px, 0, 0) scaleX(2)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
        transform: translate3d(20px, 0, 0) scaleX(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
        transform: translate3d(-2000px, 0, 0) scaleX(2)
    }
}

.animate__bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
        transform: translate3d(-20px, 0, 0) scaleX(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
        transform: translate3d(2000px, 0, 0) scaleX(2)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
        transform: translate3d(-20px, 0, 0) scaleX(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
        transform: translate3d(2000px, 0, 0) scaleX(2)
    }
}

.animate__bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
        transform: translate3d(0, -10px, 0) scaleY(.985)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
        transform: translate3d(0, 20px, 0) scaleY(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
        transform: translate3d(0, -2000px, 0) scaleY(3)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
        transform: translate3d(0, -10px, 0) scaleY(.985)
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
        transform: translate3d(0, 20px, 0) scaleY(.9)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
        transform: translate3d(0, -2000px, 0) scaleY(3)
    }
}

.animate__bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInTopLeft {
    -webkit-animation-name: fadeInTopLeft;
    animation-name: fadeInTopLeft
}

@-webkit-keyframes fadeInTopRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInTopRight {
    -webkit-animation-name: fadeInTopRight;
    animation-name: fadeInTopRight
}

@-webkit-keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInBottomLeft {
    -webkit-animation-name: fadeInBottomLeft;
    animation-name: fadeInBottomLeft
}

@-webkit-keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInBottomRight {
    -webkit-animation-name: fadeInBottomRight;
    animation-name: fadeInBottomRight
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.animate__fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

.animate__fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.animate__fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.animate__fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.animate__fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.animate__fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.animate__fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.animate__fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.animate__fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0)
    }
}

@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0)
    }
}

.animate__fadeOutTopLeft {
    -webkit-animation-name: fadeOutTopLeft;
    animation-name: fadeOutTopLeft
}

@-webkit-keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0)
    }
}

@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0)
    }
}

.animate__fadeOutTopRight {
    -webkit-animation-name: fadeOutTopRight;
    animation-name: fadeOutTopRight
}

@-webkit-keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0)
    }
}

@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0)
    }
}

.animate__fadeOutBottomRight {
    -webkit-animation-name: fadeOutBottomRight;
    animation-name: fadeOutBottomRight
}

@-webkit-keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0)
    }
}

@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0)
    }
}

.animate__fadeOutBottomLeft {
    -webkit-animation-name: fadeOutBottomLeft;
    animation-name: fadeOutBottomLeft
}

@-webkit-keyframes flip {
    0% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
    }

    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
    }

    50% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
    }

    80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0)
    }

    to {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0)
    }
}

@keyframes flip {
    0% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
    }

    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
    }

    50% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
    }

    80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0)
    }

    to {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0)
    }
}

.animate__animated.animate__flip {
    -webkit-animation-name: flip;
    animation-name: flip;
    -webkit-backface-visibility: visible;
    backface-visibility: visible
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.animate__flipInX {
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.animate__flipInY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg)
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg)
    }
}

.animate__flipOutX {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg)
    }

    to {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg)
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg)
    }

    to {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg)
    }
}

.animate__flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration)*.75);
    animation-duration: calc(var(--animate-duration)*.75);
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes lightSpeedInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skew(-30deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: skewX(20deg);
        transform: skew(20deg)
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skew(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes lightSpeedInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skew(-30deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: skewX(20deg);
        transform: skew(20deg)
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skew(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__lightSpeedInRight {
    -webkit-animation-name: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
        transform: translate3d(-100%, 0, 0) skew(30deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: skewX(-20deg);
        transform: skew(-20deg)
    }

    80% {
        -webkit-transform: skewX(5deg);
        transform: skew(5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes lightSpeedInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
        transform: translate3d(-100%, 0, 0) skew(30deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: skewX(-20deg);
        transform: skew(-20deg)
    }

    80% {
        -webkit-transform: skewX(5deg);
        transform: skew(5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__lightSpeedInLeft {
    -webkit-animation-name: lightSpeedInLeft;
    animation-name: lightSpeedInLeft;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skew(30deg)
    }
}

@keyframes lightSpeedOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skew(30deg)
    }
}

.animate__lightSpeedOutRight {
    -webkit-animation-name: lightSpeedOutRight;
    animation-name: lightSpeedOutRight;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
        transform: translate3d(-100%, 0, 0) skew(-30deg)
    }
}

@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
        transform: translate3d(-100%, 0, 0) skew(-30deg)
    }
}

.animate__lightSpeedOutLeft {
    -webkit-animation-name: lightSpeedOutLeft;
    animation-name: lightSpeedOutLeft;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rotateInDownLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateInDownRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rotateInDownRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rotateInUpLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateInUpRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rotateInUpRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg)
    }
}

@keyframes rotateOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg)
    }
}

.animate__rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
}

@keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
}

.animate__rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
}

@keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
}

.animate__rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
}

@keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }
}

.animate__rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

@keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg)
    }
}

.animate__rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg)
    }

    40%,
    80% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0)
    }
}

@keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg)
    }

    40%,
    80% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0)
    }
}

.animate__hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration)*2);
    animation-duration: calc(var(--animate-duration)*2);
    -webkit-animation-name: hinge;
    animation-name: hinge;
    -webkit-transform-origin: top left;
    transform-origin: top left
}

@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animate__jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

.animate__rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.animate__zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }
}

@keyframes zoomInDown {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }
}

.animate__zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0)
    }
}

@keyframes zoomInLeft {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0)
    }
}

.animate__zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0)
    }
}

@keyframes zoomInRight {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0)
    }
}

.animate__zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }
}

@keyframes zoomInUp {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }
}

.animate__zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.animate__zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0)
    }
}

@keyframes zoomOutDown {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0)
    }
}

.animate__zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0)
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0)
    }
}

.animate__zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    -webkit-transform-origin: left center;
    transform-origin: left center
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0)
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0)
    }
}

.animate__zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
    -webkit-transform-origin: right center;
    transform-origin: right center
}

@-webkit-keyframes zoomOutUp {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0)
    }
}

@keyframes zoomOutUp {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0)
    }
}

.animate__zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: hidden
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: hidden
    }
}

.animate__slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: hidden
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: hidden
    }
}

.animate__slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: hidden
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: hidden
    }
}

.animate__slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: hidden
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: hidden
    }
}

.animate__slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

a,
a img,
address,
b,
blockquote,
body,
code,
dd,
div,
dl,
dt,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
iframe,
img,
label,
li,
map,
ol,
p,
samp,
span,
strong,
table,
td,
th,
tr,
ul {
    border: 0;
    font-weight: 400;
    margin: 0;
    padding: 0
}

html {
    overflow-x: hidden
}

input::-webkit-inner-spin-button {
    -webkit-appearance: none
}

input[type=number] {
    -moz-appearance: textfield
}

ol,
ul {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%
}

a:active,
a:hover,
a:link,
a:visited {
    text-decoration: none
}

i {
    font-style: normal
}

a {
    text-decoration: none
}

a.hidefocus,
a:focus {
    outline: none
}

.fl {
    float: left
}

.fr {
    float: right
}

input[type=button],
input[type=submit],
input[type=text] {
    -webkit-appearance: none
}

input {
    outline: none
}

.clearfix:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    overflow: hidden
}

.clearfix {
    zoom: 1
}

body {
    color: #385260;
    font-optical-sizing: auto;
    font-size: 12px;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    margin: 0 auto
}

.clear {
    clear: both
}

div,
input,
li,
ul {
    box-sizing: border-box
}

em,
i,
strong {
    font-style: normal
}

::-webkit-scrollbar-thumb {
    background-color: #eabb75
}

::-webkit-scrollbar {
    height: 5px;
    width: 3px
}

::-webkit-scrollbar-thumb {
    background-color: #01599e;
    border-radius: 1em
}

::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 1em
}

figure {
    margin: 0
}

.w {
    margin: 0 auto;
    width: 1201px
}

.page-enter-active,
.page-leave-active {
    transition: all .4s
}

.page-enter-from,
.page-leave-to {
    filter: blur(1rem);
    opacity: 0
}

@media screen and (max-width:1180px) {
    .w {
        width: 100%
    }
}

html[data-theme=light] body {
    background: #ebf7ff
}

html[data-theme=dark] body {
    background: #081c5a
}

.main {
    overflow: hidden;
    padding-bottom: 98px
}

@media screen and (max-width:1000px) {
    .main {
        padding: 0 10px 98px
    }
}

html[data-theme=light] .devui-result__desc {
    color: #232d3e
}

html[data-theme=dark] .devui-result__desc {
    color: #fff
}

.overall {
    padding-top: 20px
}

.overall .joint {
    display: flex;
    gap: 20px
}

.overall .joint .eventful {
    flex: 1;
    width: 0
}

.overall .joint .eventful .addition {
    border: 1px solid #d3dde2;
    box-sizing: border-box;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px
}

.overall .joint .eventful .addition h1 {
    font-size: 18px
}

html[data-theme=light] .overall .joint .eventful .addition h1 {
    color: #232d3e
}

html[data-theme=dark] .overall .joint .eventful .addition h1 {
    color: #fff
}

.overall .joint .eventful .addition h1 {
    font-weight: 700;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.overall .joint .eventful .addition .pinpoint {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 13px 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap
}

.overall .joint .eventful .addition .pinpoint .come,
.overall .joint .eventful .addition .pinpoint .degree,
.overall .joint .eventful .addition .pinpoint .present {
    align-items: center;
    display: flex;
    gap: 3px
}

html[data-theme=light] .overall .joint .eventful .addition .pinpoint .come em,
html[data-theme=light] .overall .joint .eventful .addition .pinpoint .come span,
html[data-theme=light] .overall .joint .eventful .addition .pinpoint .come time,
html[data-theme=light] .overall .joint .eventful .addition .pinpoint .degree em,
html[data-theme=light] .overall .joint .eventful .addition .pinpoint .degree span,
html[data-theme=light] .overall .joint .eventful .addition .pinpoint .degree time,
html[data-theme=light] .overall .joint .eventful .addition .pinpoint .present em,
html[data-theme=light] .overall .joint .eventful .addition .pinpoint .present span,
html[data-theme=light] .overall .joint .eventful .addition .pinpoint .present time {
    color: #232d3e
}

html[data-theme=dark] .overall .joint .eventful .addition .pinpoint .come em,
html[data-theme=dark] .overall .joint .eventful .addition .pinpoint .come span,
html[data-theme=dark] .overall .joint .eventful .addition .pinpoint .come time,
html[data-theme=dark] .overall .joint .eventful .addition .pinpoint .degree em,
html[data-theme=dark] .overall .joint .eventful .addition .pinpoint .degree span,
html[data-theme=dark] .overall .joint .eventful .addition .pinpoint .degree time,
html[data-theme=dark] .overall .joint .eventful .addition .pinpoint .present em,
html[data-theme=dark] .overall .joint .eventful .addition .pinpoint .present span,
html[data-theme=dark] .overall .joint .eventful .addition .pinpoint .present time {
    color: #fff
}

.overall .joint .eventful .addition .pinpoint .come em,
.overall .joint .eventful .addition .pinpoint .come span,
.overall .joint .eventful .addition .pinpoint .come time,
.overall .joint .eventful .addition .pinpoint .degree em,
.overall .joint .eventful .addition .pinpoint .degree span,
.overall .joint .eventful .addition .pinpoint .degree time,
.overall .joint .eventful .addition .pinpoint .present em,
.overall .joint .eventful .addition .pinpoint .present span,
.overall .joint .eventful .addition .pinpoint .present time {
    font-size: 12px;
    font-weight: 700
}

.overall .joint .eventful .addition .pinpoint .present .svg-icon {
    font-size: 16px
}

.overall .joint .eventful .addition .pinpoint .degree .svg-icon {
    fill: #e55;
    font-size: 17px
}

.overall .joint .eventful .addition .interrogate {
    overflow: hidden;
    width: 100%
}

.overall .joint .eventful .addition .interrogate article {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.overall .joint .eventful .addition .interrogate article p {
    font-size: 14px
}

html[data-theme=light] .overall .joint .eventful .addition .interrogate article p {
    color: #232d3e
}

html[data-theme=dark] .overall .joint .eventful .addition .interrogate article p {
    color: #fff
}

.overall .joint .eventful .addition .interrogate article p {
    font-weight: 700;
    line-height: 24px
}

.overall .joint .eventful .addition .interrogate article img {
    border-radius: 15px;
    box-shadow: 0 2px 4px #00000014, 0 4px 12px #00000014;
    display: block;
    height: auto;
    margin: 0 auto 20px;
    padding: 0;
    width: 80% !important
}

.overall .joint .aside {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 28%
}

.overall .joint .aside .fqn-remd,
.overall .joint .aside .newest {
    border: 1px solid #ced9df;
    padding: 12px
}

@media screen and (max-width:768px) {
    .overall .joint {
        flex-direction: column;
        gap: .2666666667rem
    }

    .overall .joint .eventful {
        flex: auto;
        width: 100%
    }

    .overall .joint .eventful .addition {
        padding: .2666666667rem
    }

    .overall .joint .eventful .addition h1 {
        font-size: .3466666667rem
    }

    .overall .joint .eventful .addition .pinpoint {
        gap: .16rem;
        margin: .1733333333rem 0
    }

    .overall .joint .eventful .addition .pinpoint .come,
    .overall .joint .eventful .addition .pinpoint .degree,
    .overall .joint .eventful .addition .pinpoint .present {
        gap: .04rem
    }

    .overall .joint .eventful .addition .pinpoint em,
    .overall .joint .eventful .addition .pinpoint span,
    .overall .joint .eventful .addition .pinpoint time {
        font-size: .2933333333rem
    }

    .overall .joint .eventful .addition .pinpoint .present .svg-icon {
        font-size: .3466666667rem
    }

    .overall .joint .eventful .addition .pinpoint .degree .svg-icon {
        font-size: .36rem
    }

    .overall .joint .eventful .addition .interrogate article {
        gap: .2666666667rem
    }

    .overall .joint .eventful .addition .interrogate article p {
        font-size: .32rem;
        line-height: .4533333333rem
    }

    .overall .joint .eventful .addition .interrogate article img {
        border-radius: .2rem;
        margin-bottom: .2666666667rem;
        width: 100% !important
    }

    .overall .joint .aside {
        gap: .2933333333rem;
        width: 100%
    }

    .overall .joint .aside .fqn-remd,
    .overall .joint .aside .newest {
        padding: .16rem
    }
}

.news-list {
    overflow-x: auto;
    width: 100%
}

.news-list ol {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%
}

.news-list ol li {
    height: 70px;
    overflow-x: auto;
    width: 100%
}

.news-list ol li .bale {
    display: grid;
    gap: 8px;
    grid-template-columns: auto 1fr;
    height: 100%;
    width: 100%
}

.news-list ol li .bale .indicate {
    display: flex;
    gap: 8px;
    height: 100%
}

.news-list ol li .bale .indicate .lean {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%
}

.news-list ol li .bale .indicate .lean .round {
    background: #31a7de;
    border-radius: 50%;
    height: 10px;
    width: 10px
}

.news-list ol li .bale .indicate .lean .line {
    background: #e3eaed;
    flex: 1;
    width: 4px
}

.news-list ol li .bale .indicate time {
    background: #64bde6;
    border-radius: 6px;
    color: #fff;
    display: block;
    font-size: 12px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 5px 8px;
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content
}

.news-list ol li .bale .major {
    border: 1px solid #ced9df;
    border-radius: 8px;
    box-sizing: border-box;
    display: grid;
    gap: 34px;
    grid-template-columns: 1fr auto;
    height: -moz-fit-content;
    height: fit-content;
    overflow: hidden;
    padding: 10px 20px;
    width: 100%
}

.news-list ol li .bale .major .depict {
    display: flex;
    flex-direction: column;
    /* height: 184px; */
    justify-content: space-between;
    overflow: hidden;
    width: 100%
}

.news-list ol li .bale .major .depict article {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    width: 100%
}

.news-list ol li .bale .major .depict article strong {
    font-size: 13px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

html[data-theme=light] .news-list ol li .bale .major .depict article strong {
    color: #232d3e
}

html[data-theme=dark] .news-list ol li .bale .major .depict article strong {
    color: #fff
}

.news-list ol li .bale .major .depict article p {
    display: -webkit-box;
    font-size: 13px;
    line-height: 24px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden
}

html[data-theme=light] .news-list ol li .bale .major .depict article p {
    color: #232d3e
}

html[data-theme=dark] .news-list ol li .bale .major .depict article p {
    color: #fff
}

.news-list ol li .bale .major .depict .brief {
    display: grid;
    gap: 3px;
    grid-template-columns: 1fr auto
}

.news-list ol li .bale .major .depict .brief .tags {
    align-items: center;
    display: flex;
    gap: 6px;
    overflow: hidden;
    width: 100%
}

.news-list ol li .bale .major .depict .brief .tags span {
    border: 1px solid #ced9df;
    border-radius: 4px;
    display: block;
    overflow: hidden;
    padding: 0 6px;
    text-overflow: ellipsis;
    white-space: nowrap
}

html[data-theme=light] .news-list ol li .bale .major .depict .brief .tags span {
    color: #232d3e
}

html[data-theme=dark] .news-list ol li .bale .major .depict .brief .tags span {
    color: #fff
}

.news-list ol li .bale .major .depict .brief .read {
    align-items: center;
    display: flex;
    gap: 6px
}

.news-list ol li .bale .major .depict .brief .read .svg-icon {
    font-size: 16px
}

html[data-theme=light] .news-list ol li .bale .major .depict .brief .read .svg-icon {
    fill: #232d3e
}

html[data-theme=dark] .news-list ol li .bale .major .depict .brief .read .svg-icon {
    fill: #fff
}

.news-list ol li .bale .major .depict .brief .read span {
    font-size: 12px
}

html[data-theme=light] .news-list ol li .bale .major .depict .brief .read span {
    color: #232d3e
}

html[data-theme=dark] .news-list ol li .bale .major .depict .brief .read span {
    color: #fff
}

.news-list ol li .bale .major .graphics {
    height: 184px;
    width: 305px
}

.news-list ol li .bale .major .graphics img {
    height: 100%;
    width: 100%
}

.news-list ol li .bale .major:hover {
    background: url(../image/news_bg.png) no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.news-list ol li .bale .major:hover .depict .brief .tags span,
.news-list ol li .bale .major:hover .depict article p,
.news-list ol li .bale .major:hover .depict article strong {
    color: #fff !important
}

.news-list ol li .bale .major:hover .depict .brief .read .svg-icon {
    fill: #fff !important
}

.news-list ol li .bale .major:hover .depict .brief .read span {
    color: #fff !important
}

.news-list ol li:last-child .bale .indicate .lean .line {
    display: none
}

@media screen and (max-width:768px) {
    .news-list ol li {
        height: 1.3rem
    }

    .news-list ol li .bale {
        gap: .1333333333rem
    }

    .news-list ol li .bale .indicate {
        gap: .1066666667rem
    }

    .news-list ol li .bale .indicate .lean .round {
        height: .16rem;
        width: .16rem
    }

    .news-list ol li .bale .indicate .lean .line {
        width: .08rem
    }

    .news-list ol li .bale .indicate time {
        font-size: .2933333333rem;
        padding: .0666666667rem .1066666667rem
    }

    .news-list ol li .bale .major {
        border-radius: .1066666667rem;
        gap: .2rem;
        padding: .1333333333rem
    }

    .news-list ol li .bale .major .depict {
        /* height: 2.9866666667rem */
    }

    .news-list ol li .bale .major .depict article {
        gap: .16rem
    }

    .news-list ol li .bale .major .depict article strong {
        font-size: .2933333333rem
    }

    .news-list ol li .bale .major .depict article p {
        font-size: .2933333333rem;
        line-height: .3333333333rem
    }

    .news-list ol li .bale .major .depict .brief .tags {
        gap: .08rem
    }

    .news-list ol li .bale .major .depict .brief .tags span {
        border-radius: .0533333333rem;
        padding: 0 .08rem;
        white-space: nowrap;
        width: 100%
    }

    .news-list ol li .bale .major .depict .brief .read {
        gap: .08rem
    }

    .news-list ol li .bale .major .depict .brief .read .svg-icon {
        font-size: .3466666667rem
    }

    .news-list ol li .bale .major .depict .brief .read span {
        font-size: .2933333333rem
    }

    .news-list ol li .bale .major .graphics {
        height: 2.9866666667rem;
        width: 2.7333333333rem
    }
}

.hot_team {
    width: 100%
}

.hot_team ul {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(6, 1fr)
}

.hot_team ul li {
    background: #3db7ea;
    border: 1px solid #e3ebee;
    border-radius: 10px;
    height: 225px;
    overflow: hidden;
    transition: transform .2s ease-in;
    width: 100%
}

.hot_team ul li:hover {
    background: url(../image/team.png) no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    box-shadow: 0 0 1px #00000040, 0 8px 16px #00000014;
    transform: translateY(-8px)
}

.hot_team ul li a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%
}

.hot_team ul li a .Image {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
    width: 100%
}

.hot_team ul li a .Image img {
    height: 72px;
    width: -moz-fit-content;
    width: fit-content
}

.hot_team ul li a .involve {
    display: flex;
    flex-direction: column;
    height: 86px;
    width: 100%
}

.hot_team ul li a .involve .clouds {
    background: url(../image/clouds.png) no-repeat;
    background-position: top;
    background-size: cover;
    height: 26px;
    width: 100%
}

.hot_team ul li a .involve .behind {
    background: #fff;
    flex: 1;
    padding: 0 10px;
    width: 100%
}

.hot_team ul li a .involve .behind strong {
    border-bottom: 1px dashed #c3d0d8;
    color: #232d3e;
    display: block;
    font-size: 13px;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 10px;
    text-align: center;
    width: 100%
}

@media screen and (max-width:1000px) {
    .hot_team ul {
        gap: 15px;
        grid-template-columns: repeat(4, 1fr)
    }
}

@media screen and (max-width:768px) {
    .hot_team ul {
        gap: .2933333333rem;
        grid-template-columns: repeat(3, 1fr)
    }

    .hot_team ul li {
        border-radius: .1066666667rem;
        height: 3.5333333333rem
    }

    .hot_team ul li a {
        gap: .1333333333rem
    }

    .hot_team ul li a .Image img {
        height: 1.0933333333rem;
        width: auto
    }

    .hot_team ul li a .involve {
        height: 1.5466666667rem
    }

    .hot_team ul li a .involve .clouds {
        height: .48rem
    }

    .hot_team ul li a .involve .behind {
        padding: 0 .2rem
    }

    .hot_team ul li a .involve .behind strong {
        font-size: .3066666667rem;
        padding-bottom: .1333333333rem
    }
}


html {
    font-size: 54px;
}


.tournament {
    /*overflow-y: auto;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%
}

.tournament ul {
    border: 1px solid #d3dde2
}

.tournament ul li {
    align-items: center;
    border-bottom: 1px solid #d3dde2;
    display: grid;
    gap: 5px;
    grid-template-columns: 3fr 4fr 1fr;
    padding: 8px 15px;
    white-space: nowrap
}

.tournament ul li .basis {
    align-items: center;
    display: grid;
    gap: 5px;
    grid-template-columns: 2fr 2fr 1fr 2fr
}

.tournament ul li .basis .distinguish {
    overflow: hidden;
    width: 100%
}

.tournament ul li .basis .distinguish a {
    align-items: center;
    display: flex;
    gap: 6px
}

.tournament ul li .basis .distinguish a .svg-icon {
    font-size: 18px
}

.tournament ul li .basis .distinguish a strong {
    flex: 1;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

html[data-theme=light] .tournament ul li .basis .distinguish a strong {
    color: #232d3e
}

html[data-theme=dark] .tournament ul li .basis .distinguish a strong {
    color: #fff
}

.tournament ul li .basis time {
    font-size: 13px;
    text-align: center
}

html[data-theme=light] .tournament ul li .basis time {
    color: #232d3e
}

html[data-theme=dark] .tournament ul li .basis time {
    color: #fff
}

.tournament ul li .basis .report {
    overflow: hidden;
    width: 100%
}

.tournament ul li .basis .report a {
    align-items: center;
    display: flex;
    gap: 5px
}

.tournament ul li .basis .report a img {
    height: auto;
    width: 18px
}

.tournament ul li .basis .report a span {
    flex: 1;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

html[data-theme=light] .tournament ul li .basis .report a span {
    color: #232d3e
}

html[data-theme=dark] .tournament ul li .basis .report a span {
    color: #fff
}

.tournament ul li .battle {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 2fr 1fr 2fr;
    overflow: hidden;
    width: 100%
}

.tournament ul li .battle .parcel {
    width: 100%
}

.tournament ul li .battle .parcel .band {
    align-items: center;
    display: flex;
    gap: 8px
}

.tournament ul li .battle .parcel .band span {
    flex: 1;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

html[data-theme=light] .tournament ul li .battle .parcel .band span {
    color: #232d3e
}

html[data-theme=dark] .tournament ul li .battle .parcel .band span {
    color: #fff
}

.tournament ul li .battle .parcel .band img {
    height: auto;
    width: 32px
}

.tournament ul li .battle .parcel:first-child .band span {
    text-align: right
}

.tournament ul li .battle .vs {
    align-items: center;
    display: grid;
    gap: 7px;
    grid-template-columns: 1fr auto 1fr
}

.tournament ul li .battle .vs span {
    font-size: 18px;
    text-align: center
}

html[data-theme=light] .tournament ul li .battle .vs span {
    color: #232d3e
}

html[data-theme=dark] .tournament ul li .battle .vs span {
    color: #fff
}

.tournament ul li .fettle {
    overflow: hidden;
    width: 100%
}

.tournament ul li .fettle .status {
    align-items: center;
    display: flex;
    gap: 8px
}

.tournament ul li .fettle .status .live {
    --speed-of-animation: .9s;
    --gap: 6px;
    --first-color: #4c86f9;
    --second-color: #49a84c;
    --third-color: #f6bb02;
    --fourth-color: #f6bb02;
    --fifth-color: #2196f3;
    align-items: center;
    display: flex;
    gap: 2px;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content
}

.tournament ul li .fettle .status .live span {
    animation: scale-ab9bc680 var(--speed-of-animation) ease-in-out infinite;
    background: var(--first-color);
    height: 20px;
    width: 2px
}

.tournament ul li .fettle .status .live span:nth-child(2) {
    animation-delay: -.8s;
    background: var(--second-color)
}

.tournament ul li .fettle .status .live span:nth-child(3) {
    animation-delay: -.7s;
    background: var(--third-color)
}

@keyframes scale-ab9bc680 {

    0%,
    40%,
    to {
        transform: scaleY(.05)
    }

    20% {
        transform: scaleY(1)
    }
}

html[data-theme=light] .tournament ul li .fettle .status .loader {
    border: 2px solid #232d3e
}

html[data-theme=dark] .tournament ul li .fettle .status .loader {
    border: 2px solid #fff
}

.tournament ul li .fettle .status .loader {
    animation: spin89345-ab9bc680 1s linear infinite;
    border-left-color: transparent !important;
    border-radius: 50%;
    height: 18px;
    width: 18px
}

@keyframes spin89345-ab9bc680 {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.tournament ul li .fettle .status .end {
    align-items: center;
    display: flex;
    font-size: 18px
}

.tournament ul li .fettle .status strong {
    font-size: 13px
}

html[data-theme=light] .tournament ul li .fettle .status strong {
    color: #232d3e
}

html[data-theme=dark] .tournament ul li .fettle .status strong {
    color: #fff
}

.tournament ul li:hover {
    background: url(../image/line.png) no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.tournament ul li:hover .basis .distinguish a strong,
.tournament ul li:hover .basis .report a span,
.tournament ul li:hover .basis time,
.tournament ul li:hover .battle .parcel span,
.tournament ul li:hover .battle .vs span,
.tournament ul li:hover .fettle strong {
    color: #fff !important
}

.tournament .n-result {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    width: 100%
}

.tournament .n-result .svg-icon {
    font-size: 125px
}

.tournament.chain {
    /*height: 860px*/
}

@media screen and (max-width:768px) {
    .tournament.chain {
        /*height: 12.8rem*/
    }

    .tournament ul li {
        gap: .2666666667rem;
        grid-template-columns: auto;
        padding: .2666666667rem .2rem
    }

    .tournament ul li .basis,
    .tournament ul li .basis .distinguish a {
        gap: .1333333333rem
    }

    .tournament ul li .basis .distinguish a .svg-icon {
        font-size: .32rem
    }

    .tournament ul li .basis .distinguish a strong,
    .tournament ul li .basis time {
        font-size: .3066666667rem
    }

    .tournament ul li .basis .report a {
        gap: .0666666667rem
    }

    .tournament ul li .basis .report a img {
        width: .3466666667rem
    }

    .tournament ul li .basis .report a span {
        font-size: .32rem
    }

    .tournament ul li .battle {
        gap: .16rem
    }

    .tournament ul li .battle .parcel .band {
        gap: .1066666667rem
    }

    .tournament ul li .battle .parcel .band span {
        font-size: .32rem
    }

    .tournament ul li .battle .parcel .band img {
        width: .56rem
    }

    .tournament ul li .battle .vs {
        gap: .0933333333rem
    }

    .tournament ul li .battle .vs span {
        font-size: .4rem
    }

    .tournament ul li .fettle .status {
        justify-content: center
    }

    .tournament ul li .fettle .status .loader {
        height: .32rem;
        width: .32rem
    }

    .tournament ul li .fettle .status .end {
        font-size: .2933333333rem
    }

    .tournament ul li .fettle .status strong {
        font-size: .3066666667rem
    }
}


.start {
    color: red !important;
}

.classimg {
    width: 1em;
    height: 1em;
}

.regard {
    width: 100%
}

.regard ul {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr)
}

.regard ul li {
    height: 70px;
    overflow: hidden;
    width: 100%
}

.regard ul li a {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 75%;
    width: 100%
}

.regard ul li a .graphics {
    height: 178px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.regard ul li a .graphics .pursue {
    height: 100%;
    transition: transform .3s;
    width: 100%
}

.regard ul li a .graphics .year {
    color: #fff;
    font-size: 12px;
    left: 5px;
    position: absolute;
    top: 5px;
    white-space: nowrap
}

.regard ul li a .graphics span {
    bottom: 5px;
    color: #fff;
    font-size: 12px;
    position: absolute;
    right: 5px;
    white-space: nowrap
}

.regard ul li a .graphics .release {
    height: 60px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px
}

.regard ul li a .graphics .release img {
    height: 100%;
    width: 100%
}

.regard ul li a .know {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between
}

.regard ul li a .know p {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

html[data-theme=light] .regard ul li a .know p {
    color: #232d3e
}

html[data-theme=dark] .regard ul li a .know p {
    color: #fff
}

.regard ul li a .know .basis {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.regard ul li a .know .basis .genre {
    align-items: center;
    display: flex;
    gap: 6px
}

.regard ul li a .know .basis .genre span {
    border: 1px solid #ced9df;
    border-radius: 6px;
    font-size: 12px;
    padding: 0 8px
}

html[data-theme=light] .regard ul li a .know .basis .genre span {
    color: #232d3e
}

html[data-theme=dark] .regard ul li a .know .basis .genre span {
    color: #fff
}

.regard ul li a .know .basis .hot {
    align-items: center;
    display: flex;
    gap: 6px
}

.regard ul li a .know .basis .hot .svg-icon {
    fill: #326bfb;
    font-size: 16px
}

.regard ul li a .know .basis .hot span {
    font-size: 13px
}

html[data-theme=light] .regard ul li a .know .basis .hot span {
    color: #232d3e
}

html[data-theme=dark] .regard ul li a .know .basis .hot span {
    color: #fff
}

.regard ul li:hover a .graphics .pursue {
    transform: scale(1.1)
}

.regard ul.tow {
    grid-template-columns: repeat(2, 1fr)
}

@media screen and (max-width:768px) {
    .regard ul {
        gap: .2933333333rem;
        grid-template-columns: repeat(2, 1fr)
    }

    .regard ul li {
        height: 1.4533333333rem
    }

    .regard ul li a {
        gap: .1066666667rem
    }

    .regard ul li a .graphics {
        height: 2.7733333333rem
    }

    .regard ul li a .graphics .year {
        font-size: .2933333333rem;
        left: .0666666667rem;
        top: .0666666667rem
    }

    .regard ul li a .graphics span {
        bottom: .0666666667rem;
        font-size: .2933333333pxrem;
        right: 5
    }

    .regard ul li a .graphics .release {
        height: 1rem;
        width: 1rem
    }

    .regard ul li a .know p {
        font-size: .3066666667rem
    }

    .regard ul li a .know .basis .genre {
        gap: .08rem
    }

    .regard ul li a .know .basis .genre span {
        border-radius: .08rem;
        font-size: .2933333333rem;
        padding: 0 .1066666667rem
    }

    .regard ul li a .know .basis .hot {
        gap: .08rem
    }

    .regard ul li a .know .basis .hot .svg-icon {
        font-size: .32rem
    }

    .regard ul li a .know .basis .hot span {
        font-size: .3066666667rem
    }
}


.battle,
.popTeams,
.ranking,
.steerVio {
    /* margin-bottom: 63px */
}

@media screen and (max-width:768px) {

    .battle,
    .popTeams,
    .ranking,
    .steerVio {
        /* margin-bottom: .84rem */
    }
}

.choose {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr auto;
    margin-bottom: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.choose .reveal {
    overflow-x: auto;
    width: 100%
}

.choose .reveal ul {
    align-items: center;
    display: flex;
    gap: 16px;
    padding-bottom: 3px;
    width: -moz-fit-content;
    width: fit-content
}

.choose .reveal ul li {
    border-radius: 6px;
    overflow: hidden;
    width: -moz-fit-content;
    width: fit-content
}

.choose .reveal ul li a {
    border: 1px solid #ced9df;
    border-radius: 7px;
    display: block;
    font-size: 14px;
    padding: 3px 25px;
    white-space: nowrap
}

html[data-theme=light] .choose .reveal ul li a {
    color: #232d3e
}

html[data-theme=dark] .choose .reveal ul li a {
    color: #fff
}

.choose .reveal ul li:hover {
    background: #31a7de
}

.choose .reveal ul li:hover a {
    color: #fff !important
}

.choose .reveal ul li.is_active {
    background: #31a7de
}

.choose .reveal ul li.is_active a {
    color: #fff !important
}

.choose .press {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    width: 80px
}

.choose .press .svg-icon {
    cursor: pointer;
    font-size: 20px;
    transition: transform .3s
}

html[data-theme=light] .choose .press .svg-icon {
    fill: #232d3e
}

html[data-theme=dark] .choose .press .svg-icon {
    fill: #fff
}

.choose .press .svg-icon.roteDown {
    transform: rotate(180deg)
}

.choose .press .buried {
    left: -40%;
    position: absolute;
    top: 70%;
    width: 100px;
    z-index: 99
}

html[data-theme=light] .choose .press .buried {
    background: #fff
}

html[data-theme=dark] .choose .press .buried {
    background: #232d3e
}

.choose .press .buried li {
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.choose .press .buried li a {
    display: block;
    font-size: 13px;
    padding: 10px
}

html[data-theme=light] .choose .press .buried li a {
    color: #232d3e
}

html[data-theme=dark] .choose .press .buried li a {
    color: #fff
}

.choose .press .buried li:hover {
    background: #31a7de
}

.choose .press .buried li:hover a {
    color: #fff !important
}

.choose .press .buried li.is_active {
    background: #31a7de
}

.choose .press .buried li.is_active a {
    color: #fff !important
}

@media screen and (max-width:768px) {
    .choose {
        gap: .1333333333rem;
        margin-bottom: .2933333333rem
    }

    .choose .reveal ul {
        gap: .2133333333rem
    }

    .choose .reveal ul li {
        border-radius: .08rem
    }

    .choose .reveal ul li a {
        border-radius: .0933333333rem;
        font-size: .32rem;
        padding: .04rem .2rem
    }

    .choose .press {
        width: 1.3333333333rem
    }

    .choose .press .svg-icon {
        font-size: .3466666667rem
    }

    .choose .press .buried {
        width: 1.8666666667rem
    }

    .choose .press .buried li a {
        font-size: .3066666667rem;
        padding: .1333333333rem
    }
}

.fade-enter-active {
    transition: all .3s ease-out
}

.fade-leave-active {
    transition: all .3s cubic-bezier(1, .5, .8, 1)
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
    transform: translate(20px)
}


.topic {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%
}

.topic strong {
    font-size: 32px;
    font-weight: 700
}

html[data-theme=light] .topic strong {
    color: #232d3e
}

html[data-theme=dark] .topic strong {
    color: #fff
}

@media screen and (max-width:768px) {
    .topic {
        margin-bottom: .1866666667rem
    }

    .topic strong {
        font-size: .48rem
    }

    .topic img {
        width: 90%
    }
}

.ranking[data-v-3c8f4fd0] {
    overflow: hidden
}

.ranking[data-v-3c8f4fd0],
.ranking .amass[data-v-3c8f4fd0] {
    width: 100%
}

html[data-theme=dark] .ranking .amass[data-v-3c8f4fd0],
html[data-theme=light] .ranking .amass[data-v-3c8f4fd0] {
    background: #31a7de
}

.ranking .amass[data-v-3c8f4fd0] {
    padding: 10px 0
}

.ranking .amass ul[data-v-3c8f4fd0] {
    display: flex;
    gap: 20px
}

.ranking .amass ul li[data-v-3c8f4fd0] {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap
}

.ranking .amass ul li[data-v-3c8f4fd0]:after {
    bottom: -30%;
    content: "";
    left: 50%;
    position: absolute;
    transform: translate(-50%)
}

html[data-theme=light] .ranking .amass ul li[data-v-3c8f4fd0]:after {
    background: #fff
}

html[data-theme=dark] .ranking .amass ul li[data-v-3c8f4fd0]:after {
    background: #061952
}

.ranking .amass ul li[data-v-3c8f4fd0]:after {
    height: 3px;
    transition: width .2s;
    width: 0
}

html[data-theme=light] .ranking .amass ul li a[data-v-3c8f4fd0] {
    color: #fff
}

html[data-theme=dark] .ranking .amass ul li a[data-v-3c8f4fd0] {
    color: #061952
}

.ranking .amass ul li a[data-v-3c8f4fd0] {
    font-size: 16px;
    font-weight: 700
}

.ranking .amass ul li[data-v-3c8f4fd0]:hover:after {
    width: 100px
}

.ranking .amass ul li:hover a[data-v-3c8f4fd0] {
    color: #161e20
}

.ranking .amass ul li.active[data-v-3c8f4fd0]:after {
    width: 100px
}

.ranking .amass ul li.active a[data-v-3c8f4fd0] {
    color: #161e20
}

.ranking .rank_table[data-v-3c8f4fd0] {
    width: 100%
}

.ranking .rank_table .grouping[data-v-3c8f4fd0] {
    display: grid;
    grid-column: span 7;
    grid-template-columns: repeat(7, 1fr)
}

.ranking .rank_table ul[data-v-3c8f4fd0] {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap
}

.ranking .rank_table ul li[data-v-3c8f4fd0] {
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(11, 1fr);
    padding: 7px 10px;
    text-align: center
}

.ranking .rank_table ul li span[data-v-3c8f4fd0] {
    font-size: 13px;
    font-weight: 700
}

html[data-theme=light] .ranking .rank_table ul li span[data-v-3c8f4fd0] {
    color: #232d3e
}

html[data-theme=dark] .ranking .rank_table ul li span[data-v-3c8f4fd0] {
    color: #fff
}

.ranking .rank_table ul li .alone[data-v-3c8f4fd0] {
    overflow: hidden;
    width: 100%
}

.ranking .rank_table ul li .positi[data-v-3c8f4fd0] {
    background: #e0e8ec;
    color: #161e20 !important;
    font-size: 16px;
    font-weight: 700;
    height: 26px;
    line-height: 26px;
    margin: 0 auto;
    text-align: center;
    width: 26px
}

.ranking .rank_table ul li .pack[data-v-3c8f4fd0] {
    display: block;
    grid-column: span 3;
    overflow: hidden;
    width: 100%
}

.ranking .rank_table ul li .team[data-v-3c8f4fd0] {
    align-items: center;
    display: flex;
    gap: 10px;
    overflow: hidden;
    width: 100%
}

.ranking .rank_table ul li .team img[data-v-3c8f4fd0] {
    height: auto;
    width: 35px
}

.ranking .rank_table ul li .team strong[data-v-3c8f4fd0] {
    font-size: 15px
}

html[data-theme=light] .ranking .rank_table ul li .team strong[data-v-3c8f4fd0] {
    color: #232d3e
}

html[data-theme=dark] .ranking .rank_table ul li .team strong[data-v-3c8f4fd0] {
    color: #fff
}

.ranking .rank_table ul li .team strong[data-v-3c8f4fd0] {
    flex: 1;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ranking .rank_table ul li[data-v-3c8f4fd0]:nth-child(n+2):hover {
    background: url(../image/line.png) no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.ranking .rank_table ul li:nth-child(n+2):hover .team strong[data-v-3c8f4fd0] {
    color: #fff !important
}

.ranking .rank_table ul li:nth-child(2) .positi[data-v-3c8f4fd0] {
    background: url(../image/rank1.png) no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.ranking .rank_table ul li:nth-child(3) .positi[data-v-3c8f4fd0] {
    background: url(../image/rank2.png) no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.ranking .rank_table ul li:nth-child(4) .positi[data-v-3c8f4fd0] {
    background: url(../image/rank3.png) no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

@media screen and (max-width:768px) {
    .ranking .amass[data-v-3c8f4fd0] {
        padding: .1333333333rem 0
    }

    .ranking .amass ul[data-v-3c8f4fd0] {
        gap: 2.1333333333rem
    }

    .ranking .amass ul li[data-v-3c8f4fd0] {
        text-align: center
    }

    .ranking .amass ul li.active[data-v-3c8f4fd0]:after,
    .ranking .amass ul li[data-v-3c8f4fd0]:hover:after {
        width: 1.76rem
    }

    .ranking .amass ul li a[data-v-3c8f4fd0] {
        font-size: .32rem;
        text-align: center
    }

    .ranking .rank_table ul li[data-v-3c8f4fd0] {
        grid-template-columns: repeat(11, 1fr);
        padding: .0933333333rem .0666666667rem
    }

    .ranking .rank_table ul li span[data-v-3c8f4fd0] {
        font-size: .2933333333rem
    }

    .ranking .rank_table ul li .positi[data-v-3c8f4fd0] {
        font-size: .32rem;
        height: .4266666667rem;
        line-height: .4266666667rem;
        width: .4266666667rem
    }

    .ranking .rank_table ul li .alone[data-v-3c8f4fd0] {
        grid-column: span 3
    }

    .ranking .rank_table ul li .team[data-v-3c8f4fd0] {
        gap: .1333333333rem
    }

    .ranking .rank_table ul li .team img[data-v-3c8f4fd0] {
        width: .5333333333rem
    }

    .ranking .rank_table ul li .team strong[data-v-3c8f4fd0] {
        font-size: .2666666667rem
    }
}

.choose {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr auto;
    margin-bottom: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.choose .reveal {
    overflow-x: auto;
    width: 100%
}

.choose .reveal ul {
    align-items: center;
    display: flex;
    gap: 16px;
    padding-bottom: 3px;
    width: -moz-fit-content;
    width: fit-content
}

.choose .reveal ul li {
    border-radius: 6px;
    overflow: hidden;
    width: -moz-fit-content;
    width: fit-content
}

.choose .reveal ul li a {
    border: 1px solid #ced9df;
    border-radius: 7px;
    display: block;
    font-size: 14px;
    padding: 3px 25px;
    white-space: nowrap
}

html[data-theme=light] .choose .reveal ul li a {
    color: #232d3e
}

html[data-theme=dark] .choose .reveal ul li a {
    color: #fff
}

.choose .reveal ul li:hover {
    background: #31a7de
}

.choose .reveal ul li:hover a {
    color: #fff !important
}

.choose .reveal ul li.is_active {
    background: #31a7de
}

.choose .reveal ul li.is_active a {
    color: #fff !important
}

.choose .press {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    width: 80px
}

.choose .press .svg-icon {
    cursor: pointer;
    font-size: 20px;
    transition: transform .3s
}

html[data-theme=light] .choose .press .svg-icon {
    fill: #232d3e
}

html[data-theme=dark] .choose .press .svg-icon {
    fill: #fff
}

.choose .press .svg-icon.roteDown {
    transform: rotate(180deg)
}

.choose .press .buried {
    left: -40%;
    position: absolute;
    top: 70%;
    width: 100px;
    z-index: 99
}

html[data-theme=light] .choose .press .buried {
    background: #fff
}

html[data-theme=dark] .choose .press .buried {
    background: #232d3e
}

.choose .press .buried li {
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.choose .press .buried li a {
    display: block;
    font-size: 13px;
    padding: 10px
}

html[data-theme=light] .choose .press .buried li a {
    color: #232d3e
}

html[data-theme=dark] .choose .press .buried li a {
    color: #fff
}

.choose .press .buried li:hover {
    background: #31a7de
}

.choose .press .buried li:hover a {
    color: #fff !important
}

.choose .press .buried li.is_active {
    background: #31a7de
}

.choose .press .buried li.is_active a {
    color: #fff !important
}

@media screen and (max-width:768px) {
    .choose {
        gap: .1333333333rem;
        margin-bottom: .2933333333rem
    }

    .choose .reveal ul {
        gap: .2133333333rem
    }

    .choose .reveal ul li {
        border-radius: .08rem
    }

    .choose .reveal ul li a {
        border-radius: .0933333333rem;
        font-size: .32rem;
        padding: .04rem .2rem
    }

    .choose .press {
        width: 1.3333333333rem
    }

    .choose .press .svg-icon {
        font-size: .3466666667rem
    }

    .choose .press .buried {
        width: 1.8666666667rem
    }

    .choose .press .buried li a {
        font-size: .3066666667rem;
        padding: .1333333333rem
    }
}

.fade-enter-active {
    transition: all .3s ease-out
}

.fade-leave-active {
    transition: all .3s cubic-bezier(1, .5, .8, 1)
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
    transform: translate(20px)
}


.mask {
    background-color: #0006;
    inset: 0;
    position: fixed;
    z-index: 99
}

.outer {
    background: url(../image/m_back.png) 50%;
    background-size: 100% 100%;
    border-radius: .2133333333rem;
    bottom: 1.64rem;
    display: flex;
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: space-between;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: -moz-fit-content;
    width: fit-content
}

.outer .btns {
    display: grid;
    gap: .4666666667rem;
    grid-template-columns: repeat(3, 1fr);
    margin: .2666666667rem .8rem .8rem
}

.outer .btn {
    display: flex;
    justify-content: center;
    margin-bottom: .48rem
}

.outer .btn .close {
    cursor: pointer
}

.outer .btn .close .svg-icon {
    font-size: .6133333333rem
}

.outer .add-menu {
    color: #4a4a4a;
    padding-top: .2933333333rem;
    white-space: nowrap
}

.outer .add-menu .svg-icon {
    font-size: .3466666667rem
}

.outer .add-menu a {
    align-items: center;
    color: #41505b;
    display: flex;
    flex-direction: column;
    font-size: .32rem;
    justify-content: center
}

.outer .active .svg-icon {
    fill: #0d67dd
}

.outer .active a {
    color: #0d67dd
}

.outer .add-menu .img {
    height: 1.1466666667rem;
    margin-bottom: .3466666667rem;
    width: 1.1466666667rem
}

.tab-bar {
    background: #fff;
    border-top-left-radius: .2666666667rem;
    border-top-right-radius: .2666666667rem;
    bottom: 0;
    box-shadow: 0 0 18px #1616421a;
    display: flex;
    height: 1rem;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 100
}

.tab-bar-item {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: .2933333333rem;
    justify-content: center;
    position: relative;
    text-align: center
}

.tab-bar-item a {
    color: #41505b
}

.tab-bar-item .svg-icon {
    font-size: .4rem
}

.active a {
    color: #0d67dd
}

.active .svg-icon {
    fill: #0d67dd
}

.deg .svg-icon {
    font-size: .6rem
}

.tab-bar-img {
    margin-top: .0533333333rem
}

.tab-bar-center {
    align-items: center;
    background-color: #ee1d23;
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex;
    height: .6933333333rem;
    justify-content: center;
    position: absolute;
    top: -.1333333333rem;
    width: .6933333333rem
}

.deeg {
    font-size: .48rem;
    margin: auto
}

.fade-enter-from {
    opacity: 0;
    transform: translateY(-.2666666667rem)
}

.fade-enter-active,
.fade-leave-active {
    transition: all .3s ease
}

.fade-leave-to {
    opacity: 0;
    transform: translateY(.2666666667rem)
}



.ccwyltgk {
    padding: 15px;
}

.ccwyltgk a {
    display: inline-block;
    background-color: #64bde6;
    color: #fff;
    margin: 5px;
    border-radius: 5px;
    padding: 2px 5px;
}

.curmb strong:before {
    background: #232d3e;
}

.curmb strong:before {
    content: "";
    height: 12px;
    width: 3px;
}

.curmb {
    align-items: center;
    display: flex;
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
}


.devui-breadcrumb {
    display: flex;
    flex: 1;
    overflow: hidden;
    align-items: center;
}

.devui-breadcrumb__item {
    cursor: auto;
}


.unveil {
    background: url(../image/zuqiu.png) no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    height: 375px;
    margin-top: 22px;
    position: relative
}

.unveil,
.unveil .narrative {
    align-items: center;
    display: flex;
    width: 100%
}

.unveil .narrative {
    background: #e0e0e080;
    gap: 5px;
    left: 0;
    overflow: hidden;
    padding: 5px 10px;
    position: absolute;
    top: 0
}

.unveil .narrative p a,
.unveil .narrative span {
    color: #fff;
    font-size: 14px;
    white-space: nowrap
}

.unveil .narrative p {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.unveil .mutual {
    align-items: center;
    box-sizing: border-box;
    display: grid;
    gap: 25px;
    grid-template-columns: 3fr 2fr 3fr;
    height: 100%;
    padding: 20px;
    width: 100%
}

.unveil .mutual .team,
.unveil .mutual .wrapped {
    overflow: hidden;
    width: 100%
}

.unveil .mutual .team {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center
}

.unveil .mutual .team .competition_team_img {
    height: 118px;
    width: auto
}

.unveil .mutual .team .competition_team_img img {
    height: auto;
    width: 100%
}

.unveil .mutual .team span {
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 700;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.unveil .mutual .vs_info {
    align-items: center;
    display: flex;
    justify-content: center
}

.unveil .mutual .vs_info .vs_center {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.unveil .mutual .vs_info .vs_center .vs {
    align-items: center;
    color: #fff;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr
}

.unveil .mutual .vs_info .vs_center .vs span {
    font-size: 20px
}

.unveil .mutual .vs_info .vs_center .vs .divide {
    color: #fff;
    font-size: 20px
}

.unveil .mutual .vs_info .vs_center .vs .divide:last-child {
    text-align: right
}

.unveil .mutual .vs_info .vs_center span,
.unveil .mutual .vs_info .vs_center time {
    color: #fff;
    font-size: 16px;
    white-space: nowrap
}

.unveil .mutual .vs_info .vs_center .status {
    align-items: center;
    border-radius: 5px;
    color: #fff;
    display: flex;
    font-size: 16px;
    gap: 8px;
    padding: 5px 10px
}

.unveil .mutual .vs_info .vs_center .specification {
    color: #fff;
    display: block;
    font-size: 16px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.unveil.distinguish {
    background: url(../image/lanqiu.png) no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

@media screen and (max-width:768px) {
    .unveil {
        height: 3rem;
        margin-top: .2933333333rem
    }

    .unveil .narrative {
        gap: .0666666667rem;
        padding: .0666666667rem .1333333333rem
    }

    .unveil .narrative p a,
    .unveil .narrative span {
        font-size: .2933333333rem
    }

    .unveil .mutual {
        gap: .3333333333rem;
        padding: .2666666667rem
    }

    .unveil .mutual .team {
        gap: .08rem
    }

    .unveil .mutual .team .competition_team_img {
        height: 1.7066666667rem
    }

    .unveil .mutual .team span {
        font-size: .3466666667rem
    }

    .unveil .mutual .vs_info .vs_center {
        gap: .1066666667rem
    }

    .unveil .mutual .vs_info .vs_center .vs .divide,
    .unveil .mutual .vs_info .vs_center .vs span {
        font-size: .3733333333rem
    }

    .unveil .mutual .vs_info .vs_center span,
    .unveil .mutual .vs_info .vs_center time {
        font-size: .32rem
    }
}

.narrate {
    border: 1px solid #d3dde2;
    margin-top: 22px;
    padding: 20px
}

.narrate .change_channel {
    width: 100%
}

.narrate .change_channel ol {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: center
}

.narrate .change_channel ol li {
    border: 1px solid #d3dde2;
    cursor: pointer;
    padding: 5px 18px;
    transition: all .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.narrate .change_channel ol li a {
    font-size: 14px;
    white-space: nowrap
}

html[data-theme=light] .narrate .change_channel ol li a {
    color: #232d3e
}

html[data-theme=dark] .narrate .change_channel ol li a {
    color: #fff
}

.narrate .change_channel ol li:hover {
    background: #31a7de
}

.narrate .change_channel ol li:hover a {
    color: #fff !important
}

.narrate .change_channel ol li.active {
    background: #31a7de
}

.narrate .change_channel ol li.active a {
    color: #fff !important
}

.narrate .look {
    margin-top: 20px;
    width: 100%
}

.narrate .look .exclusive {
    width: 100%
}

.narrate .look .exclusive .live_narrative {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.narrate .look .exclusive .live_narrative p {
    font-size: 14px
}

html[data-theme=light] .narrate .look .exclusive .live_narrative p {
    color: #232d3e
}

html[data-theme=dark] .narrate .look .exclusive .live_narrative p {
    color: #fff
}

html[data-theme=light] .narrate .look .exclusive .live_narrative a {
    color: #232d3e
}

html[data-theme=dark] .narrate .look .exclusive .live_narrative a {
    color: #fff
}

.narrate .look .exclusive .live_narrative a {
    font-size: 14px
}

.narrate .look .exclusive .live_narrative .semaphore {
    align-items: center;
    display: flex;
    white-space: nowrap
}

.narrate .look .exclusive .live_narrative .semaphore .ul-signal {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.narrate .look .exclusive .live_narrative .semaphore .ul-signal a {
    animation: Aslace-0deb876c 2s ease-out infinite forwards;
    color: #31a7de;
    display: block;
    font-weight: 700;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700
}

@keyframes Aslace-0deb876c {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(10%) scale(1.1)
    }

    to {
        transform: translateY(0) scale(1)
    }
}

.narrate .look .exclusive .live_narrative>p {
    font-size: 14px;
    line-height: 24px
}

@media screen and (max-width:768px) {
    .narrate {
        margin-top: .2933333333rem;
        padding: .2666666667rem
    }

    .narrate .change_channel ol {
        gap: .4266666667rem
    }

    .narrate .change_channel ol li {
        padding: .0666666667rem .24rem
    }

    .narrate .change_channel ol li a {
        font-size: .3066666667rem
    }

    .narrate .look {
        margin-top: .2666666667rem
    }

    .narrate .look .exclusive .live_narrative {
        gap: .1333333333rem
    }

    .narrate .look .exclusive .live_narrative a,
    .narrate .look .exclusive .live_narrative p {
        font-size: .2933333333rem
    }

    .narrate .look .exclusive .live_narrative .semaphore .ul-signal {
        gap: .1333333333rem
    }

    .narrate .look .exclusive .live_narrative .semaphore .ul-signal a {
        font-size: .32rem
    }

    .narrate .look .exclusive .live_narrative>p {
        font-size: .2933333333rem;
        line-height: .4266666667rem
    }
}


.fenye {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  font-size: 14px;
}

.fenye ul li {
  display: inline-block;
  font-size: 14px;
  margin: 0 3px;
  line-height: 1.5;
  width: auto;
}

.fenye ul li a {
  font-size: 12px;
  color: #9B9B9B;
  display: block;
  padding: 2px 6px;
  border: 1px solid #1ec456;
  border-radius: 3px;
}

.fenye ul li a:hover {
  background-color: #1ec456;
  color: #fff;
  border: 1px solid #1ec456;
}

.fenye ul li.active a {
  background-color: #1ec456;
  color: #fff;
  border: 1px solid #1ec456;
}


.nr_citiao{
    font-size:15px
}

.citiao_list {
    background-color: #fff;
    padding: 15px;
}

.citiao_list span a {
    line-height: 25px;
    font-size: 15px;
    color: #30363d;
}