::-moz-focus-inner {
    border-color: transparent;
}

.dialog {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10001;
    width: 100%;
    height: 100%;
}

.dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10002;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.dialog-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10003;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 1.5;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
}

.dialog-content * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
    font-family: Helvetica;
    font-size: 15px;
}

.dialog-btn,
.dialog-btn-hl {
    position: relative;
    display: inline-block;
    height: 44px;
    line-height: 44px;
    color: #007aff;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
}

.dialog-btn:hover,
.dialog-btn:active,
.dialog-btn-hl:hover,
.dialog-btn-hl:active {
    background-color: rgba(0, 0, 0, 0.05);
}

.dialog-content-hd {
    position: relative;
    padding: 20px 20px 10px;
    margin-bottom: -25px;
    text-align: center;
}

.dialog-content-hd .dialog-content-title {
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.dialog-content-hd .dialog-btn-close {
    display: block;
    width: 26px;
    height: 26px;
    overflow: hidden;
    position: absolute;
    top: 18px;
    right: 15px;
    cursor: pointer;
    background-color: transparent;
}

.dialog-content-hd .dialog-btn-close span {
    display: none;
}

.dialog-content-hd .dialog-btn-close:before,
.dialog-content-hd .dialog-btn-close:after {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    background-color: #808080;
    position: absolute;
    top: 13px;
    right: 3px;
}

.dialog-content-hd .dialog-btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dialog-content-hd .dialog-btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.dialog-content-bd {
    margin: 25px 20px;
    color: #666;
    text-align: center;
}

.dialog-content-bd p {
    padding: 5px 0;
}

.content-scroll {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dialog-content-ft {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-size: 0;
}

.dialog-content-ft:after {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid #d5d5d5;
    color: #d5d5d5;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.dialog-content-ft .dialog-btn {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
}

.dialog-content-ft .dialog-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    border-left: 1px solid #d5d5d5;
    color: #d5d5d5;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

.dialog-content-ft .dialog-btn:first-child {
    border-bottom-left-radius: 8px;
}

.dialog-content-ft .dialog-btn:first-child:after {
    border-left: none;
}

.dialog-content-ft .dialog-btn:last-child {
    border-bottom-right-radius: 8px;
}

.dialog-content-ft.stacked {
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    display: block;
}

.dialog-content-ft.stacked:after {
    border: none;
}

.dialog-content-ft.stacked .dialog-btn {
    position: relative;
    display: block;
    width: 100%;
}

.dialog-content-ft.stacked .dialog-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid #d5d5d5;
    color: #d5d5d5;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

.dialog-open .dialog-content,
.dialog-open .dialog-overlay,
.dialog-close .dialog-content,
.dialog-close .dialog-overlay {
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.dialog-open .dialog-content {
    -webkit-animation-name: zoom-in;
    animation-name: zoom-in;
}

.dialog-open .dialog-overlay {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
}

.dialog-close .dialog-content {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
}

.dialog-close .dialog-overlay {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
}

/**-------------------------
   *  android style
   **------------------------*/

[data-style=android] .dialog-content {
    box-sizing: content-box;
    border-radius: 0;
    background-color: white;
}

[data-style=android] .dialog-content-hd {
    text-align: left;
    padding: 20px 20px 0;
    margin-bottom: -10px;
}

[data-style=android] .dialog-content-hd .dialog-btn-close {
    top: 15px;
    right: 15px;
}

[data-style=android] .dialog-content-bd {
    margin: 25px 20px;
    text-align: left;
}

[data-style=android] .dialog-content-ft {
    display: block;
    padding: 8px;
    margin-top: -10px;
    text-align: right;
}

[data-style=android] .dialog-content-ft:after {
    border: none;
}

[data-style=android] .dialog-content-ft .dialog-btn {
    display: inline-block;
    min-width: 60px;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    padding: 0 13px;
    font-size: 16px;
    color: #808080;
    text-align: center;
    border-radius: 2px;
}

[data-style=android] .dialog-content-ft .dialog-btn:after {
    border: none;
}

[data-style=android] .dialog-content-ft .dialog-btn-confirm,
[data-style=android] .dialog-content-ft .dialog-btn-hl {
    color: #00bbd3;
}

[data-style=android] .dialog-content-ft.stacked .dialog-btn {
    display: block;
    text-align: right;
    width: 100%;
}

[data-style=android] .dialog-content-ft-border:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid #d5d5d5;
    color: #d5d5d5;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
    -ms-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

[data-style=android] .ripple {
    border-radius: 99999px;
    pointer-events: none;
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    animation: ripple .75s ease-out;
    -webkit-animation: ripple .75s ease-out;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(0);
        opacity: .5;
    }
    100% {
        -webkit-transform: scale(2);
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .5;
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

[data-style=android].dialog-open .dialog-content {
    -webkit-animation-name: bounce-in-down;
    animation-name: bounce-in-down;
}

[data-style=android].dialog-open .dialog-overlay {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
}

[data-style=android].dialog-close .dialog-content {
    -webkit-animation-name: bounce-out-up;
    animation-name: bounce-out-up;
}

[data-style=android].dialog-close .dialog-overlay {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
}

/* toast */

.dialog-toast .dialog-overlay {
    background-color: transparent;
}

.dialog-toast .dialog-content {
    width: 148px;
    height: 148px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    display: table;
}

.dialog-toast .dialog-content-bd {
    margin: 0;
    padding: 0;
    font-size: 0;
    position: relative;
    width: 100%;
    height: 100%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.dialog-toast .dialog-content-bd p {
    margin: 0;
    padding: 0;
}

.dialog-toast .info-icon {
    width: 56px;
    max-width: 56px;
}

.dialog-toast .info-text {
    display: block;
    width: 90%;
    margin: 12px auto 0;
    font-size: 16px;
    color: #fff;
}

.dialog-toast.dialog-open .dialog-content,
.dialog-toast.dialog-open .dialog-overlay {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.dialog-toast.dialog-close .dialog-content,
.dialog-toast.dialog-close .dialog-overlay {
    -webkit-animation-duration: 0.35s;
    animation-duration: 0.35s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.dialog-toast.dialog-open .dialog-content {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
}

.dialog-toast.dialog-open .dialog-overlay {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
}

.dialog-toast.dialog-close .dialog-content {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
}

.dialog-toast.dialog-close .dialog-overlay {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
}

/* notice */

.dialog-notice .dialog-overlay {
    background-color: transparent;
}

.dialog-notice .dialog-content {
    display: table;
    width: auto;
    max-width: 85%;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.8);
}

.dialog-notice .dialog-content-bd {
    margin: 0;
    font-size: 0;
    padding: 10px 15px;
    line-height: normal;
}

.dialog-notice .info-icon {
    width: 16px;
    max-width: 16px;
    margin: 0 2px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.dialog-notice .info-text {
    margin: 0 2px;
    font-size: 14px;
    color: #fff;
    line-height: 1.3;
    vertical-align: middle;
}

.dialog-notice.dialog-open .dialog-content,
.dialog-notice.dialog-open .dialog-overlay {
    -webkit-animation-duration: 0.1s;
    animation-duration: 0.1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.dialog-notice.dialog-close .dialog-content,
.dialog-notice.dialog-close .dialog-overlay {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.dialog-notice.dialog-open .dialog-content {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
}

.dialog-notice.dialog-open .dialog-overlay {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
}

.dialog-notice.dialog-close .dialog-content {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
}

.dialog-notice.dialog-close .dialog-overlay {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
}

.dialog-notice-bottom .dialog-content {
    top: auto;
    bottom: 0;
    -webkit-transform: translate(-50%, -20px);
    -ms-transform: translate(-50%, -20px);
    transform: translate(-50%, -20px);
}

.dialog-notice-bottom.dialog-open .dialog-content,
.dialog-notice-bottom.dialog-open .dialog-overlay,
.dialog-notice-bottom.dialog-close .dialog-content,
.dialog-notice-bottom.dialog-close .dialog-overlay {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.dialog-notice-bottom.dialog-open .dialog-content {
    -webkit-animation-name: bounce-in-up;
    animation-name: bounce-in-up;
}

.dialog-notice-bottom.dialog-close .dialog-content {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
}

/**-------------------------
   *  meida query
   **------------------------*/

@media screen and (min-width: 1023px) {
    .dialog-content {
        max-width: 40%;
    }
}

@media screen and (min-width: 767px) {
    .dialog-content {
        max-width: 60%;
    }
}

/**-------------------------
   *  animate library
   **------------------------*/

@-webkit-keyframes zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(1.2, 1.2);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1, 1);
    }
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(1.2, 1.2);
        transform: translate(-50%, -50%) scale(1.2, 1.2);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1, 1);
        transform: translate(-50%, -50%) scale(1, 1);
    }
}

@-webkit-keyframes zoom-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(0.8, 0.8);
    }
}

@keyframes zoom-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(0.8, 0.8);
        transform: translate(-50%, -50%) scale(0.8, 0.8);
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes bounce-in-down {
    0% {
        opacity: 0;
        -webkit-transform: translate(-50%, -75%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
    }
}

@keyframes bounce-in-down {
    0% {
        opacity: 0;
        -webkit-transform: translate(-50%, -75%);
        transform: translate(-50%, -75%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

@-webkit-keyframes bounce-out-up {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -75%);
    }
}

@keyframes bounce-out-up {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -75%);
        transform: translate(-50%, -75%);
    }
}

@-webkit-keyframes bounce-in-up {
    0% {
        opacity: 0;
        -webkit-transform: translate(-50%, 0);
    }
    80% {
        opacity: 1;
        -webkit-transform: translate(-50%, -24px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -20px);
    }
}

@keyframes bounce-in-up {
    0% {
        opacity: 0;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    80% {
        opacity: 1;
        -webkit-transform: translate(-50%, -24px);
        transform: translate(-50%, -24px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(-50%, -20px);
        transform: translate(-50%, -20px);
    }
}

@-webkit-keyframes bounce-out-down {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, 0);
    }
}

@keyframes bounce-out-down {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -20px);
        transform: translate(-50%, -20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}
/*!
Pure v0.5.0
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
https://github.com/yui/pure/blob/master/LICENSE.md
*/
/*!
normalize.css v1.1.3 | MIT License | git.io/normalize
Copyright (c) Nicolas Gallagher and Jonathan Neal
*/
/*! normalize.css v1.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

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

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif; }

/**
 * Address margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

h2 {
  font-size: 1.5em;
  margin: 0.83em 0; }

h3 {
  font-size: 1.17em;
  margin: 1em 0; }

h4 {
  font-size: 1em;
  margin: 1.33em 0; }

h5 {
  font-size: 0.83em;
  margin: 1.67em 0; }

h6 {
  font-size: 0.67em;
  margin: 2.33em 0; }

/**
 * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

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

/**
 * Address margins set differently in IE 6/7.
 */
p,
pre {
  margin: 1em 0; }

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none; }

/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: '';
  content: none; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
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; }

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px; }

