.flex {
    display: -webkit-box; /* 老版本 Safari, iOS, Android */
    display: -moz-box; /* 老版本 Firefox */
    display: -ms-flexbox; /* IE 10 */
    display: -webkit-flex; /* Chrome < 21, Safari 6.1+, iOS Safari 7+ */
    display: flex; /* 标准语法 */
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.items-center {
    /* 老版本 WebKit 浏览器 (Safari, iOS, Android) */
    -webkit-box-align: center;

    /* 老版本 Firefox */
    -moz-box-align: center;

    /* IE 10 */
    -ms-flex-align: center;

    /* 现代浏览器 */
    align-items: center;
}

.justify-between {
    /* 老版本 WebKit 浏览器 (Safari, iOS, Android) */
    -webkit-box-pack: justify;

    /* 老版本 Firefox */
    -moz-box-pack: justify;

    /* IE 10 */
    -ms-flex-pack: justify;

    /* 现代浏览器 */
    justify-content: space-between;
}

.justify-center {
    /* 标准语法 */
    justify-content: center;

    /* 老版本 WebKit 浏览器 (Safari, iOS, Android) */
    -webkit-box-pack: center;

    /* 老版本 Firefox */
    -moz-box-pack: center;

    /* IE 10 */
    -ms-flex-pack: center;
}

.flex-1 {
    /* 老版本 WebKit 浏览器 (Safari, iOS, Android) */
    -webkit-box-flex: 1;

    /* 老版本 Firefox */
    -moz-box-flex: 1;

    /* IE 10 */
    -ms-flex: 1;

    /* 现代浏览器 */
    flex: 1;
}

.flex-wrap {
    /* 换行 */
    -webkit-flex-wrap: wrap; /* 老版本 WebKit */
    -ms-flex-wrap: wrap; /* IE 10 */
    flex-wrap: wrap; /* 标准语法 */
}

.text-overflow {
    white-space: nowrap; /* 禁止换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 超出部分用省略号代替 */
}

.rotate-90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: all 0.5s;
}

.shrink-0 {
    flex-shrink: 0;
}

.relative {
    position: relative;
}

.full-cover-link {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 100;
    top: 0;
    left: 0;
}

.menu-box {
}

.menu-list {
    margin: 0 0 10px;
}

.menu-list .menu-list {
    margin: 0 0 0;
    display: none;
    height: 350px;
    overflow-y: auto;
}

.menu-list .menu-item {
    margin: 0 24px 10px;
    cursor: pointer;
    height: 36px;
    border-radius: 4px;
    padding: 0 4px;
}

.menu-item-one-level {
    position: relative;
}

.menu-item-one-level::after {
    content: ' ';
    width: 4px;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: -24px;
    background-color: #4262d7;
    border-radius: 0 6px 6px 0;
    display: none;
}

.menu-list .menu-item:hover,
.menu-list .menu-item.active {
    background: #f3f2f5;
    font-weight: bold;
}

.menu-list .menu-item-one-level:hover:after,
.menu-list .menu-item-one-level.active:after {
    display: block;
}

.menu-list .menu-item-two-level {
    margin: 0 24px 7px 50px;
}

.menu-item .menu-title {
    margin: 0 7px 0 15px;
}

.menu-item-two-level .menu-title {
    margin: 0 7px;
    color: #666;
}

.menu-item .menu-icon {
    width: 15px;
    height: 15px;
}

.menu-item .menu-arrow {
    width: 15px;
    height: 15px;
}

.tabs-box {
    padding: 0 50px;
    /* margin: 0 0 24px; */
}

.tab-item {
    cursor: pointer;
    background: #fff;
    height: 40px;
    min-width: 120px;
    padding: 0 15px;
    border-radius: 20px;
    box-sizing: border-box;
    margin-right: 15px;
    margin-top: 7px;
    margin-bottom: 7px;
}

.tab-item.active {
    background: #4263d7;
    color: #fff;
}

.tab-item img {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.tab-item img.icon {
    display: block;
}

.tab-item img.default {
    display: none;
}

.tab-item.active img.icon {
    display: none;
}

.tab-item.active img.default {
    display: block;
}

.index-page-top {
    height: 240px;
    box-sizing: border-box;
    padding: 0 50px;
    width: 100%;
    /* margin:0 0 24px; */
}

.index-top-banner {
    width: 25%;
    min-width: 390px;
    margin-right: 50px;
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.banner-swiper-pagination {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.swiper-pagination-bullet-active {
    background: #4263d7;
}

.index-top-right {
    overflow: hidden;
}

.index-welcome {
    height: 80px;
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
}

.index-function-card {
    height: 160px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.index-function-card .function-card {
    width: 270px;
    border-radius: 8px;
    box-sizing: border-box;
    background: #5e70b0;
    padding: 20px 25px;
    color: #fff;
    overflow: hidden;
}

.index-function-card .function-card .function-card-content {
    height: 100%;
}

.index-function-card .function-card:hover .function-card-content {
    transform: scale(1.07); /* 放大倍数 */
    transform-origin: center center; /* 放大中心点 */
    transition: all 0.5s;
}

.function-card:nth-child(2n) {
    background: #55628e;
}

.fc-title {
    font-size: 20px;
    font-weight: bold;
}

.fc-sub-title {
    margin: 10px 0;
    font-size: 12px;
}

.fc-start img {
    width: 12px;
    height: 12px;
}

.index-function-card .swiper-button-prev,
.index-function-card .swiper-button-next {
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 20px;
}

.index-function-card .swiper-button-prev::after,
.index-function-card .swiper-button-next::after {
    display: none;
}

.index-function-card .swiper-button-prev {
    background: #fff url('./icon/arrow-left.png') no-repeat center / 20px 20px;
}

.index-function-card .swiper-button-next {
    background: #fff url('./icon/arrow-right.png') no-repeat center / 20px 20px;
}

.index-common-funcs {
    height: 46px;
    margin-top: 24px;
}

.inf-title {
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 20px;
}

.common-funcs-swiper {
    overflow: hidden;
    height: 46px;
}

.common-funcs-swiper .common-func-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: auto;
    padding: 0 20px;
    margin-right: 24px;
}

.common-funcs-swiper .common-func-card img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.terrbox {
    padding-top: 0 !important;
}

.scroll-loading {
    color: #999;
    font-size: 12px;
    width: 100%;
    text-align: center;
}

/* 标准浏览器 */
::-webkit-scrollbar {
    width: 2px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* IE浏览器 */
body {
    scrollbar-face-color: #888 !important;
    scrollbar-track-color: #f1f1f1 !important;
    scrollbar-arrow-color: #555 !important;
    scrollbar-shadow-color: #666 !important;
    scrollbar-highlight-color: #777 !important;
    scrollbar-3dlight-color: #999 !important;
    scrollbar-darkshadow-color: #555 !important;
}

/* Firefox 64+ */
html {
    scrollbar-width: thin; /* auto | thin | none */
    scrollbar-color: #888 #f1f1f1; /* 滑块颜色 轨道颜色 */
}
