﻿/** {
    margin: 0;
    padding: 0;
}
*/
:root {
    --primary-color: #000000;
    --primary-hover-color: #eea234;
    --secondary-color: #ffffff;
    --secondary-light-color: #7d7d7d;
    --background-color: #f5dfbe;
    --border-color: #d9d9d9;
}

.body-default {
    background-image: url(img/background-d.png);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*min-width: 1920px;*/
    z-index: -10;
    zoom: 1;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}

.body-other {
    background-image: url(img/background.png);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*min-width: 1920px;*/
    z-index: -10;
    zoom: 1;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}

.body-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*min-width: 1920px;*/
    z-index: -10;
    zoom: 1;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}

.body-2 {
    background-image: url(img/background-2.png);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*min-width: 1920px;*/
    z-index: -10;
    zoom: 1;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}

.body-cczy {
    /*background-image: url(img/background.gif);*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*min-width: 1920px;*/
    z-index: -10;
    zoom: 1;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}

#homeVideo {
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: hidden;
    z-index: -1;
}

    #homeVideo video {
        z-index: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        mix-blend-mode: screen;
    }

    #homeVideo div {
        z-index: 10;
    }

.top {
    background-image: url(img/top.png);
    margin: -30px auto 0 auto;
    position: relative;
    width: 100%;
    height: 308px;
    min-width: 1920px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
    z-index: 999;
}

.top1 {
    background-image: url(img/top1.png);
    margin: -30px auto 0 auto;
    position: relative;
    width: 100%;
    height: 268px;
    min-width: 1920px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
    z-index: 1000;
}

.top2 {
    background-image: url(img/top-2.png);
    margin: 0px auto 0 auto;
    position: relative;
    width: 100%;
    height: 268px;
    min-width: 1920px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
    z-index: 1000;
}

.top-cczy {
    background-image: url(img/top-cczy.png);
    margin: 17px auto 0 auto;
    position: relative;
    width: 1483px;
    height: 116px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
    z-index: 1000;
}
/* ------------------------------------------------------ */
.floating-menu {
    position: fixed;
    top: 60px;
    left: 60px;
    z-index: 1000;
}

.main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f2b61 0%, #1e4d9e 50%, #2a5298 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1), 0 0 4px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1), 0 0 20px rgba(46, 142, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
    position: relative;
    overflow: hidden;
    z-index: 1000;
}

.main-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1e4d9e 0%, #2a5298 50%, #3a62b8 100%);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15), 0 0 8px rgba(255, 255, 255, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.2), 0 0 30px rgba(46, 142, 255, 0.5);
    z-index: 1000;
}
.main-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient( to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}


/* 当主按钮被点击时添加的类 */

.floating-menu.active .menu-items {
    display: block;
}

.floating-menu.active .main-btn {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #1e4d9e 0%, #2a5298 50%, #3a62b8 100%);
}

.menu-items a {
    text-decoration: none;
    display: block;
    width: 100%;
}

.menu-items {
    position: absolute;
    top: 100px;
    left: 0;
    display: none;
    width: 370px;
}

.menu-item {
    width: 370px;
    height: 45px;
    border-radius: 22.5px;
    /* 加强深蓝色渐变效果 */
    background: linear-gradient(135deg, #0f2b61 0%, #1e4d9e 50%, #2a5298 100%);
    border: none;
    color: #ffffff;
    margin-bottom: 15px;
    cursor: pointer;
    /* 增强白色光晕效果 */
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1), 0 0 4px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1), 0 0 20px rgba(46, 142, 255, 0.3);
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1e4d9e 0%, #2a5298 50%, #3a62b8 100%);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15), 0 0 8px rgba(255, 255, 255, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.2), 0 0 30px rgba(46, 142, 255, 0.5);
}