/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */ }

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

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0; }

/**
 * 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 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */ }

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */ }

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

/**
 * 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 Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */ }

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

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */ }

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

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

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

/*csslint important:false*/
/* ==========================================================================
   Pure Base Extras
   ========================================================================== */
/**
 * Extra rules that Pure adds on top of Normalize.css
 */
/**
 * Always hide an element when it has the `hidden` HTML attribute.
 */
[hidden] {
  display: none !important; }

/**
 * Add this class to an image to make it fit within it's fluid parent wrapper while maintaining
 * aspect ratio.
 */
.pure-img {
  max-width: 100%;
  height: auto;
  display: block; }

/*!
Pure v0.5.0
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
https://github.com/yui/pure/blob/master/LICENSE.md
*/
/*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/
.pure-g {
  letter-spacing: -0.31em;
  /* Webkit: collapse white-space between units */
  *letter-spacing: normal;
  /* reset IE < 8 */
  *word-spacing: -0.43em;
  /* IE < 8: collapse white-space between units */
  text-rendering: optimizespeed;
  /* Webkit: fixes text-rendering: optimizeLegibility */
  /*
    Sets the font stack to fonts known to work properly with the above letter
    and word spacings. See: https://github.com/yui/pure/issues/41/

    The following font stack makes Pure Grids work on all known environments.

    * FreeSans: Ships with many Linux distros, including Ubuntu

    * Arimo: Ships with Chrome OS. Arimo has to be defined before Helvetica and
      Arial to get picked up by the browser, even though neither is available
      in Chrome OS.

    * Droid Sans: Ships with all versions of Android.

    * Helvetica, Arial, sans-serif: Common font stack on OS X and Windows.
    */
  font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
  /*
    Use flexbox when possible to avoid `letter-spacing` side-effects.

    NOTE: Firefox (as of 25) does not currently support flex-wrap, so the
    `-moz-` prefix version is omitted.
    */
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;
  /* IE10 uses display: flexbox */
  display: -ms-flexbox;
  -ms-flex-flow: row wrap; }

