@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "microsoft yahei";
  font-size: 14px;
  color: #555;
}

a {
  text-decoration: none;
  cursor: pointer;
}

li {
  list-style: none;
}

button {
  outline: none;
  border-style: none;
  line-height: 1;
  cursor: pointer;
}

img {
  display: block;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.align-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

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

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.justify-around {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.justify-star {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.flex-1 {
  width: 0;
  -webkit-box-flex: 1;
  /* mate8 支持 */
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
}

.z-999 {
  z-index: 999;
}

.z-9999 {
  z-index: 9999;
}

.margin-auto {
  margin: 0 auto;
}

.absolute-mid {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}

.ls-width-out {
  width: 1200px;
  margin: 0 auto;
}

.ls-width-100 {
  width: 100%;
}

.ls-width-10 {
  width: 10%;
}

.ls-width-20 {
  width: 20%;
}

.ls-width-25 {
  width: 25%;
}

.ls-width-33 {
  width: 33.3333333333%;
}

.ls-width-50 {
  width: 50%;
}

.ls-width-24 {
  width: 24.166666666%;
}

.ls-width-74 {
  width: 74.166666666%;
}

.ls-width-125 {
  width: 12.5%;
}

.ls-height-0 {
  height: 0px;
}

.ls-height-50 {
  height: 50px;
}

.ls-overflow-hidden {
  overflow: hidden;
}

.display-none {
  display: none;
}

.display-block {
  display: block;
}

.display-i-block {
  display: inline-block;
}

.display-inline {
  display: inline;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.clear-both {
  clear: both;
}

.ls-absolute {
  position: absolute;
}

.ls-relative {
  position: relative;
}

.ls-fixed {
  position: fixed;
}

.ls-left-0 {
  left: 0;
}

.ls-right-0 {
  right: 0;
}

.ls-top-0 {
  top: 0;
}

.ls-bottom-0 {
  bottom: 0;
}

.opacity-1 {
  opacity: 0.1;
}

.opacity-2 {
  opacity: 0.2;
}

.opacity-3 {
  opacity: 0.3;
}

.opacity-4 {
  opacity: 0.4;
}

.opacity-5 {
  opacity: 0.5;
}

.opacity-6 {
  opacity: 0.6;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-8 {
  opacity: 0.8;
}

.opacity-9 {
  opacity: 0.9;
}

.opacity-10 {
  opacity: 1;
}

.ls-h-mini-padding {
  padding-left: 5px;
  padding-right: 5px;
}

.ls-r-mini-padding {
  padding-right: 5px;
}

.ls-r-huge-padding {
  padding-right: 30px;
}

.ls-l-mini-padding {
  padding-left: 5px;
}

.ls-v-mini-padding {
  padding-top: 5px;
  padding-bottom: 5px;
}

.ls-v-huge-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ls-h-huge-padding {
  padding-left: 30px;
  padding-right: 30px;
}

.ls-l-huge-padding {
  padding-left: 30px;
}

.ls-t-mini-padding {
  padding-top: 5px;
}

.ls-b-mini-padding {
  padding-bottom: 5px;
}

.ls-b-huge-padding {
  padding-bottom: 30px;
}

.ls-h-small-padding {
  padding-left: 10px;
  padding-right: 10px;
}

.ls-l-small-padding {
  padding-left: 10px;
}

.ls-r-small-padding {
  padding-right: 10px;
}

.ls-v-small-padding {
  padding-top: 10px;
  padding-bottom: 10px;
}

.ls-t-small-padding {
  padding-top: 10px;
}

.ls-b-small-padding {
  padding-bottom: 10px;
}

.ls-h-big-padding {
  padding-left: 15px;
  padding-right: 15px;
}

.ls-r-big-padding {
  padding-right: 15px;
}

.ls-l-big-padding {
  padding-left: 15px;
}

.ls-v-big-padding {
  padding-top: 15px;
  padding-bottom: 15px;
}

.ls-t-big-padding {
  padding-top: 15px;
}

.ls-b-big-padding {
  padding-bottom: 15px;
}

.ls-h-large-padding {
  padding-left: 20px;
  padding-right: 20px;
}

.ls-l-large-padding {
  padding-left: 20px;
}

.ls-r-large-padding {
  padding-right: 20px;
}

.ls-v-large-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ls-t-large-padding {
  padding-top: 20px;
}

.ls-t-huge-padding {
  padding-top: 30px;
}

.ls-b-large-padding {
  padding-bottom: 20px;
}

.ls-h-mini-margin {
  margin-left: 5px;
  margin-right: 5px;
}

.ls-r-mini-margin {
  margin-right: 5px;
}

.ls-l-mini-margin {
  margin-left: 5px;
}

.ls-v-mini-margin {
  margin-top: 5px;
  margin-bottom: 5px;
}

.ls-t-mini-margin {
  margin-top: 5px;
}

.ls-b-mini-margin {
  margin-bottom: 5px;
}

.ls-h-small-margin {
  margin-left: 10px;
  margin-right: 10px;
}

.ls-l-small-margin {
  margin-left: 10px;
}

.ls-r-small-margin {
  margin-right: 10px;
}

.ls-r-huge-margin {
  margin-right: 30px;
}

.ls-v-small-margin {
  margin-top: 10px;
  margin-bottom: 10px;
}

.ls-v-huge-margin {
  margin-top: 30px;
  margin-bottom: 30px;
}

.ls-t-small-margin {
  margin-top: 10px;
}

.ls-b-small-margin {
  margin-bottom: 10px;
}

.ls-h-big-margin {
  margin-left: 15px;
  margin-right: 15px;
}

.ls-r-big-margin {
  margin-right: 15px;
}

.ls-l-big-margin {
  margin-left: 15px;
}

.ls-v-big-margin {
  margin-top: 15px;
  margin-bottom: 15px;
}

.ls-t-big-margin {
  margin-top: 15px;
}

.ls-b-big-margin {
  margin-bottom: 15px;
}

.ls-h-large-margin {
  margin-left: 20px;
  margin-right: 20px;
}

.ls-l-large-margin {
  margin-left: 20px;
}

.ls-r-large-margin {
  margin-right: 20px;
}

.ls-v-large-margin {
  margin-top: 20px;
  margin-bottom: 20px;
}

.ls-t-large-margin {
  margin-top: 20px;
}

.ls-t-huge-margin {
  margin-top: 30px;
}

.ls-b-huge-margin {
  margin-bottom: 30px;
}

.ls-h-huge-margin {
  margin-left: 30px;
  margin-right: 30px;
}

.ls-b-large-margin {
  margin-bottom: 20px;
}

.ls-no-padding-h {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.ls-no-padding-v {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.ls-no-padding-l {
  padding-left: 0 !important;
}

.ls-no-padding-r {
  padding-right: 0 !important;
}

.ls-no-padding-t {
  padding-top: 0 !important;
}

.ls-no-padding-b {
  padding-bottom: 0 !important;
}

.ls-no-margin-h {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ls-no-margin-v {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.ls-no-margin-l {
  margin-left: 0 !important;
}

.ls-no-margin-r {
  margin-right: 0 !important;
}

.ls-no-margin-t {
  margin-top: 0 !important;
}

.ls-no-margin-b {
  margin-bottom: 0 !important;
}

.font-10 {
  font-size: 10px;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-26 {
  font-size: 26px;
}

.font-28 {
  font-size: 28px;
}

.font-30 {
  font-size: 30px;
}

.line-h-1 {
  line-height: 1;
}

.line-h-1-2 {
  line-height: 1.2;
}

.line-h-1-4 {
  line-height: 1.4;
}

.line-h-1-6 {
  line-height: 1.6;
}

.line-h-1-8 {
  line-height: 1.8;
}

.line-h-2 {
  line-height: 2;
}

.line-h-2-2 {
  line-height: 2.2;
}

.line-h-2-4 {
  line-height: 2.4;
}

.line-h-2-6 {
  line-height: 2.6;
}

.line-h-2-8 {
  line-height: 2.8;
}

.line-h-3 {
  line-height: 3;
}

.text-28 {
  text-indent: 28px;
}

.text-justify {
  text-align: justify;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

.font-bold {
  font-weight: bold;
}

.ls-underline:hover {
  text-decoration: underline;
}
.ls-underline:hover p, .ls-underline:hover span, .ls-underline:hover h1, .ls-underline:hover h2, .ls-underline:hover h3, .ls-underline:hover h4, .ls-underline:hover h5 {
  text-decoration: underline;
}

.cursor-pointer {
  cursor: pointer;
}

.text-hover-togray, .text-hover-toblack, .bg-hover-tolblue, .bg-hover-tolgreen, .text-hover-tored {
  transition: all 0.2s ease;
}
.text-hover-togray p, .text-hover-togray span, .text-hover-togray h1, .text-hover-togray h2, .text-hover-togray h3, .text-hover-togray h4, .text-hover-togray h5, .text-hover-toblack p, .text-hover-toblack span, .text-hover-toblack h1, .text-hover-toblack h2, .text-hover-toblack h3, .text-hover-toblack h4, .text-hover-toblack h5, .bg-hover-tolblue p, .bg-hover-tolblue span, .bg-hover-tolblue h1, .bg-hover-tolblue h2, .bg-hover-tolblue h3, .bg-hover-tolblue h4, .bg-hover-tolblue h5, .bg-hover-tolgreen p, .bg-hover-tolgreen span, .bg-hover-tolgreen h1, .bg-hover-tolgreen h2, .bg-hover-tolgreen h3, .bg-hover-tolgreen h4, .bg-hover-tolgreen h5, .text-hover-tored p, .text-hover-tored span, .text-hover-tored h1, .text-hover-tored h2, .text-hover-tored h3, .text-hover-tored h4, .text-hover-tored h5 {
  transition: all 0.2s ease;
}

.text-hover-togray:hover {
  color: #777;
}
.text-hover-togray:hover p, .text-hover-togray:hover span, .text-hover-togray:hover h1, .text-hover-togray:hover h2, .text-hover-togray:hover h3, .text-hover-togray:hover h4, .text-hover-togray:hover h5 {
  color: #777;
}

.bg-hover-tolgreen:hover {
  background-color: #f9fcfc;
}

.text-hover-tored:hover {
  color: #fc4a4a;
}
.text-hover-tored:hover p, .text-hover-tored:hover span, .text-hover-tored:hover h1, .text-hover-tored:hover h2, .text-hover-tored:hover h3, .text-hover-tored:hover h4, .text-hover-tored:hover h5 {
  color: #fc4a4a;
}

.text-hover-toyellow:hover {
  color: #ffff80;
}
.text-hover-toyellow:hover p, .text-hover-toyellow:hover span, .text-hover-toyellow:hover h1, .text-hover-toyellow:hover h2, .text-hover-toyellow:hover h3, .text-hover-toyellow:hover h4, .text-hover-toyellow:hover h5 {
  color: #ffff80;
}

.text-hover-togray:hover {
  color: #777;
}
.text-hover-togray:hover p, .text-hover-togray:hover span, .text-hover-togray:hover h1, .text-hover-togray:hover h2, .text-hover-togray:hover h3, .text-hover-togray:hover h4, .text-hover-togray:hover h5 {
  color: #777;
}

.text-hover-toblack:hover {
  color: #333;
}
.text-hover-toblack:hover p, .text-hover-toblack:hover span, .text-hover-toblack:hover h1, .text-hover-toblack:hover h2, .text-hover-toblack:hover h3, .text-hover-toblack:hover h4, .text-hover-toblack:hover h5 {
  color: #333;
}

.text-hover-toorange {
  transition: all 0.2s ease;
}
.text-hover-toorange p, .text-hover-toorange span, .text-hover-toorange h1, .text-hover-toorange h2, .text-hover-toorange h3, .text-hover-toorange h4, .text-hover-toorange h5 {
  transition: all 0.2s ease;
}

.text-hover-toorange:hover {
  color: #f60;
}
.text-hover-toorange:hover p, .text-hover-toorange:hover span, .text-hover-toorange:hover h1, .text-hover-toorange:hover h2, .text-hover-toorange:hover h3, .text-hover-toorange:hover h4, .text-hover-toorange:hover h5 {
  color: #f60;
}

.text-hover-toblue {
  transition: all 0.2s ease;
}
.text-hover-toblue p, .text-hover-toblue span, .text-hover-toblue h1, .text-hover-toblue h2, .text-hover-toblue h3, .text-hover-toblue h4, .text-hover-toblue h5 {
  transition: all 0.2s ease;
}

.text-hover-toblue:hover {
  color: #0095EB;
}
.text-hover-toblue:hover p, .text-hover-toblue:hover span, .text-hover-toblue:hover h1, .text-hover-toblue:hover h2, .text-hover-toblue:hover h3, .text-hover-toblue:hover h4, .text-hover-toblue:hover h5 {
  color: #0095EB;
}

.text-hover-togreen:hover {
  color: #009944;
}
.text-hover-togreen:hover p, .text-hover-togreen:hover span, .text-hover-togreen:hover h1, .text-hover-togreen:hover h2, .text-hover-togreen:hover h3, .text-hover-togreen:hover h4, .text-hover-togreen:hover h5 {
  color: #009944;
}

.bg-hover-tolblue:hover {
  background-color: #00b2fc;
}

.bg-hover-tolllblue:hover {
  background-color: #EFF5FC;
}

.help-list-hover {
  position: relative;
}
.help-list-hover:hover {
  background-color: #f7f7f7;
  text-decoration: underline;
  color: #777;
}
.help-list-hover:hover:before {
  content: "";
  position: absolute;
  width: 4px;
  background-color: #095eb2;
  height: 100%;
  left: 0;
  top: 0;
}

.bg-hover-togray, .bg-hover-to-l-s-blue {
  transition: all 0.2s ease;
}

.bg-hover-togray:hover {
  background-color: #fcfcfc;
}

.bg-hover-to-l-s-blue:hover {
  background-color: #EFF5FC;
  box-shadow: 0px 0px 10px #CCCCCC;
}

.bg-blueness-color {
  background-color: #38d0db;
}

.bg-blue-color {
  background-color: #3d9af6;
}

.bg-blue-l-color {
  background-color: #00b2fc;
}

.bg-blue-ll-color {
  background-color: #d8ecff;
}

.bg-blue-lll-color {
  background-color: #EFF5FC;
}

.bg-blue-d-color {
  background-color: #095eb2;
}

.bg-blue-dd-color {
  background-color: #288add;
}

.bg-black-color {
  background-color: #2f333c;
}

.bg-orange-color {
  background-color: #f60;
}

.bg-orange-l-color {
  background-color: #ff9933;
}

.bg-orange-ll-color {
  background-color: #ff8b3e;
}

.bg-orange-lll-color {
  background-color: #f4ab2b;
}

.bg-orange-d-color {
  background-color: #e7900d;
}

.bg-white-color {
  background-color: #fff;
}

.bg-white-color-5 {
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-white-d-color {
  background-color: #f8f8f8;
}

.bg-white-dd-color {
  background-color: #f7f7f7;
}

.bg-white-ddd-color {
  background-color: #f4f4f4;
}

.bg-white-dddd-color {
  background-color: #ccc;
}

.bg-red-color {
  background-color: #ff6a6a;
}

.bg-red-d-color {
  background-color: #fc4a4a;
}

.bg-green-color {
  background-color: #009944;
}

.bg-green-l-color {
  background-color: #def1db;
}

.bg-green-ll-color {
  background-color: #80ff80;
}

.bg-green-d-color {
  background-color: #068740;
}

.bg-yellow-color {
  background-color: #ffff80;
}

.bg-yellow-l-color {
  background-color: #fffff1;
}

.text-black-d-color {
  color: #000;
}

.text-black-color {
  color: #333;
}

.text-black-l-colo {
  color: #666;
}

.text-black-ll-color {
  color: #777;
}

.text-black-lll-color {
  color: #999;
}

.text-black-llll-color {
  color: #bfbbbb;
}

.text-red-color {
  color: #d42024;
}

.text-red-d-color {
  color: #fc4a4a;
}

.text-orange-color {
  color: #f60;
}

.text-orange-l-color {
  color: #ff9933;
}

.text-white-color {
  color: #fff;
}

.text-blue-color {
  color: #0095EB;
}

.text-blue-d-color {
  color: #095eb2;
}

.text-green-color {
  color: #009944;
}

.text-red-color {
  color: #d42024;
}

.text-yellow-color {
  background-color: #ffff80;
}

.box-shadow-1 {
  box-shadow: 0px 5px 10px 0px rgba(111, 116, 132, 0.1);
}

.box-shadow-2 {
  box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.1);
}

.box-shadow-3 {
  box-shadow: 0 2px 20px 0 rgba(15, 12, 70, 0.1) !important;
}

.box-shadow-4 {
  box-shadow: 0 7px 14px #B0B0B0;
}

.shadow-hover-togray {
  transition: all 0.2s ease;
}

.shadow-hover-togray:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.ls-blue-btn {
  background-color: #3d9af6;
  color: #fff;
}
.ls-blue-btn:hover {
  transition: all 0.2s ease;
  background-color: #095eb2;
  box-shadow: 0 2px 10px 0 #b8d5f6;
}

.ls-blue-btn-noh {
  background-color: #3d9af6;
  color: #fff;
  border: 1px solid #3395f6;
}

.ls-blue-white-btn {
  background-color: #fff;
  border: 1px solid #3395f6;
}
.ls-blue-white-btn:hover {
  transition: all 0.2s ease;
  background-color: #095eb2;
  box-shadow: 0 2px 10px 0 #b8d5f6;
  color: #fff;
  border: 1px solid #095eb2;
}

.ls-red-white-btn {
  background-color: #fff;
  border: 1px solid #ff6a6a;
}
.ls-red-white-btn:hover {
  background-color: #ff6a6a;
  color: #fff;
  border: 1px solid #ff6a6a;
}

.ls-blue-white-btn2 {
  background-color: #fff;
  border: 1px solid #3395f6;
}
.ls-blue-white-btn2:hover {
  background-color: #3d9af6;
  color: #fff;
  border: 1px solid #3d9af6;
}

.ls-blue-white-btn3 {
  background-color: #fff;
  border: 1px solid #ddd;
}
.ls-blue-white-btn3:hover {
  background-color: #3d9af6;
  color: #fff;
  border: 1px solid #3d9af6;
}

.ls-l-blue-btn {
  transition: all 0.2s ease;
  background-color: #00b2fc;
  color: #fff;
}
.ls-l-blue-btn:hover {
  background-color: #3d9af6;
}

.ls-ll-blue-btn {
  background-color: #d8ecff;
  border: 1px solid #3395f6;
  transition: all 0.2s ease;
  color: #0095EB;
}
.ls-ll-blue-btn:hover {
  background-color: #f7f7f7;
  color: #777;
  border: 1px solid #bbb;
}

.ls-ll-red-btn {
  background-color: #fff7ee;
  border: 1px solid #fc4a4a;
  transition: all 0.2s ease;
  color: #777;
}
.ls-ll-red-btn:hover {
  background-color: #fff;
}

.ls-ll-red-btn2 {
  background-color: #fadada;
  border: 1px solid #fc4a4a;
  transition: all 0.2s ease;
  color: #777;
}

.ls-ll-black-btn {
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}
.ls-ll-black-btn:hover {
  background-color: #d8ecff;
  color: #0095EB;
  border: 1px solid #3395f6;
}

.ls-white-btn {
  transition: all 0.2s ease;
  background-color: #fff;
  color: #666;
  border: 1px solid #fff;
}
.ls-white-btn:hover {
  background-color: #f7f7f7;
  color: #777;
  border: 1px solid #bbb;
}

.ls-drop-btn {
  transition: all 0.2s ease;
  border: 1px solid #ddd;
  background-color: #fff;
}
.ls-drop-btn:hover {
  text-decoration: underline;
  color: #999;
}

.ls-orange-btn {
  background-color: #f60;
  color: #fff;
  transition: all 0.2s ease;
}
.ls-orange-btn:hover {
  background-color: #e7900d;
  box-shadow: 0 2px 10px 0 #b8d5f6;
}

.ls-l-orange-btn {
  transition: all 0.2s ease;
  background-color: #ff9933;
  color: #fff;
}
.ls-l-orange-btn:hover {
  background-color: #f60;
}

.ls-l-orange-white-btn {
  background-color: #fff;
  border: 1px solid #ff9933;
}
.ls-l-orange-white-btn:hover {
  background-color: #ff9933;
  color: #fff;
  border: 1px solid #ff9933;
}

.ls-ll-orange-btn {
  background-color: #ff8b3e;
  border: 1px solid #ff9933;
}

.ls-green-white-btn {
  background-color: #fff;
  border: 1px solid #0ab389;
}
.ls-green-white-btn:hover {
  background-color: #009944;
  color: #fff;
  border: 1px solid #0ab389;
}

.ls-red-btn {
  background-color: #ff6a6a;
  color: #fff;
}
.ls-red-btn:hover {
  transition: all 0.2s ease;
  background-color: #fc4a4a;
  box-shadow: 0 2px 10px 0 #e6c1c1;
}

.ls-green-btn {
  background-color: #009944;
  color: #fff;
}
.ls-green-btn:hover {
  transition: all 0.2s ease;
  background-color: #068740;
}

.ls-gray-btn {
  background-color: #f7f7f7;
  color: #777;
  border: 1px solid #bbb;
  transition: all 0.2s ease;
}
.ls-gray-btn:hover {
  transition: all 0.2s ease;
  background-color: #3d9af6;
  color: #fff;
  border-color: #3395f6;
}
.ls-gray-btn span {
  color: inherit;
}

.ls-gray-white-btn {
  background-color: #fff;
  color: #666;
  border: 1px solid #bbb;
  transition: all 0.2s ease;
}
.ls-gray-white-btn:hover {
  color: #777;
  text-decoration: underline;
}
.ls-gray-white-btn span {
  color: inherit;
}

.ls-gray-btn3-noh {
  background-color: #ccc;
  color: #fff;
  transition: all 0.2s ease;
}
.ls-gray-btn3-noh span {
  color: inherit;
}

.ls-gray-btn2 {
  background-color: #f7f7f7;
  color: #777;
  border: 1px solid #bbb;
  transition: all 0.2s ease;
}
.ls-gray-btn2:hover {
  transition: all 0.2s ease;
  background-color: #f60;
  color: #fff;
  border-color: #f60;
}
.ls-gray-btn2 span {
  color: inherit;
}

.ls-radius-btn {
  border-radius: 3px;
}

.ls-round-btn {
  border-radius: 50px;
}

.ls-btn-hover1:hover {
  background-color: #f7f7f7;
  border: 1px solid #bbb;
  transition: all 0.2s ease;
}

.ls-toshadow {
  transition: all 0.2s ease;
}
.ls-toshadow:hover {
  box-shadow: 0px 10px 10px #DDD;
}

.ls-totop {
  transition: all 0.2s ease;
}
.ls-totop:hover {
  transform: translateY(-3px);
}

.ls-toright {
  transition: all 0.2s ease;
}
.ls-toright:hover {
  transform: translateX(10px);
}

.mini-radius {
  border-radius: 3px;
}

.small-radius {
  border-radius: 5px;
}

.border-left-blue-3 {
  border-left: 3px solid #3395f6;
}

.border-dd-color {
  border: 1px solid #e5e5e5;
}

.border-green-color {
  border: 1px solid #0ab389;
}

.border-blue-color {
  border: 1px solid #3395f6;
}

.border-orange-color {
  border: 1px solid #f60;
}

.border-d-color {
  border: 1px solid #eee;
}

.border-red-color {
  border: 1px solid #ff6a6a;
}

.border-right-d-color {
  border-right: 1px solid #eee;
}

.border-left-d-color {
  border-left: 1px solid #eee;
}

.border-bottom-d-color {
  border-bottom: 1px solid #eee;
}

.border-top-d-color {
  border-top: 1px solid #eee;
}

.border-right-ddddd-color {
  border-right: 1px dashed #bbb;
}

.border-bottom-ddddd-color {
  border-bottom: 1px solid #bbb;
}

.border-left-ddddd-color {
  border-left: 1px dashed #555;
}

.border-right-ddddd-color {
  border-right: 1px dashed #555;
}

.border-top-dd-color {
  border-top: 1px solid #e5e5e5;
}

.border-bottom-dd-color {
  border-bottom: 1px solid #e5e5e5;
}

.border-bottom-dddddd-color {
  border-bottom: 1px dashed #555;
}

.border-bottom-throw, .border-bottom-throw-2, .border-bottom-throw-3 {
  position: relative;
}

.border-bottom-throw {
  color: #f60;
}

.border-bottom-throw:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  border-width: 10px;
  border-style: solid;
  border-top-color: #ff9933;
  border-left-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
  border-right-color: #f8f8f8;
  box-sizing: border-box;
}

.border-bottom-throw-2 {
  color: #009944;
}

.border-bottom-throw-2:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  border-width: 10px;
  border-style: solid;
  border-top-color: #0ab389;
  border-left-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
  border-right-color: #f8f8f8;
  box-sizing: border-box;
}

.border-bottom-throw-3 {
  color: #0095EB;
}

.border-bottom-throw-3:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  border-width: 10px;
  border-style: solid;
  border-top-color: #3395f6;
  border-left-color: #f8f8f8;
  border-bottom-color: #f8f8f8;
  border-right-color: #f8f8f8;
  box-sizing: border-box;
}

.ls-alert {
  padding: 15px;
  text-align: center;
  height: 280px;
  border-radius: 10px;
  position: relative;
}
.ls-alert img {
  display: inline-block;
  padding: 15px 0;
}
.ls-alert .ls-alert-close-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url(../img/close.png);
  background-repeat: no-repeat;
  background-size: 100%;
  right: 13px;
  top: 12px;
  cursor: pointer;
}

#allTc .select-input2 {
  width: 160px !important;
}

.empty-list {
  position: relative;
}
.empty-list:before {
  content: "暂无数据";
  position: absolute;
  top: 30%;
  left: 50%;
  margin-left: -29px;
  margin-top: 50px;
  color: #999;
}
.empty-list:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  top: 30%;
  margin-top: -50px;
  left: 50%;
  margin-left: -50px;
  background-image: url(../img/empty.png);
  background-repeat: no-repeat;
  background-size: 100px 100px;
  white-space: nowrap;
}

.empty-recharge-list:before {
  content: "您还没由此充值记录，";
  margin-left: -90px;
  cursor: pointer;
}
.empty-recharge-list:after {
  padding-top: 100px;
  padding-left: 95px;
  content: "立即充值";
  color: #0095EB;
  cursor: pointer;
}

.empty-withdraw-list:before {
  content: "莲豆余额不足50莲豆，请先";
  margin-left: -140px;
  cursor: pointer;
}
.empty-withdraw-list:after {
  padding-top: 100px;
  padding-left: 80px;
  content: "上传文档赚莲豆吧！";
  color: #0095EB;
  cursor: pointer;
}

.ls-radio-blur {
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  line-height: 1;
}
.ls-radio-blur:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid #ddd;
  border-radius: 50%;
  left: 10px;
  top: 50%;
  margin-top: -8px;
  z-index: 9;
}

.ls-radio-focus {
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  line-height: 1;
}
.ls-radio-focus:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid #0ab389;
  border-radius: 50%;
  left: 10px;
  top: 50%;
  margin-top: -8px;
  z-index: 9;
}
.ls-radio-focus:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #009944;
  border-radius: 50%;
  left: 14px;
  top: 50%;
  margin-top: -4px;
  z-index: 9;
}

.ls-recharge-radio {
  width: 280px;
  height: 210px;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.ls-recharge-focus {
  border: 4px solid #54d594;
  box-shadow: 0px 0px 14px #ccc;
}
.ls-recharge-focus:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../img/check-icon.png);
  background-repeat: no-repeat;
  right: 0px;
  top: 0px;
  z-index: 9;
}

.ls-recharge-hot {
  width: 196px;
  height: 32px;
  position: absolute;
  font-size: 12px;
  color: #fff;
  z-index: 999;
  top: -16px;
  left: 0;
  text-indent: 25px;
  text-align: left;
  line-height: 32px;
  background-image: url(../img/price-tag.png);
  background-repeat: no-repeat;
}

.ls-checkbox-blur {
  cursor: pointer;
  position: relative;
}
.ls-checkbox-blur:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #3395f6;
  border-radius: 50%;
  background-color: #fff;
  left: 50%;
  top: 50%;
  margin-left: -11px;
  margin-top: -11px;
  z-index: 9;
}

