﻿@charset "UTF-8";

/*样式重置start*/
html,
body,
a,
div,
audio,
br,
button,
canvas,
font,
form,
footer,
header,
frame,
h1,
h2,
h3,
h4,
h5,
h6,
head,
foot,
hr,
i,
iframe,
img,
input,
label,
li,
link,
map,
menu,
nav,
object,
ol,
option,
p,
section,
select,
source,
span,
table,
tbody,
thead,
td,
th,
textarea,
tfoot,
time,
title,
tr,
ul,
video {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font: inherit;
    outline: none;
    -webkit-font-smoothing: antialiased;
    /*字体抗锯齿*/
    -webkit-overflow-scrolling: touch;
    /*IOS端平滑滚动*/
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    /*解决滚动冒泡*/
    position: relative;
    text-decoration: none;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

    a:hover,
    a:active,
    a:visited,
    a:link,
    a:focus {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
        -moz-user-focus: none;
        -moz-user-select: none;
        text-decoration: none;
    }

ol,
ul,
li {
    list-style: none;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button {
    border: none;
    background-color: rgba(0, 0, 0, 0);
}

img {
    vertical-align: top;
}

.clearfix {
    zoom: 1
}

    /*添加给浮动元素的父级元素*/
    .clearfix::after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }

/*样式重置end*/

:root {
    --text: #6D84A2;
    --dark_blue: #3A577B;
    --red: #D56C34;
    --orange: #EE9813;
    --green: #7FC040;
    --light_blue: #3885D1;
    --gray: rgb(180, 180, 180);
    --light_border: rgba(58, 87, 123, 0.1);
    --box_shadow: 0 3px 10px rgba(40, 61, 85, 0.3);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background: url(../images/20043011322687.jpg)top no-repeat;
    background-size: 100%;
}

h1 {
    font-size: 40px;
    font-weight: 800;
}

h2 {
    font-size: 20px;
    font-weight: 600;
}

h3 {
    font-size: 16px;
    font-weight: 600;
}

h5 {
    font-size: 14px;
}

@font-face {
    font-family: bebas;
    src: url('../font/BEBAS.TTF');
}

.bebas {
    font-family: bebas;
}

.central {
    width: 1200px;
    margin: 0 auto;
}

.title {
    font-family: 'Songti', '宋体-简', '华文中宋', '宋体';
}

.white {
    color: #fff;
}

.dark-blue {
    color: var(--dark_blue);
    ;
}

.light-blue {
    color: var(--light_blue);
}

.red {
    color: var(--red);
}

.orange {
    color: var(--orange);
}

.gray {
    color: var(--gray);
}

.flex {
    display: flex;
}

    .flex.column {
        flex-direction: column;
    }

    .flex.a-center {
        align-items: center;
    }

.bottom-box {
    height: 650px;
}

.btm {
    display: flex;
    height: 32px;
    padding: 0 15px;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
}

    .btm span {
        z-index: 1;
        margin: auto;
        font-weight: 600;
    }

    .btm::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        transform-origin: 50% 50%;
        transform: scaleX(0);
    }

    .btm:hover::after {
        transform: scaleX(1);
    }

    .btm:active {
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    }

.pagination {
    margin-top: 50px;
    justify-content: center;
}

    .pagination a {
        display: block;
        width: 30px;
        height: 30px;
        background: #F1F1F1;
        pointer-events: none;
    }

        .pagination a.prev::before {
            content: '';
            position: absolute;
            z-index: 2;
            top: 9px;
            left: 10px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 6px 8px 6px 0;
            border-color: transparent #fff transparent transparent;
        }

        .pagination a.prev.active::before {
            border-color: transparent var(--orange) transparent transparent;
        }

        .pagination a.active {
            background: #fff;
            box-shadow: inset 0 0 0 1px var(--orange);
            pointer-events: inherit;
        }

        .pagination a.next::before {
            content: '';
            position: absolute;
            z-index: 2;
            top: 9px;
            left: 12px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 6px 0 6px 8px;
            border-color: transparent transparent transparent #fff;
        }

        .pagination a.next.active::before {
            border-color: transparent transparent transparent var(--orange);
        }

    .pagination .number {
        display: block;
        width: 120px;
        text-align: center;
        line-height: 30px;
        color: var(--text);
        font-size: 14px;
    }

.waiting {
    display: flex;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
}

    .waiting.active {
        visibility: visible;
        opacity: 1;
    }

    .waiting img {
        display: block;
        margin: auto;
        margin-top: calc(50vh - 16px);
    }