/* Opera as of 12 on Windows needs word-spacing.
   The ".opera-only" selector is used to prevent actual prefocus styling
   and is not required in markup.
*/
.opera-only :-o-prefocus,
.pure-g {
  word-spacing: -0.43em; }

.pure-u {
  display: inline-block;
  *display: inline;
  /* IE < 8: fake inline-block */
  zoom: 1;
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto; }

/*
Resets the font family back to the OS/browser's default sans-serif font,
this the same font stack that Normalize.css sets for the `body`.
*/
.pure-g [class*="pure-u"] {
  font-family: sans-serif; }

.pure-u-1,
.pure-u-1-1,
.pure-u-1-2,
.pure-u-1-3,
.pure-u-2-3,
.pure-u-1-4,
.pure-u-3-4,
.pure-u-1-5,
.pure-u-2-5,
.pure-u-3-5,
.pure-u-4-5,
.pure-u-5-5,
.pure-u-1-6,
.pure-u-5-6,
.pure-u-1-8,
.pure-u-3-8,
.pure-u-5-8,
.pure-u-7-8,
.pure-u-1-12,
.pure-u-5-12,
.pure-u-7-12,
.pure-u-11-12,
.pure-u-1-24,
.pure-u-2-24,
.pure-u-3-24,
.pure-u-4-24,
.pure-u-5-24,
.pure-u-6-24,
.pure-u-7-24,
.pure-u-8-24,
.pure-u-9-24,
.pure-u-10-24,
.pure-u-11-24,
.pure-u-12-24,
.pure-u-13-24,
.pure-u-14-24,
.pure-u-15-24,
.pure-u-16-24,
.pure-u-17-24,
.pure-u-18-24,
.pure-u-19-24,
.pure-u-20-24,
.pure-u-21-24,
.pure-u-22-24,
.pure-u-23-24,
.pure-u-24-24 {
  display: inline-block;
  *display: inline;
  zoom: 1;
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto; }