.menu-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient( to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.menu-background {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: linear-gradient(135deg, #B8B8B8 0%, #D8D8D8 50%, #B8B8B8 100%);
    border-radius: 30px;
    z-index: -1;
    box-shadow: inset 0 0 30px #FFFFFF, inset 0 0 60px rgba(255, 255, 255, 0.8), inset 0 0 90px rgba(255, 255, 255, 0.6);
    opacity: 0.9;
    border: 1px solid #A0A0A0;
}

.floating-menu.active .menu-background {
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ------------------------------------------------------ */
.bottom {
    background-image: url(img/bottom.png);
    margin: 0 auto;
    height: 270px;
    width: 100%;
    text-align: center;
    min-width: 1920px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
    z-index: 999;
    bottom: 0;
    position: absolute;
}

.bottom-cczy {
    background-image: url(img/bottom-cczy.png);
    margin: 0 auto;
    height: 127px;
    width: 1688px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
    z-index: 999;
    bottom: 0;
    position: relative;
}
.bottom-full {
    background-image: url(img/bottomfull.png);
    margin: 0 auto;
    height: 312px;
    width: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
    z-index: 999;
    bottom: 282px;
    position: relative;
}

.beian{
position:absolute;
bottom:20px;
text-align:center;
left:550px;
width:100%;
color:#ffffff;
font-size:10px;
}
.beian a{
text-decoration:none;
color:#ffffff;
}
.beian1{
position:absolute;
bottom:-100px;
text-align:center;
width:100%;
color:#ffffff;
font-size:10px;
}
.beian1 a{
text-decoration:none;
color:#ffffff;
}


.center-in-center {
    position: absolute;
    top: 15%;
    left: 0%;
    width: 100%;
    z-index: 999;
}

.center-in-center1 {
    position: relative;
    /*top: 14%;*/
    width: 100%;
    z-index: 999;
}

.center-left {
    float: left;
    width: 33.33333%;
    height: 800px;
}

.center-center {
    float: left;
    width: 33.33333%;
    height: 800px;
}

.center-right {
    float: right;
    width: 33.33333%;
    height: 800px;
}

.center-left1 {
    float: left;
    width: 30%;
    height: 800px;
}

.center-center1 {
    float: left;
    width: 40%;
    height: 800px;
}


.center-right1 {
    float: right;
    width: 30%;
    height: 800px;
}

.center-video {
    width: 100%;
    height: 387px;
    margin-top: -20px;
    background: url(../black/img/640_387.png) no-repeat;
    position: relative;
}

.video-text {
    margin-top: -25px;
}

.video-bottom {
    width: 523px;
    height: 294px;
    margin: -20px auto 0 auto;
    background: url(../black/img/523_294_1.png) no-repeat;
    position: relative;
}
.video-bottom1 {
    width: 320px;
    height: 180px;
    margin: 30px auto 0 auto;
    float: left;
    background: url(../black/img/523_294_1.png);
    background-repeat: no-repeat;
    background-size: 320px 180px;
    background-position: center;
    position: relative;
}
.video_lishu1 {
    width: 620px;
    height: 349px;
    margin-left: 10px;
    margin-top: 18px;
    position: relative;
    border-radius: 17px;
}
.video_lishu2 {
    width: 432px;
    height: 249px;
    margin-left: 45px;
    margin-top: 16px;
    position: relative;
    border-radius: 17px;
}
.video_lishu3 {
    width: 270px;
    /* height: 150px; */
    margin-left: 24px;
    margin-top: 12px; 
    position: relative;
    border-radius: 15px;
}
.center-chart1{
    width: 319.3px;
    height: 260px;
    margin: 0 auto;
    float: left;
    position: relative;
}
canvas {
    display: block;
    outline: none;
}

#tooltip_name {
    position: absolute;
    z-index: 20;
    background: white;
    padding: 10px;
    border-radius: 2px;
    /*visibility: hidden;*/
}

#label_a {
    display: block;
    position: relative;
    width: 200px;
    height: 50px;
    text-align: center;
    font-size: 30px;
    color: white;
    margin: -50px auto 0 auto;
}

#label_b {
    display: block;
    position: relative;
    width: 100px;
    height: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin: -270px auto 0 auto;
}

.wrapper {
    position: relative;
    /*margin-top: -85px;*/
    /*top: -30px;*/
    z-index: 1000;
}

.xpanel-wrapper {
    padding: 0px;
    box-sizing: border-box;
}

.xpanel-wrapper-1 {
    height: 100%;
}

.xpanel-wrapper-2 {
    height: 50%;
}

.xpanel-wrapper-3 {
    height: 33.33333%;
}

.xpanel {
    padding: 0px;
    height: 100%;
    min-height: 170px;
    background-size: 100% 100%;
    box-sizing: border-box;
    height: 26vh;
}

.chart-iframe {
    width: 100%;
    height: 26vh;
    border: none;
    position: absolute;
    left: 0;
    right: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}

    .chart-iframe .chart-panel {
        z-index: 999;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 59vh;
        height: 26vh;
    }

.xpanel_1 {
    padding: 0px;
    height: 100%;
    min-height: 270px;
    background-size: 100% 100%;
    box-sizing: border-box;
    height: 40vh;
}

    .xpanel_1 .chart-iframe_1 {
        width: 64vh;
        height: 41vh;
        border: none;
        position: absolute;
        /*        left: 0;
        right: 0;*/
        padding: 0;
        border: none;
        overflow: hidden;
    }
        .xpanel_1 .chart-iframe_1 h4{
            color:white;
            line-height:36px;
            text-align:center;
            width:567px;
            margin-left:15px;
        }
        .xpanel_1 .chart-iframe_1 .chart-panel_1 {
            z-index: 999;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            padding: 0px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            width: 59vh;
            height: 41vh;
        }

        .xpanel_1 .chart-iframe_1 .chart-panel_3 {
            z-index: 999;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 15px;
            padding: 0px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            width: 59vh;
            height: 41vh;
        }

            .xpanel_1 .chart-iframe_1 .chart-panel_3 .imgtext1 {
                text-align: center;
                font-size: 18px;
                font-weight: bolder;
                color: white;
                margin: 0 auto;
                width: 578px;
            }

            .xpanel_1 .chart-iframe_1 .chart-panel_3 #img1 {
                background-image: url(../black/img/569_376.png);
                background-repeat: no-repeat;
                width: 569px;
                height: 376px;
                margin-left: 15px;
                position: relative;
            }

                .xpanel_1 .chart-iframe_1 .chart-panel_3 #img1 img {
                    width: 540px;
                    height: 340px;
                    margin-top: 17px;
                    margin-left: 14px;
                    border-radius: 20px;
                }