i.iconstar {
    color: #F1F1F1;
    text-shadow: 18px 0 0 #f1f1f1, 36px 0 0 #f1f1f1, 54px 0 0 #f1f1f1, 72px 0 0 #f1f1f1;
}

    i.iconstar.star1 {
        color: var(--orange);
    }

    i.iconstar.star2 {
        color: var(--orange);
        text-shadow: 18px 0 0 var(--orange), 36px 0 0 #f1f1f1, 54px 0 0 #f1f1f1, 72px 0 0 #f1f1f1;
    }

    i.iconstar.star3 {
        color: var(--orange);
        text-shadow: 18px 0 0 var(--orange), 36px 0 0 var(--orange), 54px 0 0 #f1f1f1, 72px 0 0 #f1f1f1;
    }

    i.iconstar.star4 {
        color: var(--orange);
        text-shadow: 18px 0 0 var(--orange), 36px 0 0 var(--orange), 54px 0 0 var(--orange), 72px 0 0 #f1f1f1;
    }

    i.iconstar.star5 {
        color: var(--orange);
        text-shadow: 18px 0 0 var(--orange), 36px 0 0 var(--orange), 54px 0 0 var(--orange), 72px 0 0 var(--orange);
    }

.fg {
    flex: 1;
}

    .fg + .fg {
        margin-left: 40px;
    }

.fixed {
    position: fixed;
    z-index: 99;
}

header .cont {
    height: 170px;
}

    header .cont .info {
        align-items: center;
        height: 40px;
    }

        header .cont .info > span > i {
            margin-left: 10px;
        }

        header .cont .info .actions {
            height: 24px;
            padding: 0 12px;
            align-items: center;
            background: rgba(0, 0, 0, 0.30);
            border-radius: 12px;
            margin-left: auto;
            font-weight: 600;
            color: #fff;
        }

            header .cont .info .actions a {
                padding: 0 5px;
                margin-left: 10px;
                color: #fff;
            }

                header .cont .info .actions a:hover {
                    text-decoration: underline;
                }

            header .cont .info .actions.logined {
                color: var(--orange);
            }

                header .cont .info .actions.logined a {
                    color: var(--orange);
                }

header h1.title {
    margin: auto 0;
    text-align: center;
    text-shadow: 0 4px 6px #11478C;
}

nav {
    z-index: 2;
    margin-bottom: 50px;
}

    nav .cont {
        padding: 0 10px;
        background: rgba(255, 255, 255, 0.20);
        box-shadow: 0 5px 10px 0 #3075CD;
        border-radius: 6px;
    }

        nav .cont > ul > li::after {
            content: '';
            position: absolute;
            z-index: -1;
            left: 0;
            top: 0;
            width: 100%;
            height: 50px;
            background: var(--light_blue);
            transition: var(--transition);
            transform-origin: 50% 100%;
            transform: scaleY(0);
        }

        nav .cont > ul > li:hover::after {
            transform: scaleY(1);
        }

        nav .cont > ul > li > a {
            justify-content: center;
            width: 100px;
            height: 50px;
            font-size: 14px;
        }

            nav .cont > ul > li > a.active::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 2px;
                background: var(--orange);
            }

            nav .cont > ul > li > a i {
                font-size: 20px;
                margin-right: 10px;
            }

        nav .cont > ul > li > ul {
            position: absolute;
            left: 0;
            visibility: hidden;
        }

        nav .cont > ul > li:hover ul {
            visibility: visible;
        }

        nav .cont > ul > li > ul > li:hover::after {
            transform: scaleY(1);
        }

        nav .cont > ul > li > ul > li > a {
            z-index: 1;
            display: block;
            min-width: 100px;
            height: 32px;
            padding: 0 10px;
            background: #fff;
            box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
            line-height: 32px;
            opacity: 0;
            transform: translate(100%, 0);
            white-space: nowrap;
        }

        nav .cont > ul > li:hover > ul > li > a {
            -webkit-animation: menumove 0.3s ease forwards;
            animation: menumove 0.3s ease forwards;
        }

