:root {
    /* 主色 */
    --color-primary: #7B61FF;
    --color-primary-light: #8F7CFF;
    --color-primary-lighter: #A99AFF;
    --color-primary-extra-light: #C7C0FF;
    --color-primary-extra-lighter: #E6E3FF;

    /* 成功色 */
    --color-success: #16A34A;
    --color-success-light: #A0D388;
    --color-success-lighter: #BFE1AD;
    --color-success-extra-light: #BEE1AD;
    --color-success-extra-lighter: #F6FFFA;

    /* 警告色 */
    --color-warning: #F59E0B;
    --color-warning-light: #FBC531;
    --color-warning-lighter: #FCD77E;
    --color-warning-extra-light: #FDE8C4;
    --color-warning-extra-lighter: #FFF8EC;

    /* 错误色 */
    --color-error: #FF4D4F;
    --color-error-light: #F77A7A;
    --color-error-lighter: #F99A9A;
    --color-error-extra-light: #FBC1C1;
    --color-error-extra-lighter: #FFF5F5;
    --color-error-dark: #C45656;

    /* 信息色 */
    --color-info: #999999;
    --color-info-light: #9DA0A5;
    --color-info-lighter: #ABADB1;
    --color-info-extra-light: #D2D4D6;
    --color-info-extra-lighter: #F5F5F6;

    /* 文字颜色 */
    --text-color-primary: #303133;
    --text-color-regular: #606266;
    --text-color-secondary: #909399;
    --text-color-placeholder: #A8ABB2;
    --text-color-disabled: #C0C4CC;

    /* 背景颜色 */
    --bg-color: #F0F2F5;
    --bg-color-light: #F5F7FA;
    --bg-color-lighter: #FAFAFA;
    --bg-color-dark: #EBEDF0;
    --bg-color-darker: #E6E8EB;

    /* 边框颜色 */
    --border-color: #DCDFE6;
    --border-color-light: #E4E7ED;
    --border-color-lighter: #EBEEF5;
    --border-color-dark: #D4D7DE;
    --border-color-darker: #CDD0D6;

    /* 圆角 */
    --border-radius: 4px;
    --border-radius-small: 2px;
    --border-radius-large: 8px;
    --border-radius-larger: 12px;

    /* 阴影 */
    --box-shadow: 0px 0px 12px rgba(0, 0, 0, .12);
    --box-shadow-light: 0px 0px 6px rgba(0, 0, 0, .08);
    --box-shadow-dark: 0px 16px 48px 16px rgba(0, 0, 0, .08), 0px 12px 32px rgba(0, 0, 0, .12), 0px 8px 16px -8px rgba(0, 0, 0, .16);
    --box-shadow-primary: 0 0 12px var(--color-primary);

    /* 宽度 */
    --page-min-width: 1440px;
    --page-contnet-width: 1320px;
}

* {
    box-sizing: border-box;
    flex-shrink: 0;
    outline: none;
}

html {
    height: 100%;
}

body {
    color: var(--text-color-primary);
    height: 100%;
    font-family: pingfang SC, 微软雅黑, helvetica neue, arial,
    hiragino sans gb, microsoft yahei ui, microsoft yahei, simsun, serif !important;
    margin: 0;
    font-size: 14px;
    overflow: auto;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.iconfont {
    display: inline-block;
    font-size: inherit;
}

[v-cloak] {
    display: none !important;
}

@media (min-width: 601px) {
    [data-device="m"] {
        display: none !important;
    }
}

@media (max-width: 600px) {
    [data-device="pc"] {
        display: none !important;
    }
}

.page-title-g {
    font-size: 24px;
    position: relative;
    font-weight: bolder;
    text-align: center;
}

.module-title-g {
    font-size: 16px;
    font-weight: 600;
    padding-left: 12px;
    position: relative;
    color: var(--text-color-primary);
    line-height: 1;

    &:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 5px;
        height: 5px;
        background: var(--color-primary);
        border-radius: 50%;
        transform: translateY(-50%);
    }
}


/* 开始 ======================================= 颜色 */

.color-primary-g {
    color: var(--color-primary);
}

.color-success-g {
    color: var(--color-success);
}

.color-warning-g {
    color: var(--color-warning);
}

.color-error-g {
    color: var(--color-error);
}

.color-info-g {
    color: var(--color-info);
}

