@charset "utf-8";
/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  /* -webkit-overflow-scrolling : touch;  */
}
/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
  resize: none;
  border: none;
}
/* 取消链接高亮  */
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* 设置HTML5元素为块 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
/* 图片自适应 */
img {
  width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */
  display: block;
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
}
/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
body {
  font: 14px 'Microsoft YaHei', '宋体', Tahoma, Arial, sans-serif;
  color: #555;
  background-color: #F7F7F7;
}
em,
i {
  font-style: normal;
}
ul,
li,
ol {
  list-style-type: none;
}
strong {
  font-weight: normal;
}
.clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
}
.clearfix {
  zoom: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-family: 'Microsoft YaHei';
}
img {
  border: none;
}
.scroll_box::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 4px;
  scrollbar-arrow-color: red;
}
.scroll_box::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.2);
  scrollbar-arrow-color: red;
}
.scroll_box::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
}
html,
body {
  width: 100%;
  height: 100%;
}
.main-container {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  background: -webkit-linear-gradient(left, #f9f9f9, #e5fffe);
  background: linear-gradient(90deg, #f9f9f9, #e5fffe);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.main-container .main_header {
  width: 100%;
  height: 0.8rem;
  text-align: center;
  position: fixed;
}
.main-container .main_header .top-title {
  padding-top: 0.1rem;
  color: #666f6e;
  font-size: 0.36rem;
  font-weight: 500;
}
.main-container .main_header .top-subTitle {
  color: #dbe8e8;
  font-size: 0.12rem;
  letter-spacing: 0.08rem;
}
.main-container .main_header .top-underline {
  display: block;
  width: 100%;
  height: 0.01333rem;
  margin-top: 0.08rem;
}
.main-container .view_box {
  width: 100%;
  padding-top: 1.1rem;
  padding-left: 3.4rem;
  box-sizing: border-box;
}
.main-container .view_box .nav-side {
  width: 3rem;
  position: absolute;
  left: 0;
  text-align: center;
}
.main-container .view_box .nav-side .nav-list {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #999;
  padding-left: 0.1rem;
}
.main-container .view_box .nav-side .nav-list .nav-item {
  width: 3rem;
  height: 0.77rem;
  line-height: 0.77rem;
  font-size: 0.28rem;
  overflow: hidden;
  padding: 5px;
  box-sizing: border-box;
  margin-bottom: 0.05rem;
  border-radius: 0.02rem;
  position: relative;
  cursor: pointer;
  background: #fff;
}
.main-container .view_box .nav-side .nav-list .nav-item .icon {
  width: 0.28rem;
  height: 0.31rem;
  position: absolute;
  left: 0.2rem;
  top: 0.27rem;
  opacity: 0.5;
}
.main-container .view_box .nav-side .nav-list .nav-item .notice_ico_system {
  width: 0.27rem;
  height: 0.29rem;
  left: 0.2rem;
  top: 0.25rem;
}
.main-container .view_box .nav-side .nav-list .nav-item .text {
  width: 100%;
  height: 100%;
  line-height: 0.64rem;
  border: 1px solid #adadad70;
  border-radius: 2px;
  color: #777777;
  padding: 0 0.42rem;
  box-sizing: border-box;
  text-align: center;
}
.main-container .view_box .nav-side .nav-list .active {
  position: relative;
}
.main-container .view_box .nav-side .nav-list .active .bg {
  width: 2.91rem;
  height: 0.7rem;
  background: url("../img/nav_active_bg.png") no-repeat;
  background-size: cover;
  position: absolute;
}
.main-container .view_box .nav-side .nav-list .active .icon {
  opacity: 1;
}
.main-container .view_box .nav-side .nav-list .active .arrow {
  display: inline-block;
  width: 0.1rem;
  height: 0.16rem;
  background: url('../img/notice_ico_current.png') no-repeat;
  background-size: contain;
  position: absolute;
  right: 0.2rem;
  top: 0.32rem;
}
.main-container .view_box .nav-side .nav-list .active .text {
  color: #404040;
}
.main-container .view_box .view_side {
  width: 100%;
  height: 88vh;
  background: #ffff;
  overflow: auto;
}
.main-container .view_box .view_side .notice_box {
  padding: 0.2rem;
  box-sizing: border-box;
}
.main-container .view_box .view_side .notice_box .notice_info .notice_title {
  width: 100%;
  height: 0.7rem;
  line-height: 0.7rem;
  text-align: left;
  text-indent: 10px;
  font-size: 0.38rem;
  font-weight: 500;
  color: #fff;
  background-color: #5e5e5e;
  position: relative;
}
.main-container .view_box .view_side .notice_box .notice_info .notice_title .bg {
  width: 3.02rem;
  height: 0.7rem;
  background: url('../img/view_title_bg.png') no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
.main-container .view_box .view_side .notice_box .notice_content {
  margin-top: 0.2rem;
}
.main-container .view_box .view_side .notice_box .notice_content p {
  font-size: 0.28rem;
  color: #404040;
}
@media screen and (max-width: 750px) {
  .main-container .view_box .view_side .notice_box .notice_content p {
    font-size: 14px !important;
  }
  .main-container .view_box .nav-side .nav-list .nav-item .text {
    width: 100%;
    height: 100%;
    line-height: 0.5rem !important;
    border: 1px solid #adadad70;
    border-radius: 2px;
    color: #777777;
    text-align: center;
  }
}
@font-face {
  font-family: 'alisea';
  src: url('../font/AlibabaSansSEA-Md.otf');
}
.th {
  font-family: 'alisea' !important;
}
.th .top-title,
.th .top-subTitle,
.th .nav-side,
.th .nav-list {
  font-family: 'alisea' !important;
}
