@charset "utf-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
span,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-text-size-adjust: none;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}
html,
body {
  font-size: 14px;
  height: 100%;
  background: #f5f6f7;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Microsoft YaHei", "宋体";
  letter-spacing: 0;
}
ins,
a {
  text-decoration: none;
  transition: color .1s ease;
  -webkit-transition: color .1s ease;
  color: #444444;
}
a:link,
a:visited {
  text-decoration: none;
}
h5 {
  margin-bottom: 5px;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/*
 * flex.less
 * v1.2.0 MIT License
 * http://www.moonlight313.cn
 * Copyright (c) 2016.7.8 Moonlight, Inc.
 *
*/
.display {
  /* 2009 spec */
  display: -webkit-box;
  display: -moz-box;
  display: -o-box;
  /* 混合 */
  display: -ms-flexbox;
  /* 新版语法*/
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.box_orient {
  /* UC 浏览器 使用flex-direction: column;的时候需要加上*/
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
}
.align_items_center {
  /*垂直居中*/
  /*老版本语法*/
  -webkit-box-align: center;
  -moz-box-align: center;
  /*混合版本语法*/
  -ms-flex-align: center;
  /*新版本语法*/
  -webkit-align-items: center;
  align-items: center;
}
.justify_content_center {
  /*水平居中*/
  /*老版本语法*/
  -webkit-box-pack: center;
  -moz-box-pack: center;
  /*混合版本语法*/
  -ms-flex-pack: center;
  /*新版本语法*/
  -webkit-justify-content: center;
  justify-content: center;
}
.justify_content_space_between {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex_flow {
  flex-flow: wrap;
  -ms-flex-flow: wrap;
}
/*
 * icon.less
 * v1.1.1 MIT License
 * Copyright (c) 2018-7-9 Gjb, Inc.
 *
*/
.icon {
  background-image: url('../images/icon.png');
  width: 30px;
  height: 30px;
}
.icon-accounts {
  width: 20px;
  height: 20px;
  background-position: 0px -63px;
}
.icon-password {
  width: 20px;
  height: 20px;
  background-position: -21px -64px;
}
.icon-move-left {
  width: 16px;
  height: 16px;
  background-position: -16px -16px;
}
.icon-page-home {
  width: 20px;
  height: 20px;
  background-position: 0 -35px;
}
.icon-move-right {
  width: 16px;
  height: 16px;
  background-position: -34px -16px;
}
.icon-page-down {
  width: 16px;
  height: 16px;
  background-position: -34px -36px;
}
.icon-page-shrink {
  width: 16px;
  height: 16px;
  background-position: -17px 0px;
}
.icon-page-set {
  width: 16px;
  height: 16px;
  background-position: 0 0;
}
.icon-page-add {
  width: 16px;
  height: 16px;
  background-position: 16px 0;
}
.icon-page-close {
  width: 16px;
  height: 16px;
  background-position: 0px -17px;
}
.icon-page-news {
  width: 32px;
  height: 15px;
  background-position: -10px -86px;
  vertical-align: middle;
  display: inline-block;
  background-repeat: no-repeat;
  margin: 0 0 0px 7px;
}
/*
 * font-icon.less
 * v1.1.1 MIT License
 * Copyright (c) 2018-5-11 Gjb, Inc.
 *
*/
@font-face {
  font-family: 'icomoon';
  src: url('fonts/icomoon.eot?e7d6u5');
  src: url('fonts/icomoon.eot?e7d6u5#iefix') format('embedded-opentype'), url('fonts/icomoon.ttf?e7d6u5') format('truetype'), url('fonts/icomoon.woff?e7d6u5') format('woff'), url('fonts/icomoon.svg?e7d6u5#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-cancel:before {
  content: "\e900";
}
.icon-close:before {
  content: "\e901";
}
.icon-close_fill:before {
  content: "\e902";
}
.icon-exit:before {
  content: "\e903";
}
.icon-menu:before {
  content: "\e904";
}
.icon-skin:before {
  content: "\e905";
}
.icon-system_set:before {
  content: "\e906";
}
.icon-user:before {
  content: "\e907";
}
/*
 * page.less
 * v1.1.1 MIT License
 * Copyright (c) 2018-7-9 Gjb, Inc.
 *
*/
.page-wrap {
  width: 100%;
  height: 100%;
  /* 2009 spec */
  display: -webkit-box;
  display: -moz-box;
  display: -o-box;
  /* 混合 */
  display: -ms-flexbox;
  /* 新版语法*/
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.page-head {
  height: 50px;
  background: #0679c9;
  background-image: url('../images/page-head-bg.png');
  background-repeat: no-repeat;
  background-position: left bottom;
}
.page-head .page-logo {
  margin: 13px;
}
.page-tab {
  position: relative;
  height: 40px;
  background: #fff;
  border-bottom: 1px solid #e3e3e3;
}
.page-tab a {
  display: inline-block;
  text-align: center;
}
.page-tab a i {
  display: inline-block;
  margin-top: 9px;
  vertical-align: top;
}
.page-tab-l,
.page-tab-r {
  position: absolute;
  top: 0;
  font-size: 0;
}
.page-tab-l a,
.page-tab-r a {
  width: 50px;
  height: 39px;
}
.page-tab-l a:hover,
.page-tab-r a:hover,
.page-tab-l a.active,
.page-tab-r a.active {
  background: #eaf1f6;
}
.page-tab-l {
  left: 0;
}
.page-tab-r {
  right: 0;
}
.page-tab-c {
  padding: 0 100px;
  line-height: 40px;
}
.page-tab-c ul li {
  float: left;
}
.page-tab-c ul li a {
  padding: 0 10px;
}
.page-tab-c ul li a i {
  margin-top: 13px;
  margin-left: 5px;
  color: #999;
}
.page-tab-c ul li a i:hover {
  color: red;
}
.page-tab-c ul li a:hover {
  background: #d7eaf8;
}
.page-content {
  /* 2009 spec */
  display: -webkit-box;
  display: -moz-box;
  display: -o-box;
  /* 混合 */
  display: -ms-flexbox;
  /* 新版语法*/
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 7.5px;
  overflow: auto;
  overflow-x: hidden;
}
.page-content-l,
.page-content-r {
  float: left;
  margin: 7.5px;
}
.page-content-l {
  width: 70%;
}
.page-content-l .animated:nth-child(1) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -ms--animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
}
.page-content-l .animated:nth-child(2) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  -ms--animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
}
.page-content-l .animated:nth-child(3) {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -ms--animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
}
.page-content-r {
  width: 30%;
}
.page-content-r .animated:nth-child(1) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -ms--animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
}
.page-content-r .animated:nth-child(2) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  -ms--animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
}
.page-content-r .animated:nth-child(3) {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -ms--animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
}
.page-item {
  padding: 15px;
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
}
.page-item-title {
  margin-bottom: 15px;
}
.page-item-title .title-name {
  float: left;
  color: #5a5a5a;
}
.page-item-title .title-name .nav-tabs {
  margin-top: -15px;
  margin-left: -15px;
  border: none;
}
.page-item-title .title-name .nav > li > a:focus,
.page-item-title .title-name .nav > li > a:hover {
  color: #6195b7;
  background: none;
}
.page-item-title .title-name .nav-tabs > li > a,
.page-item-title .title-name .nav-tabs > li.active > a,
.page-item-title .title-name .nav-tabs > li.active > a:focus,
.page-item-title .title-name .nav-tabs > li.active > a:hover {
  border: none;
}
.page-item-title .title-name .nav-tabs > li.active > a,
.page-item-title .title-name .nav-tabs > li.active > a:focus,
.page-item-title .title-name .nav-tabs > li.active > a:hover {
  color: #6195b7;
  border-bottom: 3px solid #8fc8ec;
}
.page-item-title .title-btn {
  float: right;
}
.page-item-title .title-btn a {
  margin: 0 5px;
  outline: none;
}
.page-item-title .title-btn a i {
  display: inline-block;
}
/* 搜索 */
.search {
  position: relative;
  margin: 0 auto 15px;
  border: 1px solid #e7e7e7;
  height: 37px;
  border-radius: 3px;
}
.search-btn {
  background-image: url('../images/btn-bg.png');
  display: block;
  width: 70px;
  height: 37px;
  text-align: center;
  padding-top: 7px;
  position: absolute;
  right: -1px;
  top: -1px;
  border-radius: 0 3px 3px 0;
}
.search-input {
  line-height: 35px;
  margin-right: 65px;
}
.search-input input {
  width: 100%;
  border: none;
  color: #c8c8c8;
  padding-left: 10px;
}
.chart-shooting {
  width: 300px;
  height: 300px;
  margin: 0 auto;
}
/* 模态窗重置 */
.modal-title {
  font-size: 16px;
}
/*
 * record.less
 * v1.1.1 MIT License
 * Copyright (c) 2018-7-9 Gjb, Inc.
 *
*/
.record-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.record-login {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  /* 2009 spec */
  display: -webkit-box;
  display: -moz-box;
  display: -o-box;
  /* 混合 */
  display: -ms-flexbox;
  /* 新版语法*/
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.record-home {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: none;
}
/*
 * login.less
 * v1.1.1 MIT License
 * Copyright (c) 2018-7-9 Gjb, Inc.
 *
*/
/* css3动画延迟时间animation-delay */
.login-head,
.login-footer {
  height: 84px;
  text-align: center;
  background: #fff;
}
.login-head img {
  margin-top: 30px;
}
.login-footer p {
  line-height: 84px;
  color: #616060;
}
.login-footer p span {
  margin-right: 20px;
}
.login-centre {
  position: relative;
  background: #1d6dc0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.login-centre-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 570px;
  margin-top: -285px;
  margin-left: -450px;
}
.login-banner {
  position: relative;
  float: left;
  width: 500px;
  height: 500px;
  margin-top: 35px;
  overflow: hidden;
}
.login-banner-bg01 {
  width: 480px;
  height: 480px;
  margin: 10px;
  background-image: url('../images/login-bg1.png');
  background-repeat: no-repeat;
  animation: radar-beam 20s infinite linear;
}
.login-banner-bg02 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  margin-top: -195px;
  margin-left: -195px;
  background: #1963af;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -ms--animation-delay: 1s;
  -moz-animation-delay: 1s;
}
.login-banner-bg03 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  margin-top: -195px;
  margin-left: -195px;
  background-image: url('../images/login-bg3.png');
  background-repeat: no-repeat;
  z-index: 1;
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  -ms--animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
}
.login-form {
  float: right;
  width: 310px;
  height: 350px;
  margin: 130px 15px 0 0;
  background: #fff;
}
.login-form form {
  padding: 15px;
}
.login-form form h2 {
  padding-bottom: 15px;
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: bold;
  color: #1b71c6;
  border-bottom: 1px solid #cacaca;
}
.login-form form > label {
  height: 40px;
  margin-bottom: 20px;
  display: block;
  position: relative;
  color: #999;
}
.login-form form > label i {
  position: absolute;
  top: 10px;
  left: 10px;
  line-height: 40px;
  font-size: 22px;
  text-align: center;
  background-repeat: no-repeat;
  color: #fff;
}
.login-form form > label input[type="text"],
.login-form form > label input[type="password"] {
  height: 40px;
  width: 100%;
  padding-left: 40px;
  border: 1px solid #bbb;
  font-weight: 400;
}
.login-form form .btn {
  width: 100%;
  line-height: 40px;
  margin-top: 15px;
  padding: 0;
  font-size: 18px;
  color: #fff;
  letter-spacing: 5px;
  background: #56ca67;
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.login-form form .btn:hover {
  background: #43b754;
}
.login-form form .checkbox label {
  margin-right: 15px;
}
.login-icon {
  position: absolute;
}
.login-icon01 {
  top: 135px;
  left: 310px;
  width: 49px;
  height: 49px;
  background-image: url('../images/login-icon01.png');
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
  -ms--animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
}
.login-icon02 {
  top: 195px;
  left: 360px;
  width: 58px;
  height: 58px;
  background-image: url('../images/login-icon02.png');
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -ms--animation-delay: 2s;
  -moz-animation-delay: 2s;
}
.login-icon03 {
  top: 255px;
  left: 290px;
  width: 73px;
  height: 73px;
  background-image: url('../images/login-icon03.png');
  animation-delay: 2.2s;
  -webkit-animation-delay: 2.2s;
  -ms--animation-delay: 2.2s;
  -moz-animation-delay: 2.2s;
}
.login-icon04 {
  top: 260px;
  left: 155px;
  width: 89px;
  height: 89px;
  background-image: url('../images/login-icon04.png');
  animation-delay: 2.4s;
  -webkit-animation-delay: 2.4s;
  -ms--animation-delay: 2.4s;
  -moz-animation-delay: 2.4s;
}
.login-icon05 {
  top: 205px;
  left: 35px;
  width: 100px;
  height: 100px;
  background-image: url('../images/login-icon05.png');
  animation-delay: 2.6s;
  -webkit-animation-delay: 2.6s;
  -ms--animation-delay: 2.6s;
  -moz-animation-delay: 2.6s;
}
.login-icon06 {
  top: 65px;
  left: -10px;
  width: 124px;
  height: 74px;
  background-image: url('../images/login-icon06.png');
  animation-delay: 2.8s;
  -webkit-animation-delay: 2.8s;
  -ms--animation-delay: 2.8s;
  -moz-animation-delay: 2.8s;
}
@keyframes radar-beam {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
 * menu.less
 * v1.1.1 MIT License
 * Copyright (c) 2018-7-9 Gjb, Inc.
 *
*/
.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > li {
  position: relative;
  float: left;
  white-space: nowrap;
}
.nav-menu > li ul {
  display: none;
  position: absolute;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  z-index: 999;
}
.nav-menu > li ul li {
  line-height: 45px;
  padding: 0 15px;
  background: #086cb1;
}
.nav-menu > li ul li.selected a {
  color: #fff700;
}
.nav-menu a {
  position: relative;
  padding: 0 15px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "微软雅黑";
  font-size: 14px;
  outline: none;
}
.nav-menu a .user {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  overflow: hidden;
  vertical-align: middle;
  margin-right: 5px;
}
.nav-menu a .user img {
  vertical-align: top;
}
.nav-menu li:hover {
  background: #086cb1;
}
.nav-menu li:hover ul {
  display: block;
}
.nav-menu li:hover > a,
.nav-menu li:hover > a i {
  color: #fff208;
}
.nav-menu i {
  font-size: 22px;
  margin-right: 5px;
  color: #fff;
  vertical-align: text-bottom;
}
.menu {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 50px;
}
.menu > i {
  font-size: 24px;
  color: #b3b3b3;
}
.menu i.icon-menu,
.menu .icon-close,
.nav-menu .icon-close,
.menu .menubackground,
.nav-menu .menubackground {
  display: none;
}
.account-box .account-item {
  margin-bottom: 30px;
}
.account-box .account-item:nth-child(2) {
  margin-bottom: 5px;
}
.account-sum {
  position: relative;
  float: left;
  width: 75px;
  height: 65px;
  background: #e3eff7;
  border-radius: 3px;
  text-align: center;
}
.account-sum:after {
  position: absolute;
  top: 34%;
  right: -10px;
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #e3eff7;
}
.account-sum p {
  padding: 4px 0;
}
.account-sum .sum span {
  width: 26px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  background: #cfe4f1;
  color: #fd9604;
}
.account-menu {
  margin-left: 100px;
}
.account-menu a {
  width: 25%;
  float: left;
  color: #fff;
  transition: all 0.5s ease-out;
}
.account-menu a:hover {
  transform: translateY(-8px);
  transition-property: transform;
}
.account-menu a:hover > div {
  box-shadow: 0px 5px 10px #b4b4b4;
}
.account-menu .col-md-12 {
  padding-right: 7.5px;
  padding-left: 7.5px;
}
.account-menu-item {
  margin: 0 7.5px;
  height: 65px;
  padding: 0 15px;
  border-radius: 3px;
  transition: all 0.5s ease-out;
}
.account-menu-item p {
  padding: 10px 0;
  font-size: 12px;
}
.account-menu-item h2 {
  font-size: 20px;
  font-weight: bold;
}
.account-menu-item.color-bg1 {
  background: #ff5a5e;
  background-image: url('../images/menu01.png');
}
.account-menu-item.color-bg2 {
  background: #f9a34a;
  background-image: url('../images/menu02.png');
}
.account-menu-item.color-bg3 {
  background: #f6be13;
  background-image: url('../images/menu03.png');
}
.account-menu-item.color-bg4 {
  background: #56ca67;
  background-image: url('../images/menu04.png');
}
.account-menu-item.color-bg5 {
  background: #ff5a5e;
  background-image: url('../images/menu06.png');
}
.account-menu-item.color-bg6 {
  background: #f9a34a;
  background-image: url('../images/menu06.png');
}
.account-menu-item.color-bg7 {
  background: #f6be13;
  background-image: url('../images/menu07.png');
}
.account-menu-item.color-bg8 {
  background: #56ca67;
  background-image: url('../images/menu08.png');
}
.account-menu-item.color-bg1,
.account-menu-item.color-bg2,
.account-menu-item.color-bg3,
.account-menu-item.color-bg4,
.account-menu-item.color-bg5,
.account-menu-item.color-bg6,
.account-menu-item.color-bg7,
.account-menu-item.color-bg8 {
  background-repeat: no-repeat;
  background-position: right bottom;
}
/*
 * system.less
 * v1.1.1 MIT License
 * Copyright (c) 2018-7-10 Gjb, Inc.
 *
*/
.system {
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 100%;
  overflow: hidden;
}
.system.lately {
  border: none;
}
.system.lately .system-menu {
  height: auto;
}
.system-tab ul {
  position: relative;
  border-bottom: 1px solid #e7e7e7;
  font-size: 0;
}
.system-tab ul li {
  display: inline-block;
  width: 100px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
}
.system-tab ul li.on a {
  color: #6195b7;
}
.system-tab ul p {
  position: absolute;
  top: 39px;
  left: 0px;
  width: 100px;
  height: 7px;
  border-top: 3px solid #8fc8ec;
  overflow: hidden;
}
.system-menu {
  height: 270px;
  overflow: auto;
}
.system-menu-item {
  display: none;
  overflow: hidden;
}
.system-menu-item.active {
  display: block;
}
.system-link {
  float: left;
  margin: 15px 20px;
  width: 87px;
  text-align: center;
  transition: all 0.3s ease-out;
}
.system-link-bg {
  height: 73px;
  width: 73px;
  line-height: 73px;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #e3eff7;
  transition: all 0.3s ease-out;
}
.system-link-name {
  color: #5f5f5f;
  margin-top: 10px;
  transition: all 0.3s ease-out;
}
.system-link:hover {
  transform: scale(0.9);
  -ms-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -o-transform: scale(0.9);
}
.system-link:hover .system-link-bg {
  background: #a4daff;
}
.system-link:hover .system-link-name {
  color: #36adff;
}
.software-wrap .system-link {
  margin: 15px;
}
.menu-set {
  margin-bottom: 25px;
}
.menu-set .system-menu-item {
  display: block;
}
.menu-set .system-link {
  margin: 5px;
  width: 80px;
}
.menu-set .system-link.active .system-link-bg,
.menu-set .system-link.active:hover .system-link-bg {
  border-color: #5cb85c;
  background: #c8ee9b;
}
.menu-set .system-link.active .system-link-name,
.menu-set .system-link.active:hover .system-link-name {
  color: #5cb85c;
}
.menu-set .system-link:hover {
  transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
}
.menu-set .system-link:hover .system-link-bg {
  background: #e3eff7;
}
.menu-set .system-link:hover .system-link-name {
  color: #5f5f5f;
}
.menu-set .system-link-bg {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background: #e9e9e9;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px dashed #b8b8b8;
}
.menu-set .system-link-name {
  font-size: 12px;
}
/*-- 适应分辨率 Mobile------------------------------------------*/
@media only screen and (max-width: 1366px) {
  .software-wrap .system-link {
    width: 31%;
    margin: 15px 1%;
  }
}
/*
 * notice.less
 * v1.1.1 MIT License
 * Copyright (c) 2018-7-10 Gjb, Inc.
 *
*/
.notice-list li {
  background-image: url('../images/notice1.png');
  background-repeat: no-repeat;
  background-position: 2px 8px;
  padding-left: 13px;
  margin-top: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 18px;
  overflow: hidden;
}
.notice-list li.notice-news {
  padding-right: 50px;
}
.notice-list li.notice-news i {
  position: absolute;
  top: 3px;
  right: -40px;
}
.notice-link {
  position: relative;
  max-width: 100%;
  display: inline-block;
}
.notice-link:hover {
  color: #67bdf5;
}
.notice-date {
  margin-top: 3px;
  color: #b4b4b4;
  font-size: 12px;
}