.xpanel_2 {
    padding: 0px;
    height: 100%;
    background-size: 100% 100%;
    box-sizing: border-box;
    height: 27vh;
}

    .xpanel_2 .chart-iframe_2 {
        width: 64vh;
        height: 29vh;
        border: none;
        position: absolute;
        /*        left: 0;
        right: 0;*/
        padding: 0;
        border: none;
        overflow: hidden;
    }

        .xpanel_2 .chart-iframe_2 .chart-panel_4 {
            z-index: 999;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 15px;
            padding: 0px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            width: 59vh;
            height: 29vh;
        }

.chart-panel_2 {
    z-index: 999;
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 90%;
}
.xpanel_3 {
    padding: 0px;
    height: 100%;
    background-size: 100% 100%;
    box-sizing: border-box;
    height: 27vh;
}

    .xpanel_3 .chart-iframe_5 {
        width: 30vh;
        height: 25vh;
        border: none;
        position: absolute;
        /*        left: 0;
        right: 0;*/
        padding: 0;
        border: none;
        overflow: hidden;
    }

        .xpanel_3 .chart-iframe_5 .chart-panel_5 {
            z-index: 999;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0px;
            padding: 0px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            width: 29vh;
            height: 25vh;
        }
.margin42 {
    margin-top: 42px;
}

.cleaner {
    clear: both;
    height: 1px;
    margin: 0;
    padding: 0;
}

.cczy-index-button {
    width: 481px;
    height: 259px;
    margin: 12px auto auto 52px;
}

.cczy-index-button1 {
    width: 481px;
    height: 259px;
    margin: 12px auto auto 104px;
}

.category-thumb {
    width: 481px;
    height: 259px;
    margin: 12px auto auto 52px;
    transition: 0.5s;
    position: relative;
}

.left52 {
    left: 52px;
}

.category-thumb .image img {
    transition: 0.5s;
    /*border-radius: 10px;*/
    /*border: 2px solid var(--primary-hover-color);*/
    width: 481px;
    height: 259px;
    /*transform: skewY(5deg) perspective(200px) rotateY(5deg);*/
}

.category-thumb .caption {
    position: absolute;
    left: 0;
    right: 0;
    /*top: calc(5%);*/
    /*padding: 10px;*/
    opacity: 0;
    /*transition: 0.5s;*/
    /*background-image: url(../black/img/index-caption.png);*/
}

    .category-thumb .caption .img-top {
        position: absolute;
        margin: -162px auto auto 2px;
    }

        .category-thumb .caption .img-top a {
        }
    

.category-thumb h1.cat-title {
    margin-top: 10px;
    margin-bottom: -15px;
}

    .category-thumb h1.cat-title span {
        font-size: 36px;
        color: var(--secondary-color);
        font-weight: 400;
        text-transform: capitalize;
        display: inline-block;
        width: 450px;
        height: 60px;
    }

/*    .category-thumb a {
        text-decoration: none !important;
        color: white;
        width: 350px;
        height: 28px;
        margin-top: 3px;
    }*/

.featured-category-btn {
    color: var(--secondary-color);
    border: 1px solid var(--primary-hover-color);
    border-radius: 10px;
    background-color: #009999;
    font-size: 16px;
    display: inline-block;
}

    .featured-category-btn:hover {
        background-color: #006666;
    }

.category-thumb .caption .btn-default {
    border: 2px solid var(--secondary-color);
}

.category-thumb:hover .image img {
    filter: brightness(0.1) invert(0.9) opacity(0.1);
}

.category-thumb:hover .caption {
    opacity: 1;
    bottom: 0;
}

#obutton1 {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 63px;
    top: 443px;
}

#obutton2 {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 163px;
    top: 363px;
}

#obutton3 {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 303px;
    top: 253px;
}

#obutton4 {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 213px;
    top: 543px;
}

.center-map {
    width: 740px;
    height: 740px;
    margin: 15px auto;
    border-radius: 370px;
}

    .center-map:hover .map-image img {
        filter: brightness(0) invert(1) opacity(0);
    }

    .center-map:hover .mapDiv {
        opacity: 1;
        bottom: 0;
    }

    .center-map .map-image img {
        width: 740px;
        height: 740px;
    }

    .center-map .mapDiv {
        width: 740px;
        height: 740px;
        border-radius: 370px;
        position: absolute;
        left: 30%;
        right: 0;
        top: 0;
        opacity: 0;
        transition: 1s;
    }

.fullimage {
    width:100%;
    height:1000px;
    margin-top:-350px;
    z-index:0;
    zoom:125%;
}

.videobutton {
    width: 373px;
    height: 210px;
    z-index: 999;
    position: absolute;
    top: 8px;
    left: 8px;
}

#video_frame {
    width: 389px;
    height: 226px;
    z-index: 999;
    position: relative;
    margin: 0 auto;
    background-image: url('img/frame_Video.png');
}

#video_frame1 {
    width: 389px;
    height: 226px;
    z-index: 999;
    position: relative;
    margin: 0 auto;
    background-image: url('img/frame_Video.png');
}