.ls-checkbox-focus {
  cursor: pointer;
  position: relative;
}
.ls-checkbox-focus:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #3395f6;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  margin-left: -11px;
  margin-top: -11px;
  z-index: 9;
}
.ls-checkbox-focus:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #3d9af6;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  z-index: 9;
}

.uni-form .form-input {
  margin-bottom: 30px;
}
.uni-form .form-input input {
  width: 100%;
  height: 43px;
  line-height: 43px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.uni-form .form-input textarea {
  width: 100%;
  resize: none;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 10px;
  display: block;
}
.uni-form .form-input .get-yzm {
  position: absolute;
  right: 2px;
  top: 0;
  height: 33px;
  margin: 5px 0;
  padding: 0 10px;
  border-left: 1px solid #ccc;
  line-height: 33px;
  background: #fff;
  width: 105px;
  text-align: center;
}
.uni-form button {
  width: 100% px;
}

.select-input, .select-input2 {
  padding-right: 30px !important;
  cursor: pointer;
}

.select-input2 {
  width: 230px !important;
}

.select-list, .select-list2, .select-list-2, .select-list-3 {
  display: none;
  z-index: 99999;
  position: absolute;
  height: 300px;
  overflow-y: auto;
  top: 55px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 3px;
}
.select-list li, .select-list2 li, .select-list-2 li, .select-list-3 li {
  padding: 10px 30px !important;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  color: #777;
  white-space: nowrap;
}
.select-list li:hover, .select-list2 li:hover, .select-list-2 li:hover, .select-list-3 li:hover {
  background-color: #f8f8f8;
  color: #666;
}

.select-list, .select-list2 {
  right: 0;
}

.select-list-2 {
  left: 100%;
}

.select-list:before {
  content: "";
  position: absolute;
  background-image: url(../img/throw-icon.png);
  width: 18px;
  height: 9px;
  top: -9px;
  left: 50%;
  margin-left: -9px;
}

.solid-drop {
  position: absolute;
  width: 14px;
  height: 10px;
  background-image: url(../img/solid-down.png);
  background-repeat: no-repeat;
  right: 10px;
  top: 50%;
  margin-top: -5px;
  background-size: 100%;
}

.img-width-1 {
  width: 108px;
  height: 136px;
}

.img-width-2 {
  width: 204px;
  height: 150px;
}

.img-width-3 {
  width: 315px;
  height: 350px;
}

.img-width-4 {
  width: 143px;
  height: 143px;
}

.img-width-5 {
  width: 180px;
  height: 180px;
}

.img-width-6 {
  width: 30px;
  height: 30px;
}

.mid-jpg {
  overflow: hidden;
  position: relative;
  background-color: #f8f8f8;
}
.mid-jpg img {
  position: absolute;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.ab-r-btn {
  width: 100px;
  text-align: right;
  padding: 0 20px;
  background-color: #fff;
}

.text-nowrap {
  white-space: nowrap;
}

.pointer-none {
  pointer-events: none;
}

.ls-throughline {
  text-decoration: line-through;
}
.ls-throughline p, .ls-throughline span, .ls-throughline h1, .ls-throughline h2, .ls-throughline h3, .ls-throughline h4, .ls-throughline h5 {
  text-decoration: line-through;
}

.hot {
  position: relative;
}

.hot:before {
  content: "";
  position: absolute;
  background-image: url(../img/hot.gif);
  background-repeat: no-repeat;
  right: 0;
  top: 0px;
  width: 22px;
  height: 11px;
}

.hot2 {
  position: relative;
}

.hot2:before {
  content: "";
  position: absolute;
  background-image: url(../img/hot.gif);
  background-repeat: no-repeat;
  right: -10px;
  top: -5px;
  width: 22px;
  height: 11px;
}

.ls-title, .ls-title-l-orange, .ls-title-green {
  font-size: 28px;
  padding-left: 20px;
  line-height: 1;
  position: relative;
}

.ls-mini-title {
  font-size: 18px;
  padding-left: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #000;
  line-height: 1;
  position: relative;
}

.ls-mini-title:before {
  content: "";
  position: absolute;
  width: 4px;
  top: 50%;
  margin-top: -9px;
  height: 18px;
  left: 0;
  border-radius: 3px;
  background-color: #3d9af6;
}

.ls-title:before {
  content: "";
  position: absolute;
  width: 6px;
  top: 1px;
  left: 0;
  border-radius: 3px;
  height: 100%;
  background-color: #3d9af6;
}

.ls-title-l-orange:before {
  content: "";
  position: absolute;
  width: 6px;
  top: 1px;
  left: 0;
  border-radius: 3px;
  height: 100%;
  background-color: #ff9933;
}

.ls-title-green:before {
  content: "";
  position: absolute;
  width: 6px;
  top: 1px;
  left: 0;
  border-radius: 3px;
  height: 100%;
  background-color: #009944;
}

.fit-img {
  background: #f7f7f7;
  position: relative;
}
.fit-img img {
  position: absolute;
  left: 50%;
  top: 50%;
}

.text-date {
  color: #999;
  font-size: 14px;
  width: 100px;
  padding-left: 20px;
  white-space: nowrap;
}

.account-veri-icon {
  position: relative;
  padding-left: 20px;
}
.account-veri-icon:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  background-image: url(../img/orange-warning.png);
  background-repeat: no-repeat;
}

.account-success-icon {
  position: relative;
  padding-left: 20px;
}
.account-success-icon:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  background-image: url(../img/account-success.png);
  background-repeat: no-repeat;
}

