@charset "utf-8";

html,
body,
div,
img,
p,
a,
span,
ul,
li,
ol,
video,
canvas {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: 'YouSheBiaoTiHei';
    src: url('../fonts/YouSheBiaoTiHei.ttf');
}

@font-face {
    font-family: 'DINPro';
    src: url('../fonts/DINPro.ttf');
}

@font-face {
    font-family: 'PingFang';
    src: url('../fonts/PingFang.ttf');
}

iframe {
    border: none;
}

* {
    margin: 0;
    padding: 0;
}

li::marker {
    color: #22FFC8
}

::-webkit-scrollbar {
    background: transparent;
    width: 0;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(53, 131, 248, 0.8);
    -webkit-box-shadow: inset 0 0 6px rgba(17, 58, 190, 0.3);
    box-shadow: inset 0 0 6px rgba(17, 58, 190, 0.3);
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

a:-webkit-any-link {
    text-decoration: none;
}

canvas {
    outline: none;
}

.esri-view .esri-view-surface--inset-outline:focus::after {
    outline: auto 0px Highlight !important;
    outline: auto 0px -webkit-focus-ring-color !important;
}

body {
    background-color: #001230;
    overflow: hidden;
    font-family: PingFang;
    overflow-y: scroll;
    min-width: 1200px
}

.evm-header {
    width: 100%;
    height: 80px;
    display: flex;
    position: relative;
}

.title {
    font-size: 32px;
    font-family: PingFang;
    font-weight: 500;
    color: #FFFFFF;
    background: linear-gradient(0deg, #9AE0FF 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 20px 0 0 50px;
}

.navBox {
    margin-left: 40px;
    margin-top: 25px;
    display: flex;
    color: #fff;
}

.navItem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    font-family: PingFang;
}

.navItem.actived {
    background: url(../images/nav-focus.png) no-repeat center bottom;
}

.evm-content {
    /* width      : 100%; */
    width: calc(100% - 200px);
    margin: 10px auto 0 auto;
    flex: 1 0 auto;

}

#videoContainer {
    /* display  : flex;
    flex-wrap: wrap; */

    display: grid;
    grid-gap: 60px;
    justify-content: space-between;
    grid-template-columns: repeat(auto-fill, 260px);
    overflow: hidden;
}

.grid-item {
    /* width          : 14%;
    display        : flex;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    padding        : 10px 0; */

    width: 260px;
    margin-bottom: 5px;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
}

.grid-item-icon {
    /* width : 260px;
    height: 360px; */

    border-radius: 5px;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 360px;
    background-color: rgb(136 136 136 / 20%);
}

.grid-item-icon a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

a {
    color: var(--href);
    text-decoration: none;
    cursor: pointer;
}

.grid-item-icon a img {
    width: 100%;
}

.grid-item-value {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.grid-item-value div {
    font-size: 20px;
    font-family: DINPro;
    font-weight: 500;
    color: #FFFFFF;
    background: linear-gradient(0deg, #FEE6AE 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.searchBox {
    position: absolute;
    right: 50px;
    bottom: 10px;
    display: flex;
    align-items: center;
}

.search,
.clear {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.search {
    margin: 0 16px;
}

.search-icon,
.clear-icon {
    width: 100%;
    height: 100%;
}

.search-input {
    height: 30px;
    width: 200px;
    border-radius: 20px;
    border-color: transparent;
    padding: 0 10px;
    background-color: #000;
    color: #fff;
}