#myPlayer {
    position: absolute;
    max-width: 373px;
    width: 373px;
    height: 210px;
    z-index: 999;
    top: 8px;
    left: 8px;
}

#myPlayer1 {
    position: absolute;
    max-width: 373px;
    width: 373px;
    height: 210px;
    z-index: 999;
    top: 8px;
    left: 8px;
}

.iframeimg {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 335px;
    left: 5px;
    z-index: 1000;
    /*display: none;*/
}

    .iframeimg .iframe {
        width: 24px;
        height: 24px;
        z-index: 1000;
    }

    .iframeimg img {
        width: 24px;
        height: 24px;
        z-index: 1000;
    }

.iframeimg1 {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 335px;
    right: 5px;
    z-index: 1001;
}

    .iframeimg1 .iframe {
        width: 24px;
        height: 24px;
        z-index: 1000;
    }

    .iframeimg1 img {
        width: 24px;
        height: 24px;
        z-index: 1000;
    }

.iframeimg2 {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 210px;
    left: 600px;
    z-index: 1001;
}

    .iframeimg2 .iframe {
        width: 24px;
        height: 24px;
        z-index: 1000;
    }

    .iframeimg2 img {
        width: 24px;
        height: 24px;
        z-index: 1000;
    }
.iframeimg3 {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 190px;
    left: 295px;
    z-index: 1001;
}

    .iframeimg3 .iframe {
        width: 24px;
        height: 24px;
        z-index: 1000;
    }

    .iframeimg3 img {
        width: 24px;
        height: 24px;
        z-index: 1000;
    }
.t1 {
    color: white;
    font-size: 6px;
}

    .t1 td.td1 {
        border: solid 0.5px #ffffff;
        line-height:14px;
    }
    .t1 td.td2 {
        border: solid 0.5px #ffffff;
        line-height: 14px;
    }
    .t1 td.td3 {
        border: solid 0.5px #ffffff;
        line-height: 14px;
    }
    .t1 td.td4 {
        border: solid 0.5px #ffffff;
        line-height: 14px;
    }
    .t1 td p {
        margin-bottom: 0;
        height: 14px;
    }

.swiper-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 480px) {
    .swiper-container {
        min-height: 320px;
    }
}

.swiper-container-wrapper {
    background-color: black;
    display: flex;
    flex-flow: column nowrap;
    height: 100vh;
    width: 100vw;
}

@media (min-width: 480px) {
    .swiper-container-wrapper {
        background-color: black;
        flex-flow: row nowrap;
    }
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
}

.swiper-slide-duplicate,
.swiper-slide {
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: rgba(255,255,255,0.2);
    /* Center slide text vertically */
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    /* Slide content */
}

.bg_photo {
}

    .bg_photo img {
        width: 100%;
        height: 100%;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        -moz-background-size: cover;
    }


.swiper-slide-duplicate .description,
.swiper-slide-duplicate .title,
.swiper-slide .description,
.swiper-slide .title {
    display: block;
    opacity: 0;
    transition: 0.5s ease 0.5s;
}

.swiper-slide-duplicate-active .description,
.swiper-slide-duplicate-active .title,
.swiper-slide-active .description,
.swiper-slide-active .title {
    opacity: 1;
}

.swiper-slide-duplicate-active .title,
.swiper-slide-active .title {
    margin-bottom: 0.5rem;
    font-size: 24px;
    color: #fff;
    transition: opacity 0.5s ease 0.5s;
}

.swiper-slide-duplicate-active .description,
.swiper-slide-active .description {
    font-size: 16px;
    color: #fff;
    transition: opacity 0.5s ease 0.75s;
}

.gallery-top {
    width: 100%;
    height: 75vh;
}

@media (min-width: 480px) {
    .gallery-top {
        width: 80%;
        height: 100vh;
        margin-right: 10px;
    }
}

.gallery-thumbs {
    width: 100%;
    height: 25vh;
    padding-top: 10px;
}

@media (min-width: 480px) {
    .gallery-thumbs {
        width: 20%;
        height: 100vh;
        padding: 0;
    }
}

.gallery-thumbs .swiper-wrapper {
    flex-direction: row;
}

@media (min-width: 480px) {
    .gallery-thumbs .swiper-wrapper {
        flex-direction: column;
    }
}

.gallery-thumbs .swiper-slide {
    width: 25%;
    flex-flow: row nowrap;
    height: 100%;
    opacity: 0.75;
    cursor: pointer;
}

@media (min-width: 480px) {
    .gallery-thumbs .swiper-slide {
        flex-flow: column nowrap;
        width: 100%;
    }
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}




#myPlayer_big {
    position: absolute;
    width: 970px;
    height: 546px;
    z-index: 999;
}