.account-icon {
  position: relative;
  padding-left: 45px;
}
.account-icon:before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  background-image: url(../img/account-icon.png);
  background-repeat: no-repeat;
  z-index: 2;
}

.account-editor:before {
  background-position: 0 -130px;
}

.account-password:before {
  background-position: 0 -105px;
}

.account-email:before {
  background-position: -39px -105px;
}

.account-phone:before {
  background-position: -70px -105px;
}

.account-identity:before {
  background-position: -100px -105px;
}

.account-qq:before {
  background-position: -60px -138px;
  left: 10px;
  margin-top: -12px;
}

.account-qq, .account-wx, .account-sina {
  padding-left: 70px;
}

.account-qq:after, .account-wx:after, .account-sina:after {
  width: 42px;
  height: 42px;
  position: absolute;
  z-index: 1;
  content: "";
  border-radius: 50%;
  background-color: #ccc;
  top: 50%;
  left: 0;
  margin-top: -21px;
}

.account-wx:after {
  margin-top: -23px;
}

.account-wx:before {
  background-position: -31px -140px;
  left: 10px;
  margin-top: -12px;
}

.account-sina:before {
  background-position: -92px -140px;
  left: 10px;
  margin-top: -12px;
}

.key-icon {
  width: 65px;
  height: 65px;
  background-color: #ccc;
  background-image: url(../img/key-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

.check-icon {
  position: relative;
  padding-left: 22px;
}

.drop-throw {
  position: relative;
  padding-right: 22px;
  cursor: pointer;
}

.drop-throw-1:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
  width: 13px;
  height: 12px;
  overflow: hidden;
  background-image: url(../img/drop-throw-1.png);
  background-repeat: no-repeat;
}

.drop-throw-2:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
  width: 13px;
  height: 12px;
  overflow: hidden;
  background-image: url(../img/drop-throw-2.gif);
  background-repeat: no-repeat;
}

