/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
html,
body {
  height: 100%;
  width: 100%;
}
body {
  font-size: 0.28rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #f5f5f5;
}
a {
  color: #333;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
input[type="text"],
input[type="search"],
textarea {
  border: none;
  outline: none;
  resize: none;
  -webkit-appearance: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clearfix::after {
  content: "";
  display: block;
  visibility: hidden;
  height: 0;
  line-height: 0;
  clear: both;
}
img {
  display: block;
  width: 100%;
}
.radius {
  border-radius: 3px;
  overflow: hidden;
}
/* 此文件专门用于设置媒体查询, 来动态修改html根字体大小 */
@media (min-width: 320px) {
  html {
    font-size: 50px;
  }
}
@media (min-width: 360px) {
  html {
    font-size: 56.25px;
  }
}
@media (min-width: 375px) {
  html {
    font-size: 58.59375px;
  }
}
@media (min-width: 384px) {
  html {
    font-size: 60px;
  }
}
@media (min-width: 400px) {
  html {
    font-size: 62.5px;
  }
}
@media (min-width: 414px) {
  html {
    font-size: 64.6875px;
  }
}
@media (min-width: 424px) {
  html {
    font-size: 66.25px;
  }
}
@media (min-width: 480px) {
  html {
    font-size: 75px;
  }
}
@media (min-width: 540px) {
  html {
    font-size: 84.375px;
  }
}
@media (min-width: 640px) {
  html {
    font-size: 100px;
  }
}
/*
 * flex.less
 * v1.2.0 MIT License
 * http://www.moonlight313.cn
 * Copyright (c) 20190107 Moonlight, Inc.
 *
*/
.display {
  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;
}
.flex-align_center {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.align_items_center {
  -webkit-align-items: center;
  align-items: center;
}
.justify_content_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;
}
/*
 * user.less
 * v1.2.0 MIT License
 * http://www.moonlight313.cn
 * Copyright (c) 2018.10.25 Moonlight, Inc.
 *
*/
.user {
  width: 60px;
  height: 60px;
  font-size: 21.42857143px;
  border-radius: 60px;
  text-align: center;
  overflow: hidden;
  color: #fff;
  font-weight: 400;
  margin: 0 15px 0 0;
  flex-shrink: 0;
}
.user.user-img {
  background: none;
}
.user img {
  display: block;
  width: 100%;
}
.user-name {
  font-size: 18px;
  color: #444;
}
.user-box {
  display: flex;
  align-items: center;
}
.user_s {
  width: 24px;
  height: 24px;
  font-size: 8.57142857px;
  border-radius: 24px;
}
.user_m {
  width: 48px;
  height: 48px;
  font-size: 17.14285714px;
  border-radius: 48px;
}
.user_l {
  width: 50px;
  height: 50px;
  font-size: 17.85714286px;
  border-radius: 50px;
}
.user_xl {
  width: 80px;
  height: 80px;
  font-size: 28.57142857px;
  border-radius: 80px;
}
.user-news h2 {
  font-size: 16px;
  color: #333;
  margin-bottom: .4rem;
}
.user-news p {
  display: flex;
  font-size: 15px;
  color: #999;
}
.user-news p i {
  margin-right: .25rem;
}
@media screen and (max-width: 320px) {
  .notice-img {
    width: 3.4rem;
  }
  .notice-text {
    line-height: 1rem;
  }
  .notice-text p {
    font-size: .6rem;
  }
}
.page-spacing {
  padding: 15px;
}
/*
 * personal.less
 * v1.2.0 MIT License
 * http://www.moonlight313.cn
 * Copyright (c) 2018.10.25 Moonlight, Inc.
 *
*/
.personal-head {
  position: relative;
  height: 2rem;
  display: flex;
  align-items: center;
  padding: 0 30px;
  margin-bottom: 15px;
  background: #fff;
}
.personal-head:before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid #e7e7e7;
  color: #e7e7e7;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
}
/*
 * font-icon.less
 * v1.1.1 MIT License
 * http://www.moonlight313.cn
 * Copyright (c) 2018-10-19 Moonlight, Inc.
 *
*/
@font-face {
  font-family: 'icomoon';
  src: url('tui/fonts/icomoon.eot?mvenxm');
  src: url('tui/fonts/icomoon.eot?mvenxm#iefix') format('embedded-opentype'), url('tui/fonts/icomoon.ttf?mvenxm') format('truetype'), url('tui/fonts/icomoon.woff?mvenxm') format('woff'), url('tui/fonts/icomoon.svg?mvenxm#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="tl-icon-"],
[class*=" tl-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;
}
.tl-icon-activity:before {
  content: "\e900";
}
.tl-icon-airplay:before {
  content: "\e901";
}
.tl-icon-alert-circle:before {
  content: "\e902";
}
.tl-icon-alert-octagon:before {
  content: "\e903";
}
.tl-icon-alert-triangle:before {
  content: "\e904";
}
.tl-icon-align-center:before {
  content: "\e905";
}
.tl-icon-align-justify:before {
  content: "\e906";
}
.tl-icon-align-left:before {
  content: "\e907";
}
.tl-icon-align-right:before {
  content: "\e908";
}
.tl-icon-anchor:before {
  content: "\e909";
}
.tl-icon-aperture:before {
  content: "\e90a";
}
.tl-icon-archive:before {
  content: "\e90b";
}
.tl-icon-arrow-down:before {
  content: "\e90c";
}
.tl-icon-arrow-down-circle:before {
  content: "\e90d";
}
.tl-icon-arrow-down-left:before {
  content: "\e90e";
}
.tl-icon-arrow-down-right:before {
  content: "\e90f";
}
.tl-icon-arrow-left:before {
  content: "\e910";
}
.tl-icon-arrow-left-circle:before {
  content: "\e911";
}
.tl-icon-arrow-right:before {
  content: "\e912";
}
.tl-icon-arrow-right-circle:before {
  content: "\e913";
}
.tl-icon-arrow-up:before {
  content: "\e914";
}
.tl-icon-arrow-up-circle:before {
  content: "\e915";
}
.tl-icon-arrow-up-left:before {
  content: "\e916";
}
.tl-icon-arrow-up-right:before {
  content: "\e917";
}
.tl-icon-at-sign:before {
  content: "\e918";
}
.tl-icon-award:before {
  content: "\e919";
}
.tl-icon-bar-chart:before {
  content: "\e91a";
}
.tl-icon-bar-chart-2:before {
  content: "\e91b";
}
.tl-icon-battery:before {
  content: "\e91c";
}
.tl-icon-battery-charging:before {
  content: "\e91d";
}
.tl-icon-bell:before {
  content: "\e91e";
}
.tl-icon-bell-off:before {
  content: "\e91f";
}
.tl-icon-bluetooth:before {
  content: "\e920";
}
.tl-icon-bold:before {
  content: "\e921";
}
.tl-icon-book:before {
  content: "\e922";
}
.tl-icon-book-open:before {
  content: "\e923";
}
.tl-icon-bookmark:before {
  content: "\e924";
}
.tl-icon-box:before {
  content: "\e925";
}
.tl-icon-briefcase:before {
  content: "\e926";
}
.tl-icon-calendar:before {
  content: "\e927";
}
.tl-icon-camera:before {
  content: "\e928";
}
.tl-icon-camera-off:before {
  content: "\e929";
}
.tl-icon-cast:before {
  content: "\e92a";
}
.tl-icon-check:before {
  content: "\e92b";
}
.tl-icon-check-circle:before {
  content: "\e92c";
}
.tl-icon-check-square:before {
  content: "\e92d";
}
.tl-icon-chevron-down:before {
  content: "\e92e";
}
.tl-icon-chevron-left:before {
  content: "\e92f";
}
.tl-icon-chevron-right:before {
  content: "\e930";
}
.tl-icon-chevron-up:before {
  content: "\e931";
}
.tl-icon-chevrons-down:before {
  content: "\e932";
}
.tl-icon-chevrons-left:before {
  content: "\e933";
}
.tl-icon-chevrons-right:before {
  content: "\e934";
}
.tl-icon-chevrons-up:before {
  content: "\e935";
}
.tl-icon-chrome:before {
  content: "\e936";
}
.tl-icon-circle:before {
  content: "\e937";
}
.tl-icon-clipboard:before {
  content: "\e938";
}
.tl-icon-clock:before {
  content: "\e939";
}
.tl-icon-cloud:before {
  content: "\e93a";
}
.tl-icon-cloud-drizzle:before {
  content: "\e93b";
}
.tl-icon-cloud-lightning:before {
  content: "\e93c";
}
.tl-icon-cloud-off:before {
  content: "\e93d";
}
.tl-icon-cloud-rain:before {
  content: "\e93e";
}
.tl-icon-cloud-snow:before {
  content: "\e93f";
}
.tl-icon-code:before {
  content: "\e940";
}
.tl-icon-codepen:before {
  content: "\e941";
}
.tl-icon-command:before {
  content: "\e942";
}
.tl-icon-compass:before {
  content: "\e943";
}
.tl-icon-copy:before {
  content: "\e944";
}
.tl-icon-corner-down-left:before {
  content: "\e945";
}
.tl-icon-corner-down-right:before {
  content: "\e946";
}
.tl-icon-corner-left-down:before {
  content: "\e947";
}
.tl-icon-corner-left-up:before {
  content: "\e948";
}
.tl-icon-corner-right-down:before {
  content: "\e949";
}
.tl-icon-corner-right-up:before {
  content: "\e94a";
}
.tl-icon-corner-up-left:before {
  content: "\e94b";
}
.tl-icon-corner-up-right:before {
  content: "\e94c";
}
.tl-icon-cpu:before {
  content: "\e94d";
}
.tl-icon-credit-card:before {
  content: "\e94e";
}
.tl-icon-crop:before {
  content: "\e94f";
}
.tl-icon-crosshair:before {
  content: "\e950";
}
.tl-icon-database:before {
  content: "\e951";
}
.tl-icon-delete:before {
  content: "\e952";
}
.tl-icon-disc:before {
  content: "\e953";
}
.tl-icon-dollar-sign:before {
  content: "\e954";
}
.tl-icon-download:before {
  content: "\e955";
}
.tl-icon-download-cloud:before {
  content: "\e956";
}
.tl-icon-droplet:before {
  content: "\e957";
}
.tl-icon-edit:before {
  content: "\e958";
}
.tl-icon-edit-2:before {
  content: "\e959";
}
.tl-icon-edit-3:before {
  content: "\e95a";
}
.tl-icon-external-link:before {
  content: "\e95b";
}
.tl-icon-eye:before {
  content: "\e95c";
}
.tl-icon-eye-off:before {
  content: "\e95d";
}
.tl-icon-facebook:before {
  content: "\e95e";
}
.tl-icon-fast-forward:before {
  content: "\e95f";
}
.tl-icon-feather:before {
  content: "\e960";
}
.tl-icon-file:before {
  content: "\e961";
}
.tl-icon-file-minus:before {
  content: "\e962";
}
.tl-icon-file-plus:before {
  content: "\e963";
}
.tl-icon-file-text:before {
  content: "\e964";
}
.tl-icon-film:before {
  content: "\e965";
}
.tl-icon-filter:before {
  content: "\e966";
}
.tl-icon-flag:before {
  content: "\e967";
}
.tl-icon-folder:before {
  content: "\e968";
}
.tl-icon-folder-minus:before {
  content: "\e969";
}
.tl-icon-folder-plus:before {
  content: "\e96a";
}
.tl-icon-gift:before {
  content: "\e96b";
}
.tl-icon-git-branch:before {
  content: "\e96c";
}
.tl-icon-git-commit:before {
  content: "\e96d";
}
.tl-icon-git-merge:before {
  content: "\e96e";
}
.tl-icon-git-pull-request:before {
  content: "\e96f";
}
.tl-icon-github:before {
  content: "\e970";
}
.tl-icon-gitlab:before {
  content: "\e971";
}
.tl-icon-globe:before {
  content: "\e972";
}
.tl-icon-grid:before {
  content: "\e973";
}
.tl-icon-hard-drive:before {
  content: "\e974";
}
.tl-icon-hash:before {
  content: "\e975";
}
.tl-icon-headphones:before {
  content: "\e976";
}
.tl-icon-heart:before {
  content: "\e977";
}
.tl-icon-help-circle:before {
  content: "\e978";
}
.tl-icon-home:before {
  content: "\e979";
}
.tl-icon-image:before {
  content: "\e97a";
}
.tl-icon-inbox:before {
  content: "\e97b";
}
.tl-icon-info:before {
  content: "\e97c";
}
.tl-icon-instagram:before {
  content: "\e97d";
}
.tl-icon-italic:before {
  content: "\e97e";
}
.tl-icon-layers:before {
  content: "\e97f";
}
.tl-icon-layout:before {
  content: "\e980";
}
.tl-icon-life-buoy:before {
  content: "\e981";
}
.tl-icon-link:before {
  content: "\e982";
}
.tl-icon-link-2:before {
  content: "\e983";
}
.tl-icon-linkedin:before {
  content: "\e984";
}
.tl-icon-list:before {
  content: "\e985";
}
.tl-icon-loader:before {
  content: "\e986";
}
.tl-icon-lock:before {
  content: "\e987";
}
.tl-icon-log-in:before {
  content: "\e988";
}
.tl-icon-log-out:before {
  content: "\e989";
}
.tl-icon-mail:before {
  content: "\e98a";
}
.tl-icon-map:before {
  content: "\e98b";
}
.tl-icon-map-pin:before {
  content: "\e98c";
}
.tl-icon-maximize:before {
  content: "\e98d";
}
.tl-icon-maximize-2:before {
  content: "\e98e";
}
.tl-icon-menu:before {
  content: "\e98f";
}
.tl-icon-message-circle:before {
  content: "\e990";
}
.tl-icon-message-square:before {
  content: "\e991";
}
.tl-icon-mic:before {
  content: "\e992";
}
.tl-icon-mic-off:before {
  content: "\e993";
}
.tl-icon-minimize:before {
  content: "\e994";
}
.tl-icon-minimize-2:before {
  content: "\e995";
}
.tl-icon-minus:before {
  content: "\e996";
}
.tl-icon-minus-circle:before {
  content: "\e997";
}
.tl-icon-minus-square:before {
  content: "\e998";
}
.tl-icon-monitor:before {
  content: "\e999";
}
.tl-icon-moon:before {
  content: "\e99a";
}
.tl-icon-more-horizontal:before {
  content: "\e99b";
}
.tl-icon-more-vertical:before {
  content: "\e99c";
}
.tl-icon-move:before {
  content: "\e99d";
}
.tl-icon-music:before {
  content: "\e99e";
}
.tl-icon-navigation:before {
  content: "\e99f";
}
.tl-icon-navigation-2:before {
  content: "\e9a0";
}
.tl-icon-octagon:before {
  content: "\e9a1";
}
.tl-icon-package:before {
  content: "\e9a2";
}
.tl-icon-paperclip:before {
  content: "\e9a3";
}
.tl-icon-pause:before {
  content: "\e9a4";
}
.tl-icon-pause-circle:before {
  content: "\e9a5";
}
.tl-icon-percent:before {
  content: "\e9a6";
}
.tl-icon-phone:before {
  content: "\e9a7";
}
.tl-icon-phone-call:before {
  content: "\e9a8";
}
.tl-icon-phone-forwarded:before {
  content: "\e9a9";
}
.tl-icon-phone-incoming:before {
  content: "\e9aa";
}
.tl-icon-phone-missed:before {
  content: "\e9ab";
}
.tl-icon-phone-off:before {
  content: "\e9ac";
}
.tl-icon-phone-outgoing:before {
  content: "\e9ad";
}
.tl-icon-pie-chart:before {
  content: "\e9ae";
}
.tl-icon-play:before {
  content: "\e9af";
}
.tl-icon-play-circle:before {
  content: "\e9b0";
}
.tl-icon-plus:before {
  content: "\e9b1";
}
.tl-icon-plus-circle:before {
  content: "\e9b2";
}
.tl-icon-plus-square:before {
  content: "\e9b3";
}
.tl-icon-pocket:before {
  content: "\e9b4";
}
.tl-icon-power:before {
  content: "\e9b5";
}
.tl-icon-printer:before {
  content: "\e9b6";
}
.tl-icon-radio:before {
  content: "\e9b7";
}
.tl-icon-refresh-ccw:before {
  content: "\e9b8";
}
.tl-icon-refresh-cw:before {
  content: "\e9b9";
}
.tl-icon-repeat:before {
  content: "\e9ba";
}
.tl-icon-rewind:before {
  content: "\e9bb";
}
.tl-icon-rotate-ccw:before {
  content: "\e9bc";
}
.tl-icon-rotate-cw:before {
  content: "\e9bd";
}
.tl-icon-rss:before {
  content: "\e9be";
}
.tl-icon-save:before {
  content: "\e9bf";
}
.tl-icon-scissors:before {
  content: "\e9c0";
}
.tl-icon-search:before {
  content: "\e9c1";
}
.tl-icon-send:before {
  content: "\e9c2";
}
.tl-icon-server:before {
  content: "\e9c3";
}
.tl-icon-settings:before {
  content: "\e9c4";
}
.tl-icon-share:before {
  content: "\e9c5";
}
.tl-icon-share-2:before {
  content: "\e9c6";
}
.tl-icon-shield:before {
  content: "\e9c7";
}
.tl-icon-shield-off:before {
  content: "\e9c8";
}
.tl-icon-shopping-bag:before {
  content: "\e9c9";
}
.tl-icon-shopping-cart:before {
  content: "\e9ca";
}
.tl-icon-shuffle:before {
  content: "\e9cb";
}
.tl-icon-sidebar:before {
  content: "\e9cc";
}
.tl-icon-skip-back:before {
  content: "\e9cd";
}
.tl-icon-skip-forward:before {
  content: "\e9ce";
}
.tl-icon-slack:before {
  content: "\e9cf";
}
.tl-icon-slash:before {
  content: "\e9d0";
}
.tl-icon-sliders:before {
  content: "\e9d1";
}
.tl-icon-smartphone:before {
  content: "\e9d2";
}
.tl-icon-speaker:before {
  content: "\e9d3";
}
.tl-icon-square:before {
  content: "\e9d4";
}
.tl-icon-star:before {
  content: "\e9d5";
}
.tl-icon-stop-circle:before {
  content: "\e9d6";
}
.tl-icon-sun:before {
  content: "\e9d7";
}
.tl-icon-sunrise:before {
  content: "\e9d8";
}
.tl-icon-sunset:before {
  content: "\e9d9";
}
.tl-icon-tablet:before {
  content: "\e9da";
}
.tl-icon-tag:before {
  content: "\e9db";
}
.tl-icon-target:before {
  content: "\e9dc";
}
.tl-icon-terminal:before {
  content: "\e9dd";
}
.tl-icon-thermometer:before {
  content: "\e9de";
}
.tl-icon-thumbs-down:before {
  content: "\e9df";
}
.tl-icon-thumbs-up:before {
  content: "\e9e0";
}
.tl-icon-toggle-left:before {
  content: "\e9e1";
}
.tl-icon-toggle-right:before {
  content: "\e9e2";
}
.tl-icon-trash:before {
  content: "\e9e3";
}
.tl-icon-trash-2:before {
  content: "\e9e4";
}
.tl-icon-trending-down:before {
  content: "\e9e5";
}
.tl-icon-trending-up:before {
  content: "\e9e6";
}
.tl-icon-triangle:before {
  content: "\e9e7";
}
.tl-icon-truck:before {
  content: "\e9e8";
}
.tl-icon-tv:before {
  content: "\e9e9";
}
.tl-icon-twitter:before {
  content: "\e9ea";
}
.tl-icon-type:before {
  content: "\e9eb";
}
.tl-icon-umbrella:before {
  content: "\e9ec";
}
.tl-icon-underline:before {
  content: "\e9ed";
}
.tl-icon-unlock:before {
  content: "\e9ee";
}
.tl-icon-upload:before {
  content: "\e9ef";
}
.tl-icon-upload-cloud:before {
  content: "\e9f0";
}
.tl-icon-user:before {
  content: "\e9f1";
}
.tl-icon-user-check:before {
  content: "\e9f2";
}
.tl-icon-user-minus:before {
  content: "\e9f3";
}
.tl-icon-user-x:before {
  content: "\e9f4";
}
.tl-icon-users:before {
  content: "\e9f5";
}
.tl-icon-video:before {
  content: "\e9f6";
}
.tl-icon-video-off:before {
  content: "\e9f7";
}
.tl-icon-voicemail:before {
  content: "\e9f8";
}
.tl-icon-volume:before {
  content: "\e9f9";
}
.tl-icon-volume-1:before {
  content: "\e9fa";
}
.tl-icon-volume-2:before {
  content: "\e9fb";
}
.tl-icon-volume-x:before {
  content: "\e9fc";
}
.tl-icon-watch:before {
  content: "\e9fd";
}
.tl-icon-wifi:before {
  content: "\e9fe";
}
.tl-icon-wifi-off:before {
  content: "\e9ff";
}
.tl-icon-wind:before {
  content: "\ea00";
}
.tl-icon-x:before {
  content: "\ea01";
}
.tl-icon-x-circle:before {
  content: "\ea02";
}
.tl-icon-x-square:before {
  content: "\ea03";
}
.tl-icon-youtube:before {
  content: "\ea04";
}
.tl-icon-zap:before {
  content: "\ea05";
}
.tl-icon-zap-off:before {
  content: "\ea06";
}
.tl-icon-zoom-in:before {
  content: "\ea07";
}
.tl-icon-zoom-out:before {
  content: "\ea08";
}
/* 四边框*/
/* 上边框*/
/* 下边框*/
/* 左边框*/
/* 右边框*/
.tui-view {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tui-header {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 45px;
  box-sizing: border-box;
  background-color: #2f3175;
  z-index: 100;
}
.tui-header ~ .tui-view-box {
  padding-top: 45px;
}
.tui-header-title {
  margin: 0 88px;
  height: 45px;
  line-height: 45px;
  width: auto;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tui-header-left,
.tui-header-right {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #ccc;
}
.tui-header-left a,
.tui-header-right a,
.tui-header-left button,
.tui-header-right button {
  float: left;
  margin-right: 8px;
  color: #ccc;
  font-size: 22px;
}
.tui-header-left {
  left: 15px;
}
.tui-header-right {
  right: 15px;
}
.tui-header-right a,
.tui-header-right button {
  margin-left: 8px;
  margin-right: 0;
}
.tui-swiper {
  min-height: 2rem;
}
.tui-menu {
  display: flex;
  padding: 0 20px;
  background: #fff;
}
.tui-menu li {
  flex: 1;
}
.tui-menu a {
  display: block;
  padding: 15px 0;
  text-align: center;
}
.tui-menu a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin: 0 auto;
  border-radius: 18px;
  font-size: 32px;
  color: #fff;
}
.tui-menu a p {
  font-size: 14px;
  margin-top: 5px;
  color: #555;
}
.tui-menu-style_01 {
  background: #5b87de;
}
.tui-menu-style_02 {
  background: #38b46b;
}
.tui-menu-style_03 {
  background: #f0a935;
}
.tui-menu-style_04 {
  background: #df6466;
}
.tui-menu-wrap {
  padding: 0 10px;
}
.tui-menu-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}
.tui-menu-list li {
  width: 25%;
  padding: 0 10px;
}
.tui-menu-list li a {
  display: block;
  text-align: center;
}
.tui-menu-list li img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-block;
}
.tui-menu-list li p {
  text-align: center;
}
/*
 * tui-list.less
 * v1.2.0 MIT License
 * http://www.moonlight313.cn
 * Copyright (c) 2018.10.25 Moonlight, Inc.
 *
*/
.tui-list {
  position: relative;
}
.tui-list li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
}
.tui-list li:active {
  background-color: #ECECEC;
}
.tui-list li:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #e7e7e7;
  color: #e7e7e7;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}
.tui-list li.tui-sub-list {
  padding: 8px 15px 8px 30px;
  font-size: 15px;
}
.tui-list li.tui-sub-list:before {
  display: none;
}
.tui-list:before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid #e7e7e7;
  color: #e7e7e7;
  transform-origin: 0 100%;
  transform: scaleY(0.5);
  bottom: -1px;
}
.tui-list__label {
  font-size: 18px;
}
.tui-list__more {
  color: #999999;
}
.tui-sub-list .tui-list__label {
  font-size: 15px;
  color: #999999;
}
/*
 * tui-item.less
 * v1.2.0 MIT License
 * http://www.moonlight313.cn
 * Copyright (c) 2018.10.19 Moonlight, Inc.
 *
*/
.tui-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  background: #fff;
}
.tui-item-left {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.tui-item-info {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.tui-item-right {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.tui-bar {
  position: relative;
  height: 15px;
}
.tui-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #dbdbdb;
  color: #dbdbdb;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  z-index: 2;
}
.tui-bar:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #dbdbdb;
  color: #dbdbdb;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  z-index: 2;
}
.tui-bar-title {
  display: flex;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: .7rem;
  padding: 0 15px;
  font-size: 18px;
  color: #2f3175;
  background: #fff;
}
.tui-bar-title_left i {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -4px;
}
.tui-bar-title_more {
  color: #999;
  font-size: 14px;
}
/*
 * tui-tabbar.less
 * v1.2.0 MIT License
 * http://www.moonlight313.cn
 * Copyright (c) 2018.10.19 Moonlight, Inc.
 *
*/
.tui-tab__panel {
  box-sizing: border-box;
  height: 100%;
  padding-bottom: 50px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.tui-tabbar {
  display: flex;
  position: absolute;
  z-index: 500;
  bottom: 0;
  width: 100%;
  background-color: #F7F7FA;
}
.tui-tabbar:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #c0bfc4;
  color: #c0bfc4;
  transform-origin: 0 0;
  transform: scaleY(0.5);
}
.tui-tabbar__item {
  display: block;
  flex: 1;
  padding: 5px 0 0;
  font-size: 0;
  color: #999999;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.tui-tabbar__item.tui-bar__item_on .tui-tabbar__icon,
.tui-tabbar__item.tui-bar__item_on .tui-tabbar__icon > i,
.tui-tabbar__item.tui-bar__item_on .tui-tabbar__label {
  color: #2f3175;
}
.tui-tabbar__icon {
  display: inline-block;
  width: 27px;
  height: 27px;
}
i.tui-tabbar__icon,
.tui-tabbar__icon > i {
  font-size: 24px;
  color: #999999;
}
.tui-tabbar__icon img {
  width: 100%;
  height: 100%;
}
.tui-tabbar__label {
  margin: 0;
  text-align: center;
  color: #999999;
  font-size: 10px;
  line-height: 1.8;
}
.tui-label-mini {
  display: inline-block;
  margin-right: 5px;
  padding: 3px 8px;
  line-height: 1;
  border-radius: 3px;
  background: #2e3174;
  font-size: 14px;
  color: #fff;
}
.tui-label-mini.bg_02 {
  background: #f0a935;
}
.tui-label-mini.bg_03 {
  background: #df6466;
}
.tui-media-box {
  padding: 15px;
  position: relative;
}
.tui-media-box:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #dbdbdb;
  color: #dbdbdb;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  z-index: 2;
}
.tui-media-box:active {
  background-color: #ECECEC;
}
.tui-media-box__hd {
  margin-right: .8em;
  width: 100px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.tui-media-box__hd img {
  width: 100%;
  max-height: 100%;
  vertical-align: top;
}
.tui-media-box__bd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
}
.tui-media-box__bd + .tui-media-box__hd {
  margin-right: 0;
  margin-left: .8em;
}
.tui-media-box__title {
  font-weight: 400;
  font-size: 17px;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  word-wrap: break-word;
  word-break: break-all;
}
.tui-media-box__desc {
  margin: 0;
  color: #999999;
  font-size: 13px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.tl-slider-new .mui-segmented-control.mui-scroll-wrapper,
.tl-slider-new .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
  height: 45px;
}
.tl-slider-new .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
  background: #fff;
}
.tl-slider-new .mui-segmented-control .mui-control-item,
.tl-slider-new .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
  line-height: 45px;
}
.tl-slider-new .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
  padding: 0 15px;
}
.tl-slider-new .mui-segmented-control.mui-scroll-wrapper .mui-control-item {
  margin: 0 12px;
  padding: 0;
}
.tl-slider-new .mui-segmented-control ~ .mui-slider-group {
  top: 45px;
}
.tl-slider-new .mui-segmented-control.mui-segmented-control-inverted ~ .mui-slider-group .mui-slider-item {
  border: none;
}
.tl-slider-new .mui-segmented-control {
  font-size: 15px;
}
.tl-slider-new .mui-slider-indicator .mui-scroll:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  content: '';
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  background-color: #e8ebf0;
  z-index: 10;
}
.tl-slider-new .mui-control-item {
  position: relative;
}
.tl-slider-new .mui-control-item.mui-active:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  content: '';
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  background-color: #2f3175;
  z-index: 11;
}
.tl-slider-new .mui-segmented-control.mui-segmented-control-inverted .mui-control-item.mui-active {
  color: #2f3175;
}
.tl-slider-new.slider-icon .mui-segmented-control.mui-scroll-wrapper,
.tl-slider-new.slider-icon .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
  height: 3.4rem;
}
.tl-slider-new.slider-icon .mui-segmented-control ~ .mui-slider-group {
  top: 3.4rem;
}
.tl-slider-new.slider-icon .mui-segmented-control .mui-control-item,
.tl-slider-new.slider-icon .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
  line-height: 3.4rem;
}
.tl-slider-new.slider-icon .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
  display: flex;
  justify-content: space-between;
}
.tl-slider-new.slider-icon .mui-segmented-control.mui-scroll-wrapper .mui-control-item {
  display: flex;
  flex-direction: column;
  line-height: 1;
  justify-content: center;
  align-items: center;
  margin: 0;
  color: #bbb;
}
.tl-slider-new.slider-icon .mui-segmented-control.mui-scroll-wrapper .mui-control-item i {
  margin-bottom: .4rem;
  font-size: 1rem;
}
.tl-slider-new.slider-icon .mui-segmented-control.mui-segmented-control-inverted .mui-control-item.mui-active {
  color: #15c8b5;
}
.w100 .mui-segmented-control.mui-scroll-wrapper .mui-scroll {
  width: 100%;
}
.tui-btn {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
  box-sizing: border-box;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  line-height: 2.55555556;
  border-radius: 5px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
}
.tui-btn:after {
  content: " ";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transform: scale(0.5);
  transform-origin: 0 0;
  box-sizing: border-box;
  border-radius: 10px;
}
.tui-btn_inline {
  display: inline-block;
}
.tui-btn_default {
  color: #000000;
  background-color: #f8f8f8;
}
.tui-btn_default:not(.tui-btn_disabled):visited {
  color: #000000;
}
.tui-btn_default:not(.tui-btn_disabled):active {
  color: rgba(0, 0, 0, 0.6);
  background-color: #dedede;
}
.tui-btn_primary {
  background-color: #1aad19;
}
.tui-btn_primary:not(.tui-btn_disabled):visited {
  color: #ffffff;
}
.tui-btn_primary:not(.tui-btn_disabled):active {
  color: rgba(255, 255, 255, 0.6);
  background-color: #179b16;
}
.tui-btn_warn {
  background-color: #e64340;
}
.tui-btn_warn:not(.tui-btn_disabled):visited {
  color: #ffffff;
}
.tui-btn_warn:not(.tui-btn_disabled):active {
  color: rgba(255, 255, 255, 0.6);
  background-color: #ce3c39;
}
.tui-btn_disabled {
  color: rgba(255, 255, 255, 0.6);
}
.tui-btn_disabled.tui-btn_default {
  color: rgba(0, 0, 0, 0.3);
  background-color: #f7f7f7;
}
.tui-btn_disabled.tui-btn_primary {
  background-color: #9ed99d;
}
.tui-btn_disabled.tui-btn_warn {
  background-color: #ec8b89;
}
.tui-btn_loading .tui-loading {
  margin: -0.2em 0.34em 0 0;
}
.tui-btn_loading.tui-btn_primary,
.tui-btn_loading.tui-btn_warn {
  color: rgba(255, 255, 255, 0.6);
}
.tui-btn_loading.tui-btn_primary {
  background-color: #179b16;
}
.tui-btn_loading.tui-btn_warn {
  background-color: #ce3c39;
}
.tui-btn_plain-primary {
  color: #1aad19;
  border: 1px solid #1aad19;
}
.tui-btn_plain-primary:not(.tui-btn_plain-disabled):active {
  color: rgba(26, 173, 25, 0.6);
  border-color: rgba(26, 173, 25, 0.6);
}
.tui-btn_plain-primary:after {
  border-width: 0;
}
.tui-btn_plain-default {
  color: #353535;
  border: 1px solid #353535;
}
.tui-btn_plain-default:not(.tui-btn_plain-disabled):active {
  color: rgba(53, 53, 53, 0.6);
  border-color: rgba(53, 53, 53, 0.6);
}
.tui-btn_plain-default:after {
  border-width: 0;
}
.tui-btn_plain-disabled {
  color: rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.2);
}
button.tui-btn,
input.tui-btn {
  width: 100%;
  border-width: 0;
  outline: 0;
  -webkit-appearance: none;
}
button.tui-btn:focus,
input.tui-btn:focus {
  outline: 0;
}
button.tui-btn_inline,
input.tui-btn_inline,
button.tui-btn_mini,
input.tui-btn_mini {
  width: auto;
}
button.tui-btn_plain-primary,
input.tui-btn_plain-primary,
button.tui-btn_plain-default,
input.tui-btn_plain-default {
  border-width: 1px;
  background-color: transparent;
}
.tui-btn_mini {
  display: inline-block;
  padding: 0 1.32em;
  line-height: 2.3;
  font-size: 13px;
}
/*gap between btn*/
.tui-btn + .tui-btn {
  margin-top: 15px;
}
.tui-btn.tui-btn_inline + .tui-btn.tui-btn_inline {
  margin-top: auto;
  margin-left: 15px;
}
/* .tui-btn-area {
    margin: @tuiCellsMarginTop @tuiBtnDefaultGap .3em; 
}
.tui-btn-area_inline {
    display: flex;
    .tui-btn {
        margin-top: auto;
        margin-right: @tuiBtnDefaultGap;
        width: 100%;
        flex: 1;
        &:last-child {
            margin-right: 0;
        }
    }
} */
.tui-input-row {
  position: relative;
  clear: left;
  overflow: hidden;
}
.tui-input-row label {
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
  line-height: 1.1;
  float: left;
  width: 35%;
  padding: 11px 15px;
}
.tui-input-row label ~ input,
.tui-input-row label ~ select,
.tui-input-row label ~ textarea,
.tui-input-row .tui-input-box {
  float: right;
  width: 65%;
  margin-bottom: 0;
  padding-left: 0;
  border: 0;
}
.tui-input-group {
  margin-top: 15px;
  background-color: #fff;
}
.tui-input-group .mui-input-row {
  height: 48px;
}
.tui-input-group .mui-input-row label {
  line-height: 28px;
}
.tui-input-group .mui-input-row label,
.tui-input-group .mui-input-row input {
  height: 48px;
}
.tui-input-group .mui-input-row label ~ input,
.tui-input-group .mui-input-row label ~ select,
.tui-input-group .mui-input-row label ~ textarea,
.tui-input-group .mui-input-row label ~ .tui-input-box {
  float: right;
  width: 65%;
  margin-bottom: 0;
  padding-left: 0;
  border: 0;
}
.tui-input-box {
  position: relative;
  padding-right: 25px;
}
.tui-input-box p {
  margin: 0;
  height: 48px;
  line-height: 48px;
}
.tui-input-box i {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 10px;
  line-height: 48px;
}
.tui-textarea {
  position: relative;
}
.tui-textarea label {
  margin: 11px 15px 0;
  display: inline-block;
}
.tui-textarea:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 15px;
  height: 1px;
  content: '';
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  background-color: #ddd;
}
.mui-input-group .mui-input-row:after {
  background-color: #ddd;
}
.mui-slider .mui-slider-group .mui-slider-item .tui-input-group {
  font-size: 15px;
}
.mui-input-row .mui-input-clear ~ .mui-icon-clear {
  top: 14px;
}
.tui-search {
  position: relative;
  flex: 0 0 40px;
}
.tui-search input {
  margin-bottom: 0;
  border: 0;
  height: 40px;
}
.tui-search .input-after {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}
.tui-search .searchbar-searchicon {
  position: absolute;
  right: 0px;
  height: 40px;
  width: 40px;
  border: none!important;
  padding: 0;
  color: #ffffff;
  background-color: #03a9f4;
  font-size: 1.6rem;
  line-height: 40px;
  border-radius: 0;
}
.tui-search button:enabled:active {
  color: #ffffff;
  background-color: #29bbfd;
}
.tui-search input[type=search] {
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
  background: #fff;
  box-sizing: border-box;
}
.tui-search .mui-search .mui-placeholder {
  line-height: 40px;
  height: 40px;
}
.tui-search .mui-search.mui-active {
  position: relative;
}
.tui-search .mui-search.mui-active:before {
  top: 27px;
}
.tui-search .mui-input-row.mui-search .mui-icon-clear {
  top: 0;
  height: 20px;
  width: 40px;
  padding: 10px 0;
}
.tui-search .mui-search.mui-active {
  padding-right: 60px;
}
.tui-search .mui-search .mui-btn {
  position: absolute;
  top: 4.5px;
  right: 4px;
  padding: 0 10px;
  height: 30px;
  display: none;
}
.tui-search .mui-search.mui-active .mui-btn {
  display: block;
}
.tui-search button:enabled:active {
  background-color: #ec971f;
}
.tui-search .mui-search.mui-active:before {
  top: 22px;
}
/*
 * box.less
 * v1.1.0 MIT License
 * http://www.moonlight313.cn
 * Copyright (c) 20190107 Moonlight, Inc.
 *
*/
/*-- 自适应分辨率 ------------------------------------------*/