/* 结束 ======================================= 颜色 */


/* 开始 ======================================= 地图Tooltip */

.map-tooltip-g {
    padding: 4px;
    min-width: 180px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.6);
}

.map-tooltip-g__title {
    text-align: center;
    background: var(--color-primary);
    padding: 4px 0;
}

.map-tooltip-g__rows {
    padding: 12px 12px 6px 12px;
}

.map-tooltip-g__row {
    display: flex;
    align-items: center;
}

.map-tooltip-g__row + .map-tooltip-g__row {
    margin-top: 8px;
}

.map-tooltip-g__value {
    margin-left: 12px;
    font-weight: 600;
}

.map-tooltip-g .tag-g {
    margin-right: 4px;
}

/* 结束 ======================================= 地图Tooltip */


/* 开始 ======================================= 加载 */

@keyframes loading-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.icon-loading {
    animation: loading-animation 2s linear infinite;
}

/* 结束 ======================================= 加载 */


/* 开始 ======================================= 外间距 */

.mt-12-g {
    margin-top: 12px;
}

.mt-24-g {
    margin-top: 24px;
}

.mb-12-g {
    margin-bottom: 12px;
}

.mb-24-g {
    margin-bottom: 24px;
}

.ml-4-g {
    margin-left: 4px;
}

.ml-6-g {
    margin-left: 6px;
}

.ml-8-g {
    margin-left: 8px;
}

.ml-12-g {
    margin-left: 12px;
}

.ml-16-g {
    margin-left: 16px;
}

.ml-24-g {
    margin-left: 24px;
}

/* 结束 ======================================= 外间距 */


/* 开始 ======================================= 布局 */

.the-layout-g {
    height: 100%;
    overflow: auto;
    display: flex;
    min-width: var(--page-min-width);
    flex-direction: column;
}

.the-page-g {
    padding: 24px 0 40px 0;
    min-height: calc(100vh - 385px);
}

.the-width-g {
    margin: 0 auto;
    width: var(--page-contnet-width);
}

@media (max-width: 600px) {
    .the-layout-g {
        min-width: auto;
    }

    .the-width-g {
        width: 100%;
        padding: 0 12px;
    }
}

/* 结束 ======================================= 布局 */


/* 开始 ======================================= 头部 */

.the-header-g {
    height: 56px;
    z-index: 1000;
    transition: .3s;
    border-color: var(--border-color-lighter);
    border-style: solid;
    border-width: 0 0 1px 0;
}

.the-header-g .the-width-g {
    height: 100%;
    display: flex;
    align-items: center;
}

.the-header-g .logo {
    display: flex;
    align-items: center;
}

.the-header-g .logo h1 {
    margin: 0;
    display: flex;
    align-items: center;
}

.the-header-g .pc-g_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.the-header-g .pc-g_menu .menu-item {
    font-weight: 600;
}

.the-header-g .pc-g_menu .menu-item + .menu-item {
    margin-left: 40px;
}

@media (max-width: 600px) {
    .the-header-g .the-width-g {
        justify-content: space-between;
    }

    .the-header-g .the-width-g {
        justify-content: space-between;
    }

    .the-header-g .m-g__menu .icon-menu {
        font-size: 20px;
    }

    .the-header-g .m-g__menu .popover-g__container {
        padding: 6px 0;
    }

    .the-header-g .m-g__menu .menu-item {
        white-space: nowrap;
        padding: 6px 12px;
        line-height: 22px;
        display: block;
    }
}

/* 结束 ======================================= 头部 */


/* 开始 ======================================= 尾部 */

.the-footer-g {
    background: var(--bg-color-darker);
    padding: 40px 0;
}

.the-footer-g .the-width-g {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.the-footer-g .menu-wrapper .title {
    font-weight: 600;
    font-size: 16px;
}

.the-footer-g .menus {
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
}

.the-footer-g .menu + .menu {
    margin-left: 40px;
}

.the-footer-g .menu-item {
    font-size: 14px;
    display: block;
    line-height: 32px;
}

.the-footer-g .menu-item:hover {
    color: var(--color-primary);
}

.the-footer-g .right {
    text-align: right;
}

.the-footer-g .logo {
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .the-footer-g .the-width-g {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
    }

    .the-footer-g .right {
        width: 100%;
        margin-top: 24px;
    }
}

/* 结束 ======================================= 尾部 */