.check-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  overflow: hidden;
  border: 1px solid #ddd;
  background-repeat: no-repeat;
}

.checked-icon:before {
  border: 1px solid #f60;
  background-image: url(../img/jobdh.png);
  background-position: center;
}

.ls-txt-icon {
  position: relative;
  padding-left: 24px;
}

.book-icon {
  position: relative;
  padding-left: 20px;
}

.ls-txt-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  overflow: hidden;
  background-image: url(../img/txtkind-icon.png);
  background-repeat: no-repeat;
}

.normal-icon:before {
  background-position: -80px 0px;
}

.word-icon:before {
  background-position: 0 0;
}

.ppt-icon:before {
  background-position: -16px 0;
}

.excel-icon:before {
  background-position: -32px 0;
}

.text-icon:before {
  background-position: -48px 0;
}

.pdf-icon:before {
  background-position: -54px 0;
}

.book-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  overflow: hidden;
  background-image: url(../img/fy-lb.png);
  background-repeat: no-repeat;
}

.yuandian-icon {
  padding-left: 20px;
  position: relative;
}

.yuandian-icon:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 50%;
  margin-top: -2px;
  left: 0;
  background-color: #bfbbbb;
  border-radius: 2px;
}

.office-icon {
  position: relative;
  padding-left: 60px;
}

