@charset "UTF-8";
/**************
	@description:css3动画效果;
	@Author:james;
	@create date:2015-05-07;
	@website:http://css3lib.alloyteam.com/;
***************/
@-webkit-keyframes stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* line 28, ../sass/mod/_css3.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
/* line 34, ../sass/mod/_css3.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(300px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(300px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
/* line 40, ../sass/mod/_css3.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
}

/* line 43, ../sass/mod/_css3.scss */
.opacity {
  -webkit-animation: opacity 0.5s linear;
  animation: opacity 0.5s linear;
}

@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/**************
	@description:重置样式;
	@Author:james;
	@create date:2015-05-07;
***************/
/* line 7, ../sass/mod/_reset.scss */
html, body {
  -webkit-text-size-adjust: none;
  background-color: #f5f5f5;
}

/* line 11, ../sass/mod/_reset.scss */
body {
  font-family: "Microsoft YaHei";
  background-color: #fff;
  font-size: 14px;
  line-height: 1.4em;
}

/* line 17, ../sass/mod/_reset.scss */
input, select {
  border: none;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  border-radius: 0 0 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 27, ../sass/mod/_reset.scss */
input[type=number]::-webkit-textfield-decoration-container {
  background-color: #fff;
}

/* line 30, ../sass/mod/_reset.scss */
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* line 33, ../sass/mod/_reset.scss */
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* line 36, ../sass/mod/_reset.scss */
a {
  text-decoration: none;
  color: #008def;
}
/* line 39, ../sass/mod/_reset.scss */
a:hover {
  text-decoration: none;
}

/* line 43, ../sass/mod/_reset.scss */
label {
  font-weight: 500;
}

/* line 46, ../sass/mod/_reset.scss */
ul, dl {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* line 60, ../sass/mod/_reset.scss */
.my-trust .trust-info .list {
  zoom: 1;
}
/* line 62, ../sass/mod/_reset.scss */
.my-trust .trust-info .list:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/******************
 *description:通用样式，包含主体内容布局、表单、按钮;
 *author: ray;
 *create date:2015-05-07;
*******************/
/* line 8, ../sass/mod/_common.scss */
.fl {
  float: left;
  display: inline;
}

/* line 12, ../sass/mod/_common.scss */
.fr {
  float: right;
  display: inline;
}

/* line 16, ../sass/mod/_common.scss */
.fn-clear {
  zoom: 1;
}
/* line 18, ../sass/mod/_common.scss */
.fn-clear:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/* line 27, ../sass/mod/_common.scss */
.m0 {
  margin: 0px !important;
}

/* line 30, ../sass/mod/_common.scss */
.mb1 {
  margin-bottom: 1px !important;
}

/* line 33, ../sass/mod/_common.scss */
.mt10 {
  margin-top: 10px !important;
}

/* line 36, ../sass/mod/_common.scss */
.mb10 {
  margin-bottom: 10px !important;
}

/* line 39, ../sass/mod/_common.scss */
.pb10 {
  padding-bottom: 10px !important;
}

/* line 42, ../sass/mod/_common.scss */
.border0 {
  border: none !important;
}

/* line 45, ../sass/mod/_common.scss */
.err {
  margin: 10px 0;
  color: #f9560f;
}

/* line 49, ../sass/mod/_common.scss */
.hid {
  display: none !important;
}

/* line 52, ../sass/mod/_common.scss */
.g3 {
  color: #333 !important;
}

/* line 55, ../sass/mod/_common.scss */
.g6 {
  color: #666 !important;
}

/* line 58, ../sass/mod/_common.scss */
.g9 {
  color: #999 !important;
}

/* line 61, ../sass/mod/_common.scss */
.c-blue {
  color: #59bbff !important;
}

/* line 64, ../sass/mod/_common.scss */
.c-red {
  color: #ff145c !important;
}

/* line 67, ../sass/mod/_common.scss */
.c-orange {
  color: #ffc000 !important;
}

/* line 70, ../sass/mod/_common.scss */
.noData {
  padding: 40px 0;
  text-align: center;
}

/* line 74, ../sass/mod/_common.scss */
.txt-cent {
  text-align: center;
}

/* line 79, ../sass/mod/_common.scss */
.page {
  position: absolute;
  background: #f5f5f5;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
}

/* line 86, ../sass/mod/_common.scss */
.page-content {
  padding: 45px 0px 50px;
}

/* line 89, ../sass/mod/_common.scss */
.page-view {
  padding: 15px;
}

/* line 94, ../sass/mod/_common.scss */
.page-agreement {
  padding: 5px;
  background-color: #FFF;
}
/* line 97, ../sass/mod/_common.scss */
.page-agreement .title {
  font-size: 18px;
  color: #000;
  text-align: center;
  margin: 5px 0 15px;
}

/* line 106, ../sass/mod/_common.scss */
.btn-blue {
  background-color: #008def;
  color: #fff;
}
/* line 109, ../sass/mod/_common.scss */
.btn-blue:hover {
  color: #fff;
}

/* line 113, ../sass/mod/_common.scss */
.btn-orange {
  background-color: #fd9321;
  color: #fff;
}
/* line 116, ../sass/mod/_common.scss */
.btn-orange:hover {
  color: #fff;
}

/* line 120, ../sass/mod/_common.scss */
.btn-gray {
  background-color: #ccc;
  color: #fff;
}
/* line 123, ../sass/mod/_common.scss */
.btn-gray:hover {
  color: #fff;
}

/* line 127, ../sass/mod/_common.scss */
.btn-lg {
  padding: 8px 16px;
  font-size: 17px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

/* line 132, ../sass/mod/_common.scss */
.btn[disabled] {
  background-color: #999;
  border-color: #999;
  color: #fff;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
/* line 137, ../sass/mod/_common.scss */
.btn[disabled]:hover {
  background-color: #999;
  color: #fff;
}

/* line 144, ../sass/mod/_common.scss */
.form-control {
  height: 40px;
  font-size: 14px;
  border-radius: 3px;
}

/* line 150, ../sass/mod/_common.scss */
.ui-form .form-group {
  position: relative;
}
/* line 152, ../sass/mod/_common.scss */
.ui-form .form-group .iconfont {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  text-align: center;
  height: 40px;
  line-height: 40px;
  width: 40px;
  font-size: 20px;
  color: #999999;
}
/* line 164, ../sass/mod/_common.scss */
.ui-form .form-group .iclear,
.ui-form .form-group .visual {
  left: auto;
  right: -5px;
  top: 8px;
  color: #b0b0b0;
}
/* line 171, ../sass/mod/_common.scss */
.ui-form .form-group .visual.on {
  color: #008def;
}
/* line 174, ../sass/mod/_common.scss */
.ui-form .form-group .btn-code,
.ui-form .form-group .img-code {
  width: 105px;
  position: absolute;
  right: 0;
  top: 0;
}
/* line 181, ../sass/mod/_common.scss */
.ui-form .form-group .btn-code {
  font-size: 14px;
  padding: 9px 12px;
}
/* line 186, ../sass/mod/_common.scss */
.ui-form .form-group-code {
  padding-right: 140px;
}
/* line 189, ../sass/mod/_common.scss */
.ui-form .form-control {
  padding-left: 35px;
}
/* line 192, ../sass/mod/_common.scss */
.ui-form .form-foot {
  text-align: right;
  color: #999;
}
/* line 195, ../sass/mod/_common.scss */
.ui-form .form-foot a {
  color: #333;
}
/* line 199, ../sass/mod/_common.scss */
.ui-form .form-alert,
.ui-form .form-agree {
  color: #999;
  font-size: 12px;
}
/* line 203, ../sass/mod/_common.scss */
.ui-form .form-alert label,
.ui-form .form-agree label {
  margin: 0;
}
/* line 206, ../sass/mod/_common.scss */
.ui-form .form-alert span,
.ui-form .form-agree span {
  color: #333;
}
/* line 209, ../sass/mod/_common.scss */
.ui-form .form-alert a,
.ui-form .form-agree a {
  color: #333;
}
/* line 213, ../sass/mod/_common.scss */
.ui-form .form-upload {
  padding: 20px 0;
  background-color: #FFF;
  margin-bottom: 30px;
}
/* line 217, ../sass/mod/_common.scss */
.ui-form .form-upload .col:first-child {
  border-right: 1px solid #e1e1e1;
}
/* line 220, ../sass/mod/_common.scss */
.ui-form .form-upload .upfile {
  width: 110px;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
}
/* line 225, ../sass/mod/_common.scss */
.ui-form .form-upload .upfile .tit {
  height: 20px;
  line-height: 20px;
}
/* line 229, ../sass/mod/_common.scss */
.ui-form .form-upload .upfile .pic {
  display: block;
  height: 68px;
  background: url(images/icon-upload.png) no-repeat;
  background-size: 100%;
  background-position: 0 bottom;
  cursor: pointer;
  margin-top: 18px;
  padding: 5px;
}
/* line 238, ../sass/mod/_common.scss */
.ui-form .form-upload .upfile .pic img {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 244, ../sass/mod/_common.scss */
.ui-form .form-upload .upfile .iconfont {
  position: relative;
  top: 0;
  left: 0;
  margin-right: 8px;
  color: #77c3f8;
  font-size: 20px;
}
/* line 252, ../sass/mod/_common.scss */
.ui-form .form-upload .upfile input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 263, ../sass/mod/_common.scss */
.ui-form .form-right {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 50px;
}

/* line 271, ../sass/mod/_common.scss */
.reset-form .form-control {
  padding: 5px 15px;
  border: 0;
  margin-left: -15px;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 278, ../sass/mod/_common.scss */
.reset-form .form-group-code {
  margin-right: -15px;
  background-color: #FFF;
}
/* line 281, ../sass/mod/_common.scss */
.reset-form .form-group-code::after {
  content: ' ';
  width: 1px;
  height: 36px;
  background-color: #e1e1e1;
  position: absolute;
  top: 7px;
  right: 110px;
}
/* line 291, ../sass/mod/_common.scss */
.reset-form .form-group .btn-code {
  top: 8px;
  width: auto;
  padding: 6px 0;
  width: 100px;
  height: 34px;
}
/* line 299, ../sass/mod/_common.scss */
.reset-form .form-link {
  position: absolute;
  right: 10px;
  top: 15px;
}
/* line 301, ../sass/mod/_common.scss */
.ui-table {
  min-height: 100px;
  background-color: #FFF;
  color: #999;
  line-height: 1.8;
  font-size: 14px;
}
/* line 307, ../sass/mod/_common.scss */
.ui-table .thead .tr {
  padding: 5px 12px;
  background-color: #f1f1f1;
  border-bottom: 1px solid #e4e4e4;
}
/* line 312, ../sass/mod/_common.scss */
.ui-table .tbody .tr {
  margin: 0 15px;
  padding: 5px 0;
  border-bottom: 1px solid #e4e4e4;
}
/* line 317, ../sass/mod/_common.scss */
.ui-table .row {
  margin: 0;
}
/* line 320, ../sass/mod/_common.scss */
.ui-table .c-black {
  color: #333;
  font-size: 16px;
}
/* line 324, ../sass/mod/_common.scss */
.ui-table .c-green {
  color: #7bad23;
  font-size: 16px;
}
/* line 328, ../sass/mod/_common.scss */
.ui-table .c-orange {
  color: #f86300;
  font-size: 16px;
}
/* line 332, ../sass/mod/_common.scss */
.ui-table .btn-more {
  display: block;
  margin: 15px;
}

/* line 337, ../sass/mod/_common.scss */
.table {
  width: 100%;
  font-size: 12px;
  border: 1px solid #e4e4e4;
  color: #666;
  border-collapse: collapse;
}
/* line 343, ../sass/mod/_common.scss */
.table thead td {
  background-color: #f1f1f1;
  font-size: 14px;
}
/* line 347, ../sass/mod/_common.scss */
.table tr {
  padding: 0 10px;
}
/* line 350, ../sass/mod/_common.scss */
.table td {
  text-align: center;
  border-bottom: 1px solid #e4e4e4;
  padding: 12px 10px !important;
  vertical-align: middle !important;
}
/* line 355, ../sass/mod/_common.scss */
.table td.name {
  color: #333;
}
/* line 358, ../sass/mod/_common.scss */
.table td.money {
  color: #f86300;
}
/* line 361, ../sass/mod/_common.scss */
.table td.title {
  width: 130px;
  text-align: left;
}

/* line 369, ../sass/mod/_common.scss */
.list-title {
  font-size: 13px;
  color: #666;
  line-height: 24px;
  position: relative;
  top: -8px;
  padding-left: 20px;
}

/* line 377, ../sass/mod/_common.scss */
.list-block {
  margin: 20px 0;
  font-size: 14px;
}
/* line 380, ../sass/mod/_common.scss */
.list-block li {
  position: relative;
  background-color: #FFF;
  border-bottom: 1px solid #ededed;
}
/* line 384, ../sass/mod/_common.scss */
.list-block li:last-child {
  border: 0;
}
/* line 388, ../sass/mod/_common.scss */
.list-block .item-content {
  display: block;
  height: 44px;
  line-height: 44px;
  overflow: hidden;
  box-sizing: border-box;
}
/* line 395, ../sass/mod/_common.scss */
.list-block a.item-content:active {
  background-color: #f1f1f1;
}
/* line 398, ../sass/mod/_common.scss */
.list-block .item-inner {
  padding: 0 15px;
}
/* line 401, ../sass/mod/_common.scss */
.list-block .item-title {
  color: #333;
  font-size: 14px;
  padding-left: 20px;
}
/* line 406, ../sass/mod/_common.scss */
.list-block .item-value {
  text-align: right;
  padding-right: 35px;
  color: #333;
}
/* line 411, ../sass/mod/_common.scss */
.list-block .item-after {
  position: absolute;
  right: 12px;
  top: 0;
  color: #ccc;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* line 418, ../sass/mod/_common.scss */
.list-block .item-link {
  display: block;
}
/* line 420, ../sass/mod/_common.scss */
.list-block .item-link:active {
  background-color: #f4f4f4;
}
/* line 424, ../sass/mod/_common.scss */
.list-block .item-input {
  position: relative;
  padding: 0;
}
/* line 427, ../sass/mod/_common.scss */
.list-block .item-input .txt {
  display: block;
  width: 100%;
  height: 44px;
  padding: 8px;
  font-size: 14px;
  line-height: 1.43;
  color: #333;
}
/* line 436, ../sass/mod/_common.scss */
.list-block .item-input .unit {
  position: absolute;
  top: 0;
  right: 15px;
}
/* line 442, ../sass/mod/_common.scss */
.list-block .item-arrow {
  position: absolute;
  top: 0px;
  right: 15px;
  color: #e4e4e4;
}
/* line 448, ../sass/mod/_common.scss */
.list-block .item-right {
  position: absolute;
  top: 0px;
  right: 25px;
  font-size: 15px;
}

/* line 457, ../sass/mod/_common.scss */
.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #FFF;
}
/* line 465, ../sass/mod/_common.scss */
.loader .loader-inner {
  width: 24px;
  height: 24px;
  background: url(images/loader.gif) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -12px 0 0 -12px;
}

/* line 478, ../sass/mod/_common.scss */
.preloader {
  height: 34px;
  background: url(images/loader.gif) no-repeat center center;
  background-size: 24px;
  display: none;
}
/* line 483, ../sass/mod/_common.scss */
.preloader.loading {
  display: block;
}

/* line 489, ../sass/mod/_common.scss */
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  padding: 0;
}

/* line 507, ../sass/mod/_common.scss */
.overlay,
.layer-overlay,
.panel-overlay,
.popover-overlay,
.counter-overlay,
.hotline-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 524, ../sass/mod/_common.scss */
body.cover {
  height: 100%;
  overflow: hidden;
}
/* line 527, ../sass/mod/_common.scss */
body.cover .overlay {
  display: block;
}
/* line 530, ../sass/mod/_common.scss */
body.cover .tender-pay {
  display: block;
  -moz-animation: fadeInUpBig 0.5s both;
  -webkit-animation: fadeInUpBig 0.5s both;
  animation: fadeInUpBig 0.5s both;
}

/* line 535, ../sass/mod/_common.scss */
body.panel-cover {
  height: 100%;
  overflow: hidden;
}
/* line 538, ../sass/mod/_common.scss */
body.panel-cover .panel-overlay {
  display: block;
}
/* line 541, ../sass/mod/_common.scss */
body.panel-cover .panel {
  display: block;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 546, ../sass/mod/_common.scss */
body.counter-cover {
  height: 100%;
  overflow: hidden;
}
/* line 549, ../sass/mod/_common.scss */
body.counter-cover .counter-overlay {
  display: block;
}
/* line 552, ../sass/mod/_common.scss */
body.counter-cover .ui-counter {
  display: block;
  -moz-animation: fadeInUpBig 0.5s both;
  -webkit-animation: fadeInUpBig 0.5s both;
  animation: fadeInUpBig 0.5s both;
}

/* line 557, ../sass/mod/_common.scss */
body.hotline-cover {
  height: 100%;
  overflow: hidden;
}
/* line 560, ../sass/mod/_common.scss */
body.hotline-cover .hotline-overlay {
  display: block;
}
/* line 563, ../sass/mod/_common.scss */
body.hotline-cover .hotline {
  display: block;
  -moz-animation: fadeInUpBig 0.5s both;
  -webkit-animation: fadeInUpBig 0.5s both;
  animation: fadeInUpBig 0.5s both;
}

/* line 571, ../sass/mod/_common.scss */
.layer-overlay {
  display: block;
  /*@include animation(fadeIn 0.3s both);*/
}

/* line 575, ../sass/mod/_common.scss */
.layer {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0px;
  z-index: 1500;
  text-align: center;
  display: table;
}
/* line 584, ../sass/mod/_common.scss */
.layer .layer-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
/* line 589, ../sass/mod/_common.scss */
.layer .layer-alert {
  display: inline;
  padding: 10px 20px;
  background-color: #FFF;
  font-size: 14px;
  color: #333;
  border-radius: 3px;
  -moz-animation: fadeInUp 0.3s both;
  -webkit-animation: fadeInUp 0.3s both;
  animation: fadeInUp 0.3s both;
}
/* line 598, ../sass/mod/_common.scss */
.layer .layer-confirm {
  background-color: #FFF;
  width: 260px;
  margin: 0 auto;
  border-radius: 7px;
  font-size: 14px;
  overflow: hidden;
  -moz-animation: fadeInUp 0.3s both;
  -webkit-animation: fadeInUp 0.3s both;
  animation: fadeInUp 0.3s both;
}
/* line 606, ../sass/mod/_common.scss */
.layer .layer-confirm .layer-cont {
  padding: 25px 20px;
  text-align: center;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  line-height: 1.5;
}
/* line 612, ../sass/mod/_common.scss */
.layer .layer-confirm .layer-cont p {
  color: #f58725;
  font-size: 14px;
  margin: 0;
}
/* line 618, ../sass/mod/_common.scss */
.layer .layer-confirm .layer-btns {
  overflow: hidden;
}
/* line 620, ../sass/mod/_common.scss */
.layer .layer-confirm .layer-btns .btn {
  position: relative;
  width: 50%;
  line-height: 30px;
  float: left;
  border-radius: 0;
  box-shadow: none;
  color: #008def;
  font-size: 16px;
  outline: none;
  border: 0 none;
}
/* line 631, ../sass/mod/_common.scss */
.layer .layer-confirm .layer-btns .btn:active {
  background-color: #e3e3e3;
}
/* line 634, ../sass/mod/_common.scss */
.layer .layer-confirm .layer-btns .btn:first-child {
  border-radius: 0 0 0 7px;
}
/* line 637, ../sass/mod/_common.scss */
.layer .layer-confirm .layer-btns .btn:last-child {
  border-radius: 0 0 7px 0;
}
/* line 640, ../sass/mod/_common.scss */
.layer .layer-confirm .layer-btns .btn:first-child::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  left: auto;
  bottom: auto;
  width: 1px;
  height: 100%;
  background-color: #ccc;
  display: block;
  z-index: 15;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.layer .layer-confirm .layer-btns .btn-ok{
 width: 100%;
}
/* line 658, ../sass/mod/_common.scss */
.layer .layer-page {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  padding: 25px;
  z-index: 1060;
  border: 3px solid;
}
/* line 666, ../sass/mod/_common.scss */
.layer .layer-page .layer-close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 100;
  color: #999;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  background-color: #FFF;
}
/* line 676, ../sass/mod/_common.scss */
.layer .layer-page .layer-close::before, .layer .layer-page .layer-close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 60%;
  top: 50%;
  left: 20%;
  margin-top: -1px;
  background: #666;
}
/* line 687, ../sass/mod/_common.scss */
.layer .layer-page .layer-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* line 694, ../sass/mod/_common.scss */
.layer .layer-page .layer-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* line 703, ../sass/mod/_common.scss */
.layer .layer-page .layer-main {
  height: 100%;
  position: relative;
  background-color: #FFF;
  padding: 20px 15px;
  text-align: left;
}
/* line 710, ../sass/mod/_common.scss */
.layer .layer-page .layer-cont {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* line 720, ../sass/mod/_common.scss */
.panel {
  position: fixed;
  top: 0;
  right: 0px;
  width: 280px;
  height: 100%;
  z-index: 3000;
  background: #fff;
  overflow-y: auto;
  border-radius: 0;
  margin: 0;
  border: 0;
  /*display: none;*/
  -moz-transition-duration: 400ms;
  -o-transition-duration: 400ms;
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
/* line 735, ../sass/mod/_common.scss */
.panel .panel-heading {
  padding: 15px;
  font-size: 18px;
  text-align: center;
}
/* line 740, ../sass/mod/_common.scss */
.panel .list-group {
  border-bottom: 1px solid #ddd;
}
/* line 742, ../sass/mod/_common.scss */
.panel .list-group .item-media img {
  width: 34px;
  height: 34px;
  vertical-align: middle;
}
/* line 747, ../sass/mod/_common.scss */
.panel .list-group .item-title {
  font-size: 16px;
  padding: 0 10px;
}

/* line 755, ../sass/mod/_common.scss */
.panel-city {
  width: 100%;
}
/* line 757, ../sass/mod/_common.scss */
.panel-city .page-content {
  min-height: 100%;
}
/* line 760, ../sass/mod/_common.scss */
.panel-city .city-tit {
  line-height: 36px;
  padding: 0 15px;
  color: #666;
  background-color: #f7f7f7;
}
/* line 766, ../sass/mod/_common.scss */
.panel-city .city-con {
  padding: 0 15px;
  background-color: #FFF;
}
/* line 769, ../sass/mod/_common.scss */
.panel-city .city-con span {
  display: block;
  line-height: 42px;
  background-color: #FFF;
  border-bottom: 1px solid #ddd;
  padding: 0 5px;
}
/* line 776, ../sass/mod/_common.scss */
.panel-city .city-con dl {
  margin-left: -15px;
  margin-right: -15px;
  display: none;
}
/* line 781, ../sass/mod/_common.scss */
.panel-city .city-con dl.slide {
  display: block;
  -moz-animation: fadeIn 0.5s both;
  -webkit-animation: fadeIn 0.5s both;
  animation: fadeIn 0.5s both;
}
/* line 786, ../sass/mod/_common.scss */
.panel-city .city-con dd {
  line-height: 40px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding-left: 50px;
  margin-top: -1px;
}

/* line 796, ../sass/mod/_common.scss */
body.city-cover {
  height: 100%;
  overflow: hidden;
}
/* line 799, ../sass/mod/_common.scss */
body.city-cover .panel-overlay {
  display: block;
}
/* line 802, ../sass/mod/_common.scss */
body.city-cover .panel-city {
  display: block;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 808, ../sass/mod/_common.scss */
.panel-bank {
  width: 100%;
}

/* line 811, ../sass/mod/_common.scss */
body.bank-cover {
  height: 100%;
  overflow: hidden;
}
/* line 814, ../sass/mod/_common.scss */
body.bank-cover .panel-overlay {
  display: block;
}
/* line 817, ../sass/mod/_common.scss */
body.bank-cover .panel-bank {
  display: block;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 824, ../sass/mod/_common.scss */
.ui-counter {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2001;
  background-color: #FFF;
  padding: 18px;
  display: none;
}
/* line 833, ../sass/mod/_common.scss */
.ui-counter .hd {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
/* line 837, ../sass/mod/_common.scss */
.ui-counter .hd .title {
  font-size: 18px;
}
/* line 840, ../sass/mod/_common.scss */
.ui-counter .hd .exit {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  top: -2px;
  right: 5px;
  color: #999;
}
/* line 850, ../sass/mod/_common.scss */
.ui-counter .bd {
  overflow: hidden;
}
/* line 852, ../sass/mod/_common.scss */
.ui-counter .bd li {
  padding: 5px;
  width: 50%;
  float: left;
}
/* line 856, ../sass/mod/_common.scss */
.ui-counter .bd li .name {
  display: block;
}
/* line 859, ../sass/mod/_common.scss */
.ui-counter .bd li .val {
  display: block;
  font-size: 25px;
  color: #008def;
  line-height: 50px;
}
/* line 866, ../sass/mod/_common.scss */
.ui-counter .bd .item-input {
  position: relative;
  padding: 0;
  line-height: 46px;
  overflow: hidden;
  background-color: #f2f3f7;
}
/* line 872, ../sass/mod/_common.scss */
.ui-counter .bd .item-input .txt {
  display: block;
  width: 100%;
  height: 46px;
  padding: 8px 35px 8px 12px;
  font-size: 14px;
  line-height: 1.43;
  background: 0 none;
  color: #333;
}
/* line 882, ../sass/mod/_common.scss */
.ui-counter .bd .item-input .unit {
  position: absolute;
  top: 0;
  right: 15px;
}
/* line 889, ../sass/mod/_common.scss */
.ui-counter .bd .item-select .select {
  border: 0;
  background: 0 none;
  line-height: 1.43;
  padding: 11px 8px;
  width: 100%;
  color: #999;
  height: 44px;
}
/* line 898, ../sass/mod/_common.scss */
.ui-counter .bd .item-select .arrow {
  position: absolute;
  top: 20px;
  right: 14px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #ccc;
}
/* line 913, ../sass/mod/_common.scss */
.ui-counter .fd {
  font-size: 12px;
  color: #ffa200;
  text-align: center;
}

/* line 921, ../sass/mod/_common.scss */
.ui-spread {
  width: 100%;
  background-color: #f5f5f5;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2001;
  display: none;
  padding: 0 15px 30px;
}
/* line 930, ../sass/mod/_common.scss */
.ui-spread .bd {
  padding: 20px 0;
}
/* line 933, ../sass/mod/_common.scss */
.ui-spread .fd {
  overflow: hidden;
}
/* line 936, ../sass/mod/_common.scss */
.ui-spread .fd .btn {
  border: 1px solid #ccc;
  background-color: #FFF;
  color: #333;
  font-size: 15px;
}

/* line 944, ../sass/mod/_common.scss */
body.spread-cover {
  height: 100%;
  overflow: hidden;
}
/* line 947, ../sass/mod/_common.scss */
body.spread-cover .overlay {
  display: block;
}
/* line 950, ../sass/mod/_common.scss */
body.spread-cover .ui-spread {
  display: block;
  -moz-animation: fadeInUpBig 0.5s both;
  -webkit-animation: fadeInUpBig 0.5s both;
  animation: fadeInUpBig 0.5s both;
}

/**************
	@description:头尾，尾部、导航、投标列表;
	@Author:james;
	@create date:2015-05-06;
***************/
/* line 9, ../sass/mod/_style.scss */
.nav-top {
  background-color: #008def;
  color: #fff;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 18px;
}
/* line 16, ../sass/mod/_style.scss */
.nav-top .go-back {
  display: inline-block;
  position: absolute;
  left: 15px;
  color: #fff;
}
/* line 21, ../sass/mod/_style.scss */
.nav-top .go-back span {
  font-size: 22px;
}
/* line 24, ../sass/mod/_style.scss */
.nav-top .iconfont.counter, .nav-top .iconfont.email {
  position: absolute;
  left: 5px;
  top: 0;
  font-size: 26px;
  color: #FFF;
  padding: 0 10px;
}
/* line 32, ../sass/mod/_style.scss */
.nav-top .iconfont.setting {
  position: absolute;
  top: 0;
  right: 5px;
  font-size: 24px;
  color: #FFF;
  padding: 0 10px;
}
/* line 40, ../sass/mod/_style.scss */
.nav-top .iconfont.email {
  font-size: 24px;
}
/* line 44, ../sass/mod/_style.scss */
.nav-top .link {
  color: #FFF;
  font-size: 14px;
  position: absolute;
  padding: 0 15px;
  right: 5px;
}

/* line 53, ../sass/mod/_style.scss */
.nav-bottom {
  border-top: 1px solid #e4e4e4;
  background-color: #efefef;
}
/* line 56, ../sass/mod/_style.scss */
.nav-bottom .nav-item {
  height: 50px;
  padding: 5px 0px;
  text-align: center;
  border-left: 1px solid #e4e4e4;
}
/* line 61, ../sass/mod/_style.scss */
.nav-bottom .nav-item:first-child {
  border: none;
}
/* line 65, ../sass/mod/_style.scss */
.nav-bottom .nav-item.active span {
  color: #1a9fdb;
}
/* line 69, ../sass/mod/_style.scss */
.nav-bottom .nav-item a {
  cursor: pointer;
  color: #666;
}
/* line 72, ../sass/mod/_style.scss */
.nav-bottom .nav-item a span {
  display: block;
}
/* line 77, ../sass/mod/_style.scss */
.nav-bottom .nav-more {
  position: relative;
}
/* line 79, ../sass/mod/_style.scss */
.nav-bottom .nav-more .menu-list {
  position: absolute;
  bottom: 60px;
  left: 50%;
  margin-left: -65px;
  background-color: #fff;
  width: 100px;
  border: 1px solid #d7dadb;
  -moz-box-shadow: 0 -1px 3px #d7dadb;
  -webkit-box-shadow: 0 -1px 3px #d7dadb;
  box-shadow: 0 -1px 3px #d7dadb;
}
/* line 88, ../sass/mod/_style.scss */
.nav-bottom .nav-more .menu-list:before {
  content: " ";
  position: absolute;
  border-style: solid;
  border-width: 10px;
  border-color: #fff transparent transparent;
  right: 25px;
  bottom: -20px;
}
/* line 97, ../sass/mod/_style.scss */
.nav-bottom .nav-more .menu-list a {
  display: block;
  font-size: 15px;
  border-bottom: 1px solid #d7dadb;
}

/* line 108, ../sass/mod/_style.scss */
.loans {
  padding: 15px 8px;
}

/* line 111, ../sass/mod/_style.scss */
.loan-nav {
  overflow: hidden;
  background-color: #fff;
}
/* line 114, ../sass/mod/_style.scss */
.loan-nav .link {
  font-size: 18px;
  color: #666;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  position: relative;
}
/* line 122, ../sass/mod/_style.scss */
.loan-nav .link.active {
  border-bottom: 3px solid #59bbff;
  color: #1a9fdb;
}
/* line 126, ../sass/mod/_style.scss */
.loan-nav .link:first-child::after {
  content: " ";
  width: 1px;
  height: 26px;
  background-color: #ddd;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -13px;
}

/* line 138, ../sass/mod/_style.scss */
.loan-item {
  display: block;
  position: relative;
  background: #fff;
  color: #999;
  border-radius: 2px;
  font-size: 14px;
  overflow: hidden;
  border: 1px solid #ddd;
  /*box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);*/
  margin-bottom: 15px;
}
/* line 150, ../sass/mod/_style.scss */
.loan-item:hover {
  color: #999;
}

/* line 154, ../sass/mod/_style.scss */
.loan-content {
  position: relative;
  overflow: hidden;
  padding: 15px 0 15px 25px;
  font-size: 10px;
  padding-right: 80px;
}
/* line 160, ../sass/mod/_style.scss */
.loan-content.loan-details {
  padding: 15px 0;
}
/* line 163, ../sass/mod/_style.scss */
.loan-content .load-title {
  font-size: 16px;
  color: #333;
}
/* line 167, ../sass/mod/_style.scss */
.loan-content .val {
  color: #333;
  padding: 10px 0 3px;
  text-align: center;
  position:relative;
}
.loan-content .val .ln-pos{
 position:absolute;
 top:-5px;
 right:-10px;
 color:red;
 font-size:14px
}
/* line 171, ../sass/mod/_style.scss */
.loan-content .val b {
  font-size: 20px;
  font-weight: normal;
}
/* line 176, ../sass/mod/_style.scss */
.loan-content .name {
  padding-left: 3px;
  text-align: center;
}
.loan-content .val .ln-pos {
  position: absolute;
  top: -5px;
  right: -10px;
  color: red;
  font-size: 14px;
}
/* line 184, ../sass/mod/_style.scss */
/* line 180, ../sass/mod/_style.scss */
.loan-content .icon-style {
  position: absolute;
  left: 0;
  top: 15px;
}
/* line 184, ../sass/mod/_style.scss */
.loan-content .icon-style span {
  display: block;
  width: 20px;
  padding: 5px 3px;
  line-height: 1.2;
  text-align: center;
  background-color: #69c385;
  color: #FFF;
  position: relative;
  z-index: 10;
  font-size: 10;
}
/* line 196, ../sass/mod/_style.scss */
.loan-content .icon-style em {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-left: 6px solid #199742;
  border-bottom: 6px solid transparent;
  position: absolute;
  left: 0;
  bottom: -6px;
}
/* line 207, ../sass/mod/_style.scss */
.loan-content .icon-award {
  width: 18px;
  height: 85px;
  background: url(images/icon-award.png) no-repeat;
  background-size: 100%;
  color: #FFF;
  position: absolute;
  right: 5px;
  top: 0px;
  text-align: center;
  padding: 5px 3px;
  line-height: 1.2;
}
/* line 220, ../sass/mod/_style.scss */
.loan-content .ico {
  background-color: #fe3f79;
  color: #FFF;
  border-radius: 3px;
  font-style: normal;
  font-size: 10px;
  padding: 0 2px 1px;
  margin-left: 2px;
}

/* line 230, ../sass/mod/_style.scss */
.loan-foot {
  line-height: 40px;
  padding: 0 12px;
  border-top: 1px solid #ddd;
  font-size: 10px;
  overflow: hidden;
  color: #999;
}
/* line 237, ../sass/mod/_style.scss */
.loan-foot .com {
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 243, ../sass/mod/_style.scss */
.loan-foot .num {
  padding-left: 5px;
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 249, ../sass/mod/_style.scss */
.loan-foot .num .iconfont {
  color: #59bbff;
}
/* line 253, ../sass/mod/_style.scss */
.loan-foot .iconfont {
  font-size: 16px;
  margin-right: 2px;
  color: #83d9a0;
}
/* line 257, ../sass/mod/_style.scss */
.loan-foot .iconfont.icon-num {
  color: #59bbff;
}

/* line 265, ../sass/mod/_style.scss */
.progbar {
  width: 52px;
  height: 52px;
  position: absolute;
  right: 30px;
  top: 25px;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
/* line 272, ../sass/mod/_style.scss */
.progbar .prog {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 46px;
  width: 46px;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /*@include transition(all .2s ease-in-out);*/
}
/* line 282, ../sass/mod/_style.scss */
.progbar .prog-bg {
  border: silver 3px solid;
  z-index: 1;
}
/* line 286, ../sass/mod/_style.scss */
.progbar .prog-bg2 {
  border: silver 3px solid;
  clip: rect(0, 26px, 52px, 0);
  z-index: 3;
}
/* line 291, ../sass/mod/_style.scss */
.progbar .prog-rount {
  border: #59bbff 3px solid;
  clip: rect(0, 26px, 52px, 0);
  -webkit-transform: rotate(0deg);
  z-index: 2;
}
/* line 297, ../sass/mod/_style.scss */
.progbar .prog-rount2 {
  border: #59bbff 3px solid;
  clip: rect(0, 52px, 52px, 26px);
  -webkit-transform: rotate(0deg);
  z-index: 4;
}
/* line 303, ../sass/mod/_style.scss */
.progbar .prog-text {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 10px;
  position: relative;
  z-index: 5;
}
/* line 311, ../sass/mod/_style.scss */
.progbar .prog-text.t3 {
  font-size: 15px;
  color: #59bbff;
}
/* line 315, ../sass/mod/_style.scss */
.progbar .prog-text.t4 {
  color: green;
}

/* line 324, ../sass/mod/_style.scss */
.loginbar .btn {
  width: 50%;
  padding: 12px;
  float: left;
  font-size: 16px;
  position: relative;
  border: 0;
  border-top: 1px solid #ccc;
  border-radius: 0;
  background-color: #FFF;
  color: #333;
}
/* line 335, ../sass/mod/_style.scss */
.loginbar .btn.on {
  color: #59bbff;
}
/* line 338, ../sass/mod/_style.scss */
.loginbar .btn:first-child::after {
  content: ' ';
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #ccc;
  top: 0px;
  right: -1px;
  z-index: 10;
}

/* line 354, ../sass/mod/_style.scss */
.page-article .list-block li {
  border-color: #f5f5f5;
}
/* line 357, ../sass/mod/_style.scss */
.page-article .article {
  overflow: hidden;
  padding: 0 20px;
  margin-top: 20px;
  background-color: #FFF;
}
/* line 362, ../sass/mod/_style.scss */
.page-article .article .art-title {
  font-size: 16px;
  margin: 20px 0 10px;
}
/* line 366, ../sass/mod/_style.scss */
.page-article .article .art-time {
  color: #999;
}
/* line 369, ../sass/mod/_style.scss */
.page-article .article .art-cont {
  padding-top: 10px;
  padding-bottom: 20px;
  line-height: 2;
  color: #666;
  font-size: 14px;
}
/* line 375, ../sass/mod/_style.scss */
.page-article .article .art-cont img {
  max-width: 100%;
}

/* line 383, ../sass/mod/_style.scss */
.page-letter .list-block .item-content {
  display: block;
  height: 65px;
  line-height: 65px;
}
/* line 388, ../sass/mod/_style.scss */
.page-letter .list-block .item-title {
  line-height: 1.5;
  padding-left: 30px;
}
/* line 391, ../sass/mod/_style.scss */
.page-letter .list-block .item-title .time {
  margin: 12px 0 2px;
  font-size: 12px;
  color: #999;
  position: relative;
}
/* line 396, ../sass/mod/_style.scss */
.page-letter .list-block .item-title .time i {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 100%;
  background-color: #008def;
}
/* line 407, ../sass/mod/_style.scss */
.page-letter .list-block .item-title .title {
  font-size: 14px;
  color: #333;
}

/* line 417, ../sass/mod/_style.scss */
.page-spread .info {
  padding: 15px;
  background-color: #FFF;
  margin: 15px 0;
  overflow: hidden;
}
/* line 422, ../sass/mod/_style.scss */
.page-spread .info li {
  width: 50%;
  float: left;
  font-size: 13px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  overflow: hidden;
}
/* line 430, ../sass/mod/_style.scss */
.page-spread .info li .name {
  color: #999;
}
/* line 435, ../sass/mod/_style.scss */
.page-spread .form-alert {
  padding: 0 15px;
  text-align: right;
  margin: 15px 0;
}
/* line 440, ../sass/mod/_style.scss */
.page-spread .list-block {
  margin: 15px 0;
}
/* line 442, ../sass/mod/_style.scss */
.page-spread .list-block .item-title {
  float: left;
  color: #999;
  padding-left: 15px;
}
/* line 448, ../sass/mod/_style.scss */
.page-spread .page-view {
  padding-top: 0;
}
/* line 451, ../sass/mod/_style.scss */
.page-spread .table {
  background-color: #fff;
}
/* line 453, ../sass/mod/_style.scss */
.page-spread .table .row {
  margin: 0;
  line-height: 42px;
  border-top: 1px solid #ededed;
  margin-top: -1px;
  padding: 0 10px;
  color: #333;
}
/* line 461, ../sass/mod/_style.scss */
.page-spread .table .row-head {
  color: #666;
}
/* line 464, ../sass/mod/_style.scss */
.page-spread .table .col {
  float: left;
}
/* line 466, ../sass/mod/_style.scss */
.page-spread .table .col.c1 {
  width: 32%;
}
/* line 469, ../sass/mod/_style.scss */
.page-spread .table .col.c2 {
  width: 36%;
}
/* line 472, ../sass/mod/_style.scss */
.page-spread .table .col.c3 {
  width: 32%;
}
/* line 478, ../sass/mod/_style.scss */
.page-spread .table-settle .row-head {
  background-color: #efeff4;
  font-size: 13px;
}
/* line 482, ../sass/mod/_style.scss */
.page-spread .table-settle .c2 {
  text-align: center;
}
/* line 485, ../sass/mod/_style.scss */
.page-spread .table-settle .c3 {
  text-align: right;
}

/******************
 *description: 首页样式
 *author:ray;
 *create date:2015-05-07;
*******************/
/* line 8, ../sass/mod/_index.scss */
.slider {
  position: relative;
  overflow: hidden;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 13, ../sass/mod/_index.scss */
.slider .hd {
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 100;
  width: 100%;
  text-align: center;
}
/* line 20, ../sass/mod/_index.scss */
.slider .hd li {
  display: inline-block;
  height: 8px;
  width: 8px;
  margin-right: 8px;
  line-height: 30px;
  background-color: #D0D0D0;
  overflow: hidden;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
/* line 30, ../sass/mod/_index.scss */
.slider .hd li.on {
  width: 16px;
  background-color: #FFF;
}
/* line 36, ../sass/mod/_index.scss */
.slider .bd img {
  width: 100%;
  display: block;
}

/* line 42, ../sass/mod/_index.scss */
.loan-plan {
  padding: 25px 15px 35px;
  margin: 20px 0 10px;
  background-color: #FFF;
}
/* line 46, ../sass/mod/_index.scss */
.loan-plan .loan-title {
  color: #666;
  font-size: 24px;
  text-align: center;
  line-height: 36px;
}
/* line 52, ../sass/mod/_index.scss */
.loan-plan .loan-opts {
  padding: 30px 0;
  text-align: center;
  overflow: hidden;
}
/* line 56, ../sass/mod/_index.scss */
.loan-plan .loan-opts li {
  width: 33.333333%;
  float: left;
  padding: 0 10px;
}
/* line 61, ../sass/mod/_index.scss */
.loan-plan .loan-opts .btn {
  width: 100%;
  padding: 5px 0;
  border: 1px solid #ff4e55;
  color: #ff4e55;
}
/* line 67, ../sass/mod/_index.scss */
.loan-plan .loan-opts .btn2 {
  border: 1px solid #fb8835;
  color: #fb8835;
}
/* line 71, ../sass/mod/_index.scss */
.loan-plan .loan-opts .btn3 {
  border: 1px solid #0ecd9e;
  color: #0ecd9e;
}
/* line 76, ../sass/mod/_index.scss */
.loan-plan .loan-rate {
  font-size: 16px;
  text-align: center;
}
/* line 79, ../sass/mod/_index.scss */
.loan-plan .loan-rate .val {
  color: #fd6361;
  display: block;
  padding: 20px 0 10px;
}
/* line 83, ../sass/mod/_index.scss */
.loan-plan .loan-rate .val b {
  font-size: 60px;
  font-weight: normal;
}
/* line 88, ../sass/mod/_index.scss */
.loan-plan .loan-rate .name {
  color: #333;
}

/* line 94, ../sass/mod/_index.scss */
.new-trailer {
  padding-top: 20px;
  background-color: #fff;
  margin-top: 23px;
  position: relative;
}
/* line 99, ../sass/mod/_index.scss */
.new-trailer .bd {
  border-bottom: 1px solid #ededed;
}
/* line 101, ../sass/mod/_index.scss */
.new-trailer .bd .w42 {
  width: 42% !important;
}
/* line 104, ../sass/mod/_index.scss */
.new-trailer .bd dl dt {
  display: inline-block;
  width: 27%;
  text-align: right;
  padding-top: 15px;
  font-weight: normal;
  padding-bottom: 10px;
}
/* line 111, ../sass/mod/_index.scss */
.new-trailer .bd dl dt b {
  font-size: 16px;
  font-weight: bold;
}
/* line 118, ../sass/mod/_index.scss */
.new-trailer .bd dl dt .year {
  font-size: 12px;
  color: #999;
  font-weight: normal;
  padding-top: 10px;
}
/* line 126, ../sass/mod/_index.scss */
.new-trailer .bt {
  padding: 0px 10px;
  overflow: hidden;
}
/* line 129, ../sass/mod/_index.scss */
.new-trailer .bt p {
  display: inline-block;
  margin-top: 15px;
  height: 15px;
  line-height: 15px;
  color: #999;
  font-size: 10px;
  overflow: hidden;
}
/* line 137, ../sass/mod/_index.scss */
.new-trailer .bt p .icon {
  background: url(../images/new_icon.png) no-repeat;
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  background-size: 100%;
}
/* line 146, ../sass/mod/_index.scss */
.new-trailer .bt p .pos-icon {
  background-position: 0px bottom;
}
/* line 151, ../sass/mod/_index.scss */
.new-trailer .lbox-tit {
  position: absolute;
  top: 10px;
  left: 0px;
  background: url(../images/new_tri.png) no-repeat;
  background-size: 100% 100%;
  width: 22px;
  height: 72px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}
/* line 165, ../sass/mod/_index.scss */
.loan-tit {
  position: absolute;
  top: 20px;
  left: 0px;
  background: url(../images/new_so.png) no-repeat;
  background-size: 100% 100%;
  width: 22px;
  height: 72px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}
/**************
	@description:投资页面;
	@Author:Monkey,ray;
	@create date:2015-05-08;
	@update date:2015-05-11;
***************/
/* line 10, ../sass/mod/_tender.scss */
.page-tender .loan-view {
  border: 1px solid #e4e4e4;
  box-shadow: none;
}
/* line 13, ../sass/mod/_tender.scss */
.page-tender .loan-view .msg {
  font-size: 12px;
  color: #f9560f;
  padding-top: 5px;
}
/* line 18, ../sass/mod/_tender.scss */
.page-tender .loan-view .tip {
  padding: 10px 0;
  color: #666;
}
/* line 23, ../sass/mod/_tender.scss */
.page-tender .loan-info {
  position: relative;
  padding: 15px 12px;
  color: #333;
  border-top: 1px solid #e4e4e4;
}
/* line 28, ../sass/mod/_tender.scss */
.page-tender .loan-info dl {
  overflow: hidden;
  margin-bottom: 12px;
}
/* line 32, ../sass/mod/_tender.scss */
.page-tender .loan-info dt {
  min-width: 80px;
  float: left;
  font-size: 12px;
  color: #666;
  font-weight: 100;
}
/* line 39, ../sass/mod/_tender.scss */
.page-tender .loan-info dd {
  margin: 0;
  float: left;
}
/* line 44, ../sass/mod/_tender.scss */
.page-tender .loan-bid {
  padding: 0 15px 10px;
}
/* line 46, ../sass/mod/_tender.scss */
.page-tender .loan-bid .loan-bid-group {
  position: relative;
  height: 35px;
  overflow: hidden;
  padding: 0 102px 0 8px;
  border: 1px solid #1a9fdb;
}
/* line 52, ../sass/mod/_tender.scss */
.page-tender .loan-bid .loan-bid-group .btn {
  width: 90px;
  position: absolute;
  right: 0;
  top: -1px;
  border-radius: 0;
}
/* line 59, ../sass/mod/_tender.scss */
.page-tender .loan-bid .loan-bid-group .txt {
  width: 100%;
  font-size: 14px;
  border: 0;
  margin-top: 7px;
}
/* line 67, ../sass/mod/_tender.scss */
.page-tender .loan-buy {
  padding: 0 15px 10px;
}
/* line 69, ../sass/mod/_tender.scss */
.page-tender .loan-buy .loan-buy-group {
  position: relative;
  width: 260px;
  height: 40px;
}
/* line 73, ../sass/mod/_tender.scss */
.page-tender .loan-buy .loan-buy-group .input {
  position: relative;
  width: 80px;
  height: 36px;
  border: 1px solid #fb8608;
  border-radius: 2px;
  margin-left: 35px;
}
/* line 80, ../sass/mod/_tender.scss */
.page-tender .loan-buy .loan-buy-group .input .txt {
  width: 100%;
  font-size: 16px;
  border: 0;
  color: #ccc;
  margin-top: 6px;
  padding-right: 25px;
  text-align: center;
}
/* line 89, ../sass/mod/_tender.scss */
.page-tender .loan-buy .loan-buy-group .input .unit {
  position: absolute;
  right: 10px;
  top: 8px;
  color: #999;
}
/* line 96, ../sass/mod/_tender.scss */
.page-tender .loan-buy .loan-buy-group .op {
  width: 26px;
  height: 26px;
  line-height: 24px;
  text-align: center;
  position: absolute;
  border: 1px solid #e4e4e4;
  background-color: #f1efef;
  color: #b2b2b2;
  font-size: 16px;
  top: 6px;
  cursor: pointer;
}
/* line 108, ../sass/mod/_tender.scss */
.page-tender .loan-buy .loan-buy-group .op.op-reduce {
  left: 0px;
}
/* line 109, ../sass/mod/_tender.scss */
.page-tender .loan-buy .loan-buy-group .op.op-increase {
  left: 123px;
}
/* line 111, ../sass/mod/_tender.scss */
.page-tender .loan-buy .loan-buy-group .btn {
  width: 90px;
  text-align: center;
  background-color: #fb8608;
  color: #FFF;
  border: 0;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 7px 12px;
}
/* line 126, ../sass/mod/_tender.scss */
.page-tender .loan-info-change dt {
  min-width: 95px;
}
/* line 129, ../sass/mod/_tender.scss */
.page-tender .loan-info-change .button-buy {
  border-radius: 2px;
  background-color: #1a9fdb;
  color: #FFF;
  border: 0;
  height: 38px;
  line-height: 36px;
  font-size: 16px;
}
/* line 139, ../sass/mod/_tender.scss */
.page-tender .loan-remark {
  border: 1px solid #e4e4e4;
  background-color: #FFF;
}
/* line 142, ../sass/mod/_tender.scss */
.page-tender .loan-remark .hd {
  background-color: #f1f1f1;
  padding: 12px;
  color: #333;
  font-size: 14px;
}
/* line 148, ../sass/mod/_tender.scss */
.page-tender .loan-remark .bd {
  padding: 12px 12px 0;
  font-size: 12px;
  color: #666;
  background-color: #FFF;
  line-height: 2;
}
/* line 154, ../sass/mod/_tender.scss */
.page-tender .loan-remark .bd ul {
  overflow: hidden;
  padding: 20px 0 15px;
}
/* line 158, ../sass/mod/_tender.scss */
.page-tender .loan-remark .bd li {
  width: 33%;
  float: left;
  text-align: center;
}
/* line 162, ../sass/mod/_tender.scss */
.page-tender .loan-remark .bd li img {
  border: 1px solid #e4e4e4;
  width: 90%;
}
/* line 167, ../sass/mod/_tender.scss */
.page-tender .loan-remark .bd img {
  max-width: 100%;
}
/* line 172, ../sass/mod/_tender.scss */
.page-tender .loan-basic {
  border: 1px solid #e4e4e4;
  margin-top: 10px;
}
/* line 175, ../sass/mod/_tender.scss */
.page-tender .loan-basic .hd {
  background-color: #f1f1f1;
  padding: 12px;
  color: #333;
  font-size: 14px;
}
/* line 181, ../sass/mod/_tender.scss */
.page-tender .loan-basic .bd {
  padding: 5px 12px;
  color: #666;
  line-height: 2;
  background-color: #FFF;
}
/* line 189, ../sass/mod/_tender.scss */
.page-tender .loan-basic-info .bd {
  overflow: hidden;
}
/* line 191, ../sass/mod/_tender.scss */
.page-tender .loan-basic-info .bd .col {
  float: left;
}
/* line 193, ../sass/mod/_tender.scss */
.page-tender .loan-basic-info .bd .col.c1 {
  width: 40%;
}
/* line 196, ../sass/mod/_tender.scss */
.page-tender .loan-basic-info .bd .col.c2 {
  width: 60%;
}
/* line 200, ../sass/mod/_tender.scss */
.page-tender .loan-basic-info .bd li {
  line-height: 30px;
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* line 208, ../sass/mod/_tender.scss */
.page-tender .loan-basic-info .bd .val {
  color: #333;
}
/* line 213, ../sass/mod/_tender.scss */
.page-tender .load-list-block {
  margin: 10px 0 0;
}

/* line 218, ../sass/mod/_tender.scss */
.tender-view {
  background-color: #eee;
  overflow: hidden;
}
/* line 221, ../sass/mod/_tender.scss */
.tender-view .loan {
  background-color: #fff;
  margin: 15px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
/* line 227, ../sass/mod/_tender.scss */
.tender-view .loan-content {
  text-align: center;
}
/* line 229, ../sass/mod/_tender.scss */
.tender-view .loan-content .tit {
  font-size: 14px;
  color: #666;
  padding: 10px 0;
}
/* line 234, ../sass/mod/_tender.scss */
.tender-view .loan-content .iconfont {
  font-size: 24px;
  color: #acd01a;
  margin: 0 5px;
}
/* line 239, ../sass/mod/_tender.scss */
.tender-view .loan-content .rate {
  padding-top: 10px;
  font-size: 14px;
  color: #333;
  position: relative;
}
/* line 244, ../sass/mod/_tender.scss */
.tender-view .loan-content .rate b {
  font-size: 40px;
  font-weight: normal;
}
/* line 248, ../sass/mod/_tender.scss */
.tender-view .loan-content .rate .r2 {
  color: #fe3f79;
}
/* line 251, ../sass/mod/_tender.scss */
.tender-view .loan-content .rate .b1 {
  display: inline-block;
  letter-spacing: 0;
  width: 120px;
  text-align: left;
}
/* line 257, ../sass/mod/_tender.scss */
.tender-view .loan-content .rate .pos {
  position: absolute;
  top: 0px;
  left: 50%;
  color: #ec5f4d;
}
/* line 262, ../sass/mod/_tender.scss */
.tender-view .loan-content .rate .pos .ico {
  background-color: #ec5f4d;
  margin-left: 7px;
}
/* line 251, ../sass/mod/_tender.scss */
.tender-view .loan-content .icon-award {
  right: 12px;
}
/* line 255, ../sass/mod/_tender.scss */
.tender-view .loan-main {
  background-color: #FFF;
  padding: 15px 8px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
/* line 260, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont {
  position: relative;
}
/* line 262, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont dl {
  font-size: 14px;
  padding-left: 10px;
  padding-bottom: 10px;
}
/* line 267, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont dt {
  font-weight: normal;
  font-size: 18px;
  padding-bottom: 5px;
}
/* line 272, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont dd {
  line-height: 28px;
}
/* line 274, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont dd .name {
  color: #999;
  padding-right: 10px;
  font-size: 13px;
}
/* line 279, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont dd .time {
  color: #fe5384;
}
/* line 283, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .safe {
  font-size: 11px;
  overflow: hidden;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  padding: 10px 0;
}
/* line 289, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .safe .iconfont {
  color: #acd01a;
  margin-left: 8px;
}
/* line 293, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .safe .icon {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  display: inline-block;
  border: 1px solid #acd01a;
  vertical-align: top;
  margin: 3px 3px 0 6px;
}
/* line 303, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .progbar {
  width: 80px;
  height: 80px;
  line-height: 78px;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  right: 20px;
  top: 42px;
}
/* line 313, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .progbar .prog {
  height: 72px;
  width: 72px;
}
/* line 317, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .progbar .prog-bg {
  border: silver 4px solid;
}
/* line 320, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .progbar .prog-bg2 {
  border: silver 4px solid;
  clip: rect(0, 40px, 80px, 0);
}
/* line 324, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .progbar .prog-rount {
  border: #59bbff 4px solid;
  clip: rect(0, 40px, 80px, 0);
  -webkit-transform: rotate(0deg);
}
/* line 329, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .progbar .prog-rount2 {
  border: #59bbff 4px solid;
  clip: rect(0, 80px, 80px, 40px);
  -webkit-transform: rotate(0deg);
}
/* line 334, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .progbar .prog-text {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 15px;
  color: #666;
}
/* line 341, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .progbar .prog-text.t3 {
  font-size: 18px;
  color: #59bbff;
}
/* line 345, ../sass/mod/_tender.scss */
.tender-view .loan-main .cont .progbar .prog-text.t4 {
  color: green;
}
/* line 352, ../sass/mod/_tender.scss */
.tender-view .loan-tabs {
  background-color: #FFF;
  overflow: hidden;
  padding: 20px 8px 0;
  margin-bottom: 15px;
}
/* line 357, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .hd {
  overflow: hidden;
  border-radius: 8px;
  height: 30px;
  line-height: 29px;
  border: 1px solid #008def;
}
/* line 363, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .hd li {
  float: left;
  width: 25%;
  text-align: center;
  border-left: 1px solid #008def;
  font-size: 12px;
}
/* line 369, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .hd li:first-child {
  border-left: 0;
}
/* line 372, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .hd li.on {
  background-color: #008def;
  color: #FFF;
}
/* line 378, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd {
  padding: 15px 10px 0;
  font-size: 13px;
  min-height: 100px;
}
/* line 382, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd p {
  text-indent: 2em;
  color: #666;
}
/* line 385, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd p img {
  margin-left: -2em;
}
/* line 389, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd img {
  max-width: 100%;
}
/* line 393, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-item {
  display: none;
}
/* line 395, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-item.on {
  display: block;
}
/* line 400, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-info .ibox {
  overflow: hidden;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
/* line 404, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-info .ibox:first-child {
  border-bottom: 1px solid #ededed;
}
/* line 407, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-info .ibox .tit {
  width: 35%;
  float: left;
}
/* line 410, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-info .ibox .tit .iconfont {
  color: #59bbff;
  margin-right: 5px;
}
/* line 415, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-info .ibox .con {
  width: 65%;
  float: left;
  font-size: 13px;
}
/* line 419, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-info .ibox .con dd {
  padding: 3px 0;
}
/* line 421, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-info .ibox .con dd .name {
  display: inline-block;
  width: 65px;
  text-align: right;
  color: #999;
  padding-right: 10px;
}
/* line 433, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-plan .row {
  margin: 0;
  border-bottom: 1px solid #ededed;
  padding: 8px 0;
  font-size: 12px;
}
/* line 439, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-plan .row-head {
  font-size: 13px;
}
/* line 444, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-list .row {
  margin: 0;
  border-bottom: 1px solid #ededed;
  padding: 8px 0;
  font-size: 12px;
}
/* line 449, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-list .row .time {
  text-align: center;
  color: #999;
}
/* line 453, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-list .row .money {
  padding-left: 5px;
}
/* line 457, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-list .row-head {
  font-size: 13px;
}
/* line 459, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-list .row-head .name {
  padding-left: 12px;
}
/* line 462, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-list .row-head .time {
  color: #333;
}
/* line 466, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-list .row-foot {
  padding: 8px 0;
  line-height: 26px;
}
/* line 469, ../sass/mod/_tender.scss */
.tender-view .loan-tabs .bd-list .row-foot .iconfont {
  margin-right: 5px;
  color: #59bbff;
  vertical-align: top;
}
/* line 477, ../sass/mod/_tender.scss */
.tender-view .loan-bid {
  width: 100%;
  height: 50px;
  background-color: #2891ef;
  position: relative;
  padding-left: 50px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
}
/* line 487, ../sass/mod/_tender.scss */
.tender-view .loan-bid .counter {
  position: absolute;
  left: 10px;
  top: 15px;
  font-size: 26px;
  color: #FFF;
}
/* line 494, ../sass/mod/_tender.scss */
.tender-view .loan-bid .btn {
  border-radius: 0;
  font-size: 18px;
  padding: 12px;
}
/* line 500, ../sass/mod/_tender.scss */
.tender-view .loan-info {
  background-color: #FFF;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
/* line 506, ../sass/mod/_tender.scss */
.tender-view .loan-info .hd {
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
/* line 514, ../sass/mod/_tender.scss */
.tender-view .loan-info .bd {
  padding: 15px 18px;
}
/* line 516, ../sass/mod/_tender.scss */
.tender-view .loan-info .bd dd {
  line-height: 28px;
}
/* line 519, ../sass/mod/_tender.scss */
.tender-view .loan-info .bd .name {
  color: #999;
  padding-right: 10px;
  font-size: 13px;
}
/* line 524, ../sass/mod/_tender.scss */
.tender-view .loan-info .bd .tip {
  font-size: 10px;
  color: #59bbff;
  line-height: 1;
  margin-bottom: 5px;
  margin-top: -3px;
  padding-left: 60px;
}

/* line 538, ../sass/mod/_tender.scss */
.tender-bid .loan {
  padding: 15px;
  background-color: #FFF;
  margin: 15px 0;
}
/* line 542, ../sass/mod/_tender.scss */
.tender-bid .loan .hd {
  overflow: hidden;
  margin-bottom: 10px;
}
/* line 545, ../sass/mod/_tender.scss */
.tender-bid .loan .hd .name {
  width: 50%;
  height: 19px;
  float: left;
  font-size: 16px;
  overflow: hidden;
}
/* line 552, ../sass/mod/_tender.scss */
.tender-bid .loan .hd .rate {
  width: 50%;
  float: right;
}
/* line 555, ../sass/mod/_tender.scss */
.tender-bid .loan .hd .rate .r {
  color: #fe3f79;
}
.tender-bid .loan .hd .rate .pos {
  color: #ec5f4d;
  margin-left: 5px;
}
/* line 587, ../sass/mod/_tender.scss */
.tender-bid .loan .hd .rate .pos .ico {
  background-color: #ec5f4d;
}
/* line 592, ../sass/mod/_tender.scss */
.tender-bid .loan .hd .w100-apr {
  width: 100%;
  margin-top: 10px;
}
/* line 596, ../sass/mod/_tender.scss */
/* line 558, ../sass/mod/_tender.scss */
.tender-bid .loan .hd .rate .ico {
  background-color: #fe3f79;
  color: #FFF;
  border-radius: 3px;
  font-style: normal;
  font-size: 10px;
  padding: 0 2px 1px;
  vertical-align: top;
  margin-left: 2px;
}
/* line 569, ../sass/mod/_tender.scss */
.tender-bid .loan .hd .iconfont {
  color: #acd01a;
}
/* line 573, ../sass/mod/_tender.scss */
.tender-bid .loan .bd {
  overflow: hidden;
}
/* line 575, ../sass/mod/_tender.scss */
.tender-bid .loan .bd li {
  width: 50%;
  float: left;
  font-size: 13px;
  line-height: 24px;
}
/* line 580, ../sass/mod/_tender.scss */
.tender-bid .loan .bd li .name {
  color: #999;
  font-size: 12px;
}
/* line 588, ../sass/mod/_tender.scss */
.tender-bid .list-block {
  margin: 15px 0;
}
/* line 590, ../sass/mod/_tender.scss */
.tender-bid .list-block li {
  border: 0;
}
/* line 593, ../sass/mod/_tender.scss */
.tender-bid .list-block .item-title {
  padding-left: 15px;
  font-size: 14px;
  float: left;
}
/* line 600, ../sass/mod/_tender.scss */
.tender-bid .item-text {
  padding: 0 15px;
  position: relative;
}
/* line 603, ../sass/mod/_tender.scss */
.tender-bid .item-text dd {
  line-height: 24px;
}
/* line 606, ../sass/mod/_tender.scss */
.tender-bid .item-text .name {
  color: #999;
  font-size: 12px;
}
/* line 610, ../sass/mod/_tender.scss */
.tender-bid .item-text .link {
  position: absolute;
  top: 12px;
  right: 24px;
  font-size: 16px;
}
/* line 616, ../sass/mod/_tender.scss */
.tender-bid .item-text .c-blue {
  color: #008def;
}
/* line 619, ../sass/mod/_tender.scss */
.tender-bid .item-text .c-red {
  color: #fb3266;
}
/* line 623, ../sass/mod/_tender.scss */
.tender-bid .item-foot {
  padding: 0 10px;
}

/* line 629, ../sass/mod/_tender.scss */
.tender-pay {
  width: 100%;
  background-color: #f5f5f5;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2001;
  display: none;
}
/* line 637, ../sass/mod/_tender.scss */
.tender-pay .hd {
  height: 46px;
  line-height: 46px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  position: relative;
}
/* line 643, ../sass/mod/_tender.scss */
.tender-pay .hd .title {
  font-size: 16px;
}
/* line 646, ../sass/mod/_tender.scss */
.tender-pay .hd .back {
  font-size: 20px;
  position: absolute;
  left: 10px;
  top: 0px;
  color: #d2d2d2;
}
/* line 654, ../sass/mod/_tender.scss */
.tender-pay .bd {
  padding: 30px 15px;
  overflow: hidden;
}
/* line 657, ../sass/mod/_tender.scss */
.tender-pay .bd .btn {
  border: 1px solid #ccc;
  width: 48%;
  float: left;
  background-color: #FFF;
  color: #333;
  font-size: 15px;
}
/* line 664, ../sass/mod/_tender.scss */
.tender-pay .bd .btn:last-child {
  float: right;
}

/* line 673, ../sass/mod/_tender.scss */
.transfer-list .loan-content {
  padding-left: 10px;
  padding-right: 0px;
}
/* line 677, ../sass/mod/_tender.scss */
.transfer-list .loan-content .icon-style span {
  background-color: #35d5e3;
  padding: 5px 0;
  line-height: 22px;
}
/* line 682, ../sass/mod/_tender.scss */
.transfer-list .loan-content .icon-style em {
  border-left: 6px solid #21bcca;
}
/* line 686, ../sass/mod/_tender.scss */
.transfer-list .loan-content .col {
  float: left;
}
/* line 689, ../sass/mod/_tender.scss */
.transfer-list .loan-content .c1 {
  width: 29%;
}
/* line 692, ../sass/mod/_tender.scss */
.transfer-list .loan-content .c3 {
  width: 27%;
}
/* line 695, ../sass/mod/_tender.scss */
.transfer-list .loan-content .c4 {
  width: 24%;
}
/* line 698, ../sass/mod/_tender.scss */
.transfer-list .loan-content .c2 {
  width: 20%;
}
/* line 728, ../sass/mod/_tender.scss */
.transfer-list .loan-content .bg {
  position: absolute;
  background: url(../images/over.png) no-repeat scroll center;
  background-size: 100%;
  width: 117px;
  height: 92px;
  right: 20%;
  top: 10px;
}
/* line 705, ../sass/mod/_tender.scss */
.transfer-view {
  overflow: hidden;
}
/* line 707, ../sass/mod/_tender.scss */
.transfer-view .cont {
  background-color: #FFF;
  padding: 15px 8px;
  margin-top: 15px;
  position: relative;
}
/* line 712, ../sass/mod/_tender.scss */
.transfer-view .cont dl {
  font-size: 14px;
  padding-left: 10px;
}
/* line 716, ../sass/mod/_tender.scss */
.transfer-view .cont dt {
  font-weight: normal;
  font-size: 18px;
  padding-bottom: 5px;
}
/* line 721, ../sass/mod/_tender.scss */
.transfer-view .cont dd {
  line-height: 28px;
}
/* line 723, ../sass/mod/_tender.scss */
.transfer-view .cont dd .name {
  color: #999;
  padding-right: 10px;
  font-size: 13px;
}
/* line 728, ../sass/mod/_tender.scss */
.transfer-view .cont dd .time {
  color: #fe5384;
}
/* line 732, ../sass/mod/_tender.scss */
.transfer-view .cont .safe {
  font-size: 11px;
  overflow: hidden;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  padding: 10px 0;
}
/* line 738, ../sass/mod/_tender.scss */
.transfer-view .cont .safe .iconfont {
  color: #acd01a;
  margin-left: 8px;
}
/* line 742, ../sass/mod/_tender.scss */
.transfer-view .cont .safe .icon {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  display: inline-block;
  border: 1px solid #acd01a;
  vertical-align: top;
  margin: 3px 3px 0 6px;
}
/* line 752, ../sass/mod/_tender.scss */
.transfer-view .cont .progbar {
  width: 80px;
  height: 80px;
  line-height: 78px;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  right: 20px;
  top: 42px;
}
/* line 762, ../sass/mod/_tender.scss */
.transfer-view .cont .progbar .prog {
  height: 72px;
  width: 72px;
}
/* line 766, ../sass/mod/_tender.scss */
.transfer-view .cont .progbar .prog-bg {
  border: silver 4px solid;
}
/* line 769, ../sass/mod/_tender.scss */
.transfer-view .cont .progbar .prog-bg2 {
  border: silver 4px solid;
  clip: rect(0, 40px, 80px, 0);
}
/* line 773, ../sass/mod/_tender.scss */
.transfer-view .cont .progbar .prog-rount {
  border: #59bbff 4px solid;
  clip: rect(0, 40px, 80px, 0);
  -webkit-transform: rotate(0deg);
}
/* line 778, ../sass/mod/_tender.scss */
.transfer-view .cont .progbar .prog-rount2 {
  border: #59bbff 4px solid;
  clip: rect(0, 80px, 80px, 40px);
  -webkit-transform: rotate(0deg);
}
/* line 783, ../sass/mod/_tender.scss */
.transfer-view .cont .progbar .prog-text {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 15px;
  color: #666;
}
/* line 790, ../sass/mod/_tender.scss */
.transfer-view .cont .progbar .prog-text.t3 {
  font-size: 18px;
  color: #59bbff;
}
/* line 794, ../sass/mod/_tender.scss */
.transfer-view .cont .progbar .prog-text.t4 {
  color: green;
}
/* line 800, ../sass/mod/_tender.scss */
.transfer-view .list-block {
  margin: 15px 0;
}
/* line 802, ../sass/mod/_tender.scss */
.transfer-view .list-block li {
  border: 0;
}
/* line 805, ../sass/mod/_tender.scss */
.transfer-view .list-block .item-title {
  float: left;
  color: #999;
  font-size: 12px;
}
/* line 811, ../sass/mod/_tender.scss */
.transfer-view .item-text {
  padding: 0 20px;
}
/* line 813, ../sass/mod/_tender.scss */
.transfer-view .item-text .name {
  color: #999;
  font-size: 10px;
}
/* line 817, ../sass/mod/_tender.scss */
.transfer-view .item-text .val {
  font-size: 12px;
}
/* line 821, ../sass/mod/_tender.scss */
.transfer-view .item-right {
  font-size: 10px;
  right: 15px;
}
/* line 825, ../sass/mod/_tender.scss */
.transfer-view .loan-alert {
  margin-top: 20px;
  color: #999;
  font-size: 10px;
}
/* line 829, ../sass/mod/_tender.scss */
.transfer-view .loan-alert p {
  margin-bottom: 5px;
}

/* line 836, ../sass/mod/_tender.scss */
.lz-loan {
  margin: 15px 0px;
  padding: 15px 8px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  font-family: "宋体";
  /*	.top{
  		overflow: hidden;
  		width: 100%;
  		span{
  			float: left;
  			width: 49.99%;
  			font-size: 18px;
  		}
  		.loan-detail{
  			.iconfont{
  				color: #c0db50;
  				font-size: 22px;
  			}
  			.apr-txt{
  				color: #fe3f79;
  				font-style: normal;
  			}
  		}
  		.ico{
  			background-color: #f92159;
  		    border-radius: 3px;
  		    color: #fff;
  		    font-size: 14px;
  		    font-style: normal;
  		    margin-left: 5px;
  		    padding:2px 2px 2px;
  		}
  	}
  	ul{
  		font-size: 16px;
  		margin-top: 15px;
  		overflow: hidden;
  		li{
  			line-height: 30px;
  			float: left;
  			width: 49.99%;
  			span{
  				color: #999;
  			}
  		}
  	}*/
}
/* line 883, ../sass/mod/_tender.scss */
.lz-loan .loan-cal {
  color: #999;
  line-height: 25px;
}
/* line 886, ../sass/mod/_tender.scss */
.lz-loan .loan-cal .item-opera {
  border: 1px solid #ddd;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  background-color: #f0f0f0;
  font-size: 24px;
  vertical-align: middle;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 897, ../sass/mod/_tender.scss */
.lz-loan .loan-cal .txt-val {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #ddd;
  height: 25px;
  vertical-align: top;
  width: 45%;
  margin: 0px 5px;
  text-align: center;
}
/* line 906, ../sass/mod/_tender.scss */
.lz-loan .loan-cal .tcol {
  color: #333;
  font-size: 16px;
}

/*.loan-bl{
		 padding: 15px 8px;
		 color: #999;
		 .money{
		 	color: #fb3266;
		 }
		 .charge{
		 	font-size: 18px;
		 	color: #008def;
		 	margin-right: 20px;
		 }
		 .apr{
		 	display: block;
		 	line-height: 30px;
		 	.tcol{
		 		color: #333;
		 	}
		 }
	}*/
/**************
	@description:帮助中心;
	@Author:Monkey;
	@create date:2015-05-08;
***************/
/* line 7, ../sass/mod/_help.scss */
.topbar {
  background-color: #FFF;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}
/* line 10, ../sass/mod/_help.scss */
.topbar .btn {
  border: 0;
  height: 46px;
  font-size: 16px;
  border-radius: 0;
  color: #333;
  width: 49%;
  box-shadow: none;
}
/* line 19, ../sass/mod/_help.scss */
.topbar .btn span {
  display: inline-block;
  padding: 0 10px;
  line-height: 39px;
}
/* line 24, ../sass/mod/_help.scss */
.topbar .btn.active {
  background: 0;
  color: #1a9fdb;
  border: 0;
}
/* line 28, ../sass/mod/_help.scss */
.topbar .btn.active span {
  border-bottom: 2px solid #1a9fdb;
}

/* line 35, ../sass/mod/_help.scss */
.artice-list {
  padding: 15px;
}
/* line 37, ../sass/mod/_help.scss */
.artice-list li {
  border: 1px solid #e4e4e4;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #FFF;
}
/* line 42, ../sass/mod/_help.scss */
.artice-list li a {
  display: block;
  padding: 0 12px;
}
/* line 45, ../sass/mod/_help.scss */
.artice-list li a.active-state {
  background: rgba(0, 122, 255, 0.15);
}
/* line 47, ../sass/mod/_help.scss */
.artice-list li .tit {
  color: #1a9fdb;
  font-size: 16px;
  padding: 10px 0 5px;
}
/* line 53, ../sass/mod/_help.scss */
.artice-list li .opt .time {
  position: relative;
  padding-left: 25px;
  background-size: auto 100%;
  margin-right: 20px;
  color: #999;
}
/* line 60, ../sass/mod/_help.scss */
.artice-list li .opt .click {
  position: relative;
  padding-left: 28px;
  background-size: auto 100%;
  color: #999;
}
/* line 66, ../sass/mod/_help.scss */
.artice-list li .opt .iconfont {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  text-align: center;
  height: 20px;
  line-height: 20px;
  width: 20px;
  font-size: 21px;
  color: #999999;
}
/* line 80, ../sass/mod/_help.scss */
.artice-list li .rem {
  padding: 10px 0 20px;
  color: #666;
}
/* line 85, ../sass/mod/_help.scss */
.artice-list a.btn-more {
  font-size: 17px;
  height: 43px;
  line-height: 30px;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  background-color: #FFF;
  color: #ccc;
}

/* line 95, ../sass/mod/_help.scss */
.artice-view {
  overflow: hidden;
}
/* line 97, ../sass/mod/_help.scss */
.artice-view .hd {
  text-align: center;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 20px;
}
/* line 102, ../sass/mod/_help.scss */
.artice-view .hd .tit {
  font-size: 20px;
  color: #1a9fdb;
  padding: 20px 0 10px;
}
/* line 107, ../sass/mod/_help.scss */
.artice-view .hd .from {
  color: #b5b5b5;
  padding-bottom: 10px;
}
/* line 112, ../sass/mod/_help.scss */
.artice-view .hd .opt .time {
  position: relative;
  padding-left: 25px;
  background-size: auto 100%;
  margin-right: 20px;
  color: #999;
}
/* line 119, ../sass/mod/_help.scss */
.artice-view .hd .opt .click {
  position: relative;
  padding-left: 28px;
  background-size: auto 100%;
  color: #999;
}
/* line 125, ../sass/mod/_help.scss */
.artice-view .hd .opt .iconfont {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  text-align: center;
  height: 20px;
  line-height: 20px;
  width: 20px;
  font-size: 21px;
  color: #999999;
}
/* line 140, ../sass/mod/_help.scss */
.artice-view .bd {
  padding: 0 20px;
  font-size: 15px;
  color: #666;
}
/* line 144, ../sass/mod/_help.scss */
.artice-view .bd p {
  margin: 1em 0;
}

/**************
	@description:用户中心;
	@Author:ray;
	@create date:2015-05-11;
***************/
/* line 10, ../sass/mod/_user.scss */
.page-user .user-index .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: top;
  background: url(images/icon-user.png) no-repeat;
  background-size: 72px auto;
  margin: 2px 2px 0 0;
}
/* line 19, ../sass/mod/_user.scss */
.page-user .user-index .icon-total {
  background-position: -19px 0px;
}
/* line 22, ../sass/mod/_user.scss */
.page-user .user-index .icon-income {
  background-position: -38px 0px;
}
/* line 25, ../sass/mod/_user.scss */
.page-user .user-index .icon-pay {
  width: 34px;
  height: 34px;
  background-position: 0px -18px;
  margin: 0;
}
/* line 31, ../sass/mod/_user.scss */
.page-user .user-index .icon-take {
  width: 34px;
  height: 28px;
  background-position: -38px -18px;
  margin: 5px 0 0 0;
}
/* line 37, ../sass/mod/_user.scss */
.page-user .user-index .icon-invest {
  background-position: 0px -57px;
}
/* line 40, ../sass/mod/_user.scss */
.page-user .user-index .icon-record {
  background-position: -29px -57px;
}
/* line 43, ../sass/mod/_user.scss */
.page-user .user-index .icon-spread {
  background-position: 0px -88px;
}
/* line 46, ../sass/mod/_user.scss */
.page-user .user-index .icon-account {
  background-position: -31px -85px;
}
/* line 50, ../sass/mod/_user.scss */
.page-user .user-data {
  background-color: #FFF;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
/* line 55, ../sass/mod/_user.scss */
.page-user .user-data .user-data-row {
  display: block;
  line-height: 1.5;
  color: #666;
  overflow: hidden;
  position: relative;
}
/* line 61, ../sass/mod/_user.scss */
.page-user .user-data .user-data-row .name {
  font-size: 14px;
  color: #333;
  line-height: 21px;
}
/* line 66, ../sass/mod/_user.scss */
.page-user .user-data .user-data-row .val {
  color: #ff8208;
  font-size: 20px;
  font-weight: 100;
  height: 30px;
  line-height: 30px;
}
/* line 74, ../sass/mod/_user.scss */
.page-user .user-data .user-data-rate {
  height: 98px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ededed;
  text-align: center;
}
/* line 79, ../sass/mod/_user.scss */
.page-user .user-data .user-data-rate .val {
  height: 60px;
  line-height: 60px;
  font-size: 40px;
}
/* line 84, ../sass/mod/_user.scss */
.page-user .user-data .user-data-rate .next {
  color: #e4e4e4;
  font-size: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
}
/* line 92, ../sass/mod/_user.scss */
.page-user .user-data .user-data-total,
.page-user .user-data .user-data-income {
  width: 50%;
  height: 51px;
  float: left;
  padding-left: 5px;
}
/* line 99, ../sass/mod/_user.scss */
.page-user .user-data .user-data-total {
  position: relative;
}
/* line 101, ../sass/mod/_user.scss */
.page-user .user-data .user-data-total::after {
  content: " ";
  width: 1px;
  height: 100%;
  background-color: #e5e5e5;
  position: absolute;
  top: 0;
  right: 0;
}
/* line 111, ../sass/mod/_user.scss */
.page-user .user-data .user-data-income {
  padding-left: 20px;
}
/* line 116, ../sass/mod/_user.scss */
.page-user .user-opts {
  overflow: hidden;
  padding: 20px 0;
  background-color: #fff;
  margin-bottom: 15px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
/* line 123, ../sass/mod/_user.scss */
.page-user .user-opts li {
  width: 50%;
  float: left;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
/* line 129, ../sass/mod/_user.scss */
.page-user .user-opts li a {
  display: block;
}
/* line 132, ../sass/mod/_user.scss */
.page-user .user-opts li span {
  display: block;
  font-size: 15px;
  color: #333;
  padding-top: 5px;
}
/* line 138, ../sass/mod/_user.scss */
.page-user .user-opts li:first-child::after {
  content: " ";
  width: 1px;
  height: 100%;
  background-color: #e5e5e5;
  position: absolute;
  top: 0;
  right: 0;
}
/* line 150, ../sass/mod/_user.scss */
.page-user .user-nav {
  background-color: #FFF;
  padding: 0 15px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
/* line 157, ../sass/mod/_user.scss */
.page-user .user-nav .item-title {
  font-size: 15px;
  color: #666;
}
/* line 161, ../sass/mod/_user.scss */
.page-user .user-nav .item-content {
  overflow: hidden;
  padding: 20px 0;
  line-height: 30px;
  position: relative;
}
/* line 166, ../sass/mod/_user.scss */
.page-user .user-nav .item-content:first-child::after {
  content: " ";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #e4e4e4;
  position: absolute;
  bottom: 0;
  left: 0;
}
/* line 175, ../sass/mod/_user.scss */
.page-user .user-nav .item-content .item {
  padding-left: 40px;
  position: relative;
}
/* line 178, ../sass/mod/_user.scss */
.page-user .user-nav .item-content .item a:active, .page-user .user-nav .item-content .item a:visited {
  color: #008def;
}
/* line 181, ../sass/mod/_user.scss */
.page-user .user-nav .item-content .item .icon {
  width: 28px;
  height: 28px;
  position: absolute;
  left: 5px;
}
/* line 187, ../sass/mod/_user.scss */
.page-user .user-nav .item-content .item dt {
  font-size: 16px;
  font-weight: normal;
}
/* line 191, ../sass/mod/_user.scss */
.page-user .user-nav .item-content .item dd {
  font-size: 10px;
  color: #999;
  margin-top: 4px;
}
/* line 195, ../sass/mod/_user.scss */
.page-user .user-nav .item-content .item dd a {
  font-size: 12px;
  color: #999;
}
/* line 206, ../sass/mod/_user.scss */
.page-user .user-safe {
  text-align: center;
  padding: 30px 10px;
  overflow: hidden;
}
/* line 210, ../sass/mod/_user.scss */
.page-user .user-safe .col {
  padding: 0;
}
/* line 213, ../sass/mod/_user.scss */
.page-user .user-safe .icon {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 76px;
  margin: 0 auto;
  background-image: url(../images/icon-safe.png);
  background-repeat: no-repeat;
  background-size: 290px auto;
}
/* line 222, ../sass/mod/_user.scss */
.page-user .user-safe .icon.icon-user {
  background-color: #02d9af;
  background-position: 0% 0%;
}
/* line 226, ../sass/mod/_user.scss */
.page-user .user-safe .icon.icon-pay {
  background-color: #ffab3a;
  background-position: 50% 100%;
}
/* line 230, ../sass/mod/_user.scss */
.page-user .user-safe .icon.disable {
  background-color: #ccc;
}
/* line 234, ../sass/mod/_user.scss */
.page-user .user-safe .title {
  font-size: 16px;
  color: #666;
  padding: 5px 0;
}
/* line 239, ../sass/mod/_user.scss */
.page-user .user-safe .state {
  color: #999;
}
/* line 245, ../sass/mod/_user.scss */
.page-user .loans {
  padding: 15px 0;
}
/* line 247, ../sass/mod/_user.scss */
.page-user .loans .loan-list {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  padding: 0 10px;
  background-color: #FFF;
}
/* line 253, ../sass/mod/_user.scss */
.page-user .loans .loan-item {
  padding: 10px 0;
  border: 0;
  border-top: 1px solid #ededed;
  margin: -1px 0 0;
}
/* line 259, ../sass/mod/_user.scss */
.page-user .loans .loan-head {
  padding: 5px 0 3px;
  overflow: hidden;
}
/* line 262, ../sass/mod/_user.scss */
.page-user .loans .loan-head .title {
  color: #333;
  font-size: 16px;
  float: left;
}
/* line 267, ../sass/mod/_user.scss */
.page-user .loans .loan-head .time {
  float: right;
  margin-right: 22px;
  color: #ccc;
}
/* line 273, ../sass/mod/_user.scss */
.page-user .loans .loan-content {
  padding: 0px;
}
/* line 275, ../sass/mod/_user.scss */
.page-user .loans .loan-content .name {
  padding: 0;
}
/* line 278, ../sass/mod/_user.scss */
.page-user .loans .loan-content .val {
  font-size: 14px;
}
/* line 281, ../sass/mod/_user.scss */
.page-user .loans .loan-content .val-price {
  color: #ffae00;
}
/* line 284, ../sass/mod/_user.scss */
.page-user .loans .loan-content .val-state {
  color: #59bbff;
}
/* line 288, ../sass/mod/_user.scss */
.page-user .loans .loan-foot {
  border: 0;
  margin-top: 15px;
}
/* line 293, ../sass/mod/_user.scss */
.page-user .loans .loan-log .loan-content {
  font-size: 13px;
}
/* line 295, ../sass/mod/_user.scss */
.page-user .loans .loan-log .loan-content .title {
  font-size: 16px;
  color: #333;
}
/* line 299, ../sass/mod/_user.scss */
.page-user .loans .loan-log .loan-content .time {
  float: right;
  color: #ccc;
  font-size: 12px;
}
/* line 304, ../sass/mod/_user.scss */
.page-user .loans .loan-log .loan-content .col-center {
  padding: 8px 0;
}
/* line 307, ../sass/mod/_user.scss */
.page-user .loans .loan-log .loan-content .new_freeze {
  color: #ffae00;
}
/* line 310, ../sass/mod/_user.scss */
.page-user .loans .loan-log .loan-content .un_freeze {
  color: #59bbff;
}
/* line 313, ../sass/mod/_user.scss */
.page-user .loans .loan-log .loan-content .income {
  color: #ffae00;
}
/* line 316, ../sass/mod/_user.scss */
.page-user .loans .loan-log .loan-content .expend {
  color: #64d0b6;
}
/* line 326, ../sass/mod/_user.scss */
.page-user .bank-list .item-content {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e4e4e4;
  padding: 8px 0 6px;
}
/* line 332, ../sass/mod/_user.scss */
.page-user .bank-list .item-media {
  float: left;
  display: inline;
  margin: 0 15px;
}
/* line 336, ../sass/mod/_user.scss */
.page-user .bank-list .item-media img {
  width: 34px;
  height: 34px;
}
/* line 341, ../sass/mod/_user.scss */
.page-user .bank-list .item-title {
  line-height: 34px;
  font-size: 16px;
  color: #333;
}
/* line 349, ../sass/mod/_user.scss */
.page-user .pay-result {
  margin: 10px;
}
/* line 351, ../sass/mod/_user.scss */
.page-user .pay-result .bd {
  font-size: 15px;
  line-height: 2;
}
/* line 355, ../sass/mod/_user.scss */
.page-user .pay-result .fd {
  padding-top: 10px;
}
/* line 357, ../sass/mod/_user.scss */
.page-user .pay-result .fd .btn {
  width: 48%;
  font-size: 16px;
}
/* line 365, ../sass/mod/_user.scss */
.page-user .receive-table {
  border: 1px solid #e4e4e4;
}
/* line 367, ../sass/mod/_user.scss */
.page-user .receive-table .thead .tr {
  padding: 8px 15px;
}
/* line 370, ../sass/mod/_user.scss */
.page-user .receive-table .tbody .fr {
  text-align: right;
}
/* line 373, ../sass/mod/_user.scss */
.page-user .receive-table .tfoot .tr {
  margin: 0 15px;
  padding: 8px 0;
}
/* line 381, ../sass/mod/_user.scss */
.page-user .user-bank .bank-card {
  display: block;
  background-color: #36acfe;
  color: #FFF;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 28px;
}
/* line 388, ../sass/mod/_user.scss */
.page-user .user-bank .bank-card .bank-name {
  font-size: 0.7em;
  line-height: 1.5em;
}
/* line 392, ../sass/mod/_user.scss */
.page-user .user-bank .bank-card .bank-num {
  font-size: 1em;
  line-height: 1.2em;
  padding: 25px 0;
}
/* line 397, ../sass/mod/_user.scss */
.page-user .user-bank .bank-card .bank-user {
  font-size: 0.5em;
}
/* line 400, ../sass/mod/_user.scss */
.page-user .user-bank .bank-card a {
  color: #fff;
}
/* line 404, ../sass/mod/_user.scss */
.page-user .user-bank .bank-add {
  text-align: center;
  background-color: #FFF;
  color: #ccc;
}
/* line 408, ../sass/mod/_user.scss */
.page-user .user-bank .bank-add .iconfont {
  display: block;
  font-size: 2.5em;
  line-height: 1em;
  margin-top: 0.4em;
}
/* line 414, ../sass/mod/_user.scss */
.page-user .user-bank .bank-add .name {
  display: block;
  font-size: 0.6em;
  line-height: 2em;
  margin-bottom: 0.8em;
}
/* line 421, ../sass/mod/_user.scss */
.page-user .user-bank .bank-change {
  padding: 8px 5px;
  text-align: right;
}
/* line 424, ../sass/mod/_user.scss */
.page-user .user-bank .bank-change a {
  font-size: 12px;
  color: #999;
}
/* line 430, ../sass/mod/_user.scss */
.page-user .user-bank .list-block .list-title {
  color: #999;
}
/* line 433, ../sass/mod/_user.scss */
.page-user .user-bank .list-block .item-right {
  font-size: 13px;
  padding-right: 10px;
}
/* line 437, ../sass/mod/_user.scss */
.page-user .user-bank .list-block .item-input .txt {
  text-align: right;
  padding: 8px 35px 8px 0px;
}
/* line 441, ../sass/mod/_user.scss */
.page-user .user-bank .list-block .item-arrow {
  right: 15px;
}
@media screen and (max-width: 380px) {
  /* line 447, ../sass/mod/_user.scss */
  .page-user .user-bank .bank-card {
    font-size: 28px;
  }
}
@media screen and (max-width: 370px) {
  /* line 452, ../sass/mod/_user.scss */
  .page-user .user-bank .bank-card {
    font-size: 23px;
  }
}
/* line 458, ../sass/mod/_user.scss */
.page-user .wealth-data {
  background-color: #008def;
  padding: 20px 15px;
}
/* line 461, ../sass/mod/_user.scss */
.page-user .wealth-data .user-data-row {
  line-height: 1.5;
  color: #fff;
  overflow: hidden;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}
/* line 468, ../sass/mod/_user.scss */
.page-user .wealth-data .user-data-row .name {
  font-size: 14px;
  line-height: 21px;
  padding-top: 10px;
}
/* line 473, ../sass/mod/_user.scss */
.page-user .wealth-data .user-data-row .val {
  height: 60px;
  line-height: 60px;
  font-size: 40px;
  font-weight: 100;
}
/* line 479, ../sass/mod/_user.scss */
.page-user .wealth-data .user-data-row .iconfont {
  margin-right: 3px;
  font-size: 18px;
}
/* line 485, ../sass/mod/_user.scss */
.page-user .wealth-detail {
  padding: 0px 40px 50px;
}
/* line 487, ../sass/mod/_user.scss */
.page-user .wealth-detail ul {
  border-left: 1px solid #d8d8d8;
  padding-top: 5;
}
/* line 491, ../sass/mod/_user.scss */
.page-user .wealth-detail li {
  line-height: 24px;
  padding-top: 25px;
  position: relative;
  bottom: -5px;
}
/* line 496, ../sass/mod/_user.scss */
.page-user .wealth-detail li .icon {
  width: 18px;
  height: 20px;
  position: absolute;
  background-image: url(images/icon-wealth.png);
  background-size: 100% auto;
  left: -10px;
  bottom: 3px;
}
/* line 504, ../sass/mod/_user.scss */
.page-user .wealth-detail li .icon.i1 {
  background-position: 0px 0px;
}
/* line 507, ../sass/mod/_user.scss */
.page-user .wealth-detail li .icon.i2 {
  background-position: 0px -20px;
}
/* line 510, ../sass/mod/_user.scss */
.page-user .wealth-detail li .icon.i3 {
  background-position: 0px -40px;
}
/* line 513, ../sass/mod/_user.scss */
.page-user .wealth-detail li .icon.i4 {
  background-position: 0px -60px;
}
/* line 516, ../sass/mod/_user.scss */
.page-user .wealth-detail li .icon.i5 {
  background-position: 0px -80px;
}
/* line 520, ../sass/mod/_user.scss */
.page-user .wealth-detail li .name {
  color: #666;
  padding: 0 10px 0 15px;
  float: left;
}
/* line 525, ../sass/mod/_user.scss */
.page-user .wealth-detail li .val {
  color: #333;
  font-size: 20px;
  vertical-align: top;
  float: left;
}
/* line 531, ../sass/mod/_user.scss */
.page-user .wealth-detail li .unit {
  color: #999;
  float: right;
}
/* line 540, ../sass/mod/_user.scss */
.page-user .user-details .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: top;
  background: url(images/icon-user3.png) no-repeat;
  background-size: 100% auto;
  margin: 12px 8px 0 0;
}
/* line 549, ../sass/mod/_user.scss */
.page-user .user-details .icon-user {
  background-position: 0px 0px;
}
/* line 550, ../sass/mod/_user.scss */
.page-user .user-details .icon-bank {
  background-position: 0px -21px;
}
/* line 551, ../sass/mod/_user.scss */
.page-user .user-details .icon-cust {
  background-position: 0px -42px;
}
/* line 553, ../sass/mod/_user.scss */
.page-user .user-details .icon-phone {
  background-position: 0px -63px;
}
/* line 554, ../sass/mod/_user.scss */
.page-user .user-details .icon-email {
  background-position: 0px -84px;
}
/* line 555, ../sass/mod/_user.scss */
.page-user .user-details .icon-real {
  background-position: 0px -105px;
}
/* line 556, ../sass/mod/_user.scss */
.page-user .user-details .icon-data {
  background-position: 0px -126px;
}
/* line 558, ../sass/mod/_user.scss */
.page-user .user-details .icon-pass {
  background-position: 0px -147px;
}
/* line 559, ../sass/mod/_user.scss */
.page-user .user-details .icon-pass2 {
  background-position: 0px -168px;
}
/* line 560, ../sass/mod/_user.scss */
.page-user .user-details .icon-pass3 {
  background-position: 0px -189px;
}
/* line 565, ../sass/mod/_user.scss */
.page-user .user-info .user-box {
  padding-top: 32px;
  position: relative;
  background-color: #008def;
  border-bottom: 1px solid #e1e1e1;
}
/* line 570, ../sass/mod/_user.scss */
.page-user .user-info .user-box .hd {
  height: 44px;
  line-height: 44px;
  padding-left: 115px;
  background-color: #008def;
}
/* line 575, ../sass/mod/_user.scss */
.page-user .user-info .user-box .hd .avatar {
  width: 82px;
  height: 82px;
  border-radius: 82px;
  border: 2px solid #FFF;
  position: absolute;
  bottom: 15px;
  left: 18px;
}
/* line 583, ../sass/mod/_user.scss */
.page-user .user-info .user-box .hd .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
/* line 588, ../sass/mod/_user.scss */
.page-user .user-info .user-box .hd .avatar .avatar-file,
.page-user .user-info .user-box .hd .avatar .avatar-loading {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  left: 0%;
  top: 0%;
  overflow: hidden;
}
/* line 598, ../sass/mod/_user.scss */
.page-user .user-info .user-box .hd .avatar .avatar-file {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
/* line 601, ../sass/mod/_user.scss */
.page-user .user-info .user-box .hd .avatar .avatar-loading {
  line-height: 80px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #FFF;
  text-align: center;
  display: none;
}
/* line 610, ../sass/mod/_user.scss */
.page-user .user-info .user-box .hd .name {
  font-size: 18px;
  color: #FFF;
  margin-right: 5px;
}
/* line 615, ../sass/mod/_user.scss */
.page-user .user-info .user-box .hd .leve {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(images/icon-v3.png) no-repeat;
  background-size: 100% auto;
  vertical-align: middle;
}
/* line 624, ../sass/mod/_user.scss */
.page-user .user-info .user-box .bd {
  height: 54px;
  padding-left: 90px;
  padding-right: 20px;
  background-color: #FFF;
  overflow: hidden;
}
/* line 630, ../sass/mod/_user.scss */
.page-user .user-info .user-box .bd li {
  width: 50%;
  height: 36px;
  float: left;
  text-align: center;
  margin-top: 9px;
}
/* line 636, ../sass/mod/_user.scss */
.page-user .user-info .user-box .bd li:first-child {
  border-right: 1px solid #e1e1e1;
}
/* line 640, ../sass/mod/_user.scss */
.page-user .user-info .user-box .bd .val {
  display: block;
  font-size: 14px;
  color: #333;
}
/* line 645, ../sass/mod/_user.scss */
.page-user .user-info .user-box .bd .tit {
  display: block;
  font-size: 12px;
  color: #999;
}
/* line 650, ../sass/mod/_user.scss */
.page-user .user-info .user-box .bd .leve {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(images/icon-hr.png) no-repeat;
  background-size: 100% auto;
  vertical-align: top;
}
/* line 661, ../sass/mod/_user.scss */
.page-user .user-info .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: top;
  background: url(images/icon-user2.png) no-repeat;
  background-size: 100% auto;
  margin: 12px 8px 0 0;
}
/* line 670, ../sass/mod/_user.scss */
.page-user .user-info .icon-company {
  background-position: 0px -21px;
}
/* line 673, ../sass/mod/_user.scss */
.page-user .user-info .icon-asset {
  background-position: 0px -42px;
}

/* line 682, ../sass/mod/_user.scss */
.page-settings .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: top;
  background: url(images/icon-settings.png) no-repeat;
  background-size: 100% auto;
  margin: 12px 8px 0 0;
}
/* line 691, ../sass/mod/_user.scss */
.page-settings .icon-comm {
  background-position: 0px 0px;
}
/* line 692, ../sass/mod/_user.scss */
.page-settings .icon-ques {
  background-position: 0px -22px;
}
/* line 693, ../sass/mod/_user.scss */
.page-settings .icon-cust {
  background-position: 0px -45px;
}
/* line 694, ../sass/mod/_user.scss */
.page-settings .icon-vers {
  background-position: 0px -67px;
}
/* line 695, ../sass/mod/_user.scss */
.page-settings .hotline {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  text-align: center;
  background-color: #FFF;
  z-index: 1060;
  display: none;
}
/* line 704, ../sass/mod/_user.scss */
.page-settings .hotline .hd {
  margin: 0 20px;
  border-bottom: 1px solid #e1e1e1;
}
/* line 707, ../sass/mod/_user.scss */
.page-settings .hotline .hd h4 {
  font-size: 14px;
}
/* line 710, ../sass/mod/_user.scss */
.page-settings .hotline .hd h5 {
  font-size: 12px;
}
/* line 714, ../sass/mod/_user.scss */
.page-settings .hotline .bd {
  height: 56px;
  line-height: 56px;
}
/* line 717, ../sass/mod/_user.scss */
.page-settings .hotline .bd .tel {
  display: block;
  font-size: 18px;
  font-family: arial;
}
/* line 723, ../sass/mod/_user.scss */
.page-settings .hotline .fd .btn {
  border-top: 2px solid #8f8f92;
  color: #333;
  font-size: 15px;
  padding: 10px 16px;
}

/* line 734, ../sass/mod/_user.scss */
.page-transfer .transfer-info {
  background-color: #FFF;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 15px 0;
  padding: 15px;
}
/* line 740, ../sass/mod/_user.scss */
.page-transfer .transfer-info dt {
  font-weight: normal;
  font-size: 15px;
}
/* line 744, ../sass/mod/_user.scss */
.page-transfer .transfer-info dd {
  line-height: 28px;
  padding-top: 5px;
}
/* line 747, ../sass/mod/_user.scss */
.page-transfer .transfer-info dd .name {
  color: #999;
  padding-right: 30px;
  font-size: 13px;
}
/* line 755, ../sass/mod/_user.scss */
.page-transfer .loan-tabs {
  background-color: #FFF;
  overflow: hidden;
  padding: 20px 8px 0;
  margin-bottom: 15px;
}
/* line 760, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .hd {
  overflow: hidden;
  border-radius: 8px;
  height: 30px;
  line-height: 29px;
  border: 1px solid #008def;
}
/* line 766, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .hd li {
  float: left;
  width: 50%;
  text-align: center;
  border-left: 1px solid #008def;
  font-size: 12px;
}
/* line 772, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .hd li:first-child {
  border-left: 0;
}
/* line 775, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .hd li.on {
  background-color: #008def;
  color: #FFF;
}
/* line 781, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd {
  padding: 15px 10px 0;
  font-size: 13px;
  min-height: 100px;
}
/* line 785, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd p {
  text-indent: 2em;
  color: #666;
}
/* line 788, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd p img {
  margin-left: -2em;
}
/* line 792, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd img {
  max-width: 100%;
}
/* line 796, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd-item {
  display: none;
}
/* line 798, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd-item.on {
  display: block;
}
/* line 803, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd-list .row {
  display: block;
  color: #333;
  margin: 0;
  border-bottom: 1px solid #ededed;
  padding: 8px 0;
  font-size: 12px;
  text-align: center;
}
/* line 811, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd-list .row .s-1 {
  color: #59bbff;
}
/* line 812, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd-list .row .s1 {
  color: #ffc000;
}
/* line 813, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd-list .row .s2 {
  color: #d3d3d3;
}
/* line 815, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd-list .row-head {
  font-size: 13px;
}
/* line 817, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd-list .row-head .name {
  padding-left: 12px;
}
/* line 820, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd-list .row-head .time {
  color: #333;
}
/* line 824, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd-list .row-foot {
  margin-top: 20px;
}
/* line 826, ../sass/mod/_user.scss */
.page-transfer .loan-tabs .bd-list .row-foot .txt-cent {
  font-size: 10px;
  color: #999;
}
/* line 835, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan {
  padding: 15px;
  background-color: #FFF;
  margin: 15px 0;
}
/* line 839, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan .hd {
  overflow: hidden;
  margin-bottom: 10px;
}
/* line 842, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan .hd .tit {
  width: 100%;
  height: 19px;
  float: left;
  font-size: 16px;
  overflow: hidden;
}
/* line 849, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan .hd .rig {
  font-size: 10px;
  float: right;
}
/* line 854, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan .bd {
  overflow: hidden;
}
/* line 856, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan .bd li {
  font-size: 13px;
  line-height: 24px;
}
/* line 859, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan .bd li .name {
  color: #999;
  font-size: 12px;
}
/* line 867, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .transfer-one .bd li .name {
  width: 95px;
  text-align: right;
  float: left;
  padding-right: 10px;
}
/* line 873, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .transfer-two {
  padding: 10px;
}
/* line 875, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .transfer-two .bd li .name {
  width: 112px;
  text-align: right;
  float: left;
  padding-right: 10px;
}
/* line 882, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .look {
  text-align: right;
  font-size: 12px;
  color: #999;
  padding: 0 15px;
}
/* line 887, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .look a {
  color: #333;
}
/* line 891, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .list-block {
  margin: 15px 0;
}
/* line 893, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .list-block li {
  border: 0;
}
/* line 896, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .list-block .item-title {
  padding-left: 15px;
  font-size: 14px;
  float: left;
}
/* line 902, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .item-text {
  padding: 0 15px;
}
/* line 904, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .item-text .name {
  color: #999;
  font-size: 10px;
}
/* line 908, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .item-text .val {
  font-size: 12px;
}
/* line 912, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan-repay {
  background-color: #FFF;
  margin: 15px 0;
}
/* line 915, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan-repay .hd {
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  padding-bottom: 5px;
}
/* line 922, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan-repay .bd {
  padding: 0 18px;
}
/* line 924, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan-repay .bd dl {
  border-top: 1px solid #ededed;
  padding: 15px 0;
}
/* line 928, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan-repay .bd dt {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 3px;
}
/* line 932, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan-repay .bd dt .staues {
  font-size: 10px;
  float: right;
}
/* line 937, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan-repay .bd dd {
  line-height: 28px;
}
/* line 940, ../sass/mod/_user.scss */
.page-transfer .transfer-buy .loan-repay .bd .name {
  color: #999;
  padding-right: 10px;
  font-size: 13px;
}

/* line 952, ../sass/mod/_user.scss */
.page-cash .list-block .item-bank {
  height: 65px;
  padding: 10px 0;
}
/* line 955, ../sass/mod/_user.scss */
.page-cash .list-block .item-bank .icon {
  width: 45px;
  height: 45px;
  float: left;
  margin: 0 20px;
}
/* line 960, ../sass/mod/_user.scss */
.page-cash .list-block .item-bank .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
/* line 966, ../sass/mod/_user.scss */
.page-cash .list-block .item-bank .name {
  line-height: 24px;
  color: #333;
  font-size: 16px;
}
/* line 971, ../sass/mod/_user.scss */
.page-cash .list-block .item-bank .number {
  line-height: 24px;
  color: #999;
}
/* line 976, ../sass/mod/_user.scss */
.page-cash .loan-content .col-xs-12 {
  padding: 4px 0;
}
/* line 978, ../sass/mod/_user.scss */
.page-cash .loan-content .col-xs-12 .v-1 {
  color: #ff5959;
}
/* line 981, ../sass/mod/_user.scss */
.page-cash .loan-content .col-xs-12 .v-2 {
  color: #ffae00;
}
/* line 984, ../sass/mod/_user.scss */
.page-cash .loan-content .col-xs-12 .v-3 {
  color: #999;
}
/* line 987, ../sass/mod/_user.scss */
.page-cash .loan-content .col-xs-12 .v1 {
  color: #59bbff;
}

/* line 994, ../sass/mod/_user.scss */
.transfer-agree {
  background-color: #fff;
  margin: 40px 0px;
}
/** 托管-我的托管**/
/* line 974, ../sass/mod/_user.scss */
.my-trust {
  background-color: #efeff4;
}
/* line 976, ../sass/mod/_user.scss */
.my-trust .trust-info {
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 15px 20px;
}
/* line 981, ../sass/mod/_user.scss */
.my-trust .trust-info .list {
  margin: 10px 0px;
  color: #000;
}
/* line 985, ../sass/mod/_user.scss */
.my-trust .trust-info .list span {
  word-wrap: break-word;
}
/* line 988, ../sass/mod/_user.scss */
.my-trust .trust-info .list .tit {
  color: #999;
  text-align: right;
  padding-right: 10px;
}
/* line 995, ../sass/mod/_user.scss */
.my-trust .btn-box {
  padding: 0px 10px;
}

/* line 994, ../sass/mod/_user.scss */
/* line 998, ../sass/mod/_user.scss */
.transfer-agree .hd .tit {
  text-align: center;
  line-height: 40px;
  border-bottom: 1px solid #ededed;
  font-size: 16px;
}
/* line 1005, ../sass/mod/_user.scss */
.transfer-agree .bd {
  padding: 10px 10px 50px 10px;
}
/* line 1007, ../sass/mod/_user.scss */
.transfer-agree .bd p {
  text-indent: 2em;
  line-height: 25px;
}

/**************
	@description:about;
	@Author:Monkey;
	@create date:2015-05-12;
***************/
/* line 7, ../sass/mod/_about.scss */
.about .btn {
  width: 32%;
}

/* line 10, ../sass/mod/_about.scss */
.about-list {
  padding: 15px;
}
/* line 12, ../sass/mod/_about.scss */
.about-list .about-cont {
  line-height: 2;
  color: #666;
  text-indent: 2em;
}
/* line 17, ../sass/mod/_about.scss */
.about-list ul li {
  position: relative;
  margin: 15px 0;
  padding: 12px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}
/* line 22, ../sass/mod/_about.scss */
.about-list ul li i.icon {
  position: absolute;
  top: 15px;
  left: 12px;
  width: 48px;
  height: 48px;
}
/* line 29, ../sass/mod/_about.scss */
.about-list ul li i.icon-1 {
  background: url(images/icon-1.png) no-repeat;
  background-size: 100%;
}
/* line 33, ../sass/mod/_about.scss */
.about-list ul li i.icon-2 {
  background: url(images/icon-2.png) no-repeat;
  background-size: 100%;
}
/* line 37, ../sass/mod/_about.scss */
.about-list ul li i.icon-3 {
  background: url(images/icon-3.png) no-repeat;
  background-size: 100%;
}
/* line 41, ../sass/mod/_about.scss */
.about-list ul li dl {
  padding-left: 60px;
  color: #666;
  margin: 15px 0 -8px;
}
/* line 45, ../sass/mod/_about.scss */
.about-list ul li dl dt {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 5px;
}
/* line 51, ../sass/mod/_about.scss */
.about-list ul li dl dd {
  margin: 8px 0;
}

/**************
	@description:down_app;
	@Author:Monkey;
	@create date:2015-05-12;
***************/
/* line 7, ../sass/mod/_app.scss */
.page-nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* line 14, ../sass/mod/_app.scss */
.page-down {
  height: 100%;
  position: relative;
  font-size: 28px;
  background: #10375a url(images/down/down-bg.jpg) no-repeat;
  background-size: cover;
}
/* line 20, ../sass/mod/_app.scss */
.page-down h1 {
  margin: 50px 0 15px;
  font-size: 24px;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
/* line 28, ../sass/mod/_app.scss */
.page-down h2 {
  font-size: 18px;
  margin: 10px 0;
  font-weight: 100;
  text-align: center;
  color: #fff;
}
/* line 35, ../sass/mod/_app.scss */
.page-down .app-cont {
  width: 100%;
  padding-top: 70px;
  text-align: center;
}
/* line 39, ../sass/mod/_app.scss */
.page-down .app-cont a {
  display: block;
}
/* line 41, ../sass/mod/_app.scss */
.page-down .app-cont a img {
  display: block;
  width: 50%;
  margin: 0 auto 20px;
}


/* line 179, ../sass/mod/_index.scss */
.back-msg {
  font-size: 12px;
}
/* line 181, ../sass/mod/_index.scss */
.back-msg .tit {
  font-size: 24px;
  margin-top: 40px;
}
/* line 185, ../sass/mod/_index.scss */
.back-msg .txt {
  margin-top: 30px;
}
/* line 186, ../sass/mod/_index.scss */
.back-msg .key-box {
  margin-top: 30px;
}
/* line 188, ../sass/mod/_index.scss */
.back-msg .key-box a {
  display: inline-block;
  letter-spacing: 0;
  width: 100px;
  line-height: 35px;
  border: 1px solid #e3e3e3;
  color: #333;
  margin: 0px 22px;
}
/* line 196, ../sass/mod/_index.scss */
.back-msg .key-box a.on {
  background-color: #0697db;
  color: #fff;
  border: none;
}
/* line 203, ../sass/mod/_index.scss */
.back-msg .remark {
  width: 255px;
  margin: 20px auto;
  text-align: left;
}
/* line 207, ../sass/mod/_index.scss */
.back-msg .remark p {
  line-height: 18px;
}