@charset "UTF-8";
/*
 * 首页css
 */
/**
 * normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css
 * 基于上面这个版本做的修改的版本
 * 中文解释参照了(http://www.cnblogs.com/joyeecheung/p/3941475.html)
 *
 * 功能：在默认的HTML元素样式上提供了跨浏览器的高度一致性。
 * 依赖：_variables.scss
 *
 * $author FitGrace<fitingrace#gmail.com>
 * $link   http://www.fitgrace.com/
 */
/**
 * 名称：_variables.scss
 *
 * 功能：变量库，定义在CSS编写过程中常用的属性值。
 * 依赖：没有任何依赖文件。
 *
 * $author FitGrace<fitingrace#gmail.com>
 * $link   http://www.fitgrace.com/
 */
/* Grayscale Colors */
/* Accent Colors */
/* Scaffolding */
/* Links Colors */
/* Typography */
/**
 * Form
 */
/**
 * Button
 */
/* 字体样式 */
/* 尺寸 */
/* 大按钮 */
/* 大按钮字体大小 */
/* 默认尺寸 */
/* 默认尺寸字体大小 */
/* 小按钮 */
/* 小按钮字体大小 */
/* 超小尺寸 */
/* 超小尺寸字体大小 */
/* Blue */
/* Green */
/* Red */
/* Gray */
/**
 * 表格
 */
/**
 * 面包屑
 */
/**
 * 烽塔
 */
/**
 * Toolkit
 */
/**
 * 页码
 */
/**
 * artDialog(弹出框)
 */
/**
 * 1. Set default font family to sans-serif.
 * 2. iOS设备旋转后可能会自动调整字体大小（e.g. 竖着的时候是14px，横着就自动调整成20px）。
 *    将这个属性设置为100%后Safari就会不会自作主张调整大小。
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Chrome, Firefox, 和Opera的progress没有以baseline垂直对齐
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/**
 * IE10会在a被按下的时候加上灰色背景，重设为transparent
 * ME: 增加了移除下划线
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: #3E8ACC;
  /**
     * 除超链接悬停或者按下时出现的黑色虚线框
     */ }
  a:active, a:hover {
    outline: 0;
    text-decoration: none; }

/**
 * IE 8/9/10/11, Safari, Chrome 没有给abbr下划线，按照标准是要的
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Firefox 4+, Safari, Chrome 给b和strong设置的其实是bolder而不是bold
 */
b,
strong {
  font-weight: bold; }

/**
 * Safari and Chrome 里不是斜体
 */
dfn {
  font-style: italic; }

/**
 * Firefox 4+, Safari and Chrome 下section和aside里的h1的font-size和margin不一致
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * 不同浏览器下的small大小不一致，这里定为80%
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/**
 * IE 8/9/10 在img被a包裹的时候会加上丑的一比的边框，为了保持一致要去掉
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/**
 * IE 8/9 and Safari 没有对figure加上margin
 */
figure {
  margin: 1em 40px; }

/**
 * Firefox and other browsers 的hr用的是border-box（border和padding算在height里）
 * 为了保持一致，设为content-box
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * 大部分浏览器的pre在overflow的时候会直接溢出去，这里加上overflow:auto让它出现滚动条
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/**
 * 名称：_variables.scss
 *
 * 功能：变量库，定义在CSS编写过程中常用的属性值。
 * 依赖：没有任何依赖文件。
 *
 * $author FitGrace<fitingrace#gmail.com>
 * $link   http://www.fitgrace.com/
 */
/* Grayscale Colors */
/* Accent Colors */
/* Scaffolding */
/* Links Colors */
/* Typography */
/**
 * Form
 */
/**
 * Button
 */
/* 字体样式 */
/* 尺寸 */
/* 大按钮 */
/* 大按钮字体大小 */
/* 默认尺寸 */
/* 默认尺寸字体大小 */
/* 小按钮 */
/* 小按钮字体大小 */
/* 超小尺寸 */
/* 超小尺寸字体大小 */
/* Blue */
/* Green */
/* Red */
/* Gray */
/**
 * 表格
 */
/**
 * 面包屑
 */
/**
 * 烽塔
 */
/**
 * Toolkit
 */
/**
 * 页码
 */
/**
 * artDialog(弹出框)
 */
body, input, textarea {
  font-family: "Microsoft YaHei", "微软雅黑", "SimSun", \5b8b\4f53, sans-serif; }

