/**
*  description:公用样式
*  author: Dolores
*  date: 2015-6-4 15:58
**************************************************/
/* LESS Document */
* {
  margin: 0;
  padding: 0;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
audio,
canvas,
video {
  margin: 0;
  padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
  visibility: hidden;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
abbr[title] {
  cursor: help;
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
code,
kbd,
pre,
samp {
  font-family: monospace,serif;
  font-size: 1em;
}
del {
  font-family: Arial;
}
h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
  font-weight: normal;
}
em,
q,
cite,
address {
  font-weight: normal;
  font-style: normal;
}
address {
  display: inline;
}
big,
small {
  font-size: 12px;
}
body {
  font: 14px/1.5 arial, "Microsoft Yahei", "Hiragino Sans GB", sans-serif;
  vertical-align: middle;
  color: #333;
  background: #fff;
}
img {
  border: 0;
}
li {
  list-style: none;
}
i {
  font-style: normal;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: "";
}
strong {
  font-weight: bold;
}
del {
  font-family: Simsun;
}
dfn {
  padding-right: 2px;
  text-decoration: none;
  font-family: Arial;
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
  text-align: left;
  font-weight: normal;
}
fieldset,
legend {
  border: 0;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button,
input,
select,
select optgroup,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  line-height: inherit;
  vertical-align: middle;
}
button,
input,
select[multiple],
textarea {
  background-image: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  height: auto;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
/* link */
a {
  color: #4d4d4d;
  text-decoration: none;
  outline-style: none;
  cursor: pointer;
}
a:hover {
  color: #06c;
  text-decoration: underline;
  transition: color .20s linear;
  -o-transition: color .20s linear;
  -webkit-transition: color .20s linear;
  -moz-transition: color .20s linear;
}
a:link {
  text-decoration: none;
  cursor: pointer;
}
i {
  font-family: proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/*---------- 实用工具 ----------*/
/* form */
input,
select {
  vertical-align: middle;
  font-size: 14px;
  font-family: "Microsoft Yahei", "Hiragino Sans GB", sans-serif;
  color: #333;
}
input[type="text"],
input[type="password"] {
  line-height: 30px;
  border: solid 1px #d9d9d9;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  height: 40px;
  box-sizing: border-box;
  padding-left: 10px;
  background-color: #fff;
}
input[type="text"]:disabled {
  background-color: #bbbbbb;
  color: #666;
}
input[type="checkbox"],
input[type="radio"] {
  margin-right: 4px;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background-color: #33b0c4;
  color: #fff;
}
.checkbox {
  position: relative;
}
.checkbox input[type="checkbox"] {
  opacity: 0;
  positon: absolute;
  top: 0;
  left: 0;
}
.checkbox span {
  position: absolute;
  top: -10px;
  right: 3px;
  font-size: 30px;
  font-weight: bold;
  font-family: "Microsoft Yahei", "Hiragino Sans GB", sans-serif;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  color: orange;
}
.checkbox input[type="checkbox"] + span {
  opacity: 0;
}
.checkbox input[type="checkbox"]:checked + span {
  opacity: 1;
}
input[type="button"] {
  height: 40px;
  line-height: 40px;
  background-color: #33b0c4;
  border: none;
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 0 20px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
textarea {
  padding: 3px 0 3px 3px;
  font-size: 14px;
  font-family: "Microsoft Yahei", "Hiragino Sans GB", sans-serif;
  color: #333;
  border: solid 1px #d9d9d9;
  border-radius: 2px;
  background: #fff;
}
/* input placeholder color */
input::-webkit-input-placeholder {
  color: #bbbbbb;
  text-transform: uppercase;
}
input::-moz-placeholder {
  color: #bbbbbb;
  text-transform: uppercase;
}
input:-moz-placeholder {
  /* Older versions of Firefox */
  color: #bbbbbb;
  text-transform: uppercase;
}
input:-ms-input-placeholder {
  color: #bbbbbb;
  text-transform: uppercase;
}
/* paginator */
.paginator {
  clear: both;
  padding: 20px 0;
  text-align: center;
  line-height: 14px;
}
.paginator span,
.paginator a {
  overflow: hidden;
  height: 15px;
  margin-bottom: 10px;
  padding: 3px 4px;
  font-size: 12px;
  font-weight: bold;
  color: #666;
  background: #fff;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
.paginator a {
  text-decoration: none;
  font-weight: normal;
  border: 1px solid #ccc;
}
.paginator a:hover {
  color: #33b0c4;
  text-decoration: none;
  border: 1px solid #33b0c4;
}
.paginator .ellipsis {
  color: #636363;
  background: none;
}
.paginator .prev,
.paginator .next {
  font-weight: normal;
  line-height: 15px;
  background: #fff;
  color: #999;
}
.paginator input {
  display: none;
  width: 40px;
  height: 30px !important;
  padding: 0 !important;
  line-height: 30px;
  text-align: center;
}
@media (min-width: 640px) {
  /* paginator */
  .paginator {
    clear: both;
    padding: 20px 0;
    text-align: center;
    line-height: 14px;
  }
  .paginator span,
  .paginator a {
    margin-left: 4px;
    padding: 6px 8px 6px;
    font-size: 12px;
  }
  .paginator .pageNum {
    color: #33b0c4;
    border: 1px solid #33b0c4;
  }
  .paginator input {
    display: inline-block;
  }
}
/* required */
.rq {
  font-size: 11px;
  font-family: verdana;
  font-weight: normal;
  color: #c00;
  padding-right: 5px;
}
/* status */
.status {
  padding: 10px 0;
  text-align: center;
}
/* loading */
.loading01 {
  padding: 10px 0;
  text-align: center;
}
/* alarm */
.alarm {
  margin-bottom: 10px;
  padding: 2px 16px;
  color: #c00;
  border: 1px solid #DD3C10;
  background: #FFE6E6;
}
.alarm span {
  padding-right: 16px;
  background: url(images2015/GlobalIcon_01.png) 0 -570px no-repeat;
}
/* notice */
.notice {
  margin-bottom: 10px;
  padding: 2px 16px;
  border: 1px solid #ffd4a5;
  background: #fff9e5;
}
.notice em {
  color: #FD7600;
}
.notice span {
  padding-right: 16px;
  background: url(images2015/GlobalIcon_01.png) 0 -630px no-repeat;
}
/* valid */
.valid {
  margin-bottom: 10px;
  padding: 2px 16px;
  color: #063;
  border: 1px solid #82b753;
  background: #f0ffe2;
}
.valid span {
  padding-right: 16px;
  background: url(images2015/GlobalIcon_01.png) 0 -600px no-repeat;
}
/* 清除浮动 */
/* 圆角 */
/* link in text */
a.t {
  text-decoration: underline;
}
a.t:hover {
  color: #f30;
  text-decoration: underline;
}
/* clear float */
.cf {
  zoom: 1;
}
/* for IE */
.cf:after {
  content: ".";
  display: block;
  clear: both;
  font-size: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
}
/* for other */
/* end of clear float */
/* float */
.left {
  float: left;
}
.right {
  float: right;
}
.fnone {
  float: none;
}
.middle {
  float: left;
}
/* text-align */
.tleft {
  text-align: left;
}
.tright {
  text-align: right;
}
.tcenter {
  text-align: center;
}
/* display */
.dis {
  display: block;
}
.undis {
  display: none;
}
/*常用字号*/
/*常用颜色*/
/* 圆角  */
/*边框圆角*/
.sanjiao {
  border-width: 20px;
  border-color: transparent transparent #ccc transparent;
  border-style: dashed dashed solid dashed;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* clicked color */
.clcikActive {
  color: #fff;
  background: #33b0c4;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
/*单行载断*/
/*单行载断溢出省略号*/
/*3行载断溢出省略号*/
/* 面包屑 */
.crumb {
  display: none;
}
@media (min-width: 768px) {
  .crumb {
    display: block;
    *zoom: 1;
    zoom: 1;
    line-height: 50px;
  }
  .crumb:after {
    content: " ";
    clear: both;
    display: table;
  }
  .crumb p {
    color: #999;
  }
  .crumb p a {
    padding: 0 10px;
  }
  .crumb p span {
    padding-left: 10px;
  }
}
/*配模式定位*/
/*1200屏*/
/* 背景自适应 */
/* LESS Document */
/*底部*/
footer {
  clear: both;
  width: 100%;
  background: #21292a;
  padding: 20px 0;
  box-sizing: border-box;
  *zoom: 1;
  zoom: 1;
}
footer:after {
  content: " ";
  clear: both;
  display: table;
}
footer .newlinks {
  padding: 0 10px;
  *zoom: 1;
  zoom: 1;
}
footer .newlinks:after {
  content: " ";
  clear: both;
  display: table;
}
footer .newlinks dl {
  width: 18%;
  height: 180px;
  float: left;
  border-right: 1px solid #3c4242;
  padding: 20px 0 20px 20px;
  box-sizing: border-box;
  color: #fff;
}
footer .newlinks dl:last-child {
  width: 26%;
  border-right: none;
}
footer .newlinks dl:last-child dl {
  text-align: center;
}
footer .newlinks dl:last-child dl dt {
  font-size: 30px;
}
footer .newlinks dl:last-child dl dd {
  font-weight: normal;
}
footer .newlinks dl:last-child dl dd img {
  display: block;
  margin: 8px auto 0;
}
footer .newlinks dl dt {
  font-size: 18px;
  padding-bottom: 15px;
}
footer .newlinks dl dd a {
  display: block;
  font-size: 12px;
  color: #dbdbdb;
  line-height: 24px;
}
footer .newlinks dl dd a:hover {
  text-decoration: none;
  color: #58c8e3;
}
footer .copyright {
  *zoom: 1;
  zoom: 1;
  text-align: center;
  padding-bottom: 20px;
  padding: 20px 0;
  font: 12px/30px "微软雅黑";
  color: #fff;
}
footer .copyright:after {
  content: " ";
  clear: both;
  display: table;
}
footer .copyright span {
  font-family: Arial, Helvetica, sans-serif;
}
@media (min-width: 1200px) {
  .newlinks {
    width: 1200px;
    margin: 0 auto;
  }
  .newlinks dl {
    padding-left: 40px;
  }
  .newlinks dl dd a {
    display: block;
    font-size: 14px;
    color: #dbdbdb;
    line-height: 24px;
  }
  .newlinks dl dd a:hover {
    text-decoration: none;
    color: #58c8e3;
  }
  .copyright {
    width: 1200px;
    margin: 0 auto;
  }
}
/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu oncanvas CSS
*/
/*
  jQuery.mmenu CSS
*/
/*
  jQuery.mmenu oncanvas CSS
*/
.mm-hidden {
  display: none !important;
}
.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}
.mm-menu,
.mm-menu > .mm-panel {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.mm-menu {
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0;
}
.mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.mm-panel.mm-opened {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}
.mm-panel.mm-highest {
  z-index: 1;
}
.mm-menu > .mm-panel {
  background: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  margin-top: 120px;
}
.mm-menu > .mm-panel.mm-hasnavbar {
  padding-top: 40px;
}
.mm-menu > .mm-panel:before,
.mm-menu > .mm-panel:after {
  content: '';
  display: block;
  height: 20px;
}
.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}
.mm-vertical .mm-listview .mm-panel,
.mm-listview .mm-vertical .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}
.mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after,
.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after {
  border-color: transparent;
}
.mm-vertical li.mm-opened > .mm-panel,
li.mm-vertical.mm-opened > .mm-panel {
  display: block;
}
.mm-vertical .mm-listview > li > .mm-next,
.mm-listview > li.mm-vertical > .mm-next {
  height: 40px;
  bottom: auto;
}
.mm-vertical .mm-listview > li > .mm-next:after,
.mm-listview > li.mm-vertical > .mm-next:after {
  top: 16px;
  bottom: auto;
}
.mm-vertical .mm-listview > li.mm-opened > .mm-next:after,
.mm-listview > li.mm-vertical.mm-opened > .mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-navbar {
  border-bottom: 1px solid transparent;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.mm-navbar > a {
  text-decoration: none;
  display: block;
  padding: 10px 0;
}
.mm-navbar > a:hover {
  text-decoration: none;
}
.mm-navbar .mm-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.mm-navbar .mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1;
}
.mm-navbar .mm-btn:first-child {
  padding-left: 20px;
  left: 0;
}
.mm-navbar .mm-btn:last-child {
  padding-right: 20px;
  right: 0;
}
.mm-listview,
.mm-listview > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  text-align: center;
}
.mm-listview {
  font: inherit;
  font-size: 14px;
}
.mm-listview a,
.mm-listview a:hover {
  text-decoration: none;
}
.mm-listview > li {
  position: relative;
}
.mm-listview > li > a,
.mm-listview > li > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  line-height: 20px;
  display: block;
  padding: 15px 10px 15px 20px;
  margin: 0;
}
.mm-listview > li > a.mm-arrow,
.mm-listview > li > span.mm-arrow {
  padding-right: 50px;
}
.mm-listview > li:not(.mm-divider):after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.mm-listview > li:not(.mm-divider):after {
  left: 20px;
}
.mm-listview .mm-next {
  background: rgba(3, 2, 1, 0);
  width: 50px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.mm-listview .mm-next:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.mm-listview .mm-next + a,
.mm-listview .mm-next + span {
  margin-right: 50px;
}
.mm-listview .mm-next.mm-fullsubopen {
  width: 100%;
}
.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none;
}
.mm-listview .mm-next.mm-fullsubopen + a,
.mm-listview .mm-next.mm-fullsubopen + span {
  padding-right: 50px;
  margin-right: 0;
}
.mm-menu > .mm-panel > .mm-listview {
  margin-left: -20px;
  margin-right: -20px;
}
.mm-menu > .mm-panel > .mm-listview.mm-first {
  margin-top: -20px;
}
.mm-menu > .mm-panel > .mm-listview.mm-last {
  padding-bottom: 20px;
}
.mm-prev:before,
.mm-next:after,
.mm-arrow:after {
  content: '';
  border: 2px solid transparent;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 20px;
}
.mm-next:after,
.mm-arrow:after {
  border-top: none;
  border-left: none;
  right: 20px;
}
.mm-divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
}
.mm-listview > li.mm-spacer {
  padding-top: 40px;
}
.mm-listview > li.mm-spacer > .mm-next {
  top: 40px;
}
.mm-listview > li.mm-spacer.mm-divider {
  padding-top: 25px;
}
.mm-menu {
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.7);
}
.mm-menu .mm-navbar {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu .mm-navbar > a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-navbar .mm-btn:before,
.mm-menu .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview > li:after {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu .mm-listview > li .mm-prev:before,
.mm-menu .mm-listview > li .mm-next:after,
.mm-menu .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview > li .mm-prev:after,
.mm-menu .mm-listview > li .mm-next:before {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-vertical .mm-listview li.mm-opened > a.mm-next,
.mm-menu.mm-vertical .mm-listview li.mm-opened > .mm-panel,
.mm-menu .mm-listview li.mm-opened.mm-vertical > a.mm-next,
.mm-menu .mm-listview li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
}
.mm-menu .mm-divider {
  background: rgba(0, 0, 0, 0.05);
}
/*
  jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
  box-sizing: border-box;
  position: relative;
}
.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-opened {
  overflow: hidden;
  position: relative;
}
html.mm-opened body {
  overflow: hidden;
}
html.mm-opened .mm-page {
  min-height: 100vh;
}
html.mm-background .mm-page {
  background: inherit;
}
#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}
.mm-menu.mm-offcanvas {
  display: none;
  position: fixed;
}
.mm-menu.mm-current {
  display: block;
}
.mm-menu {
  width: 60%;
  min-width: 140px;
  max-width: 440px;
}
html.mm-opening .mm-slideout {
  -webkit-transform: translate(60%, 0);
  -moz-transform: translate(60%, 0);
  -ms-transform: translate(60%, 0);
  -o-transform: translate(60%, 0);
  transform: translate(60%, 0);
}
@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0);
  }
}
/*
  jQuery.mmenu autoHeight addon CSS
*/
.mm-menu.mm-top.mm-autoheight,
.mm-menu.mm-bottom.mm-autoheight {
  max-height: 80%;
}
.mm-menu.mm-top.mm-autoheight.mm-fullscreen,
.mm-menu.mm-bottom.mm-autoheight.mm-fullscreen {
  max-height: 100%;
}
.mm-menu.mm-measureheight > .mm-panel {
  bottom: auto !important;
  height: auto !important;
}
/*
  jQuery.mmenu counters addon CSS
*/
em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%;
}
em.mm-counter + a.mm-next {
  padding-left: 40px;
}
em.mm-counter + a.mm-next + a,
em.mm-counter + a.mm-next + span {
  margin-right: 90px;
}
em.mm-counter + a.mm-fullsubopen {
  padding-left: 0;
}
.mm-vertical > .mm-counter {
  top: 12px;
  margin-top: 0;
}
.mm-vertical.mm-spacer > .mm-counter {
  margin-top: 40px;
}
.mm-nosubresults > .mm-counter {
  display: none;
}
.mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
/*
  jQuery.mmenu dividers addon CSS
*/
.mm-divider > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  line-height: 25px;
}
.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-collapsed:not(.mm-uncollapsed) {
  display: none;
}
.mm-fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-fixeddivider:after {
  content: none !important;
  display: none !important;
}
.mm-hasdividers .mm-fixeddivider {
  display: block;
}
.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05);
}
/*
  jQuery.mmenu dragOpen addon CSS
*/
html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-page,
html.mm-opened.mm-dragging .mm-fixed-top,
html.mm-opened.mm-dragging .mm-fixed-bottom,
html.mm-opened.mm-dragging #mm-blocker {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/*
  jQuery.mmenu navbar addon CSS