.office-word:before, .office-excel:before, .office-ppt:before, .office-pdf:before {
  content: "";
  position: absolute;
  width: 45px;
  height: 50px;
  background-image: url(../img/office-iocn.png);
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  overflow: hidden;
}

.office-excel:before {
  background-position: -52px 0;
}

.office-ppt:before {
  background-position: -103px 0;
}

.office-pdf:before {
  background-position: -155px 0;
}

.input-icon {
  position: absolute;
  background: url(../img/login-page-icon.png);
  width: 18px;
  height: 18px;
  top: 50%;
  margin-top: -9px;
  left: 10px;
  background-repeat: no-repeat;
}

.input-user-icon {
  background-position: 0 0;
}

.input-pass-icon {
  background-position: 0 -19px;
}

.input-veri-icon {
  background-position: 0 -40px;
}

.input-phone-icon {
  background-position: 0 -61px;
}

.input-phone-veri-icon {
  background-position: 0 -85px;
}

.collection {
  position: relative;
  padding-left: 20px;
}

.collection:before {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  top: 50%;
  background-image: url(../img/yunjob-icon.png);
  background-repeat: no-repeat;
  background-position: 0 -31px;
}

.collection:hover:before {
  background-position: 0 -64px;
}

.collection2 {
  position: relative;
  padding-left: 30px;
}

.collection2:before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  top: 50%;
  background-image: url(../img/sc-icon.png);
  background-repeat: no-repeat;
}

.time-icon {
  position: relative;
  padding-left: 20px;
}

.time-icon:before {
  content: "";
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  top: 50%;
  background-image: url(../img/time-icon2.png);
  background-repeat: no-repeat;
}

.dots {
  position: relative;
  padding-left: 16px;
}
.dots:before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  top: 50%;
  line-height: 1;
  position: absolute;
  left: 0;
  border-radius: 3px;
}

.dots-orange:before {
  background-color: #ff9933;
}

.user-sign {
  position: relative;
  padding-left: 28px;
}
.user-sign:before {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  top: 50%;
  left: 0;
  margin-top: -8px;
  background-image: url(../img/sign-icon.png);
  background-repeat: no-repeat;
  background-position: -21px 0;
}

.user-veri {
  position: relative;
  padding-left: 20px;
}
.user-veri:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  margin-top: -8px;
  background-image: url(../img/userrz-icon.png);
  background-repeat: no-repeat;
}

.user-veri-iden:before {
  background-position: -18px -40px;
}

.user-veri-phone:before {
  background-position: -18px 2px;
}

.user-nav-icon {
  transition: all 0.2s ease;
  position: relative;
  padding-left: 35px;
}
.user-nav-icon:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  margin-top: -10px;
  background-image: url(../img/user-icon2.png);
  background-repeat: no-repeat;
}

.user-section:before {
  background-position: 0 0;
}

.user-personal-info:before {
  background-position: 0 -470px;
}

.user-word-plus:before {
  background-position: 0 -164px;
}

.user-aircraft:before {
  background-position: 0 -40px;
}

.user-my:before {
  background-position: 0 -60px;
}

.user-safe:before {
  background-position: 0 -382px;
}

.user-recharge:before {
  background-position: 0 -271px;
}

.user-mail:before {
  background-position: 0 -20px;
}

.user-list:before {
  background-position: 0 -403px;
}

.user-liandou:before {
  background-position: 0 -426px;
}

.user-integral:before {
  background-position: 0 -447px;
}

.user-ring:before {
  background-position: 0 -359px;
}

.user-present:before {
  background-position: 0 -335px;
}

.user-nav-right {
  position: relative;
}
.user-nav-right:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 15px;
  top: 50%;
  right: 0px;
  margin-top: -8px;
  background-image: url(../img/nav-throw.png);
  background-repeat: no-repeat;
}
.user-nav-right:hover:before {
  background-position: 0 -20px;
}

.circle-icon {
  position: relative;
}
.circle-icon:before {
  content: "";
  width: 49px;
  height: 49px;
  background: #095eb2;
  border: 2px solid #9ec7eb;
  z-index: 1;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -27px;
}

.msg-list-icon {
  position: relative;
  padding-left: 25px;
}

.msg-ring:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background-image: url(../img/msg-icon.png);
  background-repeat: no-repeat;
}

.drop-m-icon {
  position: relative;
  padding-right: 14px;
}
.drop-m-icon:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 5px;
  top: 50%;
  right: 0;
  margin-top: -3px;
  background-image: url(../img/m-drop-icon.png);
  background-repeat: no-repeat;
}

.ali-qrcode {
  position: relative;
}
.ali-qrcode:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
  background-image: url(../img/alipay.png);
  background-repeat: no-repeat;
  background-size: 40px 40px;
  z-index: 999;
}

.wx-qrcode {
  position: relative;
}
.wx-qrcode:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
  background-image: url(../img/wechat.png);
  background-repeat: no-repeat;
  background-size: 40px 40px;
  z-index: 999;
}

.plus-icon {
  position: relative;
  padding-left: 25px;
}

.plus-icon:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  margin-top: -8px;
  background: url(../img/plus-icon.png) no-repeat;
}

.search-icon {
  position: relative;
  padding-left: 50px;
}

.search-icon:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  top: 50%;
  margin-top: -25px;
  background: url(../img/tiny-search.png) no-repeat 15px center;
}

.drop-icon, .pull-icon {
  position: relative;
  padding-right: 20px;
}

.close-selected-icon {
  position: relative;
  padding-right: 30px;
}

.drop-icon:after {
  content: "";
  position: absolute;
  background-image: url(../img/drop-icon.png);
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  background-position: center;
  top: 50%;
  margin-top: -5px;
  right: 0;
}

.pull-icon:after {
  content: "";
  position: absolute;
  background-image: url(../img/pull-icon.png);
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  background-position: center;
  top: 50%;
  margin-top: -5px;
  right: 0;
}

.close-selected-icon:after {
  content: "";
  position: absolute;
  background-image: url(../img/close-red-icon.png);
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  padding: 5px 10px 5px 5px;
  background-position: center;
  top: 50%;
  margin-top: -10px;
  right: 0px;
}

.close-selected-icon:hover:after {
  background-image: url(../img/close-white-icon.png);
  background-color: #fc4a4a;
}

.search-icon2 {
  position: relative;
  padding-left: 22px;
}
.search-icon2:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 50%;
  margin-top: -8px;
  background-image: url(../img/search-icon.png);
  background-repeat: no-repeat;
}

.ls-rank-icon {
  position: relative;
  padding-left: 30px;
}

.ls-rank-icon:before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20x;
  overflow: hidden;
  border-radius: 3px;
  font-size: 14px;
  color: #0095EB;
  line-height: 20px;
  text-align: center;
  background-color: #d8ecff;
}

.number-1:before {
  content: "1";
  background-color: #f60;
  color: #fff;
}

.number-2:before {
  content: "2";
  background-color: #ff9933;
  color: #fff;
}

.number-3:before {
  content: "3";
  background-color: #ff8b3e;
  color: #fff;
}

.number-4:before {
  content: "4";
}

.number-5:before {
  content: "5";
}

.number-6:before {
  content: "6";
}

.number-7:before {
  content: "7";
}

.number-8:before {
  content: "8";
}

.number-9:before {
  content: "9";
}

.number-10:before {
  content: "10";
}

.number-icon-active {
  position: relative;
  padding-left: 35px;
  color: #0095EB;
}
.number-icon-active:before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  background-color: #3d9af6;
  border: 1px solid #3395f6;
}

.number-icon {
  position: relative;
  padding-left: 35px;
}
.number-icon:before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
  line-height: 20px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #bbb;
}

.number-icon-1:before {
  content: "1";
}

.number-icon-2:before {
  content: "2";
}

.number-icon-3:before {
  content: "3";
}

.reg-success-icon {
  z-index: 999;
  padding-left: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  background-color: #def1db;
  color: #009944;
  font-size: 12px;
  position: absolute;
  bottom: -22px;
  left: 0px;
  line-height: 1;
}

.reg-error-icon {
  z-index: 999;
  padding-left: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  background-color: #fadada;
  color: #d42024;
  font-size: 12px;
  position: absolute;
  bottom: -22px;
  left: 0px;
  line-height: 1;
}