.header-wrap {
  height: 70px;
  /*border-bottom: 1px solid #7b7b7b;*/
  z-index: 999;
  position: static\9;
  background-color: #000\9;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  width: 100%; }

.check-pay .list-block .item-content .check {
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 1.1rem;
    right: .8rem;
    background: url(/static/login/25596e2337da7083373e7cf5865b455dd23b02e4/img/red_packet/check.png) no-repeat;
    background-size: contain;
    z-index: 5;
}
  .header-wrap .left {
    float: left; }
    .header-wrap .left .logo {
      width: 120px;
      height: 66px;
      display: inline-block;
      margin: 2px 0 0 30px;
      overflow: hidden;
      transform: scale(0.85, 0.85); }
      .header-wrap .left .logo img {
        width: 100%;
        display: block; }
  .header-wrap .right {
    float: right;
    color: #B2B2B2;
    font-size: 16px;
    margin-right: 20px;
    height: 70px;
    width: 400px\9; }
    .header-wrap .right span {
      display: inline-block;
      cursor: pointer;
      width: 40px;
      height: 40px;
      margin: 5px;
      padding: 10px;
      display: none\9;
      vertical-align: middle; }
      .header-wrap .right span:hover {
        background: url(../img/index/dropdown.png) no-repeat center 46px; }
      .header-wrap .right span i {
        height: 40px;
        width: 40px;
        display: inline-block;
        background: url(../img/index/qr.png) no-repeat 0 0; }
        .header-wrap .right span i:hover {
          background: url(../img/index/qr_white.png) no-repeat 0 0; }
    .header-wrap .right .div_tel {
      display: inline-block;
      font-family: "Microsoft YaHei", "微软雅黑", "SimSun", \5b8b\4f53, sans-serif;
      display: inline\9;
      line-height: 70px\9; }

/* end head */
.searchBtn {
  font-size: 15px;
  border-radius: 4px;
  height: 30px;
  text-align: center;
  color: #fff;
  background-color: #ffa01a;
  border: none;
  width: 70px;
  cursor: pointer;
  display: none\9; }
  .searchBtn:hover {
    background-color: #ed823a; }

.qr_panel {
  min-width: 1000px;
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  top: 70px;
  text-align: center;
  z-index: 100; }
  .qr_panel .content {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px; }
    .qr_panel .content .item {
      padding: 25px;
      display: inline-block;
      float: left\9;
      width: 250px;
      text-align: center; }
      .qr_panel .content .item img {
        display: block;
        width: 250px;
        height: 250px; }
      .qr_panel .content .item span {
        margin-top: 20px;
        font-size: 22px;
        font-weight: bold;
        width: 100%;
        display: block;
        color: #fff; }

.banner {
  width: 100%;
  background-size: contain;
  min-width: 1000px;
  background: url(../img/index/banner.jpg) no-repeat center center;
  height: 650px; }
  .banner .slogan {
    float: left;
    position: relative;
    margin-left: 110px;
    margin-top: 280px;
    color: #fff;
    width: 45%;
    font-size: 25px; }
    .banner .slogan .big {
      font-size: 45px; }
    .banner .slogan .little {
      margin-left: 50px;
      margin-top: 10px; }
  .banner .loginCon {
    width: 320px;
    background-color: rgba(255, 255, 255, 0.6);
    float: right;
    border-radius: 5px;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.5);
    position: relative;
    margin-right: 115px;
    margin-top: 170px;
    z-index: 50;
    font-size: 16px;
    display: none\9; }
  .banner .loginConH {
    background-color: #ececec;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    color: #595757;
    border-bottom: 1px solid #c8c8c8;
    border-radius: 5px 5px 0 0;
    position: relative;
    overflow: hidden; }
  .banner .loginForm {
    padding: 18px 19px; }
    .banner .loginForm .errRow {
      display: none;
      margin-bottom: 5px;
      line-height: 18px;
      border-radius: 5px;
      position: relative; }
      .banner .loginForm .errRow .text {
        color: #e11313;
        padding-left: 6px; }
    .banner .loginForm .loginInput {
      margin-bottom: 13px;
      height: 46px;
      border-radius: 5px;
      border: 1px solid #c8c8c8;
      position: relative; }
      .banner .loginForm .loginInput input {
        width: 100%;
        border: none;
        height: 46px;
        padding-left: 17px;
        border-radius: 5px;
        box-sizing: border-box; }
      .banner .loginForm .loginInput input:focus {
        outline: none; }
      .banner .loginForm .loginInput button {
        position: absolute;
        top: 4px;
        right: 4px;
        border: 0;
        background-color: #ffa01a;
        color: #fff;
        z-index: 88;
        border-radius: 5px;
        cursor: pointer;
        height: 38px;
        line-height: 38px;
        width: 120px; }
        .banner .loginForm .loginInput button:hover {
          background-color: #ed823a; }
    .banner .loginForm .loginBtn button {
      font-size: 20px;
      display: block;
      border-radius: 5px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      color: #fff;
      margin-bottom: 16px;
      background-color: #ffa01a;
      border: none;
      width: 100%;
      cursor: pointer; }
      .banner .loginForm .loginBtn button:hover {
        background-color: #ed823a; }
    .banner .loginForm .toolBar {
      padding: 10px;
      text-align: center; }
      .banner .loginForm .toolBar a {
        color: #3E8ACC;
        border-bottom: 1px solid; }

.drop_tips {
  position: absolute;
  background: #fff;
  z-index: 999;
  width: 279px;
  left: -1px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 1px solid #c8c8c8;
  border-left: 1px solid #ffa01a;
  border-right: 1px solid #ffa01a;
  border-bottom: 1px solid #ffa01a;
  display: none; }
  .drop_tips li {
    list-style-type: none;
    padding: 5px; }
  .drop_tips .active {
    background: #D2D2D2; }

.function-nav {
  width: 100%;
  min-width: 1000px;
  position: relative; }
  .function-nav .con {
    width: 1000px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 80px;
    margin-top: 80px; }
    .function-nav .con .item {
      display: inline-block;
      width: 210px;
      float: left\9;
      padding: 0 55px;
      color: #707070; }
      .function-nav .con .item img {
        width: 130px;
        height: 130px; }
      .function-nav .con .item .head {
        font-family: "Microsoft YaHei", "微软雅黑", "SimSun", \5b8b\4f53, sans-serif;
        font-size: 22px;
        display: block;
        margin-top: 10px;
        margin-bottom: 5px; }
      .function-nav .con .item .des {
        line-height: 25px;
        display: block;
        font-size: 16px;
        text-align: left; }

/* 这块待定 */
.middel_banner {
  width: 100%;
  height: 100px;
  text-align: center; }

.mobile_des {
  min-width: 1000px;
  width: 100%;
  padding: 10px 0;
  background: #3e525f;
  font-weight: "lighter";
  border-bottom: 1px solid #e1e1e1; }
  .mobile_des .ios_content {
    background: url(../img/index/ios_back.png) no-repeat left top; }
  .mobile_des .android_content {
    background: url(../img/index/android_back.png) no-repeat left top; }
  .mobile_des .ios_content,
  .mobile_des .android_content {
    color: #fff;
    width: 1000px;
    margin: 0 auto;
    height: 450px;
    overflow: hidden; }
    .mobile_des .ios_content .con_head,
    .mobile_des .android_content .con_head {
      text-align: center;
      margin-left: 400px;
      margin-top: 50px; }
      .mobile_des .ios_content .con_head img,
      .mobile_des .android_content .con_head img {
        width: 120px;
        height: 120px; }
      .mobile_des .ios_content .con_head span,
      .mobile_des .android_content .con_head span {
        display: block;
        margin: 20px;
        font-size: 40px; }
    .mobile_des .ios_content .text,
    .mobile_des .android_content .text {
      margin-left: 480px;
      font-size: 25px; }
      .mobile_des .ios_content .text li,
      .mobile_des .android_content .text li {
        background: url(../img/index/li_tag.png) no-repeat 15px;
        line-height: 40px;
        padding-left: 60px;
        list-style: none; }

/*usersay*/
.usersSay-wrap {
  width: 100%;
  min-width: 1000px;
  padding: 40px 0 50px; }

.usersSay {
  width: 770px;
  margin: 0 auto; }

.usersSay h3 {
  font-size: 24px;
  color: #438eb9;
  line-height: 80px;
  text-align: center; }

.usersSay .con-wrap {
  width: 770px;
  overflow: hidden;
  position: relative; }

.usersSay .con-wrap .con {
  position: relative;
  height: 120px;
  font-family: "Adobe 黑体 Std R, Adobe 仿宋 Std R";
  font-weight: "lighter"; }

.usersSay .con-wrap .con .say {
  width: 770px;
  float: left;
  position: relative; }

.usersSay .con-wrap .con .say .qoutLeft {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/index/icon_left.png) no-repeat; }

.usersSay .con-wrap .con .say .qoutRight {
  right: 0;
  position: absolute;
  top: 40px;
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/index/icon_right.png) no-repeat; }

.usersSay .con-wrap .con .say p {
  padding: 0 30px;
  font-size: 16px;
  color: #707070;
  line-height: 28px; }

.usersSay .con-wrap .con .say p.name {
  text-align: right;
  line-height: 28px; }

.usersSay .con-wrap .btn {
  height: 80px;
  text-align: center; }

.usersSay .con-wrap .btn span {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: url(../img/index/icon_circle.png) no-repeat;
  cursor: pointer;
  margin-right: 12px; }

.usersSay .con-wrap .btn span.cur {
  background: url(../img/index/icon_blue_circle.png) no-repeat; }

/*footer 页脚 */
.footer-wrap {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-color: #333\9; }
  .footer-wrap .footer {
    width: auto;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 12px;
    color: #999;
    position: relative; }
    .footer-wrap .footer p {
      text-align: center; }
      .footer-wrap .footer p a {
        color: #999;
        padding: 0 10px; }
    .footer-wrap .footer .telphone {
      position: absolute;
      right: 0;
      top: 40px;
      vertical-align: middle; }
      .footer-wrap .footer .telphone em {
        width: 8px;
        height: 10px;
        display: inline-block; }
      .footer-wrap .footer .telphone .icon {
        background: url(../img/index/icon_tel.png) no-repeat left top; }

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