*/
.mm-menu > .mm-navbar {
  background: inherit;
  padding: 0;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-menu > .mm-navbar.mm-hasbtns {
  padding: 0 40px;
}
.mm-navbar-bottom {
  border-top: 1px solid transparent;
  top: auto;
  border-bottom: none;
  bottom: 0;
}
.mm-navbar-2 > a,
.mm-navbar-3 > a,
.mm-navbar-4 > a,
.mm-navbar-5 > a,
.mm-navbar-6 > a {
  display: block;
  float: left;
}
.mm-navbar-2 > a {
  width: 50%;
}
.mm-navbar-3 > a {
  width: 33.33%;
}
.mm-navbar-4 > a {
  width: 25%;
}
.mm-navbar-5 > a {
  width: 20%;
}
.mm-navbar-6 > a {
  width: 16.66%;
}
.mm-close {
  text-align: right;
}
.mm-close:after {
  content: 'x';
}
.mm-menu.mm-hassearch > .mm-navbar-top {
  top: 40px;
}
.mm-menu.mm-hasnavbar .mm-panel .mm-navbar {
  display: none;
}
.mm-menu.mm-hasnavbar-top .mm-panel,
.mm-menu.mm-hasnavbar-top .mm-fixeddivider {
  top: 40px;
}
.mm-menu.mm-hasnavbar-top.mm-hassearch .mm-panel,
.mm-menu.mm-hasnavbar-top.mm-hassearch .mm-fixeddivider {
  top: 80px;
}
.mm-menu.mm-hasnavbar-bottom .mm-panel {
  bottom: 40px;
}
/*
  jQuery.mmenu searchfield addon CSS
*/
.mm-search,
.mm-search input {
  box-sizing: border-box;
}
.mm-menu > .mm-search {
  background: inherit;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-search {
  height: 40px;
  width: 100%;
  padding: 10px 10px 0 10px;
  position: absolute;
  top: 0;
  left: 0;
}
.mm-search input {
  border: none;
  border-radius: 25px;
  font: inherit;
  font-size: 14px;
  line-height: 25px;
  outline: none;
  display: block;
  width: 100%;
  height: 25px;
  margin: 0;
  padding: 0 10px;
}
.mm-search input::-ms-clear {
  display: none;
}
.mm-panel.mm-hassearch {
  padding-top: 40px;
}
.mm-panel.mm-hassearch.mm-hasnavbar {
  padding-top: 80px;
}
.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
  top: 40px;
}
.mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 40px 0;
}
.mm-noresults .mm-noresultsmsg {
  display: block;
}
.mm-noresults .mm-indexer {
  display: none !important;
}
.mm-menu li.mm-nosubresults > a.mm-next {
  display: none;
}
.mm-menu li.mm-nosubresults > a.mm-next + a,
.mm-menu li.mm-nosubresults > a.mm-next + span {
  padding-right: 10px;
}
.mm-menu.mm-hassearch .mm-panel,
.mm-menu.mm-hassearch .mm-fixeddivider {
  top: 40px;
}
.mm-menu .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7);
}
.mm-menu .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
/*
  jQuery.mmenu sectionIndexer addon CSS
*/
.mm-indexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -100px;
  z-index: 3;
  -webkit-transition: right 0.4s ease;
  -moz-transition: right 0.4s ease;
  -ms-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-indexer a {
  text-decoration: none;
  display: block;
  height: 3.71%;
}
.mm-indexer ~ .mm-panel.mm-hasindexer {
  padding-right: 40px;
}
.mm-hasindexer .mm-indexer {
  right: 0;
}
.mm-hasindexer .mm-fixeddivider {
  right: 20px;
}
.mm-hasnavbar-top .mm-indexer {
  top: 50px;
}
.mm-hasnavbar-bottom .mm-indexer {
  bottom: 50px;
}
.mm-hassearch .mm-indexer {
  top: 50px;
}
.mm-hassearch.mm-hasnavbar-top .mm-indexer {
  top: 90px;
}
.mm-menu .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}
/*
  jQuery.mmenu toggles addon CSS
*/
input.mm-toggle,
input.mm-check {
  position: absolute;
  left: -10000px;
}
label.mm-toggle,
label.mm-check {
  margin: 0;
  position: absolute;
  bottom: 50%;
  z-index: 2;
}
label.mm-toggle:before,
label.mm-check:before {
  content: '';
  display: block;
}
label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-bottom: -15px;
}
label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px;
}
input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right;
}
label.mm-check {
  width: 30px;
  height: 30px;
  margin-bottom: -15px;
}
label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: 0.1;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
input.mm-check:checked ~ label.mm-check:before {
  opacity: 1;
}
label.mm-toggle,
label.mm-check {
  right: 20px;
}
label.mm-toggle + a,
label.mm-toggle + span {
  padding-right: 80px;
}
label.mm-check + a,
label.mm-check + span {
  padding-right: 60px;
}
a.mm-next + label.mm-toggle,
a.mm-next + label.mm-check {
  right: 60px;
}
a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span,
a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  margin-right: 50px;
}
a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span {
  padding-right: 70px;
}
a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  padding-right: 50px;
}
em.mm-counter + a.mm-next + label.mm-toggle,
em.mm-counter + a.mm-next + label.mm-check {
  right: 100px;
}
em.mm-counter + a.mm-next + label.mm-toggle + a,
em.mm-counter + a.mm-next + label.mm-toggle + span,
em.mm-counter + a.mm-next + label.mm-check + a,
em.mm-counter + a.mm-next + label.mm-check + span {
  margin-right: 90px;
}
.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu label.mm-toggle:before {
  background: #f3f3f3;
}
.mm-menu input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7);
}
/*
  jQuery.mmenu borderstyle extension CSS
*/
.mm-menu.mm-border-none .mm-listview > li:after,
.mm-listview.mm-border-none > li:after {
  content: none;
}
.mm-menu.mm-border-full .mm-listview > li:after,
.mm-listview.mm-border-full > li:after {
  left: 0 !important;
}
/*
  jQuery.mmenu effects extension CSS
*/
html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
}
html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
html.mm-effect-slide-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-effect-slide-menu.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}
html.mm-effect-slide-menu.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(30%, 0, 0);
  -moz-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  -o-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}