.pure-u-1-24 {
  width: 4.1667%;
  *width: 4.1357%; }

.pure-u-1-12,
.pure-u-2-24 {
  width: 8.3333%;
  *width: 8.3023%; }

.pure-u-1-8,
.pure-u-3-24 {
  width: 12.5000%;
  *width: 12.4690%; }

.pure-u-1-6,
.pure-u-4-24 {
  width: 16.6667%;
  *width: 16.6357%; }

.pure-u-1-5 {
  width: 20%;
  *width: 19.9690%; }

.pure-u-5-24 {
  width: 20.8333%;
  *width: 20.8023%; }

.pure-u-1-4,
.pure-u-6-24 {
  width: 25%;
  *width: 24.9690%; }

.pure-u-7-24 {
  width: 29.1667%;
  *width: 29.1357%; }

.pure-u-1-3,
.pure-u-8-24 {
  width: 33.3333%;
  *width: 33.3023%; }

.pure-u-3-8,
.pure-u-9-24 {
  width: 37.5000%;
  *width: 37.4690%; }

.pure-u-2-5 {
  width: 40%;
  *width: 39.9690%; }

.pure-u-5-12,
.pure-u-10-24 {
  width: 41.6667%;
  *width: 41.6357%; }

.pure-u-11-24 {
  width: 45.8333%;
  *width: 45.8023%; }