@-webkit-keyframes menumove {
    0% {
        opacity: 0;
        transform: translate(50%, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes menumove {
    0% {
        opacity: 0;
        transform: translate(50%, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

nav .cont > ul > li > ul > li + li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--light_border);
    transform: scaleY(0.5);
}

nav .cont > ul > li > ul > li > a:hover {
    border-right: 2px solid var(--orange);
}

nav .search {
    display: flex;
    margin-left: auto;
}

    nav .search input {
        margin: auto;
        display: block;
        width: 80px;
        height: 28px;
        padding: 0 10px 0 30px;
        border-radius: 14px;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
        color: #fff;
        background: url(../images/search.svg) left 6px center no-repeat;
        transition: var(--transition);
    }

        nav .search input::-webkit-input-placeholder {
            color: rgb(199, 214, 231);
        }

        nav .search input:focus {
            width: 180px;
        }

.main-cont {
    padding-top: 30px;
    border-radius: 6px 6px 0 0;
    background: #fff;
}

    .main-cont section + section {
        margin-top: 100px;
    }

    .main-cont section .hd {
        height: 28px;
        padding: 0 20px;
    }

        .main-cont section .hd::before {
            content: '';
            position: absolute;
            top: 4px;
            left: 0;
            width: 10px;
            height: 20px;
            background: var(--dark_blue);
        }

        .main-cont section .hd h2 {
            margin-right: 10px;
            line-height: 28px;
            font-family: 'Songti', '宋体-简', '华文中宋', '宋体';
            color: var(--dark_blue);
        }

        .main-cont section .hd .b-line {
            flex: 1;
            border-bottom: 1px solid var(--light_border);
        }

            .main-cont section .hd .b-line a:first-child {
                margin-left: auto;
            }

            .main-cont section .hd .b-line a {
                font-size: 12px;
                color: var(--text);
            }

                .main-cont section .hd .b-line a:hover {
                    font-weight: 600;
                }

    .main-cont section .bd {
        margin-top: 30px;
    }

        .main-cont section .bd .news-box {
            height: 260px;
            padding-top: 10px;
        }

            .main-cont section .bd .news-box .swiper-slide {
                width: 300px;
                height: 230px;
                background: #fff;
                border-radius: 4px;
                overflow: hidden;
                transition: var(--transition);
            }

                .main-cont section .bd .news-box .swiper-slide a {
                    display: block;
                    height: 100%;
                }

                    .main-cont section .bd .news-box .swiper-slide a img {
                        display: block;
                        width: 100%;
                        height: 100%;
                    }

                    .main-cont section .bd .news-box .swiper-slide a .title {
                        position: absolute;
                        z-index: 3;
                        bottom: 0;
                        left: 0;
                        width: 100%;
                        height: 70px;
                        padding: 0 10px;
                        background: rgba(48, 134, 240, 0.75);
                        transition: var(--transition);
                        transform: translate(0, 30px);
                        text-align: center;
                    }

                    .main-cont section .bd .news-box .swiper-slide a.video::before {
                        content: '';
                        position: absolute;
                        z-index: 1;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(0, 0, 0, 0.3);
                    }

                    .main-cont section .bd .news-box .swiper-slide a.video::after {
                        content: '';
                        position: absolute;
                        z-index: 2;
                        top: 50%;
                        left: 50%;
                        width: 0;
                        height: 0;
                        border-style: solid;
                        border-width: 28px 0 28px 50px;
                        border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
                        transform: translate(-50%, -50%);
                    }

                    .main-cont section .bd .news-box .swiper-slide a.video video {
                        width: 100%;
                        height: 100%;
                    }

                    .main-cont section .bd .news-box .swiper-slide a .title h5 {
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        line-height: 40px;
                    }

                    .main-cont section .bd .news-box .swiper-slide a .title span {
                        line-height: 20px;
                    }

                .main-cont section .bd .news-box .swiper-slide:hover {
                    box-shadow: var(--box_shadow);
                }

                    .main-cont section .bd .news-box .swiper-slide:hover a .title {
                        background: var(--orange);
                        transform: translate(0, 0);
                    }

            .main-cont section .bd .news-box .swiper-button-next {
                right: 30px;
            }

            .main-cont section .bd .news-box .swiper-button-prev {
                left: 30px;
            }

            .main-cont section .bd .news-box .swiper-button-next,
            .main-cont section .bd .news-box .swiper-button-prev {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                background: rgba(0, 0, 0, 0.2);
                transition: var(--transition);
                transform: translate(0, -10px);
                color: #fff;
            }

                .main-cont section .bd .news-box .swiper-button-next:hover,
                .main-cont section .bd .news-box .swiper-button-prev:hover {
                    background: rgba(0, 0, 0, 0.6);
                }

                .main-cont section .bd .news-box .swiper-button-next::after,
                .main-cont section .bd .news-box .swiper-button-prev::after {
                    font-size: 30px;
                    font-weight: 600;
                    line-height: 30px;
                }

                .main-cont section .bd .news-box .swiper-button-next.swiper-button-disabled,
                .main-cont section .bd .news-box .swiper-button-prev.swiper-button-disabled {
                    opacity: 0;
                }

            .main-cont section .bd .news-box > .swiper-pagination-bullets,
            .main-cont section .bd .news-box .swiper-pagination-custom,
            .main-cont section .bd .news-box .swiper-pagination-fraction {
                bottom: 0;
            }

                .main-cont section .bd .news-box > .swiper-pagination-bullets .swiper-pagination-bullet {
                    width: 20px;
                    height: 4px;
                    border-radius: 2px;
                }

                .main-cont section .bd .news-box > .swiper-pagination-bullets .swiper-pagination-bullet-active {
                    background: var(--orange);
                }

        .main-cont section .bd .g-cont {
            padding: 0 20px;
        }

        .main-cont section .bd .news-box + .g-cont {
            margin-top: 50px;
        }

        .main-cont section .bd .g-cont .m-news {
            background: #FFFFFF;
            height: 230px;
            padding: 15px;
            box-shadow: 0 0 0 1px var(--light_border);
            border-radius: 4px;
            transition: var(--transition);
        }

            .main-cont section .bd .g-cont .m-news:hover {
                box-shadow: var(--box_shadow);
            }

            .main-cont section .bd .g-cont .m-news:nth-of-type(1) {
                background: url(../images/p1.png) right 15px top 15px no-repeat;
                background-size: 68px 28px;
            }

            .main-cont section .bd .g-cont .m-news:nth-of-type(2) {
                background: url(../images/p2.png) right 15px top 15px no-repeat;
                background-size: 68px 28px;
            }

            .main-cont section .bd .g-cont .m-news h3 {
                margin-bottom: auto;
                padding-right: 100px;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                overflow: hidden;
            }

            .main-cont section .bd .g-cont .m-news h6,
            .m-part h6,
            .m-app-box h6 {
                margin-bottom: 10px;
                padding-left: 10px;
                color: var(--text);
                /* border-left: 2px solid var(--text); */
            }

                .main-cont section .bd .g-cont .m-news h6::before,
                .m-part h6::before,
                .m-app-box h6::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 50%;
                    width: 2px;
                    height: 18px;
                    transform: translate(0, -50%);
                    background: var(--text);
                }

            .main-cont section .bd .g-cont .m-news p,
            .m-part p {
                height: 100px;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 6;
                overflow: hidden;
                text-indent: 2em;
                text-align: justify;
            }

        .main-cont section .bd .g-cont .m-news-list {
            height: 230px;
            padding: 8px 15px;
        }

            .main-cont section .bd .g-cont .m-news-list ul {
                height: 100%;
                /* -webkit-box-pack: justify;
	justify-content: space-between; */
            }

                .main-cont section .bd .g-cont .m-news-list ul li + li {
                    margin-top: 4px;
                }

                .main-cont section .bd .g-cont .m-news-list ul li a {
                    line-height: 18px;
                    color: var(--text);
                }

                    .main-cont section .bd .g-cont .m-news-list ul li a::before {
                        content: '';
                        position: absolute;
                        left: -10px;
                        top: 50%;
                        width: 4px;
                        height: 4px;
                        border-radius: 2px;
                        background: var(--text);
                        transform: translate(0, -2px);
                    }

                    .main-cont section .bd .g-cont .m-news-list ul li a:hover {
                        font-weight: 600;
                    }

                    .main-cont section .bd .g-cont .m-news-list ul li a h6 {
                        flex: 1;
                        width: 0;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }

        .main-cont section .bd .industrial .tab-hd {
            flex-wrap: wrap;
            margin-bottom: 10px;
        }

            .main-cont section .bd .industrial .tab-hd .btm {
                background: var(--light_border);
                color: var(--text);
            }

                .main-cont section .bd .industrial .tab-hd .btm + .btm {
                    margin-left: 10px;
                }

                .main-cont section .bd .industrial .tab-hd .btm.active {
                    color: #fff;
                    background: var(--orange);
                }

        .main-cont section .bd .industrial .tab-bd {
            height: 494px;
        }

            .main-cont section .bd .industrial .tab-bd .tab {
                display: none;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

                .main-cont section .bd .industrial .tab-bd .tab.active {
                    display: flex;
                }

            .main-cont section .bd .industrial .tab-bd .left {
                flex: none;
                width: 360px;
            }

            .main-cont section .bd .industrial .tab-bd .m-pd {
                display: block;
                width: 150px;
                height: 150px;
                margin: 0 auto;
            }

        .main-cont section .bd .tab-bd .left .m-part:nth-of-type(2) {
            margin-top: auto;
        }

        .main-cont section .bd .tab-bd .m-part {
            padding: 10px;
        }

            .main-cont section .bd .tab-bd .m-part .marquee {
                height: 100px;
                width: 340px;
                overflow: hidden;
            }

                .main-cont section .bd .tab-bd .m-part .marquee ul li + li {
                    margin-left: 10px;
                }

                .main-cont section .bd .tab-bd .m-part .marquee ul li img {
                    display: block;
                    width: 100px;
                    height: 100px;
                    -o-object-fit: contain;
                    object-fit: contain;
                }

        .main-cont section .bd .tab-bd .right .m-part {
            flex: 1;
        }

            .main-cont section .bd .tab-bd .right .m-part + .m-part {
                margin-left: 40px;
            }

        .main-cont section .bd .tab-bd .m-part .chart {
            height: 200px;
        }

        .main-cont section .bd .g-cont .menu-list {
            flex-wrap: wrap;
        }

            .main-cont section .bd .g-cont .menu-list li {
                flex: none;
                width: 260px;
                height: 100px;
            }

                .main-cont section .bd .g-cont .menu-list li + li {
                    margin-left: 40px;
                }

                .main-cont section .bd .g-cont .menu-list li:nth-of-type(4n + 1) {
                    margin-left: 0;
                }

                .main-cont section .bd .g-cont .menu-list li:nth-of-type(n + 5) {
                    margin-top: 40px;
                }

                .main-cont section .bd .g-cont .menu-list li a {
                    display: block;
                    width: 100%;
                    height: 100%;
                    border-radius: 4px;
                    overflow: hidden;
                }

                    .main-cont section .bd .g-cont .menu-list li a img {
                        position: absolute;
                        top: 0;
                        left: 0;
                        display: block;
                        width: 100%;
                        height: 100%;
                    }

                    .main-cont section .bd .g-cont .menu-list li a::after {
                        content: '';
                        position: absolute;
                        z-index: 1;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(48, 134, 240, 0.4);
                        transition: var(--transition);
                    }

                    .main-cont section .bd .g-cont .menu-list li a h1 {
                        position: absolute;
                        z-index: 2;
                        top: 0;
                        left: 0;
                        width: 100%;
                        line-height: 100px;
                        text-align: center;
                        transition: var(--transition);
                    }

                    .main-cont section .bd .g-cont .menu-list li a p {
                        position: absolute;
                        z-index: 2;
                        padding: 10px;
                        transition: var(--transition);
                        transform: translate(0, 100px);
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 3;
                        overflow: hidden;
                    }

                    .main-cont section .bd .g-cont .menu-list li a:hover::after {
                        background: rgba(48, 134, 240, 0.8);
                    }

                    .main-cont section .bd .g-cont .menu-list li a:hover h1 {
                        transform: translate(0, -30px) scale(0.45);
                    }

                    .main-cont section .bd .g-cont .menu-list li a:hover p {
                        transform: translate(0, 30px);
                    }

        .main-cont section .bd .g-cont .m-left {
            flex: none;
            width: 260px;
        }

            .main-cont section .bd .g-cont .m-left .m-app-box {
                flex: 1;
            }

                .main-cont section .bd .g-cont .m-left .m-app-box + .m-app-box {
                    margin-top: 10px;
                }

                .main-cont section .bd .g-cont .m-left .m-app-box .marquee,
                .main-cont section .bd .g-cont .m-left .m-app-box .chart {
                    height: 140px;
                }

                .main-cont section .bd .g-cont .m-left .m-app-box .marquee,
                .main-cont section .bd .g-cont .m-right .m-app-box .marquee {
                    border-radius: 4px;
                    box-shadow: 0 0 0 1px var(--light_border);
                    overflow: hidden;
                }

                    .main-cont section .bd .g-cont .m-left .m-app-box .marquee ul li {
                        padding: 10px;
                        margin-bottom: 10px;
                    }

                        .main-cont section .bd .g-cont .m-left .m-app-box .marquee ul li p {
                            text-align: justify;
                        }

                .main-cont section .bd .g-cont .m-left .m-app-box h6 .selectize-control {
                    width: 100px;
                    height: 32px;
                    border-radius: 4px;
                    box-shadow: 0 0 0 1px var(--light_border);
                    margin-left: auto;
                }

                    .main-cont section .bd .g-cont .m-left .m-app-box h6 .selectize-control .selectize-input {
                        display: flex;
                        border: none;
                        padding: 7px 20px 7px 6px;
                        background: #fff;
                        box-shadow: none;
                    }

                        .main-cont section .bd .g-cont .m-left .m-app-box h6 .selectize-control .selectize-input .item {
                            flex: 1;
                            width: 0;
                            font-size: 12px;
                            color: var(--text);
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                        .main-cont section .bd .g-cont .m-left .m-app-box h6 .selectize-control .selectize-input::after {
                            right: 10px;
                        }

                    .main-cont section .bd .g-cont .m-left .m-app-box h6 .selectize-control .selectize-dropdown {
                        border: none;
                        color: var(--text)
                    }

                        .main-cont section .bd .g-cont .m-left .m-app-box h6 .selectize-control .selectize-dropdown .option {
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

        .main-cont section .bd .g-cont .m-mid {
            border-radius: 4px;
            flex: 1;
            margin-left: 40px;
            overflow: hidden;
            background: var(--light_border);
        }

            .main-cont section .bd .g-cont .m-mid .marquee {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 40px;
                background: rgba(48, 134, 240, 0.75);
                padding: 0 10px;
            }

                .main-cont section .bd .g-cont .m-mid .marquee ul li {
                    color: #fff;
                    line-height: 40px;
                }

        .main-cont section .bd .g-cont .m-right {
            flex: none;
            margin-left: 40px;
            width: 260px;
        }

            .main-cont section .bd .g-cont .m-right .m-app-box {
                height: 100%;
            }

                .main-cont section .bd .g-cont .m-right .m-app-box .marquee {
                    flex: 1;
                    padding: 10px 0;
                }

                    .main-cont section .bd .g-cont .m-right .m-app-box .marquee ul li {
                        padding: 0 10px;
                        margin-bottom: 10px;
                        cursor: pointer;
                    }

                        .main-cont section .bd .g-cont .m-right .m-app-box .marquee ul li video {
                            width: 100px;
                            height: 60px;
                            background: #000;
                            -o-object-fit: contain;
                            object-fit: contain;
                            margin-right: 10px;
                            pointer-events: none;
                            transition: var(--transition);
                        }

                        .main-cont section .bd .g-cont .m-right .m-app-box .marquee ul li:hover video {
                            box-shadow: var(--box_shadow);
                        }

                        .main-cont section .bd .g-cont .m-right .m-app-box .marquee ul li p {
                            flex: 1;
                            color: var(--text);
                        }

        .main-cont section .bd .g-cont .board {
            height: 290px;
            margin-bottom: 50px;
        }

            .main-cont section .bd .g-cont .board .tab-hd a {
                display: flex;
                width: 40px;
                height: 145px;
                border-radius: 4px 0 0 4px;
                cursor: pointer;
            }

                .main-cont section .bd .g-cont .board .tab-hd a span {
                    margin: auto;
                    display: block;
                    width: 16px;
                    font-size: 16px;
                    font-weight: 600;
                }

                    .main-cont section .bd .g-cont .board .tab-hd a span i {
                        display: block;
                        margin-bottom: 10px;
                    }

                .main-cont section .bd .g-cont .board .tab-hd a:nth-child(1) {
                    background: rgba(205, 43, 40, 0.2);
                    color: rgba(205, 43, 40, 1);
                }

                .main-cont section .bd .g-cont .board .tab-hd a:nth-child(2) {
                    background: rgba(65, 85, 107, 0.2);
                    color: rgba(65, 85, 107, 1);
                }

                    .main-cont section .bd .g-cont .board .tab-hd a:nth-child(2) i {
                        transform: rotateX(180deg);
                    }

                .main-cont section .bd .g-cont .board .tab-hd a:nth-child(1).active {
                    background: rgba(205, 43, 40, 1);
                    color: #fff;
                }

                .main-cont section .bd .g-cont .board .tab-hd a:nth-child(2).active {
                    background: rgba(65, 85, 107, 1);
                    color: #fff;
                }

            .main-cont section .bd .g-cont .board .tab-bd {
                flex: 1;
                border-radius: 0 4px 4px 0;
                overflow: hidden;
            }

                .main-cont section .bd .g-cont .board .tab-bd .tab {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    padding: 10px;
                    display: none;
                }

                    .main-cont section .bd .g-cont .board .tab-bd .tab:nth-child(1) {
                        background-image: linear-gradient(270deg, #F96431 0%, #CD2C28 100%);
                    }

                    .main-cont section .bd .g-cont .board .tab-bd .tab:nth-child(2) {
                        background-image: linear-gradient(270deg, #577697 0%, #41556b 100%);
                    }

                    .main-cont section .bd .g-cont .board .tab-bd .tab.active {
                        display: flex;
                    }

                    .main-cont section .bd .g-cont .board .tab-bd .tab .table-hd {
                        height: 27px;
                        background: rgba(255, 255, 255, 0.2);
                        line-height: 27px;
                    }

                        .main-cont section .bd .g-cont .board .tab-bd .tab .table-hd span,
                        .main-cont section .bd .g-cont .board .tab-bd .tab .table-bd ul li span {
                            text-align: center;
                        }

                            .main-cont section .bd .g-cont .board .tab-bd .tab .table-hd span:nth-child(1) {
                                flex: 1;
                            }

                            .main-cont section .bd .g-cont .board .tab-bd .tab .table-hd span:nth-child(2),
                            .main-cont section .bd .g-cont .board .tab-bd .tab .table-hd span:nth-child(3) {
                                flex: none;
                                width: 100px;
                            }

                    .main-cont section .bd .g-cont .board .tab-bd .tab .table-bd {
                        flex: 1;
                        overflow: hidden;
                    }

                        .main-cont section .bd .g-cont .board .tab-bd .tab .table-bd ul li {
                            margin-top: 10px;
                        }

                            .main-cont section .bd .g-cont .board .tab-bd .tab .table-bd ul li:hover {
                                font-weight: 600;
                            }

                            .main-cont section .bd .g-cont .board .tab-bd .tab .table-bd ul li span:nth-child(1) {
                                flex: 1;
                                width: 0;
                                white-space: nowrap;
                                overflow: hidden;
                                text-overflow: ellipsis;
                            }

                            .main-cont section .bd .g-cont .board .tab-bd .tab .table-bd ul li span:nth-child(2),
                            .main-cont section .bd .g-cont .board .tab-bd .tab .table-bd ul li span:nth-child(3) {
                                flex: none;
                                width: 100px;
                            }

                    .main-cont section .bd .g-cont .board .tab-bd .tab .fg h6 {
                        flex: none;
                        padding: 0 10px;
                        line-height: 27px;
                    }

                        .main-cont section .bd .g-cont .board .tab-bd .tab .fg h6::before {
                            content: '';
                            position: absolute;
                            left: 0;
                            top: 50%;
                            width: 2px;
                            height: 18px;
                            transform: translate(0, -50%);
                            background: #fff;
                        }

                    .main-cont section .bd .g-cont .board .tab-bd .tab .fg .notice-board {
                        flex: 1;
                        overflow: hidden;
                    }

                        .main-cont section .bd .g-cont .board .tab-bd .tab .fg .notice-board ul li {
                            margin-top: 10px;
                            padding: 0 10px;
                        }

                            .main-cont section .bd .g-cont .board .tab-bd .tab .fg .notice-board ul li:hover {
                                text-decoration: underline;
                            }

                            .main-cont section .bd .g-cont .board .tab-bd .tab .fg .notice-board ul li h3 {
                                font-size: 14px;
                            }

                            .main-cont section .bd .g-cont .board .tab-bd .tab .fg .notice-board ul li p {
                                display: -webkit-box;
                                -webkit-box-orient: vertical;
                                -webkit-line-clamp: 2;
                                overflow: hidden;
                                opacity: 0.6;
                            }

                            .main-cont section .bd .g-cont .board .tab-bd .tab .fg .notice-board ul li:nth-child(2n + 1) {
                                margin-left: 0;
                            }

        .main-cont section .bd .g-cont .public {
            height: 280px;
        }

            .main-cont section .bd .g-cont .public .bg {
                flex: none;
                width: 200px;
                border-radius: 4px;
            }

            .main-cont section .bd .g-cont .public ul {
                flex: 1;
            }

                .main-cont section .bd .g-cont .public ul li {
                    height: 28px;
                    padding: 0 10px;
                    line-height: 28px;
                }

                    .main-cont section .bd .g-cont .public ul li a {
                        color: var(--text);
                    }

                        .main-cont section .bd .g-cont .public ul li a:hover {
                            font-weight: 600;
                        }

                        .main-cont section .bd .g-cont .public ul li a i {
                            margin-right: 10px;
                        }

                        .main-cont section .bd .g-cont .public ul li a span:nth-of-type(1) {
                            flex: 1;
                            width: 0;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                        }

                    .main-cont section .bd .g-cont .public ul li:nth-child(2n + 1) {
                        background: var(--light_border);
                    }

            .main-cont section .bd .g-cont .public .fg:nth-child(1) .bg {
                background: url(../images/public1.png) center no-repeat;
                background-size: cover;
            }

            .main-cont section .bd .g-cont .public .fg:nth-child(2) .bg {
                background: url(../images/public2.png) center no-repeat;
                background-size: cover;
            }

            .main-cont section .bd .g-cont .public .fg .bg a {
                display: block;
                width: 100%;
                height: 100%;
            }

        .main-cont section .bd .g-cont .data-service {
            flex-wrap: wrap;
        }

            .main-cont section .bd .g-cont .data-service li {
                flex: none;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 260px;
                height: 120px;
                margin-left: 40px;
                color: var(--text);
            }

                .main-cont section .bd .g-cont .data-service li:nth-child(4n + 1) {
                    margin-left: 0;
                }

                .main-cont section .bd .g-cont .data-service li:nth-child(n + 5) {
                    margin-top: 40px;
                }

                .main-cont section .bd .g-cont .data-service li p {
                    font-size: 40px;
                }

                    .main-cont section .bd .g-cont .data-service li p.percent {
                        padding-right: 16px;
                    }

                        .main-cont section .bd .g-cont .data-service li p.percent::after {
                            content: '%';
                            position: absolute;
                            right: 4px;
                            bottom: 4px;
                            font-size: 14px;
                        }

        .main-cont section .bd .g-cont .m-trace {
            height: 222px;
            padding-top: 30px;
            background: url(../images/check-bg.png) center no-repeat;
            background-size: cover;
        }

            .main-cont section .bd .g-cont .m-trace form {
                width: 500px;
                margin: 0 auto;
            }

                .main-cont section .bd .g-cont .m-trace form > input {
                    display: block;
                    width: 100%;
                    height: 50px;
                    background: #3885D1;
                    box-shadow: inset 0 0 4px 0 rgba(0,0,0,0.50);
                    border-radius: 3px;
                    text-align: center;
                    color: #fff;
                    font-size: 20px;
                    font-family: 'bebas';
                }

                .main-cont section .bd .g-cont .m-trace form .g-taps {
                    margin-top: 10px;
                    display: flex;
                }

                    .main-cont section .bd .g-cont .m-trace form .g-taps input {
                        flex: none;
                        width: 80px;
                        margin-left: 10px;
                        background: var(--orange);
                        border-radius: 4px;
                        color: #fff;
                        font-weight: 600;
                        font-size: 20px;
                    }

                        .main-cont section .bd .g-cont .m-trace form .g-taps input:active {
                            box-shadow: inset 0 2px 6px rgba(0,0,0,0.2);
                        }

                    .main-cont section .bd .g-cont .m-trace form .g-taps ul {
                        display: flex;
                        flex-wrap: wrap;
                    }

                        .main-cont section .bd .g-cont .m-trace form .g-taps ul li {
                            flex: none;
                            width: 60px;
                            height: 40px;
                            margin-left: 10px;
                            background: #fff;
                            box-shadow: inset 0 0 0 2px var(--orange);
                            border-radius: 4px;
                            font-family: 'bebas';
                            text-align: center;
                            font-size: 20px;
                            line-height: 40px;
                            color: var(--orange);
                            user-select: none;
                            cursor: pointer;
                        }

                            .main-cont section .bd .g-cont .m-trace form .g-taps ul li:active {
                                box-shadow: inset 0 0 0 2px var(--orange), inset 0 2px 6px rgba(0,0,0,0.2);
                            }

                            .main-cont section .bd .g-cont .m-trace form .g-taps ul li:nth-child(6n + 1) {
                                margin-left: 0;
                            }

                            .main-cont section .bd .g-cont .m-trace form .g-taps ul li:nth-child(n + 7) {
                                margin-top: 10px;
                            }

                            .main-cont section .bd .g-cont .m-trace form .g-taps ul li:nth-last-child(2) {
                                background: url(../images/backspace.svg) center no-repeat;
                            }

                            .main-cont section .bd .g-cont .m-trace form .g-taps ul li:nth-last-child(1) {
                                background: url(../images/reset.svg) center no-repeat;
                            }

footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 550px;
    background: #171F29;
    color: #fff
}

    footer .central {
        padding-top: 30px;
    }

        footer .central .right {
            flex: none;
            margin-left: auto;
            padding-left: 40px;
        }

            footer .central .right::before {
                content: '';
                position: absolute;
                top: 0;
                left: 20px;
                width: 1px;
                height: 100%;
                background: #38424E;
            }

        footer .central .left p {
            font-size: 32px;
        }

        footer .central .left .scan-code {
            margin-top: 20px;
        }

            footer .central .left .scan-code > div + div {
                margin-left: 30px;
            }

            footer .central .left .scan-code img {
                display: block;
                width: 100px;
                height: 100px;
                background: var(--dark_blue);
            }

            footer .central .left .scan-code h5 {
                margin-top: 5px;
                text-align: center;
                line-height: 14px;
            }

        footer .central .right .net-map .nav {
            width: 170px;
        }

            footer .central .right .net-map .nav:last-child {
                width: 80px;
            }

            footer .central .right .net-map .nav h5 {
                margin-bottom: 10px;
                font-weight: 600;
            }

            footer .central .right .net-map .nav ul li a {
                color: var(--gray);
            }

                footer .central .right .net-map .nav ul li a:hover {
                    text-decoration: underline;
                }

        footer .central .links {
            margin: 20px 0;
            padding: 20px 0;
            align-items: flex-start;
        }

            footer .central .links::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background: #38424E;
            }

            footer .central .links::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background: #38424E;
            }

            footer .central .links .links-cont {
                flex: 1;
                margin-left: 40px;
            }

            footer .central .links h5 {
                line-height: 32px;
            }

            footer .central .links .links-cont a {
                margin-right: 10px;
                background: #222B37;
                color: var(--gray);
            }

        footer .central .copyright {
            text-align: center;
            color: var(--gray);
        }

            footer .central .copyright p + p {
                margin-top: 10px;
            }

.scroll-top {
    bottom: 20px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background: #273240;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

    .scroll-top i {
        font-size: 30px;
        line-height: 30px;
        color: var(--orange);
    }

.right-panel {
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

    .right-panel a {
        display: block;
        padding: 10px 4px;
        text-align: center;
        color: var(--orange);
    }

        .right-panel a i {
            display: inline-block;
            font-size: 24px;
            transform-origin: 50% 0;
            transition: var(--transition);
        }

        .right-panel a p {
            font-weight: 600;
            transition: var(--transition);
            opacity: 1;
        }

        .right-panel a:hover p {
            opacity: 0;
        }

        .right-panel a:hover i {
            transform: scale(1.5);
        }

.iconmessage::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: red;
    visibility: hidden;
}

.iconmessage.info::after {
    visibility: visible;
}

.popup-layer {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

    .popup-layer.active {
        visibility: visible;
        opacity: 1;
    }

    .popup-layer .contain {
        margin: auto;
        background: #fff;
        border-radius: 4px;
        width: 800px;
        max-height: 80vh;
        overflow-y: auto;
    }

        .popup-layer .contain .hd {
            position: -webkit-sticky;
            position: sticky;
            z-index: 2;
            top: 0;
            display: flex;
            height: 40px;
            background: #fff;
            border-bottom: 1px solid var(--light_border);
        }

            .popup-layer .contain .hd h5 {
                margin: auto;
                color: var(--dark_blue);
                font-weight: 600;
            }

            .popup-layer .contain .hd a {
                position: absolute;
                top: 8px;
                right: 10px;
                display: block;
                width: 24px;
                height: 24px;
                background: url(../images/delete.svg) center no-repeat;
                transition: var(--transition);
                cursor: pointer;
            }

                .popup-layer .contain .hd a:hover {
                    transform: rotate(90deg);
                }

        .popup-layer .contain .bd {
            padding: 20px 40px;
        }

.selectize-control {
    width: 100px;
    height: 32px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px var(--light_border);
}

    .selectize-control.single .selectize-input {
        display: flex;
        border: none;
        padding: 7px 20px 7px 6px;
        background: #fff;
        box-shadow: none;
    }

        .selectize-control.single .selectize-input.input-active {
            display: flex;
        }

    .selectize-control .selectize-input .item {
        flex: 1;
        width: 0;
        font-size: 12px;
        color: var(--text);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .selectize-control .selectize-input::after {
        right: 10px;
    }

    .selectize-control .selectize-dropdown {
        border: none;
        color: var(--text)
    }

        .selectize-control .selectize-dropdown .option {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url(../images/b-right.png);
    right: 60px;
    left: auto;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url(../images/b-left.png);
    right: 20px;
    left: auto;
}