#videocontrol {
    width: 970px;
    height: 546px;
    position: absolute;
    z-index: 1000;
}

    #videocontrol #bt1 {
        position: absolute;
        width: 293px;
        height: 59px;
        top: 0;
        left: 338.5px;
    }

        #videocontrol #bt1 a {
            position: absolute;
            width: 293px;
            height: 59px;
            touch-action: manipulation;
            cursor: pointer;
        }

            #videocontrol #bt1 a:hover {
                position: absolute;
                width: 293px;
                height: 59px;
                touch-action: manipulation;
                cursor: pointer;
                background-color: rgba(0,0,0,0.6);
                border-radius: 0 0 12px 12px;
            }

        #videocontrol #bt1 img {
            position: absolute;
            width: 293px;
            height: 59px;
        }

    #videocontrol #bt2 {
        position: absolute;
        width: 293px;
        height: 59px;
        top: 487px;
        left: 338.5px;
    }

        #videocontrol #bt2 a {
            position: absolute;
            width: 293px;
            height: 59px;
            touch-action: manipulation;
            cursor: pointer;
        }

            #videocontrol #bt2 a:hover {
                position: absolute;
                width: 293px;
                height: 59px;
                touch-action: manipulation;
                background-color: rgba(0,0,0,0.6);
                border-radius: 12px 12px 0 0;
            }

        #videocontrol #bt2 img {
            position: absolute;
            width: 293px;
            height: 59px;
        }

    #videocontrol #bt3 {
        position: absolute;
        height: 293px;
        width: 59px;
        top: 126.5px;
        left: 0;
    }

        #videocontrol #bt3 a {
            position: absolute;
            width: 59px;
            height: 293px;
            touch-action: manipulation;
            cursor: pointer;
        }

            #videocontrol #bt3 a:hover {
                position: absolute;
                width: 59px;
                height: 293px;
                touch-action: manipulation;
                cursor: pointer;
                background-color: rgba(0,0,0,0.6);
                border-radius: 0 12px 12px 0;
            }

        #videocontrol #bt3 img {
            width: 59px;
            height: 293px;
        }

    #videocontrol #bt4 {
        position: absolute;
        height: 293px;
        width: 59px;
        top: 126.5px;
        left: 911px;
    }

        #videocontrol #bt4 a {
            position: absolute;
            width: 59px;
            height: 293px;
            touch-action: manipulation;
            cursor: pointer;
        }

            #videocontrol #bt4 a:hover {
                position: absolute;
                width: 59px;
                height: 293px;
                touch-action: manipulation;
                cursor: pointer;
                background-color: rgba(0,0,0,0.6);
                border-radius: 12px 0 0 12px;
            }

        #videocontrol #bt4 img {
            width: 59px;
            height: 293px;
        }

    #videocontrol #bt5 {
        position: absolute;
        height: 36px;
        width: 36px;
        vertical-align: middle;
        text-align: center;
        top: 505px;
        left: 878px;
    }

        #videocontrol #bt5 a {
            width: 36px;
            height: 36px;
            touch-action: manipulation;
            cursor: pointer;
            vertical-align: middle;
            text-align: center;
        }

        #videocontrol #bt5 img {
            width: 36px;
            height: 36px;
        }

    #videocontrol #bt6 {
        position: absolute;
        height: 36px;
        width: 36px;
        vertical-align: middle;
        text-align: center;
        top: 505px;
        left: 924px;
    }

        #videocontrol #bt6 a {
            width: 36px;
            height: 36px;
            touch-action: manipulation;
            cursor: pointer;
            vertical-align: middle;
            text-align: center;
        }

        #videocontrol #bt6 img {
            width: 36px;
            height: 36px;
        }



    #videocontrol #btplay {
        position: absolute;
        height: 36px;
        width: 36px;
        touch-action: manipulation;
        cursor: pointer;
        vertical-align: middle;
        text-align: center;
        top: 505px;
        left: 10px;
    }

        #videocontrol #btplay img {
            width: 36px;
            height: 36px;
        }

    #videocontrol #btstop {
        position: absolute;
        height: 36px;
        width: 36px;
        touch-action: manipulation;
        cursor: pointer;
        vertical-align: middle;
        text-align: center;
        top: 505px;
        left: 60px;
    }

        #videocontrol #btstop img {
            width: 36px;
            height: 36px;
        }

#btplay0 {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 1001;
    top: 183px;
    left: 18px;
    touch-action: manipulation;
    cursor: pointer;
}

    #btplay0 img {
        width: 24px;
        height: 24px;
    }

#btplay1 {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 1001;
    top: 183px;
    left: 18px;
    touch-action: manipulation;
    cursor: pointer;
}

    #btplay1 img {
        width: 24px;
        height: 24px;
    }

#btstop0 {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 1001;
    top: 183px;
    left: 56px;
    touch-action: manipulation;
    cursor: pointer;
}

    #btstop0 img {
        width: 24px;
        height: 24px;
    }

#btstop1 {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 1001;
    top: 183px;
    left: 56px;
    touch-action: manipulation;
    cursor: pointer;
}

    #btstop1 img {
        width: 24px;
        height: 24px;
    }

#video_frame_img {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1000;
}

#video_frame_img1 {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1000;
}

.button_video1 {
    width: 82px;
    height: 26px;
    float: left;
    margin-left: 50px;
}

.button_video2 {
    width: 82px;
    height: 26px;
    float: right;
    margin-right: 50px;
}

.padding-none {
    padding: 0;
}

#video_title {
    height: 26px;
    line-height: 26px;
    font-size: 18px;
    color: #fffaa2;
    text-align: center;
    margin: 0 auto;
}

.nowtxt {
    color: #fffaa2;
    font-size: 36px;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    margin: 0 auto;
}

