/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
/**
 * make a css arrow style applied for an element
 * @param @size <number><length>		dimension of the arrow
 * @param @spacing <number><length>		border-width of the arrow
 * @param @color <color>				border-color of the arrow
 * @param @bg-color <color>				background-color under the arrow
 * @param @direction <number>			direction of the arrow
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: Microsoft YaHei, STXihei;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
body {
  color: #333;
  background-color: #FAFAFA;
}
body::before,
body::after {
  content: '';
  display: table;
}
.template,
.hidden {
  display: none !important;
}
.banner__img {
  display: block;
  max-width: 100%;
  margin: auto;
}
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
          animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
          animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
          animation-name: slideOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-duration: .2s;
          animation-duration: .2s;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut;
  -webkit-animation-duration: .2s;
          animation-duration: .2s;
}

/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
/**
 * make a css arrow style applied for an element
 * @param @size <number><length>		dimension of the arrow
 * @param @spacing <number><length>		border-width of the arrow
 * @param @color <color>				border-color of the arrow
 * @param @bg-color <color>				background-color under the arrow
 * @param @direction <number>			direction of the arrow
 */
.login .sign_up {
  padding: 10px;
  text-align: right;
  color: #25a2e3;
}
.login__logo {
  padding: 30px 0;
  line-height: 1em;
  text-align: center;
}
.login__logo__img {
  display: block;
  margin: auto;
}
.login__logo__title {
  padding-top: 15px;
  color: #B3B3B3;
}
.login__header {
  padding: 30px 0 30px;
  line-height: 1em;
  text-align: center;
}
.login__header__avatar {
  display: block;
  margin: auto;
}
.login__header__account {
  padding-top: 15px;
  font-size: 18px;
  color: #333;
}
.login__header__account::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  vertical-align: top;
  background: url("/assets/yjff/img/glyph_login_switch.png") center no-repeat;
  background-size: 18px 18px;
}
.login__account {
  position: relative;
  margin-top: 15px;
  background-color: #FFF;
}
.login__account__infos {
  position: relative;
  z-index: 999;
  background-color: #FFF;
}
.login__account__oprs {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 998;
}
.login__account__opr {
  float: left;
  width: 70px;
  height: 100%;
  font-size: 0;
  background: center no-repeat;
  background-size: 14px 14px;
}
.login__account__opr--delete {
  background-color: #F54966;
  background-image: url("/assets/yjff/img/glyph_visitor_delete.png");
}
.login__forgot {
  text-align: center;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
/**
 * make a css arrow style applied for an element
 * @param @size <number><length>		dimension of the arrow
 * @param @spacing <number><length>		border-width of the arrow
 * @param @color <color>				border-color of the arrow
 * @param @bg-color <color>				background-color under the arrow
 * @param @direction <number>			direction of the arrow
 */
.verifycode {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  color: #25a5e6;
  background-color: #FFF;
}
.verifycode::after {
  content: '\83B7\53D6\9A8C\8BC1\7801';
}
.verifycode--failed {
  color: #FF7575;
}
.verifycode--failed::after {
  content: '\70B9\51FB\91CD\53D1';
}
.verifycode--counting::after {
  content: '\8F93\5165\9A8C\8BC1\7801   ' attr(data-time-left) 's';
}
.verifycode--sending::after {
  content: '\53D1\9001\4E2D...';
}
.verifycode--sending.verifycode--disabled {
  color: #3caee9;
}
.verifycode--disabled {
  color: #53b8eb;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
/**
 * make a css arrow style applied for an element
 * @param @size <number><length>		dimension of the arrow
 * @param @spacing <number><length>		border-width of the arrow
 * @param @color <color>				border-color of the arrow
 * @param @bg-color <color>				background-color under the arrow
 * @param @direction <number>			direction of the arrow
 */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: none;
  overflow: auto;
  color: #333;
  display: block;
}
.modal__dialog {
  position: relative;
  z-index: 1002;
  width: auto;
  margin: 10px;
}
@media screen and (min-width: 768px) {
.modal__dialog {
    width: 80%;
    margin: 20px auto;
}
}
.modal__backdrop {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}
.modal__content {
  border-radius: 5px;
  font-size: 16px;
  line-height: 1em;
  background-color: #FFF;
}
.modal__header {
  padding: 25px 10px;
  font-size: 20px;
  line-height: 1.5em;
  text-align: center;
}
.modal__body {
  padding: 20px 10px;
}
.modal__body--scroll {
  max-height: 300px;
  max-height: calc(100vh - 200px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.modal__items {
  line-height: 50px;
  text-align: center;
}
.modal__item--active {
  color: #25a5e6;
}
.modal__oprs {
  line-height: 50px;
  text-align: center;
  color: #25a5e6;
}
.modal__header:empty,
.modal__body:empty,
.modal__footer:empty {
  display: none;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
.slider {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slider--static {
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
.gesture-pwd {
  position: relative;
}
.gesture-pwd__canvas {
  display: block;
  margin: auto;
}
.gesture-pwd__canvas--layer {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0);
}
.gesture-pwd__reset {
  margin-bottom: 15px;
  line-height: 1em;
  text-align: center;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
.modal--area__back {
  background: url('/assets/yjff/img/glyph_back.png') left 10px center no-repeat;
  background-size: 16px 16px;
}
.modal--area__item--active {
  color: #25a5e6;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
.signup__gesture__header {
  padding: 60px 0 30px;
  line-height: 1em;
  text-align: center;
}
.signup__gesture__prompt {
  margin-top: 15px;
}
.signup__gesture__path {
  float: left;
  width: 12px;
  height: 12px;
  margin: 3px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1em;
  color: #FFF;
  background-color: #FFF;
}
.signup__gesture__path--active {
  background-color: #25a5e6;
}
.signup__gesture__paths {
  display: block;
  width: 54px;
  margin: auto;
  overflow: hidden;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
.forgot__gesture__header {
  padding: 60px 0 30px;
  line-height: 1em;
  text-align: center;
}
.forgot__gesture__prompt {
  margin-top: 15px;
}
.forgot__gesture__path {
  float: left;
  width: 12px;
  height: 12px;
  margin: 3px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1em;
  color: #FFF;
  background-color: #FFF;
}
.forgot__gesture__path--active {
  background-color: #25a5e6;
}
.forgot__gesture__paths {
  display: block;
  width: 54px;
  margin: auto;
  overflow: hidden;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
/**
 * make a css arrow style applied for an element
 * @param @size <number><length>		dimension of the arrow
 * @param @spacing <number><length>		border-width of the arrow
 * @param @color <color>				border-color of the arrow
 * @param @bg-color <color>				background-color under the arrow
 * @param @direction <number>			direction of the arrow
 */
.view--drugs {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.drugs {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #FFF;
}
.drugs__banner {
  display: block;
  max-width: 100%;
  margin: auto;
}
.drugs__locations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  border-bottom: 1px solid #EBEBEB;
  padding-right: 37px;
  background: url('/assets/yjff/img/glyph_arrow.png') right 15px center / 12px 12px no-repeat;
}
.drugs__locations::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-size: 20px 20px;
  background: url('/assets/yjff/img/glyph_loc.png') center / 20px 20px no-repeat;
}
.empty-list {
  padding: 80px 16px;
}
.empty-list > p:nth-child(1) {
  line-height: 44px;
  text-align: center;
  background: #999999;
  border-radius: 4px;
  color: #FFFFFF;
}
.bottom {
  padding: 5px 0;
  height: 30px;
  text-align: center;
  font-size: 12px;
  background: #ebebeb;
}
.bottom > p {
  padding: 0;
  margin: 0;
}
.drug {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #EBEBEB;
}
.drug__img {
  display: block;
  width: 120px;
  min-width: 120px;
}
.drug__content {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 10px;
  overflow: hidden;
}
.drug__info {
  line-height: 1em;
  margin-bottom: 15px;
}
.drug__info--name {
  font-size: 18px;
  font-weight: bold;
}
.drug__info--desc {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #B3B3B3;
}
.drug__apply {
  float: right;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
/**
 * make a css arrow style applied for an element
 * @param @size <number><length>		dimension of the arrow
 * @param @spacing <number><length>		border-width of the arrow
 * @param @color <color>				border-color of the arrow
 * @param @bg-color <color>				background-color under the arrow
 * @param @direction <number>			direction of the arrow
 */
.locations__county {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 20px 0;
  font-size: 14px;
  line-height: 1em;
  text-align: center;
}
.locations__county--active {
  font-weight: bold;
  color: #25a5e6;
}
.locations__county-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.location {
  margin-bottom: 5px;
  background-color: #FFF;
  font-size: 16px;
}
.location__address {
  padding: 10px 20px;
  border-bottom: 1px solid #EBEBEB;
  line-height: 26px;
}
.location__tel {
  padding: 15px 20px;
  line-height: 1em;
  color: #B3B3B3;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
.apply__drug-info {
  line-height: 1em;
}
.apply__drug-info--name {
  margin-bottom: 10px;
  font-size: 18px;
}
.apply__drug-info--desc {
  color: #B3B3B3;
}
.apply__form__input__label {
  min-width: 6em;
}
.apply__submit {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  border-top: 1px solid #EBEBEB;
  background-color: #FFF;
}
.apply__submit-wrap {
  display: block;
  height: 70px;
}
.apply__desc {
  background-color: #FFF;
}
.apply__desc__header {
  padding: 15px;
  border-bottom: 1px solid #EBEBEB;
  font-size: 18px;
  line-height: 1em;
  font-weight: bold;
}
.apply__desc__content {
  padding: 10px 15px;
  font-size: 16px;
  line-height: 26px;
}
.modal--area__back {
  background: url('/assets/yjff/img/glyph_back.png') left 10px center / 16px 16px no-repeat;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
.apply__drug-info {
  line-height: 1em;
}
.apply__drug-info--name {
  margin-bottom: 10px;
  font-size: 18px;
}
.apply__drug-info--desc {
  color: #B3B3B3;
}
.apply__form__input__label {
  min-width: 6em;
}
.apply__submit {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  border-top: 1px solid #EBEBEB;
  background-color: #FFF;
}
.apply__submit-wrap {
  display: block;
  height: 70px;
}
.apply__desc {
  background-color: #FFF;
}
.apply__desc__header {
  padding: 15px;
  border-bottom: 1px solid #EBEBEB;
  font-size: 18px;
  line-height: 1em;
  font-weight: bold;
}
.apply__desc__content {
  padding: 10px 15px;
  font-size: 16px;
  line-height: 26px;
}
.modal--area__back {
  background: url('/assets/yjff/img/glyph_back.png') left 10px center / 16px 16px no-repeat;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
.a-success__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 15px;
  font-size: 20px;
  color: #FFF;
  background-color: #52cc62;
}
.a-success__header::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url('/assets/yjff/img/glyph_success.png') center / 24px 24px no-repeat;
}
.a-success__content {
  padding: 10px 15px;
  font-size: 18px;
  line-height: 28px;
  background-color: #FFF;
}
.a-success__content:empty {
  display: none;
}
.a-success__back {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  border-top: 1px solid #EBEBEB;
  background-color: #FFF;
}
.a-success__back-wrap {
  display: block;
  height: 70px;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
.view--404 {
  font-size: 18px;
  line-height: 1em;
  text-align: center;
  color: #B3B3B3;
}
.view--404::before {
  content: '';
  display: block;
  width: 120px;
  height: 120px;
  margin: 100px auto 15px;
  background: url('/assets/yjff/img/glyph_404.png') center no-repeat;
  background-size: 120px 120px;
}

body[data-v-0adecd41] {
  background: #eff2f5;
}
.main[data-v-0adecd41] {
  padding-top: 15px;
  margin: 0 15px;
}
.bottom-button[data-v-0adecd41] {
  width: 3.2rem;
  height: 0.8rem;
}
.van-empty__description[data-v-0adecd41] {
  font-size: 16px;
}
.footer[data-v-0adecd41] {
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer button[data-v-0adecd41] {
  width: 80%;
}
.evaluates[data-v-0adecd41] {
  margin: 15px 0;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 0 15px;
}
.evaluates[data-v-0adecd41],
.evaluates p[data-v-0adecd41] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}
.evaluates p[data-v-0adecd41] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
  background: #FFFFFF;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
/* common variables shared by projects */
/* specific variables should be modified to fit theme needs */
/**
 * make a css arrow style applied for an element
 * @param @size <number><length>		dimension of the arrow
 * @param @spacing <number><length>		border-width of the arrow
 * @param @color <color>				border-color of the arrow
 * @param @bg-color <color>				background-color under the arrow
 * @param @direction <number>			direction of the arrow
 */
.loading {
  position: fixed;
  left: 0;
  right: 0;
  top: 20%;
  z-index: 1500;
  display: none;
  width: 0;
  padding: 10px 0;
  margin: auto;
  line-height: 1em;
  text-align: center;
  display: block;
}
.loading::after {
  content: attr(data-text);
  display: inline-block;
  min-width: 48px;
  padding: 68px 15px 10px;
  border-radius: 5px;
  font-size: 12px;
  color: #FFF;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  background: url("/assets/yjff/img/common_loading.gif") center 10px no-repeat rgba(0, 0, 0, 0.7);
  background-size: 48px 48px;
}
.loading.blocked::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, 0);
}
.toast {
  position: fixed;
  left: 0;
  right: 0;
  top: 20%;
  z-index: 1500;
  width: 100px;
  padding: 10px;
  margin: auto;
  font-size: 12px;
  line-height: 1.5em;
  text-align: center;
  word-break: break-all;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.7);
}
.toast-enter-active {
  opacity: 1;
  transition: opacity 3s;
}
.toast-leave-active {
  opacity: 0;
  transition: opacity 0.5s;
}
.toast--error {
  background-color: rgba(255, 117, 117, 0.8);
}

/* styles inherited from site.less */
.search {
  padding: 8px;
  background-color: #FFF;
}
.search .search-wrap {
  position: relative;
  background-color: #FFF;
}
.search .search-wrap .search-input {
  display: block;
  width: 100%;
  height: 36px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 5px;
  padding-left: 30px;
  background-color: #F0EFF5;
  color: #B3B3B3;
}
.search .search-wrap .search-img {
  position: absolute;
  z-index: 1001;
  left: 7px;
  top: 7px;
  font-size: 0;
}
.form__prompt {
  padding: 15px 10px 10px;
  font-size: 14px;
  line-height: 1em;
  color: #B3B3B3;
}
.form__input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  border-bottom: 1px solid #EBEBEB;
  background-color: #FFF;
  /* function to generate input's icon */
}
.form__input::before {
  content: '';
  display: block;
  min-width: 20px;
  min-height: 20px;
  margin-right: 10px;
  background: url('/assets/yjff/img/sprite_form.png') no-repeat;
  background-size: 60px 20px;
}
.form__input--phone::before {
  background-position: 0px 0;
}
.form__input--code::before {
  background-position: -20px 0;
}
.form__input--pwd::before {
  background-position: -40px 0;
}
.form__input--code__btn {
  display: block;
  min-width: 8em;
  text-align: right;
}
.form__input--no-icon::before {
  display: none;
}
.form__input__field {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  font-size: 16px;
  color: #333;
}
.form__input__field::-webkit-input-placeholder {
  color: #B5B9BD;
}
.form__input__field:-ms-input-placeholder {
  color: #B5B9BD;
}
.form__input__field::placeholder {
  color: #B5B9BD;
}
.form__input--labeled::before {
  display: none;
}
.form__input--labeled .form__input__field {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: auto;
}
.form__input--select::before {
  display: none;
}
.form__input--select .form__input__value {
  padding-right: 32px;
  background: url('/assets/yjff/img/glyph_arrow.png') right 10px center / 12px 12px no-repeat;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #333;
}
.form__input--select .form__input__value:empty {
  color: #B5B9BD;
}
.form__input--select .form__input__value:empty::after {
  content: attr(data-placeholder);
}
.form__input--select-file__uploader {
  margin: -10px -10px -10px 0;
}
.form__input--select-file .form__input__label {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.form__input-group {
  margin: 5px 0;
}
.form__input-group .form__input:last-child {
  border-bottom: none;
}
.empty-prompt.data-loaded:empty,
.empty-prompt.data-loaded.empty {
  background-color: rgba(255, 255, 255, 0);
}
.empty-prompt.data-loaded:empty::after,
.empty-prompt.data-loaded.empty::after {
  content: attr(data-empty);
  display: block;
  padding-top: 115px;
  margin-top: 120px;
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
  white-space: pre-line;
  color: #ADB4B8;
  background: url("/assets/yjff/img/glyph_no_data.png") center top no-repeat rgba(255, 255, 255, 0);
  background-size: 100px 100px;
}
.empty-prompt.data-loaded:empty.empty-prompt--inside::after,
.empty-prompt.data-loaded.empty.empty-prompt--inside::after {
  margin-top: 20px;
}
.info-btn {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  color: #FFF;
  background-color: #25a5e6;
}
.info-btn--radius {
  border-radius: 20px;
}
.info-btn--radius-small {
  border-radius: 5px;
}
.info-btn--fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.info-btn--fixed__spaceholder {
  display: block;
  height: 42px;
  margin: 10px auto 0;
  background-color: transparent;
}
.info-btn--inverse {
  border: 1px solid #25a5e6;
  color: #25a5e6;
  background-color: transparent;
}
.info-btn--submit {
  display: block;
  width: 100%;
}
.info-btn--submit::after {
  content: attr(data-submit);
}
.info-btn--static {
  width: 75%;
  margin: 10px auto 0;
  border-radius: 20px;
}
.info-btn--static-small {
  width: 60%;
}
.info-btn--static-large {
  width: 90%;
}
.info-btn--disabled {
  color: #777;
  background-color: #DFDFDF;
}
.info-btn--submiting {
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1) inset;
  background-color: #2ea9e7;
}
.info-btn--submiting::after {
  content: attr(data-submiting);
}
.info-btn--inline {
  display: inline-block;
  width: auto;
  height: 28px;
  line-height: 28px;
  padding: 0 15px;
}
.info-btn--inline-large {
  display: inline-block;
  width: auto;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
}
.info-btn--inline.info-btn--radius {
  border-radius: 14px;
}
.info-btn--inline.info-btn--radius-small {
  border-radius: 2px;
}
.info-btn--inline-large.info-btn--radius {
  border-radius: 20px;
}
.info-btn--inline-large.info-btn--radius-small {
  border-radius: 4px;
}
/* page styles */
html,
body {
  height: 100%;
  overflow-x: hidden;
}
.jkwy-footer__support {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 12px;
  line-height: 0;
  text-align: center;
  color: #B3B3B3;
  background-color: #FFF;
}
.view {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  min-height: 100%;
  overflow: auto;
  overflow-x: hidden;
  /* scroll to top */
}
.view::after {
  content: '';
  display: block;
  height: 0;
}
.view.animated {
  bottom: 0;
}
.fade-enter {
  opacity: 0;
}
.fade-enter-active {
  transition: opacity .4s;
}
.fade-leave-active {
  transition: opacity .2s;
}
.fade-leave-to {
  opacity: 0;
}