.reg-success-icon:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  overflow: hidden;
  background-image: url(../img/reg-tips.gif);
  background-position: -25px 0;
  background-repeat: no-repeat;
}

.reg-error-icon:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  overflow: hidden;
  background-image: url(../img/reg-tips.gif);
  background-repeat: no-repeat;
}

.question-icon {
  position: relative;
  cursor: pointer;
}

.question-icon:after {
  content: "你可以点击这里检查已填写的密码";
  position: absolute;
  bottom: -30px;
  left: 0px;
  display: none;
  padding: 5px 10px;
  background-color: #fffff1;
  border: 1px solid #e4dcb4;
  white-space: nowrap;
}

.question-icon:hover:after {
  display: block;
}

.question-icon:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 16px;
  background-image: url(../img/ico-warn.png);
  background-repeat: no-repeat;
  background-position: 0 -150px;
  right: -20px;
  top: 50%;
  position: absolute;
  margin-top: -8px;
}

.qq-icon, .wx-icon {
  position: relative;
  padding-left: 20px;
}

.qq-icon:before, .wx-icon:before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../img/kj-icon2.png);
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  position: absolute;
  margin-top: -9px;
}

.qq-icon:before {
  background-position: -18px 0;
}

.wx-icon:before {
  background-position: -36px 0;
}

.money-icon {
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background-color: #ff6a6a;
  color: #fff;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
}

.ls-login-icon, .user-close-icon {
  transition: all 0.2s ease;
  position: relative;
  padding-left: 20px;
}

.warn-icon {
  display: none;
  z-index: 999;
  position: relative;
  padding-left: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  border: 1px solid #ffc7c7;
  background-color: #ffecec;
  color: #d42024;
  font-size: 12px;
  position: absolute;
  top: -18px;
  left: 10px;
  line-height: 1;
}

.ls-login-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
  width: 18px;
  height: 18px;
  overflow: hidden;
  background-image: url(../img/login-icon.png);
  background-repeat: no-repeat;
}

.user-icon:before {
  background-position: 0 0;
}

.user-close-icon:hover {
  opacity: 0.5;
}

.user-close-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  overflow: hidden;
  cursor: pointer;
  background-image: url(../js/theme/default/icon.png);
  background-position: 1px -40px;
  background-repeat: no-repeat;
}

.warn-icon:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  overflow: hidden;
  background-image: url(../img/warning-icon.png);
  background-repeat: no-repeat;
}

.warn-icon:after {
  content: "";
  position: absolute;
  background-image: url(../img/yun-icon-sj.png);
  background-repeat: no-repeat;
  width: 10px;
  height: 6px;
  left: 20%;
  bottom: -6px;
}

.ls-mobile-icon {
  position: relative;
  padding-left: 22px;
  line-height: 20px;
}

.ls-mobile-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -11px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  background-image: url(../img/mobile-ico.gif);
  background-repeat: no-repeat;
}

.mobile-apple:before {
  background-position: 2px -187px;
}

.mobile-apple:hover:before {
  background-position: 2px -52px;
}

.mobile-wechat:before {
  background-position: 0 -213px;
}

.mobile-wechat:hover:before {
  background-position: 0 -78px;
}

.mobile-android:before {
  background-position: 0 -160px;
}

.mobile-android:hover:before {
  background-position: 0 -25px;
}

.mobile-phone:before {
  background-position: 4px -132px;
}

.mobile-phone:hover:before {
  background-position: 4px 3px;
}

.before-blue-border, .before-blue-border2, .before-blue-border3 {
  position: relative;
}

.before-blue-border:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #3d9af6;
  bottom: -2px;
  left: 0;
}

.before-blue-border2:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #3d9af6;
  bottom: -43px;
  left: 0;
}

.before-blue-border3:after {
  position: absolute;
  content: "";
  width: 30%;
  height: 3px;
  background-color: #3d9af6;
  bottom: 0px;
  left: 0;
}

.before-orange-border {
  position: relative;
}

.before-orange-border:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #f60;
  bottom: -1px;
  left: 0;
}

.before-red-border {
  position: relative;
}

.before-red-border:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fc4a4a;
  bottom: -1px;
  left: 0;
}

.top-navigator {
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #fff;
  width: 280px;
  clear: both;
  z-index: 9;
}
.top-navigator .top-navigator-box {
  width: 100%;
  padding: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.top-navigator li {
  float: left;
  font-size: 14px;
  color: #666;
  width: 33.333333%;
  padding-bottom: 10px;
}
.top-navigator li a {
  transition: all 0.2s ease;
}
.top-navigator li a:hover {
  color: #0095EB;
}

.search {
  border: 2px solid #3395f6;
  border-radius: 3px;
  position: relative;
}
.search > div {
  padding: 10px;
  height: 40px;
}
.search > div > p {
  width: 50px;
}
.search input {
  border: none;
  outline: none;
  line-height: 30px;
  width: 400px;
  background-color: transparent;
}
.search button {
  line-height: 40px;
  padding: 0 25px;
  font-size: 16px;
  color: #fff;
}
.search ul {
  position: absolute;
  z-index: 99;
  width: 100%;
  top: 40px;
  left: -2px;
  border: 2px solid #3395f6;
  background-color: #fff;
}
.search ul li {
  padding: 5px;
  transition: all 0.2s ease;
}
.search ul li:hover {
  background-color: #EFF5FC;
  color: #666;
}

.search2 {
  border: 1px solid #ddd;
  border-radius: 3px;
  position: relative;
}
.search2 input {
  border: none;
  outline: none;
  line-height: 30px;
  width: 250px;
  background-color: transparent;
}
.search2 button {
  line-height: 30px;
  padding: 0 25px;
  font-size: 14px;
  color: #fff;
}

#moreSearchList {
  z-index: 99;
  position: absolute;
  width: 100%;
  top: 40px;
  left: 0px;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 5px;
}
#moreSearchList li {
  padding: 10px;
  transition: all 0.2s ease;
  color: #333;
  text-align: center;
}
#moreSearchList li:hover {
  background-color: #f8f8f8;
  color: #666;
}
#moreSearchList:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: -9px;
  left: 50%;
  margin-left: -9px;
  width: 18px;
  height: 9px;
  background-image: url(../img/throw-icon.png);
  background-repeat: no-repeat;
}

#transitionAd {
  transition: all 1s ease;
}
#transitionAd .top-ad-img {
  height: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -960px;
}

.nav-left {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 245px;
  background-color: #3d9af6;
  padding: 0 15px;
}
.nav-left p {
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  padding-left: 10px;
}

.nav-right ul li {
  position: relative;
}
.nav-right ul li a {
  font-weight: bold;
  color: #000;
  font-size: 16px;
  line-height: 40px;
  display: block;
  width: 100%;
  text-align: center;
}
.nav-right ul li a:hover {
  color: #777;
  text-decoration: underline;
}

.nav-bottom {
  width: 245px;
  height: 375px;
  position: relative;
  background-color: #fff;
}
.nav-bottom > ul > li {
  position: relative;
}
.nav-bottom > ul > li > a {
  position: relative;
  font-size: 16px;
  line-height: 42px;
  display: block;
  width: 100%;
  padding: 0 15px;
}
.nav-bottom > ul > li > a:after {
  content: ">";
  position: absolute;
  right: 15px;
  font-size: 14px;
  color: #777;
}
.nav-bottom .nav-content {
  z-index: 999;
  width: 958px;
  border: 2px solid #3395f6;
  background-color: #fff;
  position: absolute;
  left: 100%;
  margin-left: -2px;
  top: 0;
  padding: 15px;
}
.nav-bottom .nav-content .child-nav {
  padding-left: 30px;
}
.nav-bottom .nav-content .child-nav li {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.nav-bottom .nav-content .child-nav li p {
  color: #333;
  padding-right: 15px;
  font-weight: bold;
  width: 75px;
}
.nav-bottom .nav-content .child-nav li dl dd a {
  color: #777;
  display: block;
  padding: 0px 15px 10px 15px;
}

.swiper-container {
  width: 700px;
  height: 360px;
  margin-top: 15px;
  margin-left: 15px !important;
  margin-right: 15px !important;
  background-color: #fff;
}

.personal-info, .user-info {
  width: 225px;
  height: 360px;
  margin-top: 15px;
  background-color: #fff;
  position: relative;
}
.personal-info .switch-login, .user-info .switch-login {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 13px;
  top: 13px;
  cursor: pointer;
}
.personal-info .switch-login img, .user-info .switch-login img {
  width: 100%;
}
.personal-info .personal-other, .user-info .personal-other {
  position: relative;
  text-align: center;
  margin: 15px 0;
}
.personal-info .personal-other span, .user-info .personal-other span {
  position: relative;
  z-index: 99;
  color: #999;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.personal-info .personal-other:after, .user-info .personal-other:after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background-color: #f7f7f7;
  top: 50%;
  left: 5%;
}
.personal-info .personal-login, .user-info .personal-login {
  text-align: center;
  margin: 15px 0 20px 0;
}
.personal-info .personal-login .personal-qq, .user-info .personal-login .personal-qq {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/kj-icon.png) no-repeat -30px 0;
  margin: 0 12px;
}
.personal-info .personal-login .personal-qq:hover, .user-info .personal-login .personal-qq:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.personal-info .personal-login .personal-wx, .user-info .personal-login .personal-wx {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/kj-icon.png) no-repeat -60px 0;
  margin: 0 12px;
}
.personal-info .personal-login .personal-wx:hover, .user-info .personal-login .personal-wx:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.personal-info .personal-login .personal-xl, .user-info .personal-login .personal-xl {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/kj-icon.png) no-repeat 0px 0;
  margin: 0 12px;
}
.personal-info .personal-login .personal-xl:hover, .user-info .personal-login .personal-xl:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.personal-info .personal-announce, .user-info .personal-announce {
  position: relative;
}
.personal-info .personal-announce p, .user-info .personal-announce p {
  position: relative;
  z-index: 9;
  padding-bottom: 10px;
  font-weight: bold;
  border-bottom: 2px solid #3395f6;
}
.personal-info .personal-announce a, .user-info .personal-announce a {
  padding-bottom: 10px;
  color: #0095EB;
}
.personal-info .personal-announce a:hover, .user-info .personal-announce a:hover {
  color: #666;
  text-decoration: underline;
}
.personal-info .personal-announce:after, .user-info .personal-announce:after {
  content: "";
  width: 88%;
  position: absolute;
  height: 2px;
  background-color: #f7f7f7;
  bottom: 0;
  left: 5%;
}