.nowtxt_p {
    color: #fffaa2;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    margin: 0 auto;
}

.data_txt {
    color: #fffaa2;
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    letter-spacing: 3px;
    margin: 0 auto;
}

.data_txt_1 {
    color: #fffaa2;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 12px;
    margin: -50px auto 0 auto;
}

.data_txt_2 {
    color: #fffaa2;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 12px;
    margin: 0 auto;
}

.data_txt_little {
    color: #fffaa2;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 3px;
    margin: 0 auto;
}

.data_txt_small {
    color: #fffaa2;
    font-size: 6px;
    line-height: 10px;
    text-align: center;
    margin: 0 auto;
}

.nav-item a {
    color: white;
}

.nav-tabs .nav-item {
    margin: 0 auto;
}

.chart {
    width: 130px;
    height: 130px;
    top: 0;
    z-index: 999;
    margin: 0 auto;
}

.chart1 {
    width: 220px;
    height: 220px;
    top: 0;
    z-index: 999;
    margin: 0 auto 0 auto;
}
/*@media screen and (max-width:1920px) {
    .chart1 {
        width: 253px;
        height: 253px;
        top: 0;
        z-index: 999;
        margin: 0 auto 0 -15px;
    }
}
@media screen and (min-width:1921px) {
    .chart1 {
        width: 253px;
        height: 253px;
        top: 0;
        z-index: 999;
        margin: 0 auto 0 auto;
    }
}*/
.chart_lun {
    height: 81vh;
}



.map-2021 {
    /*background-image: url(img/2022.png);*/
    width: 1920px;
    height: 1080px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center 0;
    z-index: 999;
    position: absolute;
    /*top: 50%;*/
    margin-top: -230px;
    background: url(img/numberbackgroundimg.jpg);
    background-size: cover;
    background-clip: text;
    font-weight: bold;
    color: transparent;
    font-size: 600px;
    -webkit-background-clip: text;
}



.menu_map {
    top: 169px;
    margin: 0 auto 0 auto;
    text-align: center;
    z-index: 1000;
    position: absolute;
}

.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-menu ul {
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        z-index: 99;
    }

    .nav-menu li {
        position: relative;
        white-space: nowrap;
    }

    .nav-menu > li {
        float: left;
    }

    .nav-menu li:hover > ul,
    .nav-menu li.sfHover > ul {
        display: block;
    }

    .nav-menu ul ul {
        top: 0;
        left: 60%;
    }

    .nav-menu ul li {
        min-width: 180px;
    }


/* Nav Meu Container */
#nav-menu-container {
    float: left;
    margin: 0;
}

/* Nav Meu Styling */
.nav-menu a {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 7px;
    line-height: 30px;
    text-transform: uppercase;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
    text-shadow: .5rem 0rem 1rem rgba(255,242,134,0.6),-.5rem 0rem 1rem rgba(255,242,134,0.6),0rem .5rem 1rem rgba(255,242,134,0.6),0rem -.5rem 1rem rgba(255,242,134,0.6);
}

.nav-menu > li {
    margin-left: 0px;
}

.nav-menu ul {
    /*    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);*/
}

    .nav-menu ul li {
        transition: 0.3s;
    }

        .nav-menu ul li a {
            padding: 3px;
            color: #fff;
            transition: 0.3s;
            display: block;
            font-size: 13px;
            text-transform: none;
            letter-spacing: 3px;
        }

        .nav-menu ul li:hover > a {
            text-shadow: .5rem 0rem 1rem rgba(255,242,134,0.6),-.5rem 0rem 1rem rgba(255,242,134,0.6),0rem .5rem 1rem rgba(255,242,134,0.6),0rem -.5rem 1rem rgba(255,242,134,0.6);
        }

    .nav-menu ul ul {
        margin: 0;
    }

.loginlabel {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 9px;
    line-height: 30px;
}

.drag {
    z-index: 998;
    position: absolute;
    width: 1920px;
    height: 1080px;
}

.drag-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 1px;
    height: 1px;
}

.drag-img {
    position: absolute;
    cursor: move;
}

.bottomicp {
    bottom: 20px;
    margin: 0 auto;
    width: 100%;
    height: 20px;
    position: absolute;
    text-align: center;
    color: #ffffff;
    text-shadow: .5rem 0rem 1rem rgba(36,78,102,0.6),-.5rem 0rem 1rem rgba(36,78,102,0.6),0rem .5rem 1rem rgba(36,78,102,0.6),0rem -.5rem 1rem rgba(36,78,102,0.6);
}

    .bottomicp a {
        text-decoration: none;
        color: #fff;
    }

.bottomicp1 {
    bottom: 0;
    margin: 0 auto;
    width: 100%;
    height: 20px;
    position: absolute;
    text-align: center;
    color: #ffffff;
    font-size: 8px;
}

    .bottomicp1 a {
        text-decoration: none;
        color: #fff;
    }