.pure-u-1-2,
.pure-u-12-24 {
  width: 50%;
  *width: 49.9690%; }

.pure-u-13-24 {
  width: 54.1667%;
  *width: 54.1357%; }

.pure-u-7-12,
.pure-u-14-24 {
  width: 58.3333%;
  *width: 58.3023%; }

.pure-u-3-5 {
  width: 60%;
  *width: 59.9690%; }

.pure-u-5-8,
.pure-u-15-24 {
  width: 62.5000%;
  *width: 62.4690%; }

.pure-u-2-3,
.pure-u-16-24 {
  width: 66.6667%;
  *width: 66.6357%; }

.pure-u-17-24 {
  width: 70.8333%;
  *width: 70.8023%; }

.pure-u-3-4,
.pure-u-18-24 {
  width: 75%;
  *width: 74.9690%; }

.pure-u-19-24 {
  width: 79.1667%;
  *width: 79.1357%; }

.pure-u-4-5 {
  width: 80%;
  *width: 79.9690%; }

.pure-u-5-6,
.pure-u-20-24 {
  width: 83.3333%;
  *width: 83.3023%; }

.pure-u-7-8,
.pure-u-21-24 {
  width: 87.5000%;
  *width: 87.4690%; }

.pure-u-11-12,
.pure-u-22-24 {
  width: 91.6667%;
  *width: 91.6357%; }

.pure-u-23-24 {
  width: 95.8333%;
  *width: 95.8023%; }

.pure-u-1,
.pure-u-1-1,
.pure-u-5-5,
.pure-u-24-24 {
  width: 100%; }

html {
  font-size: 20px !important; }

* {
  box-sizing: border-box; }