.recommend-box {
  width: 890px;
  float: left;
}

.hot-box {
  width: 290px;
  float: right;
}

.xf-window {
  background-color: #fff;
  width: 48px;
  position: fixed;
  bottom: 200px;
  right: 20px;
  border: 1px solid #ddd;
}
.xf-window .xf-wxewm, .xf-window .xf-feedback, .xf-window .xf-share, .xf-window .xf-totop {
  width: 46px;
  height: 46px;
  background-image: url(../img/go-top.png);
  cursor: pointer;
  display: block;
}
.xf-window .xf-wxewm {
  position: relative;
  background-position: 0 0;
}
.xf-window .xf-wxewm:hover {
  background-position: 0 -350px;
}
.xf-window .xf-wxewm .xf-qrcode {
  position: absolute;
  right: 58px;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
}
.xf-window .xf-feedback {
  background-position: 0 -100px;
}
.xf-window .xf-feedback:hover {
  background-position: 0 -300px;
}
.xf-window .xf-totop {
  background-position: 0 -150px;
}
.xf-window .xf-totop:hover {
  background-position: 0 -250px;
}
.xf-window .xf-share {
  background-position: 0 -50px;
}
.xf-window .xf-share:hover {
  background-position: 0 -200px;
}

.fixed-foot {
  z-index: 99999;
  height: 65px;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.fixed-foot .ls-width-out {
  height: 65px;
}
.fixed-foot .ls-l-blue-btn, .fixed-foot .ls-l-orange-btn {
  font-size: 20px;
  padding: 10px 40px;
}
.fixed-foot .closed {
  position: absolute;
  left: 100%;
  margin-left: 20px;
  top: 50%;
  margin-top: -5px;
}
.fixed-foot .qrcode-box {
  width: 100px;
  height: 65px;
}
.fixed-foot .qrcode-box .qrcode-con {
  position: absolute;
  bottom: 10px;
}
.fixed-foot .qrcode-box .qrcode-con img {
  box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.1);
}
.fixed-foot .qrcode-box .qrcode-con:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 50px;
  background: url(../img/ewm-icon.png) no-repeat;
  background-size: 100% 100%;
  left: 88px;
  top: 0;
}

.sign-in {
  width: 600px;
  height: 360px;
  background: url(../img/qdbg.jpg) no-repeat;
}
.sign-in ul {
  width: 400px;
  margin: 100px auto 20px auto;
}
.sign-in ul li {
  position: relative;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  background-color: #ccc;
  border-radius: 20px;
}
.sign-in ul li:after {
  content: "";
  background-color: inherit;
  width: 10px;
  height: 6px;
  left: 100%;
  top: 50%;
  margin-top: -3px;
  position: absolute;
}

.ls-tc-login {
  width: 410px;
  height: 490px;
  border-radius: 5px;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  background-color: #fff;
  position: relative;
}
.ls-tc-login .switch-login {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 13px;
  top: 13px;
  cursor: pointer;
}
.ls-tc-login .switch-login img {
  width: 100%;
}
.ls-tc-login ul {
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
}
.ls-tc-login ul li {
  padding-bottom: 15px;
  cursor: pointer;
}
.ls-tc-login .form input {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  line-height: 35px;
  border: 1px solid #ccc;
  padding-left: 10px;
  border-radius: 3px;
}
.ls-tc-login .form img {
  position: absolute;
  right: 1px;
  top: 1px;
  height: 35px;
  cursor: pointer;
  z-index: 9;
}
.ls-tc-login .personal-other {
  position: relative;
  text-align: center;
  margin: 15px 0;
}
.ls-tc-login .personal-other span {
  position: relative;
  z-index: 99;
  color: #999;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.ls-tc-login .personal-other:after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background-color: #f7f7f7;
  top: 50%;
  left: 5%;
}
.ls-tc-login .personal-login {
  text-align: center;
  margin: 15px 0 20px 0;
}
.ls-tc-login .personal-login .personal-qq {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: url(../img/yunlogin-icon.png) no-repeat 0px -42px;
  margin: 0 15px;
}
.ls-tc-login .personal-login .personal-qq:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-position: -42px -42px;
}
.ls-tc-login .personal-login .personal-wx {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: url(../img/yunlogin-icon.png) no-repeat 0px 0;
  margin: 0 15px;
}
.ls-tc-login .personal-login .personal-wx:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-position: -42px 0px;
}
.ls-tc-login .personal-login .personal-xl {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: url(../img/yunlogin-icon.png) no-repeat 0px -84px;
  margin: 0 12px;
}
.ls-tc-login .personal-login .personal-xl:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-position: -42px -84px;
}

.login-show {
  display: none;
}

.reg-box {
  width: 1100px;
  margin: 20px auto;
  box-shadow: 0 2px 20px 0 rgba(15, 12, 70, 0.1);
  border-radius: 10px;
  padding: 60px 20px;
  background-color: #fff;
}
.reg-box .reg-left {
  width: 361px;
}
.reg-box .reg-left .reg-title {
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
}
.reg-box .reg-left .form .form-input {
  margin-bottom: 30px;
}
.reg-box .reg-left .form .form-input input {
  width: 280px;
  height: 43px;
  line-height: 43px;
  padding: 0 10px;
  border: 1px solid #ddd;
}
.reg-box .reg-left .form .form-input ul li {
  padding: 1px 13px;
  margin: 0 3px;
}
.reg-box .reg-left .form .form-input .get-yzm {
  position: absolute;
  right: 2px;
  top: 0;
  height: 33px;
  margin: 5px 0;
  padding: 0 10px;
  border-left: 1px solid #ccc;
  line-height: 33px;
  background: #fff;
  width: 105px;
  text-align: center;
}
.reg-box .reg-left button {
  margin-left: 80px;
  width: 280px;
}
.reg-box .reg-right {
  padding-left: 100px;
  margin-left: 100px;
  border-left: 1px solid #e5e5e5;
  text-align: center;
}
.reg-box .reg-right .personal-qq {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: url(../img/yunlogin-icon.png) no-repeat 0px -42px;
  margin: 0 15px;
}
.reg-box .reg-right .personal-qq:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-position: -42px -42px;
}
.reg-box .reg-right .personal-wx {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: url(../img/yunlogin-icon.png) no-repeat 0px 0;
  margin: 0 15px;
}
.reg-box .reg-right .personal-wx:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-position: -42px 0px;
}
.reg-box .reg-right .personal-xl {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: url(../img/yunlogin-icon.png) no-repeat 0px -84px;
  margin: 0 12px;
}
.reg-box .reg-right .personal-xl:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-position: -42px -84px;
}

.login-area {
  background-image: url(../img/login-bg.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  height: 530px;
  width: 100%;
}

.ls-login-login {
  width: 370px;
  height: 445px;
  border-radius: 10px;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  border: 1px solid #eee;
  background-color: #fff;
  position: relative;
}
.ls-login-login .get-yzm {
  position: absolute;
  right: 2px;
  top: 0;
  height: 33px;
  margin: 7px 0;
  padding: 0 10px;
  border-left: 1px solid #ccc;
  line-height: 33px;
  background: #fff;
  width: 91px;
  text-align: center;
}
.ls-login-login .switch-login {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 13px;
  top: 13px;
  cursor: pointer;
}
.ls-login-login .switch-login img {
  width: 100%;
}
.ls-login-login ul {
  margin-bottom: 20px;
}
.ls-login-login ul li {
  padding-bottom: 15px;
  cursor: pointer;
}
.ls-login-login .form input {
  width: 100%;
  display: block;
  margin-bottom: 15px;
  line-height: 35px;
  border: 1px solid #ccc;
  padding-left: 30px;
  border-radius: 3px;
}
.ls-login-login .form img {
  position: absolute;
  right: 1px;
  top: 1px;
  height: 35px;
  cursor: pointer;
  z-index: 9;
}
.ls-login-login .personal-other {
  position: relative;
  text-align: center;
  margin: 15px 0;
}
.ls-login-login .personal-other span {
  position: relative;
  z-index: 99;
  color: #999;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.ls-login-login .personal-other:after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  background-color: #f7f7f7;
  top: 50%;
  left: 5%;
}
.ls-login-login .personal-login {
  text-align: center;
  margin: 15px 0 20px 0;
}
.ls-login-login .personal-login .personal-qq {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: url(../img/yunlogin-icon.png) no-repeat 0px -42px;
  margin: 0 15px;
}
.ls-login-login .personal-login .personal-qq:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-position: -42px -42px;
}
.ls-login-login .personal-login .personal-wx {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: url(../img/yunlogin-icon.png) no-repeat 0px 0;
  margin: 0 15px;
}
.ls-login-login .personal-login .personal-wx:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-position: -42px 0px;
}
.ls-login-login .personal-login .personal-xl {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: url(../img/yunlogin-icon.png) no-repeat 0px -84px;
  margin: 0 12px;
}
.ls-login-login .personal-login .personal-xl:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-position: -42px -84px;
}