@media screen and (max-width: 1366px) {
    .body-other {
        background-image: url(img/background.png);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*min-width: 1920px;*/
        z-index: -10;
        zoom: 1;
        background-repeat: no-repeat;
        background-size: cover;
        -webkit-background-size: cover;
        -o-background-size: cover;
        background-position: center 0;
    }

    .top {
        background-image: url(img/top.png);
        margin: -30px auto 0 auto;
        position: relative;
        width: 100%;
        height: 191px;
        min-width: 1366px;
        text-align: center;
        background-repeat: no-repeat;
        background-size: cover;
        -webkit-background-size: cover;
        -o-background-size: cover;
        background-position: center 0;
        z-index: 999;
    }

    .bottom {
        background-image: url(img/bottom.png);
        margin: 0 auto;
        height: 192px;
        width: 100%;
        text-align: center;
        min-width: 1366px;
        text-align: center;
        background-repeat: no-repeat;
        background-size: cover;
        -webkit-background-size: cover;
        -o-background-size: cover;
        background-position: center 0;
        z-index: 999;
        bottom: 0;
        position: absolute;
    }

    .center-in-center {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1366px;
        margin-left: -683px;
        margin-top: -180px;
    }

    #video_title {
        height: 26px;
        line-height: 26px;
        font-size: 18px;
        color: #fffaa2;
        text-align: center;
        margin: 0 auto;
        display: none;
    }

    #video_frame {
        width: 323px;
        height: 182px;
        z-index: 999;
        position: relative;
        margin: 0 auto;
        background-image: url('img/frame_Video1.png');
    }

    #video_frame1 {
        width: 323px;
        height: 182px;
        z-index: 999;
        position: relative;
        margin: 0 auto;
        background-image: url('img/frame_Video1.png');
    }

    #myPlayer {
        position: absolute;
        max-width: 307px;
        width: 307px;
        height: 166px;
        z-index: 999;
        top: 8px;
        left: 8px;
    }

    #myPlayer1 {
        position: absolute;
        max-width: 307px;
        width: 307px;
        height: 166px;
        z-index: 999;
        top: 8px;
        left: 8px;
    }

    #video_frame_img {
        position: absolute;
        top: 8px;
        left: 8px;
        z-index: 1000;
        width: 307px;
        height: 166px;
    }

        #video_frame_img img {
            width: 307px;
            height: 166px;
        }

    #video_frame_img1 {
        position: absolute;
        top: 8px;
        left: 8px;
        z-index: 1000;
        width: 307px;
        height: 166px;
    }

        #video_frame_img1 img {
            width: 307px;
            height: 166px;
        }

    #btplay0 {
        position: absolute;
        width: 24px;
        height: 24px;
        z-index: 1001;
        top: 143px;
        left: 18px;
        touch-action: manipulation;
        cursor: pointer;
    }

    #btplay1 {
        position: absolute;
        width: 24px;
        height: 24px;
        z-index: 1001;
        top: 143px;
        left: 18px;
        touch-action: manipulation;
        cursor: pointer;
    }

    #btstop0 {
        position: absolute;
        width: 24px;
        height: 24px;
        z-index: 1001;
        top: 143px;
        left: 56px;
        touch-action: manipulation;
        cursor: pointer;
    }

    #btstop1 {
        position: absolute;
        width: 24px;
        height: 24px;
        z-index: 1001;
        top: 143px;
        left: 56px;
        touch-action: manipulation;
        cursor: pointer;
    }

    #iframeimg {
        position: absolute;
        width: 24px;
        height: 24px;
        top: 145px;
        left: 275px;
        z-index: 1001;
        /*display: none;*/
    }

    #iframeimg1 {
        position: absolute;
        width: 24px;
        height: 24px;
        top: 145px;
        left: 275px;
        z-index: 1001;
        /*display: none;*/
    }

    .nowtxt {
        color: #fffaa2;
        font-size: 30px;
        font-weight: bold;
        line-height: 50px;
        text-align: center;
        margin: 0 auto;
    }

    .nowtxt_p {
        color: #fffaa2;
        font-size: 12px;
        line-height: 30px;
        text-align: center;
        margin: 0 auto;
    }

    .data_txt {
        color: #fffaa2;
        font-size: 8px;
        line-height: 34px;
        text-align: center;
        letter-spacing: 3px;
        margin: 0 auto;
    }

    .data_txt_1 {
        color: #fffaa2;
        font-size: 8px;
        line-height: 34px;
        text-align: center;
        letter-spacing: 3px;
        margin: -50px auto 0 auto;
    }

    .data_txt_2 {
        color: #fffaa2;
        font-size: 8px;
        line-height: 34px;
        text-align: center;
        letter-spacing: 3px;
        margin: 0 auto;
    }

    .chart1 {
        width: 161px;
        height: 161px;
        top: 0;
        z-index: 999;
        margin: 0 auto 0 auto;
    }

    .chart {
        width: 100px;
        height: 100px;
        top: 0;
        z-index: 999;
        margin: 0 auto;
    }

    .data_txt_little {
        color: #fffaa2;
        font-size: 12px;
        line-height: 18px;
        text-align: center;
        letter-spacing: 3px;
        margin: 0 auto;
    }

    .data_txt_small {
        color: #fffaa2;
        font-size: 6px;
        line-height: 12px;
        text-align: center;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1600px) {
    @media screen and (min-width: 1367px) {
        .body-other {
            background-image: url(img/background.png);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*min-width: 1920px;*/
            z-index: -10;
            zoom: 1;
            background-repeat: no-repeat;
            background-size: cover;
            -webkit-background-size: cover;
            -o-background-size: cover;
            background-position: center 0;
        }

        .top {
            background-image: url(img/top.png);
            margin: -30px auto 0 auto;
            position: relative;
            width: 100%;
            height: 223px;
            min-width: 1600px;
            text-align: center;
            background-repeat: no-repeat;
            background-size: cover;
            -webkit-background-size: cover;
            -o-background-size: cover;
            background-position: center 0;
            z-index: 999;
        }

        .bottom {
            background-image: url(img/bottom.png);
            margin: 0 auto;
            height: 225px;
            width: 100%;
            text-align: center;
            min-width: 1600px;
            text-align: center;
            background-repeat: no-repeat;
            background-size: cover;
            -webkit-background-size: cover;
            -o-background-size: cover;
            background-position: center 0;
            z-index: 999;
            bottom: 0;
            position: absolute;
        }

        .center-in-center {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 1600px;
            margin-left: -800px;
            margin-top: -180px;
        }

        #video_title {
            height: 26px;
            line-height: 26px;
            font-size: 18px;
            color: #fffaa2;
            text-align: center;
            margin: 0 auto;
            display: none;
        }

        #video_frame {
            width: 323px;
            height: 182px;
            z-index: 999;
            position: relative;
            margin: 0 auto;
            background-image: url('img/frame_Video1.png');
        }

        #video_frame1 {
            width: 323px;
            height: 182px;
            z-index: 999;
            position: relative;
            margin: 0 auto;
            background-image: url('img/frame_Video1.png');
        }

        #myPlayer {
            position: absolute;
            max-width: 307px;
            width: 307px;
            height: 166px;
            z-index: 999;
            top: 8px;
            left: 8px;
        }

        #myPlayer1 {
            position: absolute;
            max-width: 307px;
            width: 307px;
            height: 166px;
            z-index: 999;
            top: 8px;
            left: 8px;
        }

        #video_frame_img {
            position: absolute;
            top: 8px;
            left: 8px;
            z-index: 1000;
            width: 307px;
            height: 166px;
        }

            #video_frame_img img {
                width: 307px;
                height: 166px;
            }

        #video_frame_img1 {
            position: absolute;
            top: 8px;
            left: 8px;
            z-index: 1000;
            width: 307px;
            height: 166px;
        }

            #video_frame_img1 img {
                width: 307px;
                height: 166px;
            }

        #btplay0 {
            position: absolute;
            width: 24px;
            height: 24px;
            z-index: 1001;
            top: 143px;
            left: 18px;
            touch-action: manipulation;
            cursor: pointer;
        }

        #btplay1 {
            position: absolute;
            width: 24px;
            height: 24px;
            z-index: 1001;
            top: 143px;
            left: 18px;
            touch-action: manipulation;
            cursor: pointer;
        }

        #btstop0 {
            position: absolute;
            width: 24px;
            height: 24px;
            z-index: 1001;
            top: 143px;
            left: 56px;
            touch-action: manipulation;
            cursor: pointer;
        }

        #btstop1 {
            position: absolute;
            width: 24px;
            height: 24px;
            z-index: 1001;
            top: 143px;
            left: 56px;
            touch-action: manipulation;
            cursor: pointer;
        }

        #iframeimg {
            position: absolute;
            width: 24px;
            height: 24px;
            top: 145px;
            left: 275px;
            z-index: 1001;
            /*display: none;*/
        }

        #iframeimg1 {
            position: absolute;
            width: 24px;
            height: 24px;
            top: 145px;
            left: 275px;
            z-index: 1001;
            /*display: none;*/
        }

        .nowtxt {
            color: #fffaa2;
            font-size: 30px;
            font-weight: bold;
            line-height: 50px;
            text-align: center;
            margin: 0 auto;
        }

        .nowtxt_p {
            color: #fffaa2;
            font-size: 12px;
            line-height: 30px;
            text-align: center;
            margin: 0 auto;
        }

        .data_txt {
            color: #fffaa2;
            font-size: 8px;
            line-height: 34px;
            text-align: center;
            letter-spacing: 3px;
            margin: 0 auto;
        }

        .data_txt_1 {
            color: #fffaa2;
            font-size: 8px;
            line-height: 34px;
            text-align: center;
            letter-spacing: 3px;
            margin: -50px auto 0 auto;
        }

        .data_txt_2 {
            color: #fffaa2;
            font-size: 8px;
            line-height: 34px;
            text-align: center;
            letter-spacing: 3px;
            margin: 0 auto;
        }

        .chart1 {
            width: 161px;
            height: 161px;
            top: 0;
            z-index: 999;
            margin: 0 auto 0 auto;
        }

        .chart {
            width: 100px;
            height: 100px;
            top: 0;
            z-index: 999;
            margin: 0 auto;
        }

        .data_txt_little {
            color: #fffaa2;
            font-size: 12px;
            line-height: 18px;
            text-align: center;
            letter-spacing: 3px;
            margin: 0 auto;
        }

        .data_txt_small {
            color: #fffaa2;
            font-size: 6px;
            line-height: 12px;
            text-align: center;
            margin: 0 auto;
        }
    }
}