body {
  font-size: 14px;
  color: #333; }

html {
  background-color: #f6f6f6; }

iframe, label, a, a:active,
button, input {
  -webkit-tap-highlight-color: transparent;
  outline: none; }

input:active, input:focus {
  outline: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal; }

img {
  max-width: 100%; }

.img, footer img, footer .desc {
  display: inline-block;
  vertical-align: middle; }

.fr, header button {
  float: right; }

.fl {
  float: left; }

.clear:after {
  content: '';
  display: table;
  clear: both; }

.tc {
  text-align: center; }

.hidden {
  display: none; }

.btn, header button {
  outline: none;
  border: none;
  border-radius: 4px; }

.small {
  font-size: 12px; }

::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #999; }

body {
  width: 100%;
  margin: auto; }

.inlineBlock, footer .cancle, footer .btn, footer header button, header footer button {
  display: inline-block;
  vertical-align: top; }

.bg, .banner1,
.banner2,
.banner3, .agreement label {
  background-size: 100% auto;
  background-repeat: no-repeat; }

header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 2.5rem;
  z-index: 10;
  padding: 0.5rem;
  background-color: #fbfdfd; }
  header:after {
    content: '';
    display: table;
    clear: both; }
  header img {
    height: 100%;
    width: auto; }
  header button {
    display: inline-block;
    height: 100%;
    width: 3.35rem;
    background-color: #fe4054;
    color: #fff; }
    header button:active {
      background-color: #ed2e43; }

footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  height: 2.66667rem;
  z-index: 10;
  background-color: #313131;
  padding: 0.33333rem 0.5rem;
  color: #FFF; }
  footer:after {
    content: '';
    display: table;
    clear: both; }
  footer .cancle {
    vertical-align: middle;
    background-image: url("../image/cancel.1c30ff2189b5.png");
    width: 16px;
    height: 16px;
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0 10px; }
  footer img {
    height: 2rem;
    width: 2rem; }
  footer .desc {
    height: 100%;
    margin-left: 7px; }
    footer .desc p:nth-child(1) {
      margin: 0;
      line-height: 1.16667rem; }
    footer .desc p:nth-child(2) {
      margin: 0;
      line-height: 0.9rem; }
  footer .btn, footer header button, header footer button {
    vertical-align: middle !important;
    height: 100%;
    width: 4.83333rem;
    background-color: #27ace5;
    color: #fff; }
    footer .btn:active, footer header button:active, header footer button:active {
      background-color: #0f9ad5; }

#wx {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: #fff; }

main {
  height: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.66667rem; }

.swiper-container-vertical,
.swiper-container-horizontal,
.swiper.wrap,
.swiper-slide {
  height: 100%; }

.banner1 {
  background-image: url("../image/banner1.ef947d2c7151.png"); }

.banner2 {
  background-image: url("../image/banner2.cdb17b97e684.png"); }

.banner3 {
  background-image: url("../image/banner3.2756fea6927f.png"); }

.swiper-pagination {
  bottom: 4.96667rem;
  left: 0;
  right: 0; }
  .swiper-pagination .swiper-pagination-bullet {
    margin-right: 7px; }

#js-login-urs {
  width: 100% !important; }

h3 {
  background-color: #fbfbfb;
  margin: 0;
  padding: .7rem; }

.cc {
  text-align: center;
  padding-top: 1.65rem;
  padding-bottom: 1.8rem;
  background-color: #F6F6F6;
  box-shadow: 0 0 1px rgba(152, 144, 144, 0.65); }
  .cc img {
    width: 3.1rem;
    height: 2.83333rem; }

.page {
  position: relative;
  height: 100%;
  -webkit-overflow-scrolling: touch; }

.page2 {
  overflow-y: auto; }
  .page2 h3 {
    position: relative; }
    .page2 h3 .icon.goBack {
      font-size: 32px;
      position: absolute;
      left: .1rem;
      top: 9px;
      -webkit-tap-highlight-color: transparent;
      width: 30px;
      height: 30px;
      background-size: 100% auto;
      background-repeat: no-repeat;
      background-image: url("data:image/png;base64,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");
      color: #999999; }
      .page2 h3 .icon.goBack:active {
        -webkit-tap-highlight-color: transparent; }

#authLogin {
  width: 100%;
  bottom: 4.83333rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }
  #authLogin .content.pure-g {
    max-width: 540px;
    margin: auto; }
  #authLogin .pure-u-1-3 {
    text-align: center; }
  #authLogin .icon {
    width: 2.43333rem;
    height: 2.43333rem; }
  #authLogin p {
    color: #666666;
    margin-bottom: 1.08333rem;
    position: relative; }
  #authLogin p:before {
    content: '';
    position: absolute;
    left: 0.58333rem;
    top: 8px;
    height: 1px;
    width: 4.5rem;
    background-color: #e2e2e2; }
  #authLogin p:after {
    content: '';
    position: absolute;
    right: 0.58333rem;
    top: 8px;
    height: 1px;
    width: 4.5rem;
    background-color: #e2e2e2; }

.agreement {
  color: #666;
  font-size: 14px;
  padding-left: 4%;
  margin-top: -20px; }
  .agreement label {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 18px;
    background-image: url("../image/check.a37b7bcea216.jpg");
    margin-right: 5px;
    margin-left: 5px; }
    .agreement label.active {
      background-image: url("../image/checked.cf5aaa6a1f58.jpg"); }
  .agreement a {
    text-decoration: none;
    color: #27ace5;
    vertical-align: middle; }
  .agreement span {
    vertical-align: middle; }

.toast {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  white-space: nowrap;
  border-radius: 5px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); }