html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.mm-menu.mm-effect-zoom-panels .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition-property: -webkit-transform, left;
  -moz-transition-property: -moz-transform, left;
  -ms-transition-property: -ms-transform, left;
  -o-transition-property: -o-transform, left;
  transition-property: transform, left;
}
.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
}
.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
/*
  jQuery.mmenu fullscreen extension CSS
*/
.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}
html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}
@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0);
  }
}
html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}
@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0);
  }
}
.mm-menu.mm-fullscreen.mm-top,
.mm-menu.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px;
}
html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important;
}
/*
  jQuery.mmenu multiline extension CSS
*/
.mm-menu.mm-multiline .mm-listview > li > a,
.mm-menu.mm-multiline .mm-listview > li > span,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > a,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > span {
  text-overflow: clip;
  white-space: normal;
}
/*
  jQuery.mmenu pageshadow extension CSS
*/
.mm-menu.mm-pageshadow:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 99;
}
.mm-menu.mm-pageshadow.mm-right:after {
  left: auto;
  right: 100%;
}
.mm-menu.mm-pageshadow.mm-next:after,
.mm-menu.mm-pageshadow.mm-front:after {
  content: none;
  display: none;
}
.mm-menu.mm-pageshadow:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/*
  jQuery.mmenu position extension CSS
*/
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.mm-menu.mm-right {
  left: auto;
  right: 0;
}
.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
}
html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}
@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0);
  }
}
/*
  jQuery.mmenu z-position extension CSS
*/
html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important;
}
.mm-menu.mm-front {
  z-index: 1;
}
.mm-menu.mm-front,
.mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.mm-menu.mm-front.mm-right,
.mm-menu.mm-next.mm-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
.mm-menu.mm-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px;
}
/*
  jQuery.mmenu themes extension CSS
*/
.mm-menu.mm-theme-dark {
  background: #333333;
  color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark .mm-navbar {
  border-color: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark .mm-navbar > a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-listview > li:after {
  border-color: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark .mm-listview > li .mm-prev:before,
.mm-menu.mm-theme-dark .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-dark .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-listview > li .mm-prev:after,
.mm-menu.mm-theme-dark .mm-listview > li .mm-next:before {
  border-color: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-dark.mm-vertical .mm-listview li.mm-opened > a.mm-next,
.mm-menu.mm-theme-dark.mm-vertical .mm-listview li.mm-opened > .mm-panel,
.mm-menu.mm-theme-dark .mm-listview li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-dark .mm-listview li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-theme-dark .mm-divider {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.mm-menu.mm-theme-dark .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark label.mm-toggle:before {
  background: #333333;
}
.mm-menu.mm-theme-dark input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu.mm-theme-white {
  background: white;
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white .mm-navbar {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white .mm-navbar > a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-white .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-listview > li:after {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white .mm-listview > li .mm-prev:before,
.mm-menu.mm-theme-white .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-white .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-listview > li .mm-prev:after,
.mm-menu.mm-theme-white .mm-listview > li .mm-next:before {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.05);
}
.mm-menu.mm-theme-white.mm-vertical .mm-listview li.mm-opened > a.mm-next,
.mm-menu.mm-theme-white.mm-vertical .mm-listview li.mm-opened > .mm-panel,
.mm-menu.mm-theme-white .mm-listview li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-white .mm-listview li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-theme-white .mm-divider {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.mm-menu.mm-theme-white .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white label.mm-toggle:before {
  background: white;
}
.mm-menu.mm-theme-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu.mm-theme-black {
  background: black;
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black .mm-navbar {
  border-color: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-navbar > a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-black .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-listview > li:after {
  border-color: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-listview > li .mm-prev:before,
.mm-menu.mm-theme-black .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-black .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-listview > li .mm-prev:after,
.mm-menu.mm-theme-black .mm-listview > li .mm-next:before {
  border-color: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-theme-black.mm-vertical .mm-listview li.mm-opened > a.mm-next,
.mm-menu.mm-theme-black.mm-vertical .mm-listview li.mm-opened > .mm-panel,
.mm-menu.mm-theme-black .mm-listview li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-black .mm-listview li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-divider {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-pageshadow.mm-theme-black:after {
  content: none;
  display: none;
}
.mm-menu.mm-theme-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black label.mm-toggle:before {
  background: black;
}
.mm-menu.mm-theme-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
/*# sourceMappingURL=jquery.mmenu.all.css.map */
/* 2015-5-18 */
.mbnavadd {
  display: none;
}
.mm-menu {
  display: none;
  background-image: url(../../images2015/mbnavbg.jpg);
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-repeat: no-repeat;
}
.mm-menu h2 {
  width: 100%;
  height: 120px;
  line-height: 120px;
  border-bottom: solid 1px #a6c8d7;
  background-color: rgba(255, 255, 255, 0.2);
}
.mm-menu h2 a {
  position: relative;
  font-size: 16px;
  padding-left: 65px;
  height: 42px;
  display: inline-block;
  color: #fff;
}
.mm-menu h2 a i {
  position: absolute;
  top: 15px;
  left: 15px;
}
.mm-menu h2 a i img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.mm-menu h2 .aLogin {
  position: absolute;
  right: 20px;
  font-size: 25px;
}
.mm-menu ul li {
  text-align: left;
  font-size: 14px;
  color: #fff;
  padding-left: 65px;
  border-bottom: solid 1px #90c3d8;
}
.mm-menu ul li a {
  color: #156872 !important;
}
.mm-menu ul li a:hover {
  color: #fff;
}
/* LESS Document */
/* iconfont */
@font-face {
  font-family: "iconfont";
  src: url('../font/iconfont.eot');
  /* IE9*/
  src: url('../font/iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../font/iconfont.woff') format('woff'), /* chrome、firefox */ url('../font/iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('../font/iconfont.svg#iconfont') format('svg');
  /* iOS 4.1- */
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
.mbttl {
  background-color: #282828;
  height: 45px;
  line-height: 45px;
  padding: 0 10px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  position: relative;
}
.mbttl a {
  color: #fff;
  padding: 0 15px;
}
.mbttl a:hover {
  color: #33b0c4;
}
.mbttl a img {
  vertical-align: middle;
}
.mbttl h2 {
  font-size: 20px;
}
.mbttl i {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 24px;
  font-family: sans-serif;
}
.mbttl i a {
  display: block;
}
.mbttl span {
  float: right;
}
.mbfooter {
  *zoom: 1;
  zoom: 1;
  text-align: center;
  background-color: #21292a;
  padding: 10px 0;
  color: #fff;
}
.mbfooter:after {
  content: " ";
  clear: both;
  display: table;
}
.mbfooter ul {
  *zoom: 1;
  zoom: 1;
  padding: 10px 5px;
}
.mbfooter ul:after {
  content: " ";
  clear: both;
  display: table;
}
.mbfooter ul li {
  width: 25%;
  float: left;
  padding: 5px;
  box-sizing: border-box;
}
.mbfooter ul li a {
  width: 100%;
  display: block;
  color: #fff;
  padding: 10px 0;
  background-color: #2e3738;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
.mbfooter ul li a:hover {
  color: #2da1be;
}
.mbfooter dl {
  *zoom: 1;
  zoom: 1;
  padding: 20px 0;
}
.mbfooter dl:after {
  content: " ";
  clear: both;
  display: table;
}
.mbfooter dl dt {
  font-size: 30px;
  line-height: 30px;
}
.mbfooter dl dd {
  font-size: 14px;
  color: #dbdbdb;
}
.mbfooter p {
  line-height: 30px;
}
.gotop {
  width: 40px;
  height: 40px;
  font-size: 14px;
  box-sizing: border-box;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 6px 5px 0 5px;
  text-align: center;
  background-color: #1a2122;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  color: #fff;
}
.gotop a {
  color: #fff;
}
.gotop a strong {
  display: block;
  font-size: 18px;
  line-height: 10px;
}
.gtopttl {
  background-color: #212829;
  height: 50px;
  overflow: hidden;
  line-height: 48px;
}
.gtopttl nav {
  padding: 0 10px;
}
.gtopttl nav h2 {
  padding-right: 20px;
  float: left;
  width: 120px;
}
.gtopttl nav h2 img {
  padding-top: 10px;
}
.gtopttl nav span {
  float: right;
}
.gtopttl nav span a {
  color: #fff;
  padding: 0 20px;
  display: block;
  float: left;
}
.gtopttl nav span a:hover {
  color: #33b0c4;
  border-bottom: solid 2px #33b0c4;
}
.gtopttl nav ul {
  width: 400px;
  float: left;
}
.gtopttl nav ul li {
  float: left;
}
.gtopttl nav ul li a {
  color: #fff;
  padding: 0 15px;
  display: block;
}
.gtopttl nav ul li a:hover {
  color: #33b0c4;
  border-bottom: solid 2px #33b0c4;
}
@media (min-width: 1200px) {
  .gtopttl nav {
    padding: 0;
    width: 1200px;
    margin: 0 auto;
  }
}
/* 布局 */
.wrap {
  width: 100%;
}
@media (min-width: 1200px) {
  .wrap {
    width: 1200px;
    margin: 0 auto;
  }
}
.mbbody {
  width: 100%;
}
@media (min-width: 768px) {
  .mbbody {
    display: none;
  }
}
.webbody {
  display: none;
}
@media (min-width: 768px) {
  .webbody {
    display: block;
  }
}
@media (min-width: 768px) {
  .bodygreyish {
    background-color: #f8f8f8;
    padding: 5px 0;
    *zoom: 1;
    zoom: 1;
  }
  .bodygreyish:after {
    content: " ";
    clear: both;
    display: table;
  }
}
/* 专题共用 */
.specialtopttl {
  background-color: #282828;
  height: 45px;
  line-height: 45px;
  padding: 0 10px;
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.specialtopttl nav {
  position: relative;
  padding-left: 190px;
  box-sizing: border-box;
}
.specialtopttl span {
  float: right;
  display: block;
  font-size: 16px;
  width: 120px;
}
.specialtopttl span img {
  vertical-align: middle;
}
.specialtopttl h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  display: block;
}
.specialtopttl h2 img {
  padding-top: 8px;
  padding-right: 5px;
}
.specialtopttl h2 strong {
  display: inline-block;
  padding-left: 5px;
  border-left: dashed 1px #fff;
  font-size: 24px;
  line-height: 30px;
  font-style: italic;
  overflow: hidden;
  color: #fff;
  margin-top: 10px;
}
.specialtopttl h2 strong a {
  color: #fff;
}
.specialtopttl ul {
  display: none;
}
@media (min-width: 768px) {
  .specialtopttl ul {
    display: block;
    overflow: hidden;
  }
  .specialtopttl ul li {
    float: left;
  }
  .specialtopttl ul li a {
    color: #fff;
    padding: 0 5px;
    display: block;
  }
  .specialtopttl ul li a:hover {
    color: #33b0c4;
    border-bottom: solid 2px #33b0c4;
  }
}
@media (min-width: 992px) {
  .specialtopttl span {
    font-size: 24px;
    width: 200px;
  }
  .specialtopttl ul li {
    float: left;
  }
  .specialtopttl ul li a {
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .specialtopttl nav {
    width: 1200px;
    margin: 0 auto;
  }
}
/* 移动端点击按钮 */
.glyphicon {
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
}
@media (min-width: 768px) {
  .glyphicon {
    display: none !important;
  }
}
.fnav {
  position: fixed;
  width: 100%;
  bottom: 0;
  height: 60px;
  right: 0;
  z-index: 99999;
}
.floatNav ul {
  width: 100%;
  height: 60px;
  background: #fff;
}
.floatNav li {
  width: 33.33%;
  float: left;
  box-sizing: border-box;
  background: #000;
  border-right: 1px solid #fff;
  height: 60px;
  color: #fff;
  text-align: center;
}
.floatNav li a {
  display: block;
  color: #fff;
  font-size: 12px;
}
.floatNav li i {
  font-size: 26px;
  padding-right: 10px;
  vertical-align: middle;
  line-height: 60px;
  text-align: center;
}
.floatNav li:nth-child(3) {
  border-right: 0;
  position: relative;
}
@media (min-width: 640px) {
  .floatNav li i {
    font-size: 34px;
  }
}
@media (min-width: 640px) {
  .floatNav li {
    text-align: center;
  }
  .floatNav li a {
    font-size: 14px;
  }
  .floatNav li i {
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
  }
  .floatNav li p {
    cursor: pointer;
    position: absolute;
    height: 180px;
    width: 100%;
    bottom: -180px;
    background: #000;
    padding: 20px 0;
    box-sizing: border-box;
    text-align: center;
    line-height: 40px;
  }
  .floatNav li p i {
    display: block;
    text-align: center;
    padding-bottom: 10px;
  }
  .floatNav li p em {
    font-size: 30px;
    line-height: 25px;
    font-weight: bold;
  }
  .floatNav li p em span {
    display: block;
    font-size: 12px;
    font-weight: normal;
  }
}
@media (min-width: 768px) {
  .fnav {
    width: 300px;
    overflow: hidden;
    top: 50%;
    right: 0px;
    height: 340px;
    margin-top: -170px;
  }
  .floatNav {
    display: none;
  }
  .floatNav ul {
    width: 60px;
    height: 330px;
    background: #fff;
    float: right;
  }
  .floatNav li {
    width: 60px;
    height: auto;
    color: #fff;
    text-align: center;
    margin-bottom: 2px;
    padding: 10px 0 10px;
    background: #57b2c2;
    border-right: 0;
    font-size: 12px;
  }
  .floatNav li a {
    display: block;
    color: #fff;
    font-size: 12px;
  }
  .floatNav li i {
    display: block;
    font-size: 56px;
    line-height: 60px;
    padding-right: 0;
    vertical-align: top;
  }
  .floatNav li:first-child {
    background: #4e68b7;
  }
  .floatNav li:nth-child(2) {
    background: #3699cc;
  }
  .floatNav li:last-child {
    margin-bottom: 0;
  }
  .floatNav li:last-child i {
    line-height: 12px;
    font-size: 28px;
  }
  .floatNav li p {
    cursor: pointer;
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 300px;
    top: 0;
    right: -300px;
    background: #57b2c2;
    padding: 20px 0;
    box-sizing: border-box;
    text-align: left;
  }
  .floatNav li p i {
    float: left;
    display: inline-block;
    padding: 0 10px 0 20px;
  }
  .floatNav li p em {
    font-size: 30px;
    line-height: 25px;
    font-weight: bold;
  }
  .floatNav li p em span {
    display: block;
    font-size: 12px;
    font-weight: normal;
  }
  .floatNav #hotline {
    position: relative;
  }
}
@media (min-width: 1921px) {
  .fnav {
    right: 50%;
    margin-right: -960px;
  }
}
/* LESS Document */
/*侧边漂浮栏*/
#navigationMenu li {
  list-style: none;
  height: 46px;
  width: 46px;
}
#navigationMenu span {
  width: 0;
  right: 100%;
  padding: 0;
  position: absolute;
  overflow: hidden;
  font-family: 'Myriad Pro', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.6px;
  white-space: nowrap;
  line-height: 46px;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}
#navigationMenu a {
  height: 46px;
  width: 46px;
  display: block;
  position: relative;
}
#navigationMenu {
  border: 1px solid rgba(0, 0, 0, 0.05);
}
#navigationMenu a:hover span {
  width: auto;
  padding: 0 20px;
  overflow: visible;
}
#main {
  position: fixed;
  bottom: 293px;
  right: 20px;
  background: #fff;
}
.nav-border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.topWeixin {
  background: url(../images2015/topWeixin.png) center center no-repeat;
}
.topKF {
  background: url(../images2015/topKF.png) center center no-repeat;
}
.topFK {
  background: url(../images2015/topFK.png) center center no-repeat;
}
.topBack {
  background: url(../images2015/topBack.png) center center no-repeat;
}
.topKF span {
  position: relative;
}
.topNav {
  position: absolute;
  right: 8px;
}
.topKF span p {
  background: #fff;
  border: 1px solid #e9e8e8;
  padding: 5px 10px 0;
}
.topKF span p img {
  padding: 5px;
}
.topWeixin span {
  position: relative;
  display: block;
  overflow: hidden;
}
.topWeixin .topNav {
  position: absolute;
  right: 13px;
}
.topWeixin span p {
  background: #fff;
  border: 1px solid #e9e8e8;
  padding: 15px 15px 0;
  overflow: hidden;
}
.topWeixin span p em {
  padding: 5px;
}
/*登录框、注册框*/
.noticeLR {
  background-image: url(../../images2015/inputnotice.png);
  background-position: 0px 1px;
  background-repeat: no-repeat;
  background-color: inherit;
  border: none;
  font-size: 12px;
  text-indent: 10px;
  color: #f26e6b;
  padding-bottom: 0;
  padding-left: 5px;
  position: absolute;
}
.noticeLR a {
  line-height: 10px !important;
}
/*index start*/
.body_main {
  width: 100%;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 999999;
}
.box_title {
  width: 410px;
  height: 80px;
  padding: 0;
  position: relative;
}
.box_title .text_content {
  text-align: center;
  padding: 20px 0 10px 0;
}
.box_title .text_content h1 {
  font-weight: normal;
}
.box_main {
  border: 5px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  background: #ffffff;
  width: 295px;
  margin: 2% auto 50%;
}
.box_bottom {
  width: 477px;
  height: 7px;
  padding: 0;
}
/*Tooltips*/
.tooltips_main {
  position: absolute;
  left: 0;
  margin: -5px 0 0 2px;
  z-index: 999;
  bottom: -55px;
}
.tooltips_box,
.tooltips,
.msg {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  top: 2px;
}
.tooltips_box {
  line-height: 1.5;
}
.tooltips {
  margin: 0 -2px;
}
.msg {
  color: #f26e6b;
  text-shadow: 0 1px 0 #FFFFFF;
  font-size: 12px;
}
.ov {
  position: absolute;
  left: 30%;
  overflow: hidden;
  width: 15px;
  height: 15px;
  margin: 16px 0 0 0;
  display: inline;
}
.field-all {
  width: 260px;
  margin: 0 auto;
}
.field-all input {
  color: #bbbbba;
  width: 100%;
  padding: 0 6px;
  box-sizing: border-box;
  height: 30px;
  border-radius: 3px;
  outline-color: #4ac7e7;
  border: 1px solid #d9d9d9;
  font-size: 14px;
}
/*regist*/
.field-group {
  height: 40px;
  position: relative;
}
.register .form_submit .fieldset .field-group .title {
  float: left;
  width: 120px;
  text-align: right;
  margin: 4px 0 0 0;
  font-size: 14px;
}
.register .form_submit .fieldset .field-group .tips {
  float: left;
  width: 250px;
  color: #8E8E8E;
}
.input_add_background img {
  padding-left: 10px;
}
.addtips {
  text-align: right;
  clear: both;
  display: block;
  color: #999;
  margin-top: -26px;
  padding: 9px 0px;
  position: relative;
}
.addtips a {
  color: #33b0c4;
}
#MsgReaDiv {
  display: inline-block;
  margin-top: 10px;
}
/*end regist*/
.newLoginB {
  display: block;
  text-align: right;
  padding: 10px 12px 0 0;
  color: #1ca3b6;
}
.newclosereg {
  display: block;
  position: absolute;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 13px 4px 18px;
  color: #fff;
  font-size: 22px;
  top: -20px;
  border-radius: 3px;
}
.newclosereg:hover {
  text-decoration: none;
}
/*手机注册*/
.phoneReg {
  margin: 20px 12px 15px;
  color: #323232;
  font-size: 22px;
  text-align: center;
}
.xieyi input {
  width: 16px;
  height: 16px;
}
input[type="submit"],
#loginB {
  width: 100%;
  background: #33b0c4;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  line-height: 10px;
}
#code_input input {
  width: 45%;
  float: left;
  vertical-align: middle;
  border: 1px solid #d9d9d9;
  line-height: 20px;
}
#code_input input[type="button"] {
  padding: 0 9px;
  box-sizing: border-box;
  height: 30px;
  float: right;
  border-radius: 3px;
  border: none;
  background: #c1c1c2;
  color: #fff;
  width: 50%;
  font-size: 16px;
}
.div_submit {
  margin: 15px 0;
}
.div_submit_button input {
  padding: 8px 0;
}
.msdl {
  text-align: right;
  color: #989898;
  padding-bottom: 15px;
}
.msdl a {
  color: #1ca3b6;
}
.handphone .msg {
  top: 66px;
}
.register,
#login {
  position: relative;
}
/*登录*/
.mianDL {
  overflow: hidden;
}
.mianDL p {
  float: left;
}
.mianDL a {
  display: inline-block;
  float: right;
}
.mianDL a:hover {
  color: #4ebed1;
}
.mianDL input {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.hzzh {
  overflow: hidden;
  margin-bottom: 10px;
}
.hzzh p {
  float: right;
}
.hzzh a {
  color: #1ca3b6;
}
.zjdl {
  float: left;
}
.zjdl span {
  color: #656666;
  position: relative;
  top: -15px;
}
.qq {
  background: url(../images2015/qq.png) no-repeat;
  width: 30px;
  height: 30px;
  display: inline-block;
}
.qq img {
  width: 100%;
}
.weibo {
  background: url(../images2015/weibo.png) no-repeat;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-left: 7px;
}
.weibo img {
  width: 100%;
}
.s3 {
  background: url(../images2015/wei.png) no-repeat;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-left: 7px;
}
.s3 img {
  width: 100%;
}
.qq:hover {
  background: url(../images2015/qqH.png) no-repeat;
}
.weibo:hover {
  background: url(../images2015/weiboH.png) no-repeat;
}
.s3:hover {
  background: url(../images2015/weiH.png) no-repeat;
}
.weichat {
  text-align: center;
  display: none;
}
.login_msg_wrap {
  display: none;
  width: 340px;
  height: 30px;
  margin: 10px auto;
}
.login_msg {
  width: 100%;
  height: 28px;
  border: 1px solid #f26e6b;
  line-height: 28px;
  color: #f26e6b;
  box-sizing: border-box;
}
.login_msg i {
  display: inline-block;
  padding: 0 5px;
}
@media (min-width: 640px) {
  .box_main {
    width: 410px;
  }
  .box_main .phoneReg {
    margin: 36px 12px 25px;
  }
  .box_main .newclosereg {
    right: -45px;
    top: -36px;
  }
  .box_main .field-all {
    width: 340px;
    margin: 0 auto;
  }
  .box_main .field-group {
    height: 65px;
  }
  .box_main input[type="text"],
  .box_main input[type="password"] {
    height: 40px;
    line-height: 30px;
    font-size: 16px;
  }
  .box_main #code_input input[type="button"],
  .box_main .div_submit_button input {
    height: 40px;
    line-height: 20px;
  }
}
.login_after {
  position: absolute;
  right: 0;
  top: -6px;
  z-index: 9;
  color: #fff;
}
.login_after li {
  line-height: 65px;
  width: 40px;
  float: left;
}
.login_after li .msg_span {
  position: absolute;
  top: 8px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  background: #ca3131;
  min-width: 18px;
  font-family: sans-serif;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
}
.login_after li p {
  width: 100%;
}
.login_after li p i {
  font-size: 20px;
}
.login_after li p .icon_email {
  font-size: 22px;
}
.login_after li p img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  vertical-align: middle;
  margin-right: 5px;
}
.login_after li p span {
  font-size: 12px;
}
.login_after li dl {
  display: none;
  width: 120px;
  margin-left: -35px;
  border: 1px solid #6d7297;
  box-shadow: 0 0 6px #183661;
  background: #fff;
  color: #666;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.login_after li dl dt {
  width: 100%;
  float: right;
  margin-top: -38px;
}
.login_after li dl dt .tran {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #666767;
}
.login_after li dl dd {
  line-height: 0;
  font-size: 12px;
}
.login_after li dl dd a {
  font-size: 12px;
}
.login_after li dl dd a:hover {
  text-decoration: none !important;
}
.login_after li .emialli {
  width: 380px;
  margin-left: -255px;
}
.login_after li .emialli dt {
  height: 10px;
}
.login_after li .emialli dt span {
  margin-left: 65.5%;
}
.login_after li .emialli dd {
  padding: 0;
  width: 100%;
  margin-top: 0px;
}
.login_after li .emialli dd ul {
  width: 100%;
  height: auto;
  margin: 0;
}
.login_after li .emialli dd ul li {
  width: 33.33%;
  line-height: 50px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}
.login_after li .emialli dd ul li a {
  font-size: 12px;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.login_after li .emialli dd ul li:hover {
  border-bottom: 1px solid #00e4ff;
}
.login_after li .emialli dd ol {
  width: 100%;
  display: inline-block;
}
.login_after li .emialli dd ol li {
  width: 94%;
  margin-left: 3%;
  line-height: 40px;
  font-size: 12px;
  border-bottom: 1px dashed #ccc;
}
.login_after li .emialli dd ol li a {
  text-decoration: none;
  line-height: 30px;
  padding: 0;
  font-size: 12px;
}
.login_after li .emialli dd ol li a h3 {
  float: left;
}
.login_after li .emialli dd ol li a h4 {
  float: right;
}
.login_after li .emialli dd ol li a:hover {
  text-decoration: none;
}
.login_after li .emialli dd p {
  width: 94%;
  margin-left: 3%;
  padding: 20px 0;
  text-align: left;
}
.login_after li .emialli dd p span {
  float: right;
}
.login_after li .emialli dd p span a {
  display: inline;
}
.login_after li .emialli .hide {
  display: none;
}
.login_after li .emialli #xtKonw {
  position: relative;
  width: 380px;
  height: 200px;
  overflow: hidden;
}
.login_after li .emialli #xtKonw .active_else_in {
  position: absolute;
  width: 100%;
}
.login_after li a:hover {
  color: #00e4ff;
  border-bottom: 0;
}
.login_after li:first-child {
  width: 80px;
}
.login_after li:nth-child(2) dl {
  width: 250px;
  margin-left: -105px;
}
.login_after li:nth-child(2) dl dt {
  height: 20px;
}
.login_after li:nth-child(2) dl dt span {
  margin-left: 40%;
}
.login_after li:nth-child(2) dl dd {
  width: 90%;
  margin-left: 5%;
  padding: 15px 0px;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -moz-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.login_after li:nth-child(2) dl dd i {
  font-size: 20px;
}
.login_after li:nth-child(2) dl dd a {
  padding: 0 10px 0 5px;
}
.login_after li:nth-child(2) dl .nowStu {
  margin-left: 0;
  border-bottom: 1px solid #ccc;
  padding: 21px 10px;
}
.login_after li:last-child {
  width: 110px;
}
.login_after li:last-child dl dt {
  margin-bottom: -20px;
}
.login_after li:last-child dl dt span {
  margin-left: 40%;
}
.login_after li:last-child dl dd {
  line-height: 30px;
  text-align: center;
}
.login_after li:hover dl {
  display: block;
}
@media (min-width: 1200px) {
  .login_after {
    right: 50% !important;
    margin-right: -620px;
  }
}
.active_Login {
  color: #00e4ff;
  border-bottom: 1px solid #00e4ff !important;
}
/* LESS Document */
/* 引用变量 */
.mainheader {
  *zoom: 1;
  zoom: 1;
  padding: 30px 10px;
}
.mainheader:after {
  content: " ";
  clear: both;
  display: table;
}
.mainheader .protitle {
  *zoom: 1;
  zoom: 1;
  box-sizing: border-box;
  margin: 0 auto 20px;
}
.mainheader .protitle:after {
  content: " ";
  clear: both;
  display: table;
}
.mainheader .protitle h2 {
  text-align: center;
}
.mainheader .protitle h2 img {
  width: 162px;
  height: auto;
}
.mainheader .protitle p {
  display: none!important;
  overflow: hidden;
  color: #666;
  padding-left: 15px;
  border-left: solid 1px #ddd;
  line-height: 20px;
  font-size: 16px;
  color: #333;
  display: inline-block;
}
.mainheader .protitle p strong {
  font-size: 18px;
  color: #1ab7da;
  margin: 0 3px;
  font-weight: normal;
}
.mainheader .protitle p span {
  font-size: 12px;
  color: #999;
  display: block;
}
.mainheader .prophone {
  display: none;
}
.mainheader .prosearch {
  width: 220px;
  margin: 0 auto;
  box-sizing: border-box;
}
.mainheader .prosearch input[type="text"] {
  width: 180px;
}
.mainheader .prosearch input[placeholder] {
  color: #bdbdbd;
  font-size: 12px;
}
.mainheader .prosearch input[type="button"] {
  width: 40px;
  padding: 0;
  line-height: 40px;
  font-size: 26px;
  background: #1ab7da;
}
@media (min-width: 480px) {
  .mainheader {
    padding: 30px 25px;
  }
  .mainheader .protitle {
    width: 404px;
  }
  .mainheader .protitle h2 {
    float: left;
    padding-right: 15px;
  }
  .mainheader .protitle h2 img {
    width: 150px;
  }
  .mainheader .protitle p {
    display: block!important;
  }
  .mainheader .prosearch {
    width: 410px;
  }
  .mainheader .prosearch input[type="text"] {
    width: 370px;
  }
}
@media (min-width: 640px) {
  .mainheader .protitle {
    width: 420px;
  }
  .mainheader .protitle h2 img {
    width: 162px;
  }
  .mainheader .protitle p {
    font-size: 18px;
    padding-top: 2px;
  }
  .mainheader .prosearch {
    width: 460px;
  }
  .mainheader .prosearch input[type="text"] {
    width: 420px;
  }
}
@media (min-width: 768px) {
  .mainheader {
    padding: 40px 25px;
  }
  .mainheader .protitle {
    float: left;
    margin: 0;
  }
  .mainheader .prosearch {
    float: right;
    width: 230px;
  }
  .mainheader .prosearch input[type="text"] {
    width: 190px;
  }
}
@media (min-width: 992px) {
  .mainheader {
    position: relative;
  }
  .mainheader .protitle p {
    line-height: 40px;
  }
  .mainheader .protitle p strong {
    font-size: 40px;
    display: inline-block;
  }
  .mainheader .protitle p span {
    display: inline-block;
  }
  .mainheader .prophone {
    display: block;
    font-size: 30px;
    color: #1ab7da;
    width: 225px;
    float: right;
  }
  .mainheader .prophone i {
    font-size: 28px;
    margin-right: 3px;
  }
  .mainheader .prosearch {
    float: none;
    position: absolute;
    top: 50%;
    left: 60%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 230px;
  }
  .mainheader .prosearch input[type="text"] {
    width: 190px;
  }
}
@media (min-width: 1200px) {
  .mainheader {
    width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
  }
  .mainheader .prosearch {
    width: 300px;
    left: 56%;
  }
  .mainheader .prosearch input[type="text"] {
    width: 260px;
    padding-left: 20px;
  }
}
.mainheader .protitle div {
  display: none;
}
@media (min-width: 480px) {
  .mainheader .protitle {
    position: relative;
  }
  .mainheader .protitle div {
    position: absolute;
    width: 124px;
    height: auto;
    border: 1px solid #efefef;
    border-radius: 5px;
    top: 50px;
    left: 180px;
  }
  .mainheader .protitle div a {
    display: block;
    line-height: 30px;
    height: 30px;
    text-align: center;
  }
  .mainheader .protitle div img {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    top: -9px;
  }
  .mainheader .protitle .listside {
    *zoom: 1;
    zoom: 1;
    height: inherit;
  }
  .mainheader .protitle .listside:after {
    content: " ";
    clear: both;
    display: table;
  }
  .mainheader .protitle .listside a {
    padding-left: 5px;
  }
  .mainheader .protitle .listside span {
    display: block!important;
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .mainheader .protitle {
    width: 475px;
  }
}
/* 项目导航 */
.mainnav {
  display: none;
  height: 50px;
  line-height: 50px;
}
.mainnav ul {
  width: 100%;
}
.mainnav li {
  float: left;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  height: 50px;
}
.mainnav li a {
  padding: 0 24px;
  line-height: 50px;
  display: block;
  box-sizing: border-box;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: clip;
}
.mainnav li a:hover {
  background: #0caef1;
}
.mainnav li ul {
  width: 100%;
  z-index: 100;
  display: none;
  position: absolute;
  top: 50px;
  left: 0px;
  background: #1ab7da;
}
.mainnav li ul li {
  width: 100%;
  float: none;
}
.mainnav li ul li a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: clip;
  padding-left: 6px;
  padding-right: 6px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .mainnav {
    display: block;
  }
  .mainnav li:hover .navbar2,
  .mainnav li:hover ul {
    display: block;
  }
}
@media (min-width: 992px) {
  .mainnav li a {
    padding: 0 40px;
  }
  .mainnav a {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .mainnav ul {
    width: 1200px;
    margin: 0 auto;
  }
}
.mainnav {
  background-color: #1ab7da;
}
.mainnav li.selecded a,
.mainnav li:hover a {
  background-color: #0caef1;
}
.copyright p {
  text-align: center;
  color: #fff;
}
.copyright p img {
  vertical-align: middle;
}
.copyright p a {
  color: #fff;
  margin: 0 5px;
}
.copyright p a img {
  margin-right: 5px;
}