.topic-bg {
  background-image: url(../img/topic-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #38d0db;
  height: 220px;
}

.topic-detail-bg {
  background-image: url(../img/topic-detail-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f5f3f8;
  background-size: auto 100%;
  height: 220px;
}

.tc-report {
  width: 520px;
  height: 480px;
  padding: 30px;
  background-color: #fff;
}
.tc-report .form .form-input {
  margin-bottom: 30px;
}
.tc-report .form .form-input input {
  width: 380px;
  height: 43px;
  line-height: 43px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.tc-report .form .form-input textarea {
  width: 380px;
  resize: none;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 10px;
  display: block;
}
.tc-report .form .form-input ul li {
  padding: 1px 13px;
  margin: 0 3px;
}
.tc-report .form button {
  width: 380px;
  margin-left: 75px;
}

.file-form {
  width: 100%;
  padding: 25px 60px;
  background-color: #f8f8f8;
  margin-bottom: 20px;
  position: relative;
}
.file-form:hover {
  background-color: #f7f7f7;
}
.file-form .file-number {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  padding: 0 15px;
  background-color: #ccc;
  font-size: 18px;
  line-height: 40px;
  border-top-right-radius: 10px;
}
.file-form .file-del {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  padding: 0 20px;
  background-color: #fadada;
  background-image: url(../img/close-red-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  font-size: 18px;
  line-height: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom-right-radius: 10px;
}
.file-form .file-del:hover {
  background-color: #ff6a6a;
}
.file-form .file-select {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #d8ecff;
  border-bottom-left-radius: 10px;
}
.file-form .form .form-input {
  margin-bottom: 30px;
}
.file-form .form .form-input input {
  width: 380px;
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.file-form .form .form-input textarea {
  width: 380px;
  resize: none;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 10px;
  display: block;
}
.file-form .form .form-input ul li {
  padding: 1px 13px;
  margin: 0 3px;
}
.file-form .form button {
  width: 380px;
  margin-left: 75px;
}

#Pic_pass {
  margin-bottom: 10px;
}
#Pic_pass .picDiv .imageDiv {
  width: 74px;
  height: 74px;
  padding: 2px;
  border: 1px solid #eee;
  overflow: hidden;
  margin-right: 5px;
  position: relative;
}
#Pic_pass .picDiv .imageDiv .cover {
  position: absolute;
  z-index: 2;
  width: 100%;
  padding: 5px 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
  bottom: 0;
  left: 0;
  text-align: center;
  cursor: pointer;
}
#Pic_pass .picDiv .imageDiv .cover:hover {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fc4a4a;
}
#Pic_pass .picDiv .imageDiv .cover i {
  color: inherit;
}
#Pic_pass .picDiv .addImages {
  width: 74px;
  height: 74px;
  position: relative;
}
#Pic_pass .picDiv .addImages input[type=file] {
  width: 74px;
  height: 74px;
  opacity: 0;
  position: absolute;
  z-index: 9;
  cursor: pointer;
}
#Pic_pass .picDiv .addImages input[type=file]:hover + .text-detail {
  border: 1px solid #9ec7eb;
  background-color: #EFF5FC;
}
#Pic_pass .picDiv .addImages .text-detail {
  width: 100%;
  height: 100%;
  text-align: center;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
}
#Pic_pass .picDiv .addImages .text-detail span {
  font-size: 46px;
  color: #777;
  display: block;
}
#Pic_pass .picDiv .addImages .text-detail p {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50px;
  font-size: 12px;
  color: #999;
}

.date-wrap {
  background-color: #fff;
  z-index: 9;
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  width: 281px;
  font-size: 0;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.date-wrap .sign-on {
  background-image: url(../img/sign-on.gif);
  background-repeat: no-repeat;
  background-position: center;
}
.date-wrap .wrap-p {
  font-weight: bold;
  background-color: #f7f7f7;
  color: #666;
  text-align: center;
  padding: 3px 0;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.date-wrap .weeks span {
  font-size: 14px;
  width: 40px;
  height: 34px;
  line-height: 34px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.date-wrap #dates span {
  font-size: 14px;
  display: inline-block;
  width: 40px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f9fcfc;
}
.date-wrap #dates span.today {
  color: #0095EB;
  font-weight: bold;
}

.upload-file {
  position: absolute;
  opacity: 0;
  width: 250px;
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 50%;
  margin-left: -125px;
  cursor: pointer;
}

.upload-file2 {
  position: absolute;
  opacity: 0;
  width: 96px;
  height: 33px;
  z-index: 9999;
  top: 0;
  left: 50%;
  margin-left: -52px;
  cursor: pointer;
}

#fileBox {
  width: 500px;
  margin: 30px auto;
}
#fileBox .filesDiv {
  padding: 10px 20px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #ddd;
}
#fileBox .filesDiv .delbtn {
  cursor: pointer;
  margin-left: 20px;
  color: #fc4a4a;
}

.avatar-form {
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
  border-radius: 5px;
  background-color: #f7f7f7;
  line-height: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: #777;
  font-size: 16px;
}
.avatar-form:before {
  content: "点击上传";
  position: absolute;
  z-index: 1;
  width: 150px;
  height: 150px;
  line-height: 150px;
  text-align: center;
  cursor: pointer;
  top: 0;
  left: 0;
  background-image: url(../img/identity-sure.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.avatar-form:hover:before {
  color: #0095EB;
}
.avatar-form input {
  position: absolute !important;
  top: -100px;
  left: 0;
  width: 100px !important;
  height: 200px !important;
  line-height: 100px !important;
  position: relative;
  z-index: 3;
  opacity: 0;
  cursor: pointer;
}
.avatar-form img {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #fff;
}

.change-password {
  width: 361px;
  margin: 30px auto;
}
.change-password .reg-title {
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
}
.change-password .form-input {
  margin-bottom: 30px;
}
.change-password .form-input input {
  width: 280px;
  height: 43px;
  line-height: 43px;
  padding: 0 10px;
  border: 1px solid #ddd;
}
.change-password .form-input ul li {
  padding: 1px 13px;
  margin: 0 3px;
}
.change-password .form-input .get-yzm {
  position: absolute;
  right: 6px;
  top: 0;
  height: 33px;
  margin: 5px 0;
  padding: 0 10px;
  border-left: 1px solid #ccc;
  line-height: 33px;
  background: #fff;
  width: 105px;
  text-align: center;
}
.change-password button {
  margin-left: 80px;
  width: 280px;
}

.cover-wrap {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000000;
  text-align: center;
}

.propaganda-banner {
  height: 463px;
  background-image: url(../img/u4108.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  cursor: pointer;
}

.propaganda-join {
  width: 100%;
  height: 966px;
  background-color: #ecf8fd;
  background-image: url(../img/u4087.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 700px auto;
}
.propaganda-join ul li {
  width: 200px;
}
.propaganda-join ul li .propaganda-avatar {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin-bottom: -30px;
  border: 1px solid #ccc;
}

.aboutus-banner {
  height: 400px;
  background-image: url(../img/about-3.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  cursor: pointer;
}

.filesDiv {
  position: relative;
}
.filesDiv .file-progress {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #def1db;
  width: 0;
}
.filesDiv .file-success {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background-image: url(../img/success.png);
  background-size: 100%;
  display: none;
}
.filesDiv .file-error {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background-image: url(../img/errot.png);
  background-size: 100%;
  display: none;
}
.filesDiv .cover {
  z-index: 2;
}

.friend-link {
  clear: both;
}
.friend-link li {
  margin-bottom: 15px;
  width: 12.5%;
  float: left;
  padding-right: 30px;
}
.friend-link li a {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
.friend-link li a:hover {
  transition: all 0.2s ease;
  text-decoration: underline;
  color: #777;
}
.friend-link li a:hover p, .friend-link li a:hover span, .friend-link li a:hover h1, .friend-link li a:hover h2, .friend-link li a:hover h3, .friend-link li a:hover h4, .friend-link li a:hover h5 {
  text-decoration: underline;
  transition: all 0.2s ease;
  color: #777;
}

/*# sourceMappingURL=style.css.map */
