﻿@charset "utf-8";

/*! HTML5 Boilerplate v6.1.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
@font-face {
    font-family: bebas;
    src: url('../fonts/BEBAS.TTF');
}

.clearfix::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    zoom: 1
}
/*浮动元素的父元素*/

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    /*display: none;*/
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(43,228,240,.6);
    border-radius: 4px;
}

*::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,.1);
}
/**{
    -ms-overflow-style: none;
}*/

.bebas {
    font-family: bebas;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1rem;
    background-color: #1B033C;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#0a196d), to(#02070e));
    background-image: linear-gradient(-180deg, #0a196d 0%, #02070e 100%);
}

header, footer {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header {
    position: relative;
    z-index: 1;
    height: 50px;
    background: rgba(0,0,0,0) url(../images/titlelight.png) top center no-repeat
}

footer {
    padding: 10px 20px;
    color: #fff;
}

    footer span {
        display: inline-block;
        position: relative;
    }

        footer span::before {
            content: '';
            display: block;
            position: absolute;
            left: -6px;
            top: 50%;
            -webkit-transform: translate(0,-50%);
            transform: translate(0,-50%);
            width: 4px;
            height: 4px;
            background-color: #fff;
        }

header .title {
    font-size: 1.625rem;
    line-height: 50px;
    color: #2BE4F0;
    position: relative;
    margin-top: 8px;
}

    header .title::before {
        content: '';
        position: absolute;
        left: -358px;
        top: 15px;
        display: block;
        width: 348px;
        height: 23px;
        background: url(../images/arrow.svg) center no-repeat;
        background-size: contain;
    }

    header .title::after {
        content: '';
        position: absolute;
        right: -358px;
        top: 15px;
        transform: rotateY(180deg);
        display: block;
        width: 348px;
        height: 23px;
        background: url(../images/arrow.svg) center no-repeat;
        background-size: contain;
        z-index: 0;
    }

header .menu, header .other {
    position: relative;
    width: 100px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    line-height: 50px;
    font-size: 1.4rem;
    z-index: 1;
}

    header .menu a.toggle {
        width: 140px;
        height: 50px;
        padding-left: 14px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        header .menu a.toggle img {
            display: block;
            width: 16px;
            height: 14px;
        }

    header .menu a {
        display: inline-block;
        color: #fff;
        padding-left: 10px;
    }

    header .menu span {
        margin-left: 7px;
        display: inline-block;
        color: #fff;
        vertical-align: -1px;
    }

    header .menu a:active {
        -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.4);
        box-shadow: inset 0 2px 4px rgba(0,0,0,.4);
    }

.menu-list {
    position: fixed;
    z-index: 99;
    height: 100%;
    background-color: #0E1A34;
    top: 50px;
    left: -180px;
    transition: all .3s ease-out;
    will-change: left;
    border-right: 1px solid #15274B;
}

    .menu-list.active {
        left: 0;
    }

    .menu-list ul li a {
        display: block;
        width: 180px;
        padding-left: 10px;
        color: #fff;
        font-size: 1.2rem;
        /*background-color: #011355;*/
        line-height: 45px;
    }

        .menu-list ul li a:active, .menu-list ul li a:hover {
            background-color: #1A2E5B;
        }

    .menu-list ul li {
        position: relative;
        border-bottom: 1px solid #15274B;
        /*background-color: #340c82;*/
        opacity: 1;
    }

        .menu-list ul li.active a {
            background-color: #1A2E5B;
            border-left: 1px solid #2be4f0;
        }
/*header .menu ul.active li:nth-of-type(1){
  -webkit-animation: menu 0.2s ease-in-out forwards;
          animation: menu 0.2s ease-in-out forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
header .menu ul.active li:nth-of-type(2){
  -webkit-animation: menu 0.2s ease-in-out forwards;
          animation: menu 0.2s ease-in-out forwards;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
header .menu ul.active li:nth-of-type(3){
  -webkit-animation: menu 0.2s ease-in-out forwards;
          animation: menu 0.2s ease-in-out forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
header .menu ul.active li:nth-of-type(4){
  -webkit-animation: menu 0.2s ease-in-out forwards;
          animation: menu 0.2s ease-in-out forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
header .menu ul.active li:nth-of-type(5){
  -webkit-animation: menu 0.2s ease-in-out forwards;
          animation: menu 0.2s ease-in-out forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
header .menu ul.active li:nth-of-type(6){
  -webkit-animation: menu 0.2s ease-in-out forwards;
          animation: menu 0.2s ease-in-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
header .menu ul.active li:nth-of-type(7){
  -webkit-animation: menu 0.2s ease-in-out forwards;
          animation: menu 0.2s ease-in-out forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@-webkit-keyframes menu {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px) rotateX(-90deg);
            transform: translateY(-30px) rotateX(-90deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) rotateX(0);
            transform: translateY(0) rotateX(0);
  }
}
@keyframes menu {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px) rotateX(-90deg);
            transform: translateY(-30px) rotateX(-90deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) rotateX(0);
            transform: translateY(0) rotateX(0);
  }
}*/
header .other {
    padding-right: 10px;
    text-align: right;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    header .other a {
        position: relative;
        display: block;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        margin-left: 10px;
        line-height: 28px;
        text-align: center;
    }

        header .other a img {
            display: inline-block;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
        }

        header .other a.full {
            display: none;
            /*background-image: -webkit-gradient(linear, left top, right top, from(#7D53B3), to(#622CB0));
  background-image: linear-gradient(90deg, #7D53B3 0%, #622CB0 100%);*/
        }

        header .other a.quit {
            /*background-image: -webkit-gradient(linear, right top, left top, from(#B63B3B), color-stop(98%, #DA491A));
  background-image: linear-gradient(-90deg, #B63B3B 0%, #DA491A 98%);*/
        }

        header .other a:active {
            -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.4);
            box-shadow: inset 0 2px 4px rgba(0,0,0,.4);
        }

.main-cont {
    padding: 16px 16px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

.arrmid {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.arrleft {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 16px;
}

.arrright {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 16px;
}

.s-big, .s-mid {
    height: 268px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.s-big {
    height: 468px;
}

    .s-big .bd {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .s-big .bd .tabs-hd {
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: end;
            -webkit-justify-content: flex-end;
            -moz-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }

            .s-big .bd .tabs-hd button + button {
                margin-left: 6px;
            }

        .s-big .bd .tabs-bd {
            position: relative;
            z-index: 2;
            -webkit-box-flex: 1;
            -webkit-flex: auto;
            -moz-box-flex: 1;
            -ms-flex: auto;
            flex: auto;
        }

            .s-big .bd .tabs-bd .tab-item {
                position: absolute;
                /*background-color: #00104C;*/
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                overflow: auto;
            }

                .s-big .bd .tabs-bd .tab-item:nth-of-type(1) {
                    overflow-x: hidden;
                    overflow-y: auto;
                }

.section {
    position: relative;
    background-color: rgba(0,0,0,.3);
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.1);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

    .section::before {
        content: '';
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 1px;
        background-image: -webkit-gradient(linear, right top, left top, from(#00104c00), color-stop(50%, #2BE4F0), to(#00104c00));
        background-image: linear-gradient(-90deg, #00104c00 0%, #2BE4F0 50%, #00104c00 100%);
    }

    .section + .section {
        margin-top: 16px;
    }

    .section .hd {
        position: relative;
        -webkit-box-flex: 0;
        -webkit-flex: none;
        -moz-box-flex: 0;
        -ms-flex: none;
        flex: none;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        padding: 0 34px 0 10px;
    }

        .section .hd h3 {
            margin: 0;
            color: #fff;
            font-size: 1.2rem;
            line-height: 30px;
            margin-right: 10px;
        }

        .section .hd .more, .zoom-cont .bd .more {
            position: absolute;
            top: 0;
            right: 0;
        }

            .section .hd .more button, .zoom-cont .bd .more button {
                display: block;
                width: 30px;
                height: 30px;
                background: url(../images/more.svg) center no-repeat;
                outline: none;
            }

                .section .hd .more button:active {
                    background: #091B60 url(../images/more.svg) center no-repeat;
                }

        .section .hd .area, .section .hd .time, .section .hd .kind {
            padding: 1px 0;
        }

    .section .bd {
        position: relative;
        -webkit-box-flex: 1;
        -webkit-flex: auto;
        -moz-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        padding: 10px;
        color: #fff;
        font-size: 1.2rem;
    }

        .section .bd .fixed-table-container {
            border: 1px solid #2BE4F0;
            border-radius: 0;
        }

        .section .bd .bootstrap-table .table > thead > tr > th, .section .bd .bootstrap-table .table {
            border-bottom: 0px solid #2BE4F0;
        }

        .section .bd .fixed-table-container thead th + th, .section .bd .fixed-table-container tbody td + td {
            border-left: 1px solid #2BE4F0;
        }

        .section .bd .fixed-table-container thead th .th-inner {
            line-height: 14px;
        }

        .section .bd tbody tr:nth-of-type(2n-1) {
            background-color: rgba(255,255,255,.1);
        }

.selecter .am-btn-default, .date .am-btn-default {
    background-color: rgba(0,0,0,0);
    border-color: #2be4f052;
    color: #fff;
    outline: none;
}

.tabs-hd .am-btn-default {
    background-color: #1A2758;
    border-color: rgba(0,0,0,0);
    color: #fff;
    outline: none;
}

    .tabs-hd .am-btn-default.active {
        background-color: #0e90d2;
        /*border-color: #8C53B3;*/
    }

.am-dropdown-content {
    min-width: 0;
}

.s-total {
    padding: 0 0 4vh 0;
}

@media (min-width:769px) and (max-width:1366px) {
    header .title {
        margin-bottom: 0px;
    }

    .main-cont {
        padding: 10px 16px 0;
    }

    .s-total {
        padding: 0vh 20px;
    }

        .s-total.chanliang {
            padding: 0 0 4vh 0;
        }

        .s-total .title {
            margin-bottom: 2px;
        }

        .s-total .qualify .nums p span {
            font-size: 3rem !important;
            line-height: 5rem !important;
        }

    .section .bd {
        font-size: 1rem;
    }

    footer {
        padding: 2px 20px;
    }
}

.s-total .title {
    font-size: 2rem;
    color: #fff;
    text-align: center;
}

.s-total .add-title {
    font-size: 3rem;
    font-weight: 100
}

.s-total .time {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
}

.s-total .num {
    text-align: center;
}

    .s-total .num span {
        position: relative;
        display: inline-block;
        margin: 0 auto;
        font-size: 6rem;
        line-height: 8rem;
        color: #ECB11C;
        text-shadow: 0 2px 4px rgba(0,0,0,.4);
    }

        .s-total .num span::after {
            content: '次';
            position: absolute;
            display: block;
            right: -16px;
            bottom: 0;
            font-size: 1rem;
            line-height: 1rem;
            color: #fff;
        }

.s-total.chanliang .num span::after {
    content: '吨';
    position: absolute;
    display: block;
    right: -16px;
    bottom: 0;
    font-size: 1rem;
    line-height: 1rem;
    color: #fff;
}

.s-total .qualify {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 10px;
}

    .s-total .qualify .nums {
        text-align: center;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .s-total .qualify .nums table {
            border-collapse: separate;
            border-spacing: 0px 10px;
        }

        .s-total .qualify .nums h4 {
            margin: 0;
            color: #fff;
            font-weight: 100;
        }

        .s-total .qualify .nums p {
            margin: 0;
        }

            .s-total .qualify .nums p span {
                position: relative;
                display: inline-block;
                font-size: 3.5rem;
                line-height: 5.5rem;
                color: #ECB11C;
            }

                .s-total .qualify .nums p span::after {
                    content: '个';
                    position: absolute;
                    display: block;
                    right: -16px;
                    bottom: 0;
                    font-size: 1rem;
                    line-height: 2rem;
                    color: #fff;
                }

        .s-total .qualify .nums table {
            width: 100%;
        }

    .s-total .qualify .pie {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

.map {
    height: 268px;
    margin-top: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .map h3 {
        margin-top: 3vh;
        text-align: center;
        font-size: 2.2rem;
        color: #fff;
        font-weight: 100;
        text-shadow: 1px 0 1px #000;
    }

.cont {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    /*padding: 0 10px 10px;*/
}

.map .cont .simple {
    width: 100%;
    height: 100%;
    /*background: url(../images/map.svg) center no-repeat;*/
    background-size: contain;
}

.ranger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
}

    .ranger ul {
        padding-left: 80px;
        height: 100%;
        overflow-y: auto;
    }

        .ranger ul li {
            width: 0;
            position: relative;
            background-image: -webkit-gradient(linear, left top, right top, from(#0AB6F7), to(#ED4304));
            background-image: linear-gradient(90deg, #0AB6F7 0%, #ED4304 100%);
            height: 32px;
            padding-right: 4px;
            text-align: right;
            line-height: 32px;
            -webkit-transition: all 1s ease-out;
            transition: all 1s ease-out;
        }

            .ranger ul li + li {
                margin-top: 10px;
            }

            .ranger ul li label {
                position: absolute;
                top: 50%;
                left: -80px;
                transform: translate(0,-50%);
                -webkit-transform: translate(0,-50%);
                display: block;
                width: 80px;
                padding-right: 4px;
                line-height: 1.2rem;
                margin-bottom: 0;
            }

.date {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

    .date .date-cont {
        padding: 1px 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row nowrap;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .date .date-cont span {
            color: #fff;
            margin: 0 4px;
        }

.am-datepicker {
    -webkit-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
}

.years-sel {
    width: 100px;
}

    .years-sel .am-form-field {
        font-size: inherit;
        line-height: 15px;
        background-color: #1C2F75;
        border: 1px solid #1C2F75;
    }

.view-cont {
    display: none;
}

.zoom-cont .hd {
    height: 30px;
    background-image: -webkit-gradient(linear, left top, right top, from(#1595D8), to(#2CB080));
    background-image: linear-gradient(90deg, #1595D8 0%, #2CB080 100%);
    padding: 0 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .zoom-cont .hd .title {
        line-height: 30px;
        color: #fff;
    }

    .zoom-cont .hd a {
        display: block;
        width: 30px;
        height: 30px;
    }

        .zoom-cont .hd a.toggle {
            display: none;
            background: url(../images/enlarge.svg) center no-repeat;
            background-size: 18px 18px;
        }

            .zoom-cont .hd a.toggle:hover {
                background-size: 20px 20px;
            }

        .zoom-cont .hd a.fresh {
            background: url(../images/fresh.svg) center no-repeat;
            background-size: 18px 18px;
        }

            .zoom-cont .hd a.fresh:hover {
                background-size: 20px 20px;
            }

    .zoom-cont .hd .fresh.active {
        -webkit-animation: fresh 1s linear infinite;
        animation: fresh 1s linear infinite;
    }

@-webkit-keyframes fresh {
    form {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes fresh {
    form {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

#videoData {
    background-color: #000;
}

.zoom-cont .bd video {
    margin: 0 auto;
    width: calc(60vw - 80px);
    height: calc(64vh - 80px);
    background-color: #000;
}

.zoom-cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .zoom-cont .hd {
        -webkit-box-flex: 0;
        -webkit-flex: none;
        -moz-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }

    .zoom-cont .bd {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        height: 0;
        min-height: 0;
    }

    .zoom-cont.active, .view-cont .zoom-cont.active .hd {
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        width: 100%;
    }

.equipment-cont .section .zoom-cont.active {
    background-color: #00104C;
}

.zoom-cont.active {
    height: 100%;
}

    .zoom-cont.active .hd a.toggle {
        background: url(../images/enlittle.svg) center no-repeat;
        background-size: 18px 18px;
    }

        .zoom-cont.active .hd a.toggle:hover {
            background-size: 20px 20px;
        }

.leftbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .leftbar .hd {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .leftbar .selecter .am-btn-default {
        background-color: rgba(0,0,0,0);
        border-color: #2BE4F0;
        color: #fff;
        outline: none;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: 0;
        min-width: 0;
    }

    .leftbar .hd .selecter {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .leftbar .hd .selecter + .selecter {
            margin-left: 10px;
        }

    .leftbar .bd {
        -webkit-box-flex: 1;
        -webkit-flex: auto;
        -moz-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        overflow-y: auto;
        margin-top: 10px;
        height: 0;
        min-height: 0;
    }

        .leftbar .bd .video-item {
            padding: 10px;
            cursor: pointer;
            background-color: rgba(43,228,240,0.1);
            border: 1px solid #2be4f0;
            border-radius: 0 10px 0 10px;
            position: relative;
        }

            .leftbar .bd .video-item::after {
                content: '';
                display: block;
                position: absolute;
                right: 10px;
                bottom: 10px;
                width: 50px;
                height: 2px;
                background-color: #FDAB00;
            }

            .leftbar .bd .video-item + .video-item {
                margin-top: 10px;
            }

            .leftbar .bd .video-item video {
                position: relative;
                z-index: -2;
                display: block;
                width: 100%;
                background-color: #000;
            }

            .leftbar .bd .video-item span {
                display: block;
                margin-top: 4px;
                text-align: center;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                color: #fff;
                font-size: 12px;
            }

.error {
    text-align: center;
    color: #ff7c00;
}

.equipments {
    display: none;
}

    .equipments ul li {
        background: #010615;
    }

        .equipments ul li:hover {
            background: #180331;
        }

        .equipments ul li + li {
            margin-top: 10px;
        }

        .equipments ul li a {
            display: block;
            height: 30px;
            padding-left: 30px;
            background: url(../images/shebei.svg) 6px center no-repeat;
            background-size: 18px 18px;
            color: #fff;
            text-align: left;
            line-height: 30px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .equipments ul li.active {
            background: #060F2F;
        }

            .equipments ul li.active a {
                background: url(../images/shebei_.svg) 6px center no-repeat;
                color: #2BE4F0;
            }

.equipment-cont .right {
    margin-top: 16px;
}

.equipment-cont .section {
    height: 300px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.equipment-cont .right .section {
    height: 500px;
}

.equipment-cont .section::before {
    display: none;
}

.equipment-cont .section .zoom-cont {
    /*background-color: #00104C;*/
}

.equipment-cont .left .section:last-child .zoom-cont .hd {
    /*background-image: -webkit-gradient(linear, left top, right top, from(#da880b), to(#ECB11C));
  background-image: linear-gradient(90deg, #da880b 0%, #ECB11C 100%);*/
}

.equipment-cont .left .section .zoom-cont .bd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .equipment-cont .left .section .zoom-cont .bd .list-cont {
        position: relative;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        overflow-x: auto;
    }

    .equipment-cont .left .section .zoom-cont .bd .list {
        position: absolute;
        height: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

        .equipment-cont .left .section .zoom-cont .bd .list .item {
            width: 200px;
            height: 100%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 0;
            -webkit-flex: none;
            -moz-box-flex: 0;
            -ms-flex: none;
            flex: none;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -moz-box-orient: vertical;
            -moz-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            padding: 10px;
            border: 1px solid #010615;
            border-radius: 4px;
            background: #010615;
        }

            .equipment-cont .left .section .zoom-cont .bd .list .item + .item {
                margin-left: 10px;
            }

            .equipment-cont .left .section .zoom-cont .bd .list .item:hover, .equipment-cont .left .section .zoom-cont .bd .list .item.active {
                border: 1px solid #2BE4F0;
            }

            .equipment-cont .left .section .zoom-cont .bd .list .item.active {
                background: #060F2F;
            }

            .equipment-cont .left .section .zoom-cont .bd .list .item .item-hd {
                text-align: center;
            }

                .equipment-cont .left .section .zoom-cont .bd .list .item .item-hd p {
                    margin-bottom: 10px;
                }

                .equipment-cont .left .section .zoom-cont .bd .list .item .item-hd span {
                    display: block;
                }

                    .equipment-cont .left .section .zoom-cont .bd .list .item .item-hd span.time {
                        font-size: 1rem;
                        color: #2BE4F0;
                    }

            .equipment-cont .left .section .zoom-cont .bd .list .item .item-bd {
                margin-top: 10px;
                overflow-y: auto;
                -webkit-box-flex: 1;
                -webkit-flex: 1;
                -moz-box-flex: 1;
                -ms-flex: 1;
                flex: 1;
            }

                .equipment-cont .left .section .zoom-cont .bd .list .item .item-bd .parameter {
                    -webkit-box-align: center;
                    -webkit-align-items: center;
                    -moz-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: justify;
                    -webkit-justify-content: space-between;
                    -moz-box-pack: justify;
                    -ms-flex-pack: justify;
                    justify-content: space-between;
                    padding: 4px;
                    border-bottom: 1px solid rgba(255,255,255,.2);
                }

                    .equipment-cont .left .section .zoom-cont .bd .list .item .item-bd .parameter.alarm {
                        background-color: rgba(255,167,92,0.4);
                        animation: shing 0.8s ease infinite alternate;
                        -webkit-animation: shing 0.8s ease infinite alternate;
                    }

                        .equipment-cont .left .section .zoom-cont .bd .list .item .item-bd .parameter.alarm .alarm-tips {
                            display: none;
                            position: absolute;
                            border: 1px solid #2BE4F0;
                            border-radius: 4px;
                            padding: 5px 10px;
                            background: #060F2F;
                        }

@keyframes shing {
    from {
        background-color: rgba(255,0,0,0.3);
    }

    to {
        background-color: rgba(255,0,0,0);
    }
}

.equipment-cont .left .section .zoom-cont .bd .list .item .item-bd .parameter img {
    width: 30px;
}

.equipment-cont .left .section .zoom-cont .bd .list .item .item-bd .parameter .value p {
    margin: 0;
    text-align: right;
    color: #F2664D;
}

.equipment-cont .left .section:last-child .zoom-cont .bd .total span + span {
    margin-left: 10px;
}

.equipment-cont .left .section:last-child .zoom-cont .bd .tablecont {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.tablecont #table tbody tr td .statu-bg {
    width: 18px;
    height: 18px;
}

    .tablecont #table tbody tr td .statu-bg.statu0 {
        background: url(../images/error.svg) center no-repeat;
    }

    .tablecont #table tbody tr td .statu-bg.statu1 {
        background: url(../images/normal.svg) center no-repeat;
    }

    .tablecont #table tbody tr td .statu-bg.statu2 {
        background: url(../images/shutdown.svg) center no-repeat;
    }

.equipment-cont .right .section .zoom-cont .bd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .equipment-cont .right .section .zoom-cont .bd .bd-hd {
        position: relative;
        -webkit-box-flex: 0;
        -webkit-flex: none;
        -moz-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }

    .equipment-cont .right .section .zoom-cont .bd .bd-bd {
        position: relative;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .equipment-cont .right .section .zoom-cont .bd .bd-bd .info {
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -moz-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #2BE4F0;
        }

            .equipment-cont .right .section .zoom-cont .bd .bd-bd .info .max::before,
            .equipment-cont .right .section .zoom-cont .bd .bd-bd .info .min::before,
            .equipment-cont .right .section .zoom-cont .bd .bd-bd .info .average::before {
                content: '';
                position: absolute;
                top: 50%;
                left: -10px;
                -webkit-transform: translate(0,-50%);
                transform: translate(0,-50%);
                display: block;
                width: 10px;
                height: 6px;
            }

            .equipment-cont .right .section .zoom-cont .bd .bd-bd .info .max::before {
                background: url(../images/max.svg) center no-repeat;
            }

            .equipment-cont .right .section .zoom-cont .bd .bd-bd .info .min::before {
                background: url(../images/min.svg) center no-repeat;
            }

            .equipment-cont .right .section .zoom-cont .bd .bd-bd .info .average::before {
                background: url(../images/average.svg) center no-repeat;
            }

            .equipment-cont .right .section .zoom-cont .bd .bd-bd .info div {
                position: relative;
            }

                .equipment-cont .right .section .zoom-cont .bd .bd-bd .info div + div {
                    margin-left: 20px;
                }

        .equipment-cont .right .section .zoom-cont .bd .bd-bd .items {
            margin-top: 10px;
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            -moz-box-flex: 1;
            -ms-flex: 1;
            flex: 1;
            overflow-x: hidden;
            overflow-y: auto;
        }

            .equipment-cont .right .section .zoom-cont .bd .bd-bd .items a {
                display: inline-block;
                background: #2B3C7A;
                border: 1px solid #2B3C7A;
                padding: 4px 10px;
                margin-right: 10px;
                margin-top: 10px;
                color: #fff;
            }

                .equipment-cont .right .section .zoom-cont .bd .bd-bd .items a:hover {
                    border: 1px solid #8C53B3;
                }

                .equipment-cont .right .section .zoom-cont .bd .bd-bd .items a.active {
                    background: #0e90d2;
                    border: 1px solid #0e90d2;
                }

.data_legend {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 98;
}

.leftbar .hd .selecter .am-dropdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 640px) {
    header .menu a.toggle {
        height: 40px;
    }

    header .menu a span {
        display: none;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99;
        height: 60px;
        background-color: rgba(10, 25, 108, 0.7);
    }

        header .title {
            font-size: 1rem;
            line-height: 40px;
        }

            header .title::before {
                content: '';
                position: absolute;
                left: -268px;
                top: 24px;
                display: block;
                width: 348px;
                height: 12px;
                background: url(../images/arrow.svg) center no-repeat;
                background-size: contain;
            }

            header .title::after {
                content: '';
                position: absolute;
                right: -275px;
                top: 24px;
                transform: rotateY(180deg);
                display: block;
                width: 348px;
                height: 12px;
                background: url(../images/arrow.svg) center no-repeat;
                background-size: contain;
                z-index: 0;
            }

        header .menu, header .other {
            line-height: 40px;
        }

            header .other a img {
                top: 0px;
            }

            header .menu ul {
                position: fixed;
                top: 40px;
                left: 0;
                width: 100%;
            }

                header .menu ul li a {
                    display: block;
                    width: 100%;
                    height: 40px;
                    text-align: center;
                    font-size: 1rem;
                    background-color: rgba(10, 25, 108, 0.7);
                    line-height: 40px;
                }

    .main-cont {
        margin-top: 40px;
    }

    .leftbar .hd .selecter {
        -webkit-flex-basis: 140px;
        -ms-flex-preferred-size: 140px;
        flex-basis: 140px;
    }

        .leftbar .hd .selecter:nth-of-type(3) {
            -webkit-flex-basis: 610px;
            -ms-flex-preferred-size: 610px;
            flex-basis: 610px;
            margin-left: 0;
            margin-top: 10px;
        }

    .data_legend {
        position: relative;
    }

        .data_legend ul li {
            float: left;
        }
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99;
        height: 70px;
        background-color: rgba(10, 25, 108, 0.7);
    }

    .main-cont {
        margin-top: 50px;
    }

    header .other a img {
        top: 0px;
    }

    header .title::before {
        content: '';
        position: absolute;
        left: -319px;
        top: 28px;
        height: 16px;
    }

    header .title::after {
        right: -315px;
        top: 28px;
        height: 16px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99;
        height: 70px;
        background-color: rgba(10, 25, 108, 0.7);
    }

    .main-cont {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 1025px) {
    html, body {
        height: 100%;
        overflow: hidden;
    }

    body {
        background-image: -webkit-gradient(linear, left top, left bottom, from(#0a196d), to(#02070e));
        background-image: linear-gradient(-180deg, #0a196d 0%, #02070e 100%);
        background-image: radial-gradient(at 50% 0%, #0a196d 0%,#02070e 100%);
        background: url(../images/dark.png) center bottom no-repeat;
        background-size: cover;
    }

    header .other a.full {
        display: block;
    }

    .main-cont {
        -webkit-box-flex: 1;
        -webkit-flex: auto;
        -moz-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
    }

    header .menu ul a:hover {
        background-color: rgba(9,30,109,.5);
    }

    .main-cont {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        position: relative;
        z-index: 1;
    }

    .arrleft, .arrright {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .arrmid {
        -webkit-box-flex: 1.38;
        -webkit-flex: 1.38;
        -moz-box-flex: 1.38;
        -ms-flex: 1.38;
        flex: 1.38;
    }

    .singleleft {
        -webkit-box-flex: 2.43;
        -webkit-flex: 2.43;
        -moz-box-flex: 2.43;
        -ms-flex: 2.43;
        flex: 2.43;
    }

    .arrleft, .arrright, .arrmid, .singleleft {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .arrleft {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-top: 0;
    }

    .arrright {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-top: 0;
        margin-left: 16px;
    }

    .arrmid {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-left: 16px;
    }

    .s-big, .s-mid {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .map {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .s-total .qualify {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .view-cont, .equipment-cont {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: 16px;
        -webkit-box-flex: 7.78;
        -webkit-flex: 7.78;
        -moz-box-flex: 7.78;
        -ms-flex: 7.78;
        flex: 7.78;
    }

    .view-cont {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-left: calc((100% - (100% - 48px)/8.78 - 48px - 60vw)/2);
        margin-top: calc((36vh - 105px)/2);
        -webkit-box-flex: none;
        -webkit-flex: none;
        -moz-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: 60vw;
        height: 64vh;
        border: 1px solid #2be4f0;
        padding: 40px;
        position: relative;
    }

    .equipment-cont {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .zoom-cont .hd a.toggle {
        display: block;
    }

    .leftbar {
        -webkit-box-flex: none;
        -webkit-flex: none;
        -moz-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: calc((100% - 48px)/8.78);
    }

        .leftbar .hd {
            display: block;
        }

            .leftbar .hd .selecter {
                margin-bottom: 10px;
            }

                .leftbar .hd .selecter + .selecter {
                    margin-left: 0;
                }

        .leftbar .bd .video-item.active video {
            border: 2px solid #8C53B3;
        }

        .leftbar .hd .selecter:nth-of-type(3) {
            display: none;
        }

    .equipments {
        display: block;
    }

    .equipment-cont .left, .equipment-cont .right {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .equipment-cont .right {
        margin-top: 0;
        margin-left: 16px;
    }

    .equipment-cont .section {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .s-big .bd .tabs-bd :nth-of-type(1).tab-item {
        overflow: hidden;
    }
}

.highcharts-container {
    overflow: visible !important;
}

.highcharts-menu {
    box-shadow: none !important;
}

.highcharts-contextmenu {
    right: -9px !important;
    padding-right: 0 !important;
}

svg {
    overflow: visible !important;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

    /*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

    .visuallyhidden.focusable:active,
    .visuallyhidden.focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
        white-space: inherit;
    }

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

.dailog {
    position: absolute;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
}

    .dailog.active {
        display: block;
    }

    .dailog .dark-bg {
        position: absolute;
        left: 20vw;
        top: 10vh;
        width: 60vw;
        height: 80vh;
        background: rgba(0,0,0,0.9);
        border: 1px solid #2BE4F0;
    }

        .dailog .dark-bg .content {
            height: 100%;
        }

            .dailog .dark-bg .content .hd {
                height: 30px;
                text-align: center;
                line-height: 30px;
                color: #2BE4F0;
            }

                .dailog .dark-bg .content .hd h4 {
                    margin: 0;
                    font-size: 16px;
                }

                .dailog .dark-bg .content .hd .close {
                    position: absolute;
                    right: 0;
                    top: 0;
                    width: 30px;
                    height: 30px;
                    background: url(../images/close.svg) center no-repeat;
                    background-size: 16px 16px;
                    cursor: pointer;
                }

            .dailog .dark-bg .content .bd {
                color: #fff;
                height: calc(100% - 30px);
                padding: 0 10px 10px;
            }

                .dailog .dark-bg .content .bd .loading {
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%,-50%);
                }

                .dailog .dark-bg .content .bd .infor {
                    height: 100%;
                    overflow-y: auto;
                    overflow-x: hidden;
                }

                    .dailog .dark-bg .content .bd .infor li {
                        display: flex;
                        margin-bottom: 10px;
                    }

                        .dailog .dark-bg .content .bd .infor li label {
                            flex: none;
                            width: 100px;
                            text-align: right;
                            color: #2DE4F0;
                        }

                        .dailog .dark-bg .content .bd .infor li p {
                            flex: auto;
                            margin: 0;
                            margin-left: 10px;
                            text-align: justify;
                        }

                            .dailog .dark-bg .content .bd .infor li p img {
                                width: 50%;
                            }

.view-cont .zoom-cont .hd {
    position: absolute;
    width: calc(100% - 80px);
    z-index: 2;
    top: -15px;
    left: 40px;
    background-image: none;
    background-color: #C38300;
}

    .view-cont .zoom-cont .hd .title {
        font-size: 16px;
    }

.view-cont::before {
    content: 'VIDEO';
    display: block;
    position: absolute;
    top: 80px;
    left: -84px;
    width: 140px;
    height: 0;
    border-width: 0 15px 30px 15px;
    border-style: none solid solid;
    border-color: transparent transparent rgba(43,228,240,0.1);
    transform: rotateZ(-90deg);
    text-align: center;
    color: #fff;
    line-height: 30px;
}

.view-cont::after {
    content: '';
    display: block;
    width: 10vw;
    height: 0.86vw;
    background: url(../assets/images/video-corner.svg) center no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: -1vw;
}

.view-cont .tip {
    position: absolute;
    padding-left: 14px;
    left: 10px;
    bottom: 10px;
    color: #fff;
    height: 20px;
    line-height: 20px;
}

    .view-cont .tip::before {
        content: '';
        position: absolute;
        top: 5px;
        left: 0;
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #FDAB00;
        animation: sharp infinite alternate 0.5s ease;
        -webkit-animation: sharp infinite alternate 0.5s ease;
    }

@keyframes sharp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes sharp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}
/*结束=====================22*/
