@charset "UTF-8";
/*[> Everything but the jumbotron gets side spacing for mobile first views <]*/
/*.header,*/
/*.marketing,*/
/*.footer {*/
/*padding-left: 15px;*/
/*padding-right: 15px;*/
/*}*/
/*Custom page header */
/*.header {*/
/*border-bottom: 1px solid #e5e5e5;*/
/*@extend .bg-3;*/
/*Make the masthead heading the same height as the navigation */
/*h3 {*/
/*margin-top: 0;*/
/*margin-bottom: 0;*/
/*line-height: 40px;*/
/*padding-bottom: 19px;*/
/*}*/
/*}*/
/*Custom page footer */
/*.footer {*/
/*padding-top: 19px;*/
/*color: #777;*/
/*border-top: 1px solid #e5e5e5;*/
/*}*/
.container-narrow > hr {
  margin: 30px 0; }

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
  .container {
    max-width: 730px; }
  /* Remove the padding we set earlier */
  .header,
  .marketing,
  .footer {
    padding-left: 0;
    padding-right: 0; }
  /* Space out the masthead */
  .header {
    margin-bottom: 30px; }
  /* Remove the bottom border on the jumbotron for visual effect */
  .jumbotron {
    border-bottom: 0; } }

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

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

.animate-repeat.ng-move,
.animate-repeat.ng-enter,
.animate-repeat.ng-leave {
  -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s; }

.animate-repeat.ng-leave.ng-leave-active,
.animate-repeat.ng-move,
.animate-repeat.ng-enter {
  opacity: 0; }

.animate-repeat.ng-leave,
.animate-repeat.ng-move.ng-move-active,
.animate-repeat.ng-enter.ng-enter-active {
  opacity: 1; }

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important; }

.animate.speed-5 {
  -webkit-animation-duration: .5s;
          animation-duration: .5s; }

.animate.speed-4 {
  -webkit-animation-duration: .4s;
          animation-duration: .4s; }

.animate.speed-3 {
  -webkit-animation-duration: .3s;
          animation-duration: .3s; }

.animate.speed-2 {
  -webkit-animation-duration: .2s;
          animation-duration: .2s; }

.animate.speed-1 {
  -webkit-animation-duration: .1s;
          animation-duration: .1s; }

.animate {
  -webkit-animation-duration: .15s;
          animation-duration: .15s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.transition {
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px); }

.transition-slow {
  -webkit-transition: all .35s linear;
  transition: all .35s linear;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px); }

/*
  得到 SASS 里的一个数字的单位，如 %, px, em 等单位

  NOTE 直接用 unit 函数，当没单位时 unit 会返回空字符串

  @function number-unit($number) {
    $number-str: to-string($number);

    $unit: false;

    @for $i from 1 through length($number-suffixes) {
      $suffix: nth($number-suffixes, $i);

      @if str-index($number-str, $suffix) {
        $unit: $suffix;
      }
    }

    @return $unit;
  }

*/
/*
  判断 SASS 里的一个数字是否含有单位

  NOTE 直接用 unitless 函数，没单位时返回 true

  @function number-has-unit($number) {

    @return if(number-unit($number) == false , false, true);

  }
*/
/*
  去掉一个数字的单位
*/
/*
  4 clamped to 1-3 equals 3
  -5 clamped to 1-10 equals 1
  42 clamped to 10-100 equals 42

  //hugogiraudel.com/2013/08/12/sass-functions/#section-2
*/
/*
  Unit conversion

  //hugogiraudel.com/2013/08/12/sass-functions/#section-3
  //codepen.io/HugoGiraudel/pen/rdgse
*/
/*
  隐藏元素
*/
.hidden {
  /*display: none !important;*/
  display: none; }

.invisible {
  visibility: hidden; }

/*
 触发硬件加速
 With hardware acceleration supported and enabled, animated translation, rotation, scaling and opacity will definitely be smoother with GPU compositing.
*/
.hw-accelerate {
  -webkit-transform: translateZ(0);
          transform: translateZ(0); }

/* Prevent the callout menu appearing in iOS Safari when the user performs tap & hold */
.no-callout {
  -webkit-touch-callout: none;
  /* 禁止浏览器弹出保存图片类似的界面 */ }

/*
  禁止选择，对 input 输入框无效
  禁止用户选择文字，不禁止的话，用户在手机上点击的话，很容易选择上上面的文字
*/
.no-select {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none; }

/* 强制文本换行 */
.break-word, .break-word td, .break-word th {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all; }

table.break-word {
  table-layout: fixed; }

/* 浮动与清除浮动 */
.pull-left {
  float: left; }

.pull-right {
  float: right; }

.absolute {
  position: absolute !important; }

.relative {
  position: relative !important; }

.absolute-area, .location-search-result-container, .subway-station-search-list-container,
.subway-choose-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-bottom: 10px; }

/*
  pull-clear
  Source: //nicolasgallagher.com/micro-clearfix-hack/

  For modern browsers
  1. The space content is one way to avoid an Opera bug when the
      contentEditable attribute is included anywhere else in the document.
      Otherwise it causes space to appear at the top and bottom of elements
      that are clearfixed.
  2. The use of `table` rather than `block` is only necessary if using
      `:before` to contain the top-margins of child elements.
*/
.pull-clear:before, .pull-clear:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.pull-clear:after {
  clear: both; }

.circle, .simple-detail__content .station-list-container .list__item:after, .transfer-plans-container .ico-container,
.segment-list-container .ico-container, .subway-code {
  -webkit-border-radius: 50%;
          border-radius: 50%; }

.full-height {
  height: 100%; }

.display-block {
  display: block; }

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

/***
   colors.css v1.0
   //clrs.cc
***/
/*$red:     #FF5500 !default;*/
/*$color-9: #999;*/
/*$color-e: #eee;*/
.bt, .page-transfer .transfer-info-container .form-container {
  border-top: 1px solid #eaeaea; }

.bb {
  border-bottom: 1px solid #eaeaea; }

.bl {
  border-left: 1px solid #eaeaea; }

.br {
  border-right: 1px solid #eaeaea; }

.ball {
  border: 1px solid #eaeaea; }

.cc-bt {
  border-top: 1px solid #C8C7CC; }

.cc-bb {
  border-bottom: 1px solid #C8C7CC; }

.cc-bl {
  border-left: 1px solid #C8C7CC; }

.cc-br {
  border-right: 1px solid #C8C7CC; }

.bd-blue {
  border: 1px solid #3498DB; }

.bd-red {
  border: 1px solid #FF5722; }

.bd-pink {
  border: 1px solid #F98086; }

.border-red {
  border: 2px solid #FF5722; }

.border-green {
  border: 2px solid #44cba9; }

.border-blue {
  border: 2px solid #3498DB; }

.bg-black {
  background-color: black; }

.fg-black {
  color: black; }

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

.fg-yellow {
  color: #FFDC00; }

.bg-red, .btn-red {
  background-color: #FF5722; }

.fg-red, .detail__content .list__item--active .list__item__link, .detail__content .list__item--active .list__item__link .number, .detail__content .list__item--active .list__item__link .name {
  color: #FF5722; }

.bg-red-error {
  background-color: #FF3333; }

.fg-red-error {
  color: #FF3333; }

.bg-deepred {
  background-color: #D94400; }

.fg-deepred {
  color: #D94400; }

.bg-white, .simple-detail__content .station-list-container .list__item:after {
  background-color: #fff; }

.fg-white, .btn, .btn:hover, .btn:visited, .btn:active, .btn-red, .btn-blue, .line-map, .subway-code {
  color: #fff; }

.bg-blue, .btn, .btn:hover, .btn:visited, .btn-blue, .simple-detail__content .station-list-container .list__item:before {
  background-color: #3498DB; }

.fg-blue, .tab-list .tab-item.active, .subway-choose-line-item.current {
  color: #3498DB; }

.bg-lightblue {
  background-color: #5DC2FA; }

.fg-lightblue {
  color: #5DC2FA; }

.bg-slightblue {
  background-color: #9FDAFF; }

.fg-slightblue {
  color: #9FDAFF; }

.bg-deepblue {
  background-color: #2C81BA; }

.fg-deepblue {
  color: #2C81BA; }

.bg-pink {
  background-color: #F98086; }

.fg-pink {
  color: #F98086; }

.bg-green {
  background-color: #44cba9; }

.fg-green {
  color: #44cba9; }

.bg-deepgreen {
  background-color: #4FB80D; }

.fg-deepgreen {
  color: #4FB80D; }

.bg-grey {
  background-color: #666; }

.fg-grey {
  color: #666; }

.bg-fb {
  background-color: #FBFBFD; }

.fg-fb {
  color: #FBFBFD; }

.bg-f5, .subway-choose-line-item.current {
  background-color: #F5F5F8; }

.fg-f5 {
  color: #F5F5F8; }

.bg-f {
  background-color: #F6F6F6; }

.fg-f {
  color: #F6F6F6; }

.bg-cc {
  background-color: #C8C7CC; }

.fg-cc {
  color: #C8C7CC; }

.bg-0 {
  background-color: #000; }

.fg-0 {
  color: #000; }

.bg-3 {
  background-color: #333; }

.fg-3, .detail__content .list__item__link .name {
  color: #333; }

.bg-6 {
  background-color: #666; }

.fg-6, .load, .loading, .detail__content .list__item .bus-coming i, .detail__content .list__item .bus-here i, .detail__content .list__item .capacity-bus-coming i, .detail__content .list__item .capacity-bus-here i, .detail__content .list__item__link .number {
  color: #666; }

.bg-9 {
  background-color: #999; }

.fg-9, .btn-grey, .btn-grey:active, .btn-grey:hover, .btn-grey:focus {
  color: #999; }

.bg-a {
  background-color: #aaa; }

.fg-a {
  color: #aaa; }

.bg-e {
  background-color: #eee; }

.fg-e {
  color: #eee; }

.bg-c {
  background-color: #ccc; }

.fg-c {
  color: #ccc; }

.bg-d, .subway-transit-block .subway-transit-passby-stn:before,
.subway-dest-stn-block .subway-transit-passby-stn:before {
  background-color: #ddd; }

.fg-d, .around-card .line-change .line-number, .around-card .line-change .line-nextstation {
  color: #ddd; }

.bg-fb {
  background-color: #FBFBFD; }

.traffic-level-0 {
  background-color: #aaa; }

.more-bus-traffic-level-0 {
  color: #aaa;
  border: 1px solid #aaa; }

.traffic-level-1 {
  background-color: #4FB80D; }

.more-bus-traffic-level-1 {
  color: #4FB80D;
  border: 1px solid #4FB80D; }

.traffic-level-2 {
  background-color: #F08D26; }

.more-bus-traffic-level-2 {
  color: #F08D26;
  border: 1px solid #F08D26; }

.traffic-level-3 {
  background-color: #E62E25; }

.more-bus-traffic-level-3 {
  color: #E62E25;
  border: 1px solid #E62E25; }

.traffic-level-4 {
  background-color: #B62315; }

.more-bus-traffic-level-4 {
  color: #B62315;
  border: 1px solid #B62315; }

.traffic-level--99 {
  background-color: #999999; }

.more-bus-traffic-level--99 {
  color: #999999;
  border: 1px solid #999999; }

*, :after, :before {
  -webkit-border-sizing: border-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* disable tapping highlight color */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

html, body {
  /*height: 100%;*/
  font-size: 14px;
  line-height: 120%;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, Tahoma, sans-serif;
  -webkit-overflow-scrolling: touch; }

body {
  background-color: #EBEBF1; }

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-border-sizing: border-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

input {
  outline: none;
  border: none;
  -webkit-border-sizing: border-box !important;
  border-sizing: border-box !important;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
          border-radius: 0; }

a {
  text-decoration: none;
  color: inherit; }

em {
  font-style: normal; }

p {
  margin: 0; }

.flex-row, .hv-center-child, .around-refresh, .load, .loading, .gps-city-container .ico-container,
.all-city-indicator-container .ico-container, .tab-list, .page-list .div-flex, .page-transfer .transfer-info-container .input-container, .transfer-tips-list .list__item, .transfer-history-list-container .transfer-history-dpt, .transfer-history-list-container .transfer-history-dst, .detail__content .line-container, .detail__bottom ul, .bus-detail .flex-container .secondary-detail, .bus-detail .card-action-list-container, .bus-detail .card-action-list-container .card-action-container, .bus-detail .time-table, .transfer-plans-container .list__item,
.segment-list-container .list__item, .transfer-plans-container .ico-container,
.segment-list-container .ico-container, .subway-item .ico-container, .search-input .search-form, .bus-detail .time-table-item .more-bus-block, .bus-detail .line-detail-banner-ad-container, .bus-detail .line-detail-banner-ad-container .left, .ad-card-container .ad-card .ad-address .ad-address-block, .ad-card-container .ad-card .has-two {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row; }

.flex-column, .v-center-child, .reload, .loading-center, .page-list .ad-container, .detail__bottom li, .bus-detail .time-table-item, .subway-loading-tooltip, .ad-card-container .ad-card .ad-logo-and-name .ad-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }

/*
  居中相关
*/
/*

  Reference: //css-tricks.com/centering-css-complete-guide/

  垂直居中( inline )
  1、单行文字垂直居中
    a. 设置相等的 padding-top 和 padding-bottom
    b. 设置 line-height 为容器的高度

  2、多行文字垂直居中
    a. 同样可以用相等的 padding-top 和 padding-bottom
    b. 用 { display: table-cell; vertical-align: middle; }
    c. 用 { display: flex; justify-content: center; flex-direction: column;


  垂直居中( block )
  1、height 已知 （水平居中也类似）
    a. 利用绝对定位，top 设置为 50%，margin-top 设置为负的 height 的一半
  2、height 未知 （水平居中也类似）
    a. 同样是绝对定位，top 为 50%，最后就用 transform: translateY(-50%);
  3、用 flex
    a. { display: flex; justify-content: center; flex-direction: column; } }


  垂直水平居中
  1、width height 已知 （与上面类似）
  2、width height 未知 （与上面类似）
  3、用 flex
    a. { display: flex; justify-content: center; align-items: center; }

*/
/*
  水平居中当前元素
*/
.center-block, .no-favorite:before, .no-recent-result:before {
  display: block;
  margin-left: auto;
  margin-right: auto; }

/*
  用 flex 让元素的子元素垂直居中对齐
*/
.hv-center-child {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.v-center-child, .reload {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

/*
  使用下面的需要把它们的父元素的 position 设置成 relative
*/
.h-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }

.v-center, .vertical-mid, .splash-page.ng-cloak .page-loading-container, .result-container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.hv-center, .mask .dialog, .loading-center, .reload {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

/* margin padding */
.m0 {
  margin: 0; }

.mt0 {
  margin-top: 0; }

.mb0 {
  margin-bottom: 0; }

.ml0 {
  margin-left: 0; }

.mr0 {
  margin-right: 0; }

.p0 {
  padding: 0; }

.pt0 {
  padding-top: 0; }

.pb0 {
  padding-bottom: 0; }

.pl0 {
  padding-left: 0; }

.pr0 {
  padding-right: 0; }

.mp0 {
  margin: 0;
  padding: 0; }

.mpt0 {
  margin-top: 0;
  padding-top: 0; }

.mpb0 {
  margin-bottom: 0;
  padding-bottom: 0; }

.mpl0 {
  margin-left: 0;
  padding-left: 0; }

.mpr0 {
  margin-right: 0;
  padding-right: 0; }

/*.f-thin   { font-family: 'Helvetica Neue', Roboto; font-weight: 100; }*/
.f-light {
  font-family: 'Helvetica Neue', Roboto;
  font-weight: 300; }

.f-normal {
  font-weight: 400; }

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

.f-bolder {
  font-weight: 900; }

/* font size */
.f-0 {
  font-size: 0; }

.f-9 {
  font-size: 9px; }

.f-10, .detail__content .list__item .bus-coming i, .detail__content .list__item .bus-here i, .detail__content .list__item .capacity-bus-coming i, .detail__content .list__item .capacity-bus-here i, .detail__content .list__item__link .number {
  font-size: 10px; }

.f-11, .subway-code {
  font-size: 11px; }

.f-12, .line-map {
  font-size: 12px; }

.f-13, .detail__content .list__item--active .list__item__link .number {
  font-size: 13px; }

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

.f-15, .btn-red, .btn-grey, .btn-blue {
  font-size: 15px; }

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

.f-17 {
  font-size: 17px; }

.f-18, .detail__content .list__item__link .name {
  font-size: 18px; }

.f-19 {
  font-size: 19px; }

.f-20, .detail__content .list__item--active .list__item__link .name {
  font-size: 20px; }

.f-21 {
  font-size: 21px; }

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

.f-23 {
  font-size: 23px; }

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

.f-25 {
  font-size: 25px; }

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

.f-27 {
  font-size: 27px; }

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

.f-29 {
  font-size: 29px; }

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

.f-40 {
  font-size: 40px; }

/* line height */
.lh-12 {
  line-height: 12px; }

.lh-15 {
  line-height: 15px; }

.lh-16 {
  line-height: 16px; }

.lh-17 {
  line-height: 17px; }

.lh-18 {
  line-height: 18px; }

.lh-19 {
  line-height: 19px; }

.lh-20 {
  line-height: 20px; }

.lh-21 {
  line-height: 21px; }

.lh-22 {
  line-height: 22px; }

.lh-23 {
  line-height: 23px; }

.lh-24 {
  line-height: 24px; }

.lh-25 {
  line-height: 25px; }

.lh-26 {
  line-height: 26px; }

.lh-27 {
  line-height: 27px; }

.lh-28 {
  line-height: 28px; }

.lh-29 {
  line-height: 29px; }

.lh-30 {
  line-height: 30px; }

.lh-31 {
  line-height: 31px; }

.lh-32 {
  line-height: 32px; }

.lh-33 {
  line-height: 33px; }

.lh-34 {
  line-height: 34px; }

.lh-35 {
  line-height: 35px; }

.lh-36 {
  line-height: 36px; }

.lh-37 {
  line-height: 37px; }

.lh-38 {
  line-height: 38px; }

.lh-39 {
  line-height: 39px; }

.lh-40 {
  line-height: 40px; }

.lh-41 {
  line-height: 41px; }

.lh-42 {
  line-height: 42px; }

.lh-43 {
  line-height: 43px; }

.lh-44 {
  line-height: 44px; }

.lh-45 {
  line-height: 45px; }

.lh-46 {
  line-height: 46px; }

.lh-50 {
  line-height: 50px; }

.lh-60 {
  line-height: 60px; }

.lh-70 {
  line-height: 70px; }

/*
  text 相关样式
*/
.text-uppercase {
  text-transform: uppercase !important; }

.text-lowercase {
  text-transform: lowercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.text-center, .subway-code, .ad-card-container .ad-card .button-container .button-call,
.ad-card-container .ad-card .button-container .button-link {
  text-align: center !important; }

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

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

/*
  Text overflow
  Requires inline-block or block for proper styling
*/
.text-ellipsis, .simple_list__item__link, .has-header .header .header__title, .page-transfer .transfer-info-container .input-container input, .page-transfer .transfer-info-container .input-container .input, .transfer-tips-list .list__item .tip-ellipsis, .transfer-history-list-container .transfer-history-ellipsis, .station-detail .dest-ellipsis, .around-card .around-list-item .first-ellipsis, .around-card .around-list-item .other-ellipsis, .around-card .line-info .line-number {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

/*
  CSS image replacement
*/
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.icon, .footer__closer::after {
  background-repeat: no-repeat;
  overflow: hidden;
  display: inline-block; }

.icon_arrow_14px, .ico-arrow, .transfer-list-container .plans-container .plans-detail .route-container .plan .plan-arrow {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -169px -152px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 16px;
  height: 8px; }

.icon_arrow_down, .ico-arrow-down, .detail__content .list__item--active .current-arrow {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -182px -174px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 8px; }

.icon_back_top, .ico-back-top {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -198px -72px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_back_white_24px, .ico-back, .header__back::after {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -134px -160px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_clock_ic, .ico-clock-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -79px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 20px;
  height: 20px; }

.icon_close_white_12px, .ico-close, .footer__closer::after {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -160px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 12px; }

.icon_convenience_ic, .ico-convenience-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -59px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 20px;
  height: 20px; }

.icon_correct_information_ic, .ico-correct-information-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -136px -64px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 32px;
  height: 32px; }

.icon_cur_pos_blue_12px, .ico-cur-pos-12 {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -112px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 12px; }

.icon_cur_pos_blue_14px, .ico-cur-pos {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -196px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_dianxin_ic, .ico-dianxin-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -205px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_dingwei_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -169px -124px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 21px;
  height: 28px; }

.icon_enter_ic, .ico-enter-ic, .transfer-list-container .plans-container .plans-detail .right-arrow {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -190px -124px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 6px;
  height: 12px; }

.icon_entrance_14px, .ico-entrance, .transfer-plans-container .list__item:after {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -112px -113px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_futi_ic, .ico-futi-ic, .route-list-container .portable .portable-msg .futi_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -131px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 16px;
  height: 16px; }

.icon_home_bus_12px, .ico-home-bus-12 {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -64px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 13px; }

.icon_home_chelaile, .ico-home-chelaile {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -72px -92px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 53px;
  height: 21px; }

.icon_home_mine_ic, .ico-home-mine-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -136px 0px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 33px;
  height: 32px; }

.icon_home_mineb_ic, .ico-home-mineb-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -136px -32px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 33px;
  height: 32px; }

.icon_home_savefav, .ico-home-savefav, .around-card .line-info .line-savefav {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -135px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_home_signal_b, .ico-home-signal-b, .around-card .line-info .line-time .normal {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -190px -142px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 6px;
  height: 6px; }

.icon_home_signal_r, .ico-home-signal-r {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -190px -136px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 6px;
  height: 6px; }

.icon_home_station_ic, .ico-home_station_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -163px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 17px; }

.icon_home_unsavefav, .ico-home-unsavefav, .around-card .line-info .line-unsavefav {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -121px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_home_white_24px, .ico-home, .header__home::after {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -86px -160px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_layer_close, .ico-ad-card-close {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: 0px -92px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 36px;
  height: 36px; }

.icon_liantong_ic, .ico-liantong-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -116px -80px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 16px;
  height: 12px; }

.icon_line_bus, .ico-line-bus, .detail__content .list__item .bus-coming, .detail__content .list__item .bus-here {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -99px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 22px;
  height: 16px; }

.icon_line_bus_congested1, .ico-line-bus-congested1, .detail__content .list__item .capacity-bus-congested1 {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -169px 0px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 29px;
  height: 32px; }

.icon_line_bus_congested2, .ico-line-bus-congested2, .detail__content .list__item .capacity-bus-congested2 {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -169px -32px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 29px;
  height: 32px; }

.icon_line_bus_congested3, .ico-line-bus-congested3, .detail__content .list__item .capacity-bus-congested3 {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -128px -128px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 29px;
  height: 32px; }

.icon_line_bus_congested4, .ico-line-bus-congested4, .detail__content .list__item .capacity-bus-congested4 {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -169px -64px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 29px;
  height: 32px; }

.icon_line_bus_large, .ico-line-bus-large, .detail__content .list__item .bus-nearest,
.detail__content .list__item .bus-current, .detail__content .list__item--active .bus-here {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -30px -160px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 32px;
  height: 24px; }

.icon_line_bus_large_red, .ico-line-bus-red {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -92px -80px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 12px; }

.icon_line_changed, .ico-line-changed {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -198px -168px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 22px;
  height: 22px; }

.icon_line_morecar_ic, .ico-more-bus {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -198px -24px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_line_same_gray_ic, .ico-same-station-line {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: 0px -160px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 30px;
  height: 30px; }

.icon_line_warning, .ico-line_warning {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -124px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 12px; }

.icon_linedetail_direction_arrow, .ico-linedetail_direction_arrow, .detail__content .list__item__link::before {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -125px -103px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 10px;
  height: 10px; }

.icon_linedetail_direction_ic, .ico-linedetail_direction_ic, .detail__content .list__item--active .current-bg-cover {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -182px -160px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_linedetail_gone, .ico-linedetail_gone {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -198px 0px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_linedetail_timetable_ic, .ico-linedetail_timetable_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -136px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 12px; }

.icon_linedetail_timetableg_ic, .ico-linedetail_timetableg_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -148px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 12px; }

.icon_linedetail_waitting, .ico-linedetail_waitting {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -62px -160px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_loading_24px, .ico-loading {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -110px -160px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_loading_36px, .ico-loading-36, .loading-center .ico-loading {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -92px -44px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 36px;
  height: 36px; }

.icon_loading_white_36px, .ico-loading-white {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -36px -92px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 36px;
  height: 36px; }

.icon_location, .ico-location, .detail__content .list__item--active .default-location {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -20px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 19px;
  height: 22px; }

.icon_louti_ic, .ico-louti-ic, .route-list-container .portable .portable-msg .louti_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -67px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 16px;
  height: 16px; }

.icon_map, .ico-map {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -83px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 16px;
  height: 16px; }

.icon_map_bus, .ico-map-bus {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -92px 0px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 44px;
  height: 44px; }

.icon_more_white_12px, .ico-more, .page-list .switch-city .show-switch-city::after {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -100px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 12px; }

.icon_people_14px, .ico-people, .transfer-list-container .plans-container .plans-detail .walking .walking-man {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -177px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_progress, .ico-loading-logo {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: 0px 0px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 92px;
  height: 92px; }

.icon_pull_downlist_ic, .ico-pull-downlist-ic, .route-list-container .bus-container .bus-content .next-station .total-station .down-arrow, .page-around .more-station-tip .ico-home-expand {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -185px -152px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 6px; }

.icon_quickway_ic, .ico-quickway-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -163px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_refresh, .ico-refresh, .detail__bottom.show-fav .refresh-container .ico, .detail__bottom.hide-fav .refresh-container .ico {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: 0px -128px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 32px;
  height: 32px; }

.icon_refresh_blue_24px, .ico-refresh-blue {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -198px -48px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_refresh_grey, .ico-refresh-grey {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -157px -128px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 15px; }

.icon_refresh_white, .ico-refresh-white {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -64px -128px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 32px;
  height: 32px; }

.icon_refresh_white_24px, .ico-refresh-white-24 {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -198px -96px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_remove_24px, .ico-remove {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -198px -144px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_search_24px, .ico-search, .page-list .search-icon, .subway-search-icon, .search-input .search-icon {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -198px -120px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_search_place_ic, .ico-search_place_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -180px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 16px; }

.icon_signal_ic, .ico-signal-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: 0px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 20px;
  height: 22px; }

.icon_star, .ico-star-blue, .detail__bottom.show-fav .fav-container.star .ico {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -32px -128px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 32px;
  height: 32px; }

.icon_start_point_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -125px -92px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 11px;
  height: 11px; }

.icon_startpoint_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -126px -113px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 9px;
  height: 9px; }

.icon_station_go, .ico-ad-navigation {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -158px -160px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 24px;
  height: 24px; }

.icon_subway_search_ic, .ico-subway-search-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -28px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 14px; }

.icon_swap, .ico-swap {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -96px -128px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 32px;
  height: 32px; }

.icon_swap_transfer, .ico_swap_transfer {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px 0px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 18px;
  height: 18px; }

.icon_this_stop, .ico-this-stop {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -92px -113px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 20px;
  height: 14px; }

.icon_timetable-arrow, .ico-timetable-arrow {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -172px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 11px;
  height: 11px; }

.icon_timetable_ic, .ico-timetable {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -72px -113px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 20px;
  height: 14px; }

.icon_timetable_information {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -14px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_timetable_open {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -76px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 12px; }

.icon_timetable_watch {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -88px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 12px; }

.icon_tips_ic, .ico-tips-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -191px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_tipsblue_ic, .ico-tipsblue-ic, .route-list-container .portable .tips-blue {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -149px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_tolite_ic, .ico-toilet-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -39px -190px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 20px;
  height: 20px; }

.icon_transferstation_ic, .ico-transferstation-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -169px -96px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 28px;
  height: 28px; }

.icon_travel_exchange_ic, .ico-travel_exchange_ic, .around-card .line-info .travel_exchange_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -115px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 16px;
  height: 16px; }

.icon_trumpet, .ico-trumpet {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -99px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 16px;
  height: 16px; }

.icon_unstar, .ico-unstar, .detail__bottom.show-fav .fav-container.unstar .ico {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -136px -96px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 32px;
  height: 32px; }

.icon_web_bus_ic, .ico-web_bus_ic, .transfer-list-container .plans-container .plans-detail .route-container .plan .bus-icon {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -157px -143px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 14px; }

.icon_web_busarrowdown_ic, .ico-web_busarrowdown_ic, .route-list-container .bus-container .bus-content .next-station .total-station .up-arrow {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -30px -184px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 6px; }

.icon_web_exit_ic, .ico-web_exit_ic, .route-list-container .portable .portable-msg .web_exit_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -147px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 16px;
  height: 16px; }

.icon_web_history_ic, .ico-web-history-ic, .transfer-tips-list .list__item .ico-container .web-history {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -51px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 16px;
  height: 16px; }

.icon_web_jiantou_ic, .ico-web_jiantou_ic, .route-list-container .portable .up-arrow {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -183px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 7px; }

.icon_web_subway_ic, .ico-web_subway_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -52px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 14px; }

.icon_web_transit_ic, .ico-web_transit_ic, .transfer-list-container .plans-container .plans-detail .route-container .plan .subway-icon {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -40px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 12px;
  height: 14px; }

.icon_weixin_choose_ic, .ico-weixin_choose_ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -18px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 17px;
  height: 17px; }

.icon_yidong_ic, .ico-yidong-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: 0px -212px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 14px;
  height: 14px; }

.icon_zhiti_ic, .ico-zhiti-ic, .route-list-container .portable .portable-msg .zhiti-ic {
  background-image: url("../images/icons-6d4cc77a9f.png");
  background-position: -222px -35px;
  -webkit-background-size: 240px 226px;
          background-size: 240px 226px;
  width: 16px;
  height: 16px; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_arrow_14px, .ico-arrow, .transfer-list-container .plans-container .plans-detail .route-container .plan .plan-arrow {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -48px -207px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 16px;
    height: 8px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_arrow_down, .ico-arrow-down, .detail__content .list__item--active .current-arrow {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -64px -207px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 8px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_back_top, .ico-back-top {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -143px -135px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_back_white_24px, .ico-back, .header__back::after {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -188px -48px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_clock_ic, .ico-clock-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -93px -82px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 20px;
    height: 20px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_close_white_12px, .ico-close, .footer__closer::after {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -188px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 12px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_convenience_ic, .ico-convenience-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -53px -82px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 20px;
    height: 20px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_correct_information_ic, .ico-correct-information-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -96px -103px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 32px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_cur_pos_blue_12px, .ico-cur-pos-12 {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -12px -207px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 12px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_cur_pos_blue_14px, .ico-cur-pos {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -47px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_dianxin_ic, .ico-dianxin-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -33px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_enter_ic, .ico-enter-ic, .transfer-list-container .plans-container .plans-detail .right-arrow {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -226px -21px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 6px;
    height: 12px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_entrance_14px, .ico-entrance, .transfer-plans-container .list__item:after {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -75px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_futi_ic, .ico-futi-ic, .route-list-container .portable .portable-msg .futi_ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -64px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 16px;
    height: 16px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_home_bus_12px, .ico-home-bus-12 {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -176px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 13px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_home_chelaile, .ico-home-chelaile {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: 0px -82px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 53px;
    height: 21px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_home_mine_ic, .ico-home-mine-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -90px -36px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 33px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_home_mineb_ic, .ico-home-mineb-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -126px 0px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 33px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_home_savefav, .ico-home-savefav, .around-card .line-info .line-savefav {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -89px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_home_signal_b, .ico-home-signal-b, .around-card .line-info .line-time .normal {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -226px -33px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 6px;
    height: 6px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_home_signal_r, .ico-home-signal-r {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -226px -39px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 6px;
    height: 6px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_home_station_ic, .ico-home_station_ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px 0px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 17px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_home_unsavefav, .ico-home-unsavefav, .around-card .line-info .line-unsavefav {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -187px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_home_white_24px, .ico-home, .header__home::after {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -188px -72px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_layer_close, .ico-ad-card-close {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -90px 0px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 36px;
    height: 36px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_liantong_ic, .ico-liantong-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -177px -167px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 16px;
    height: 12px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_bus, .ico-line-bus, .detail__content .list__item .bus-coming, .detail__content .list__item .bus-here {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -115px -167px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 22px;
    height: 16px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_bus_comfortable {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -159px -64px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 29px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_bus_congested1, .ico-line-bus-congested1, .detail__content .list__item .capacity-bus-congested1 {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: 0px -135px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 29px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_bus_congested2, .ico-line-bus-congested2, .detail__content .list__item .capacity-bus-congested2 {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -159px 0px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 29px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_bus_congested3, .ico-line-bus-congested3, .detail__content .list__item .capacity-bus-congested3 {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -128px -103px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 29px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_bus_congested4, .ico-line-bus-congested4, .detail__content .list__item .capacity-bus-congested4 {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -159px -96px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 29px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_bus_large, .ico-line-bus-large, .detail__content .list__item .bus-nearest,
  .detail__content .list__item .bus-current, .detail__content .list__item--active .bus-here {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -87px -135px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 32px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_bus_large_red, .ico-line-bus-red {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -90px -68px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 12px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_bus_spacious {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -159px -32px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 29px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_changed, .ico-line-changed {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -188px -144px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 22px;
    height: 22px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_morecar_ic, .ico-more-bus {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -188px -120px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_same_gray_ic, .ico-same-station-line {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -29px -135px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 30px;
    height: 30px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_line_warning, .ico-line_warning {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -36px -207px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 12px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_linedetail_direction_arrow, .ico-linedetail_direction_arrow, .detail__content .list__item__link::before {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -226px -11px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 10px;
    height: 10px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_linedetail_direction_ic, .ico-linedetail_direction_ic, .detail__content .list__item--active .current-bg-cover {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -103px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_linedetail_gone, .ico-linedetail_gone {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -119px -135px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_linedetail_timetable_ic, .ico-linedetail_timetable_ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -200px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 12px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_linedetail_timetableg_ic, .ico-linedetail_timetableg_ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: 0px -207px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 12px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_linedetail_waitting, .ico-linedetail_waitting {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: 0px -167px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_loading_24px, .ico-loading {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -188px -96px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_loading_36px, .ico-loading-36, .loading-center .ico-loading {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -36px -46px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 36px;
    height: 36px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_loading_white_36px, .ico-loading-white {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: 0px -46px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 36px;
    height: 36px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_location, .ico-location, .detail__content .list__item--active .default-location {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -96px -167px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 19px;
    height: 22px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_louti_ic, .ico-louti-ic, .route-list-container .portable .portable-msg .louti_ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -32px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 16px;
    height: 16px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_map, .ico-map {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -48px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 16px;
    height: 16px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_map_bus, .ico-map-bus {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -46px 0px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 44px;
    height: 44px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_more_white_12px, .ico-more, .page-list .switch-city .show-switch-city::after {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -24px -207px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 12px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_people_14px, .ico-people, .transfer-list-container .plans-container .plans-detail .walking .walking-man {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -173px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_progress, .ico-loading-logo {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: 0px 0px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 46px;
    height: 46px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_pull_downlist_ic, .ico-pull-downlist-ic, .route-list-container .bus-container .bus-content .next-station .total-station .down-arrow, .page-around .more-station-tip .ico-home-expand {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -173px -128px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 6px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_quickway_ic, .ico-quickway-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -159px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_refresh, .ico-refresh, .detail__bottom.show-fav .refresh-container .ico, .detail__bottom.hide-fav .refresh-container .ico {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -126px -64px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 32px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_refresh_blue_24px, .ico-refresh-blue {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -188px -24px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_refresh_grey, .ico-refresh-grey {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -113px -82px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 15px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_refresh_white, .ico-refresh-white {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: 0px -103px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 32px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_refresh_white_24px, .ico-refresh-white-24 {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -24px -167px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_remove_24px, .ico-remove {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -48px -167px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_search_24px, .ico-search, .page-list .search-icon, .subway-search-icon, .search-input .search-icon {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -72px -167px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_search_place_ic, .ico-search_place_ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -17px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 16px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_signal_ic, .ico-signal-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -167px -135px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 20px;
    height: 22px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_star, .ico-star-blue, .detail__bottom.show-fav .fav-container.star .ico {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -126px -32px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 32px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_station_go, .ico-ad-navigation {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -188px 0px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 24px;
    height: 24px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_subway_search_ic, .ico-subway-search-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -128px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_swap, .ico-swap {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -64px -103px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 32px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_swap_transfer, .ico_swap_transfer {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -72px -46px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 18px;
    height: 18px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_this_stop, .ico-this-stop {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -137px -167px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 20px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_timetable-arrow, .ico-timetable-arrow {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -226px 0px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 11px;
    height: 11px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_timetable_ic, .ico-timetable {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -157px -167px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 20px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_timetable_information {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -117px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_timetable_open {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -193px -167px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 12px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_timetable_watch {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -114px -68px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 12px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_tips_ic, .ico-tips-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -145px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_tipsblue_ic, .ico-tipsblue-ic, .route-list-container .portable .tips-blue {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -131px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_tolite_ic, .ico-toilet-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -73px -82px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 20px;
    height: 20px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_transferstation_ic, .ico-transferstation-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -59px -135px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 28px;
    height: 28px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_travel_exchange_ic, .ico-travel_exchange_ic, .around-card .line-info .travel_exchange_ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -16px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 16px;
    height: 16px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_trumpet, .ico-trumpet {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: 0px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 16px;
    height: 16px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_unstar, .ico-unstar, .detail__bottom.show-fav .fav-container.unstar .ico {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -32px -103px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 32px;
    height: 32px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_web_bus_ic, .ico-web_bus_ic, .transfer-list-container .plans-container .plans-detail .route-container .plan .bus-icon {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -140px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_web_busarrowdown_ic, .ico-web_busarrowdown_ic, .route-list-container .bus-container .bus-content .next-station .total-station .up-arrow {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -201px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 6px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_web_exit_ic, .ico-web_exit_ic, .route-list-container .portable .portable-msg .web_exit_ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -96px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 16px;
    height: 16px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_web_history_ic, .ico-web-history-ic, .transfer-tips-list .list__item .ico-container .web-history {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -80px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 16px;
    height: 16px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_web_jiantou_ic, .ico-web_jiantou_ic, .route-list-container .portable .up-arrow {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -159px -128px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 7px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_web_subway_ic, .ico-web_subway_ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -152px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_web_transit_ic, .ico-web_transit_ic, .transfer-list-container .plans-container .plans-detail .route-container .plan .subway-icon {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -164px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 12px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_weixin_choose_ic, .ico-weixin_choose_ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -72px -64px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 17px;
    height: 17px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_yidong_ic, .ico-yidong-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -212px -61px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 14px;
    height: 14px; } }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .icon_zhiti_ic, .ico-zhiti-ic, .route-list-container .portable .portable-msg .zhiti-ic {
    background-image: url("../images/icons-2x-c493028d17.png");
    background-position: -112px -191px;
    -webkit-background-size: 237px 219px;
            background-size: 237px 219px;
    width: 16px;
    height: 16px; } }

.ico {
  display: inline-block;
  /*vertical-align: text-bottom;*/
  vertical-align: middle;
  cursor: pointer; }

.ico-none-history-ic, .no-history-container .none-history-pic, .no-favorite:before, .no-recent-result:before {
  background-image: url("../images/no-sprite-icons/web_none_pic-1373a04275.png");
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  width: 122px;
  height: 122px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .ico-none-history-ic, .no-history-container .none-history-pic, .no-favorite:before, .no-recent-result:before {
      background-image: url("../images/no-sprite-icons-2x/web_none_pic-0588bd644c.png"); } }

.ico-walk-ic, .route-list-container .walk-container .walking-man {
  background-image: url("../images/no-sprite-icons/web_walk_ic-65a763b840.png");
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  width: 12px;
  height: 17px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .ico-walk-ic, .route-list-container .walk-container .walking-man {
      background-image: url("../images/no-sprite-icons-2x/web_walk_ic-64b93968aa.png"); } }

.ico-detail-bus-ic, .route-list-container .bus-container .bus-icon {
  background-image: url("../images/no-sprite-icons/web_bus_ic-99f2556ea6.png");
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  width: 16px;
  height: 18px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .ico-detail-bus-ic, .route-list-container .bus-container .bus-icon {
      background-image: url("../images/no-sprite-icons-2x/web_bus_ic-f014158bee.png"); } }

.ico-web-subway-ic, .route-list-container .bus-container .subway-icon {
  background-image: url("../images/no-sprite-icons/web_subway_ic-aca52d7934.png");
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  width: 17px;
  height: 20px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .ico-web-subway-ic, .route-list-container .bus-container .subway-icon {
      background-image: url("../images/no-sprite-icons-2x/web_subway_ic-41839b84fc.png"); } }

.ico-web_nofav_ic {
  background-image: url("../images/no-sprite-icons/web_nofav_ic-80b7d46d91.png");
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  width: 122px;
  height: 122px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .ico-web_nofav_ic {
      background-image: url("../images/no-sprite-icons-2x/web_nofav_ic-6968470bdb.png"); } }

.ico-search-none-ic, .no-history-container .none-search-pic {
  background-image: url("../images/no-sprite-icons/search_none_ic-7974827607.png");
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  width: 120px;
  height: 120px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .ico-search-none-ic, .no-history-container .none-search-pic {
      background-image: url("../images/no-sprite-icons-2x/search_none_ic-795880b559.png"); } }

.ico-morebus-lose {
  background-image: url("../images/no-sprite-icons/timetable_reconnect_ic-0e90c335b0.png");
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  width: 50px;
  height: 50px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .ico-morebus-lose {
      background-image: url("../images/no-sprite-icons-2x/timetable_reconnect_ic-51740c570a.png"); } }

.ico-morebus-wait {
  background-image: url("../images/no-sprite-icons/timetable_time_ic-009a975543.png");
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  width: 50px;
  height: 50px; }
  @media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
    .ico-morebus-wait {
      background-image: url("../images/no-sprite-icons-2x/timetable_time_ic-40e33d9f19.png"); } }

.sz-6 {
  width: 8px;
  height: 8px; }

.sz-8 {
  width: 8px;
  height: 8px; }

.sz-9 {
  width: 9px;
  height: 9px; }

.sz-10 {
  width: 10px;
  height: 10px; }

.sz-11 {
  width: 11px;
  height: 11px; }

.sz-12 {
  width: 12px;
  height: 12px; }

.sz-13 {
  width: 13px;
  height: 13px; }

.sz-14 {
  width: 14px;
  height: 14px; }

.sz-15 {
  width: 15px;
  height: 15px; }

.sz-16 {
  width: 16px;
  height: 16px; }

.sz-17 {
  width: 17px;
  height: 17px; }

.sz-18 {
  width: 18px;
  height: 18px; }

.sz-19 {
  width: 19px;
  height: 19px; }

.sz-20 {
  width: 20px;
  height: 20px; }

.sz-21 {
  width: 21px;
  height: 21px; }

.sz-22 {
  width: 22px;
  height: 22px; }

.sz-23 {
  width: 23px;
  height: 23px; }

.sz-24 {
  width: 24px;
  height: 24px; }

.sz-25 {
  width: 25px;
  height: 25px; }

.sz-26 {
  width: 26px;
  height: 26px; }

.sz-27 {
  width: 27px;
  height: 27px; }

.sz-28 {
  width: 28px;
  height: 28px; }

/*

.block {}
.block__element {}
.block--modifier {}

.person {}
.person__hand {}
.person--female {}
.person--female__hand {}
.person__hand--left {}

=========================================
example:

@include B(block) {
  color: #000;

  @include M(red) {
    color: red;

    @include E(header) {
      position: absolute;
      top: 0;
    }

    @include BE(header) {
      margin: 0;

      @include BE(back) {
        padding: 0;
      }
    }
  }
}

=> compile to:

.block {
  color: #000;
}
.block--red {
  color: red;
}
.block--red__header {
  position: absolute;
  top: 0;
}
.block--red .block__header {
  margin: 0;
}
.block--red .block__header .block__back {
  padding: 0;
}


*/
/*
selector-modifier($index $modifier $selector, ...)

root-modifier($selector)

parent-modifier($selector)


$modifier: replace prepend prefix suffix delete append


@example:

a {
  @include selector-modifier(1 prepand '.en') {
    color: red;
  }
}

=> .en a { color: red; }

*/
.btn {
  display: inline-block; }
  .btn:active {
    background-color: #62ADDD; }

.btn-red, .btn-grey, .btn-blue {
  -webkit-border-radius: 2px;
          border-radius: 2px;
  padding-left: 30px;
  padding-right: 30px;
  height: 40px; }

.btn-red:active {
  background-color: #D94400; }

.btn-blue:active {
  background-color: #62ADDD; }

.btn-grey, .btn-grey:active, .btn-grey:hover, .btn-grey:focus {
  background-color: #DDD; }

article, aside, canvas, details, figcaption, figure, footer, header, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, menu, nav, section {
  display: block; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html, body {
  font-size: 14px;
  line-height: 1.4285714286; }

button, input, select, textarea {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, Tahoma, sans-serif; }

pre, code {
  font-family: Monaco, Courier, "Courier New", monospace;
  white-space: pre-wrap;
  word-wrap: break-word; }

html, body, ul, li, ol, dl, dd, p {
  margin: 0;
  padding: 0; }

ul, ol {
  list-style: none; }

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

h1 {
  letter-spacing: -1px;
  font-size: 24px;
  margin: 10px 0; }

h2 {
  letter-spacing: -1px;
  font-size: 22px;
  margin: 20px 0; }

h3 {
  font-size: 19px;
  font-weight: 400;
  margin: 20px 0; }

h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0; }

h5 {
  font-size: 17px;
  font-weight: 300;
  margin: 10px 0; }

h6 {
  font-size: 15px;
  margin: 10px 0;
  font-weight: 700; }

fieldset, img {
  border: none;
  outline: none; }

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

a {
  outline: none !important; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0; }

button, .button, .btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

input[type=search] {
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

/*
  list 模块:
  list__item list__item--disabled list__item--active
  list__item__link
  list__item__link__text

  @example:
  <ul class="list">
    <li class="list__item list__item--active">
      <a class="list__item__link">
        <span class="list__item__link__text">Link</span>
      </a>
    </li>
  </ul>
*/
/*
  search 模块
  search search--on-focus search--on-keyword
  search__form
  search__history
  search__result
*/
.mask-white {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  top: 0;
  left: 0;
  z-index: 15; }

.mask {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  z-index: 15; }
  .mask .dialog {
    width: 270px;
    height: 118px;
    background-color: #ffffff;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    text-align: center; }
    .mask .dialog .dialog-msg {
      width: 100%;
      height: 74px;
      border-bottom: 1px solid #d8d8d8;
      line-height: 74px; }
    .mask .dialog .dialog-buttons {
      width: 100%;
      height: 43px;
      line-height: 43px; }
      .mask .dialog .dialog-buttons .dialog-cancel {
        float: left;
        width: 134.5px;
        height: 100%; }
      .mask .dialog .dialog-buttons .dialog-placeholder {
        width: 1px;
        height: 100%;
        float: left;
        background-color: #d8d8d8; }
      .mask .dialog .dialog-buttons .dialog-submit {
        float: right;
        width: 134.5px;
        height: 100%; }

.route-reload {
  width: 200px;
  height: 91px;
  text-align: center; }
  .route-reload .reload-msg {
    height: 46px;
    margin-bottom: 15px;
    color: #aaa; }
  .route-reload .reload-btn {
    height: 30px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    line-height: 30px;
    width: 100px;
    margin: 0 auto; }

.no-history-container {
  width: 180px;
  margin-top: 90px;
  text-align: center;
  position: absolute;
  left: 50%;
  margin-left: -90px; }
  .no-history-container .none-history-pic {
    width: 120px;
    height: 120px;
    margin: 0 auto 32.5px; }
  .no-history-container .none-search-pic {
    width: 120px;
    height: 120px;
    margin: 0 auto 32.5px; }
  .no-history-container .btn {
    width: 146px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    margin-top: 20px;
    -webkit-border-radius: 2px;
            border-radius: 2px;
    z-index: 1; }
    .no-history-container .btn:active {
      background-color: #62ADDD; }

.line-tip {
  width: 100%; }
  .line-tip .btn {
    width: 146px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    margin-top: 20px;
    -webkit-border-radius: 2px;
            border-radius: 2px;
    z-index: 1; }
    .line-tip .btn:active {
      background-color: #62ADDD; }
  .line-tip .no-favorite .btn {
    /*width: 116px;*/ }

.no-favorite, .no-recent-result {
  padding-top: 30px;
  overflow: hidden; }
  .no-favorite:before, .no-recent-result:before {
    content: '';
    display: block;
    position: relative;
    top: -30px; }

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

.around-refresh {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 20px;
  position: fixed;
  z-index: 4;
  width: 48px;
  height: 48px;
  background-color: rgba(58, 153, 217, 0.9);
  -webkit-box-shadow: #3498DB 0px 0px 1px;
          box-shadow: #3498DB 0px 0px 1px;
  left: 50%;
  margin-left: -24px; }

.around-refresh:active {
  opacity: 0.5; }

.ico_swap_transfer:active {
  opacity: 0.5; }

.ico-swap:active {
  opacity: 0.5; }

.has-footer .around-refresh {
  bottom: 80px; }

.has-privacy .around-refresh {
  bottom: 60px; }

.has-bottomMsg .around-refresh {
  bottom: 60px; }

.has-privacy-footer .around-refresh {
  bottom: 120px !important; }

.has-privacy-bottomMsg-footer .around-refresh {
  bottom: 130px !important; }

.has-privacy-bottomMsg .around-refresh {
  bottom: 80px !important; }

.search__history__clear {
  height: 42px;
  text-align: center; }
  .search__history__clear .link {
    display: inline-block;
    padding: 13px 40px 10px 40px; }

.padding-left-container {
  padding-left: 15px; }

.simple_list__item {
  position: relative;
  height: 44px; }

.simple_list__item__link {
  display: block;
  position: relative;
  padding: 12px 15px 12px 34px; }
  .simple_list__item__link .list__item__small_circle, .simple_list__item__link::after {
    content: '';
    display: block;
    position: absolute; }
  .simple_list__item__link .list__item__small_circle {
    width: 24px;
    height: 24px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    top: 10px;
    left: 0; }
  .simple_list__item__link .ico-home-bus-12 {
    top: 17px;
    left: 6px;
    position: absolute;
    z-index: 2; }
  .simple_list__item__link .ico-web_subway_ic {
    top: 16px;
    left: 6px;
    position: absolute;
    z-index: 2; }
  .simple_list__item__link .ico-home_station_ic {
    top: 17px;
    left: 5px;
    position: absolute;
    z-index: 2; }
  .simple_list__item__link .ico-search_place_ic {
    top: 14px;
    left: 5px;
    position: absolute;
    z-index: 2; }

.recent-ellipsis {
  padding-right: 55px; }

.simple_list__double__item__link {
  display: block;
  position: relative;
  padding: 5px 8px 0 34px; }

.location-item {
  position: relative;
  height: 60px; }
  .location-item .simple_list__double__item__link {
    height: 100%;
    padding: 10px 0 10px 34px; }
  .location-item .list__item__small_circle {
    top: 18px; }
  .location-item .ico-search_place_ic {
    top: 22px; }

.notice_box {
  background: url("https://cdn.web.chelaile.net.cn/img/mp-wx/notice@3x.png") no-repeat 15px center #3498DB;
  -webkit-background-size: 15px 15px;
          background-size: 15px;
  padding: 5px 10px 5px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff; }
  .notice_box .notice_con {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .notice_box .ic_notice_close {
    display: block;
    width: 15px;
    height: 15px;
    margin-left: 5px; }

@-webkit-keyframes kf-ellipsis {
  0% {
    width: 2px; }
  100% {
    width: 19px; } }

@keyframes kf-ellipsis {
  0% {
    width: 2px; }
  100% {
    width: 19px; } }

.has-header {
  padding-top: 49px; }
  .has-header .header {
    display: block !important;
    position: fixed;
    top: 0;
    width: 100%;
    height: 49px;
    z-index: 5; }
    .has-header .header .header__title {
      padding: 0 20%; }

.has-footer {
  padding-bottom: 58px; }

.display-footer.footer {
  display: block !important;
  position: fixed;
  bottom: -1px;
  width: 100%;
  height: 59px;
  z-index: 5; }

.display-footer.footer-ad {
  display: block !important;
  position: fixed;
  bottom: -1px;
  width: 100%;
  z-index: 5; }
  .display-footer.footer-ad img {
    display: block;
    width: 100%;
    height: auto; }
  .display-footer.footer-ad .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 9%; }
  .display-footer.footer-ad .btn-jump {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 91%; }

.footer-ad {
  display: none; }

.container {
  padding: 0;
  margin: 0 auto; }

.splash-page {
  display: none !important; }
  .splash-page.ng-cloak {
    position: fixed;
    display: block !important;
    background: #EBEBF1;
    color: #666;
    width: 100%;
    height: 100%;
    font-size: 17px;
    z-index: 5; }
    .splash-page.ng-cloak .page-loading-container {
      width: 100%;
      text-align: center;
      vertical-align: top; }
      .splash-page.ng-cloak .page-loading-container .ellipsis-container {
        display: inline-block;
        position: relative;
        top: 1px;
        left: -3px;
        width: 19px;
        text-align: left; }
        .splash-page.ng-cloak .page-loading-container .ellipsis-container span {
          -webkit-animation: kf-ellipsis 1s infinite;
                  animation: kf-ellipsis 1s infinite;
          display: inline-block;
          overflow: hidden; }

.header {
  overflow: hidden;
  display: none; }
  .header__title {
    margin: 0;
    width: 100%;
    height: 49px;
    display: block;
    line-height: 49px;
    text-align: center;
    font-weight: 700; }
  .header .header__back, .header .header__home {
    width: 49px;
    height: 49px;
    display: block;
    margin-top: -52px; }
    .header .header__back::after, .header .header__home::after {
      content: '';
      display: block; }
  .header__back {
    float: left; }
    .header__back::after {
      margin: 14px 0 0 14px; }
  .header__home {
    float: right; }
    .header__home::after {
      margin: 16px 0 0 14px; }

.footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 59px;
  display: none;
  background-color: rgba(0, 0, 0, 0.85);
  color: #f2f2f2; }
  .footer__left {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    padding-left: 62px; }
    .footer__left::before {
      content: '';
      background-image: url("../images/logo-b7942d3135.png");
      -webkit-background-size: 44px 44px;
              background-size: 44px 44px;
      width: 44px;
      height: 44px;
      position: absolute;
      top: 7px;
      left: 12px; }
  .footer__right {
    position: absolute;
    top: 14px;
    right: 0;
    z-index: 2; }
    .footer__right .btn {
      width: 100px;
      line-height: 30px;
      text-align: center; }
  .footer__closer {
    width: 34px;
    height: 30px;
    display: inline-block;
    vertical-align: top; }
    .footer__closer::after {
      content: '';
      margin: 10px 0 0 12px; }
  .footer__title {
    margin: 8px 0 0 0; }

@-webkit-keyframes kf-circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes kf-circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.load, .loading {
  padding: 8px;
  height: 44px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.ico-loading,
.ico-loading-36,
.loading-center .ico-loading,
.ico-loading-white {
  -webkit-animation: kf-circle 1s linear infinite;
          animation: kf-circle 1s linear infinite; }

.loading-text {
  margin-left: 4px;
  text-align: center; }

.loading-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.loading-bar {
  width: 249px;
  height: 10px;
  background: #F6F6F8;
  -webkit-box-shadow: inset 0px 3px 3px 0px #BCC0CE;
          box-shadow: inset 0px 3px 3px 0px #BCC0CE;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  margin-bottom: 24px; }

.loading-progress {
  height: 100%;
  width: 0;
  background-color: #3498DB;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  position: relative;
  -webkit-animation-name: progressAnimate;
          animation-name: progressAnimate;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }
  .loading-progress i {
    position: absolute;
    top: -10px;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    right: -14px; }

@-webkit-keyframes progressAnimate {
  0% {
    width: 0; }
  30% {
    width: 40%; }
  70% {
    width: 70%; }
  100% {
    width: 98%; } }

@keyframes progressAnimate {
  0% {
    width: 0; }
  30% {
    width: 40%; }
  70% {
    width: 70%; }
  100% {
    width: 98%; } }

.toast-container {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 6px;
          border-radius: 6px;
  color: #fff;
  width: 220px;
  left: 50%;
  margin-left: -110px;
  top: 50%;
  margin-top: -36px;
  line-height: 140%;
  padding: 15px;
  text-align: center;
  word-wrap: break-word;
  display: block;
  z-index: 99; }
  .toast-container .ico-loading-white {
    display: none; }
  .toast-container.loading-toast .ico-loading-white {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px; }

.reload {
  width: 100%; }
  .reload .error-tip {
    margin-bottom: 12px; }

.content-fold-bar-parent {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
  height: auto;
  -webkit-transition: height 0.25s ease;
  transition: height 0.25s ease; }

.content-fold-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 28px; }
  .content-fold-bar .mist-cover {
    position: absolute;
    top: -25px;
    bottom: 0;
    left: 0;
    right: 0;
    height: 27px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(251, 251, 253, 0.1)), color-stop(75%, #FFF));
    background: -webkit-linear-gradient(rgba(251, 251, 253, 0.1) 0, #FFF 75%);
    background: linear-gradient(rgba(251, 251, 253, 0.1) 0, #FFF 75%); }
  .content-fold-bar.up-list .mist-cover {
    display: none; }
  .content-fold-bar.up-list .ico-pull-downlist-ic, .content-fold-bar.up-list .route-list-container .bus-container .bus-content .next-station .total-station .down-arrow, .route-list-container .bus-container .bus-content .next-station .total-station .content-fold-bar.up-list .down-arrow, .content-fold-bar.up-list .page-around .more-station-tip .ico-home-expand, .page-around .more-station-tip .content-fold-bar.up-list .ico-home-expand {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }

.overlay-container {
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9; }

.active-highlight-area {
  position: fixed;
  width: 0;
  height: 0;
  z-index: 99999;
  background-color: rgba(153, 153, 153, 0.05);
  pointer-events: none; }

.page--switch-city {
  position: relative; }

.back-to-top-container {
  right: 16px; }

.city-table-wrapper {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; }

.table-caption {
  height: 40px;
  line-height: 40px; }

.city-table-container {
  width: 100%;
  padding: 0 16px; }
  .city-table-container .table-container {
    -webkit-border-radius: 2px;
            border-radius: 2px; }
  .city-table-container .table:after {
    content: '';
    display: block;
    clear: both;
    height: 0; }
  .city-table-container .table-item {
    display: inline-block;
    width: 25%;
    height: 35px;
    line-height: 35px;
    text-align: center;
    float: left;
    z-index: 10; }

.current-city-container .table-container,
.gps-city-container .table-container,
.all-city-indicator-container .table-container {
  width: 100px; }

.current-city-container .table-item,
.gps-city-container .table-item,
.all-city-indicator-container .table-item {
  width: 100%; }

.gps-city-container .table-container.full-width,
.all-city-indicator-container .table-container.full-width {
  width: 100%;
  position: relative; }

.gps-city-container .table-item.disabled,
.all-city-indicator-container .table-item.disabled {
  pointer-events: none;
  color: #8E8E94;
  text-align: left;
  padding-left: 20px; }

.gps-city-container .table-item.is-loading,
.all-city-indicator-container .table-item.is-loading {
  padding: 0;
  text-align: center; }

.gps-city-container .ico-container,
.all-city-indicator-container .ico-container {
  pointer-events: auto;
  position: absolute;
  right: 8px;
  top: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35px;
  height: 35px; }

.all-city-container {
  padding-bottom: 16px; }

.realtime-city-container .table-item,
.alphabet-city-container .table-item {
  height: 36px;
  border-bottom: 1px solid #EBEBF1;
  margin-bottom: -1px; }

.alphabet-table-container .table-item {
  width: 20%; }

.alphabet-city-container {
  border-top: 2px solid #EBEBF1; }

.realtime-city-container .table-container,
.alphabet-city-container {
  position: relative; }
  .realtime-city-container .table-container .middle-border-line, .realtime-city-container .table-container:before, .realtime-city-container .table-container:after,
  .alphabet-city-container .middle-border-line,
  .alphabet-city-container:before,
  .alphabet-city-container:after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    left: 75%;
    top: 0;
    height: 100%;
    border-left: 1px solid #EBEBF1; }
  .realtime-city-container .table-container:before,
  .alphabet-city-container:before {
    left: 25%;
    /*width: 25%;*/
    /*border-right: 1px solid $color-e;*/ }
  .realtime-city-container .table-container .middle-border-line,
  .alphabet-city-container .middle-border-line {
    left: 50%; }

.tabnav-container {
  height: 40px;
  background-color: #fff;
  width: 100%;
  border-top: none;
  z-index: 1; }

.tab-list {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  height: 100%;
  width: 100%; }

.tab-list .tab-item {
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  text-align: center;
  border-bottom: 1px solid #ccc;
  border-top: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.tab-list .tab-item.active {
  border-bottom: 2px solid #3498DB; }

.page-list {
  padding-top: 0;
  padding-bottom: 40px; }
  .page-list .ad-container {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 50px; }
    .page-list .ad-container .ico-ad {
      -webkit-background-size: 100% 100%;
              background-size: 100%;
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8BAMAAADI0sRBAAAALVBMVEUAAAD///////////////////////////////////////////////////////+hSKubAAAADnRSTlMAGON3+UnzyL1lAW1LHlo3Me8AAADUSURBVDjLYxgFFICVZe+QQPosVFnGvnco4IUAivSKd2igC0V6Hrr0SxTpunfOAkhWmbx7jiKd984Amcv87hkSLwhomgCKS4ECqnCeHpCH6hOgwCMEB5v0O/pI6z3ClNZDOC1IFVM6SBWFCyTQ+FSUPoDM5UGXRgODStpZ0AQiDmZiSBswMEMkwUwMaQEGRogkmElAmoDhJDoNAt4yMNzD4+/XDAz78Eg/2Sjth006Dz3QnqFlQTTwnEAGJpj9CRcehIseRC5+hGBggqB3qgjGKKAEAACwoLIHXkz+twAAAABJRU5ErkJggg==");
      width: 30px;
      height: 30px; }
  .page-list .tabnav-container {
    top: 50px;
    z-index: 4; }
  .page-list .list-title {
    width: 100%; }
  .page-list .div-flex {
    width: 100%;
    height: 50px;
    overflow: hidden; }
  .page-list .ico-chelaile-container {
    padding-top: 12px;
    width: 63px;
    overflow: hidden;
    -webkit-transition: width linear .01s;
    transition: width linear .01s; }
    .page-list .ico-chelaile-container .ico-home-chelaile {
      margin-left: 10px; }
  .page-list .homeBack {
    padding-top: 12px;
    width: 43px;
    overflow: hidden;
    -webkit-transition: width linear .01s;
    transition: width linear .01s; }
    .page-list .homeBack .icon_back_white_24px, .page-list .homeBack .ico-back, .page-list .homeBack .header__back::after {
      margin-left: 14px; }
  .page-list .div-imitate-search-ui {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 9px 12px 9px 5px; }
  .page-list .no-top-logo.div-imitate-search-ui {
    padding-left: 15px; }
  .page-list .div-search-ui-wrap {
    width: 100%;
    position: relative; }
  .page-list .div-imitate-input {
    outline: none;
    border: 1px solid #eaeaea;
    -webkit-border-radius: 15px;
            border-radius: 15px;
    font-size: 14px;
    padding: 0 18px 0 32px;
    height: 32px;
    text-overflow: ellipsis;
    overflow: hidden; }
  .page-list .search-icon {
    position: absolute;
    top: 4px;
    left: 8px;
    z-index: 2; }
  .page-list .switch-city {
    min-width: 48px;
    margin-right: 8px;
    line-height: 48px; }
    .page-list .switch-city .switch-city-link {
      display: inline-block;
      text-align: center;
      padding: 0 2px; }
    .page-list .switch-city .show-switch-city::after {
      display: inline-block;
      content: ''; }
    .page-list .switch-city .text {
      overflow: hidden;
      text-align: center;
      margin-right: 4px; }
  .page-list .adhere {
    text-align: center;
    height: 44px;
    margin-top: 5px; }

.display-gap-before:before, .complex-list-container:before, .page-transfer .transfer-info-container:before, .transfer-tips-list:before {
  content: '';
  display: block;
  height: 10px; }

.page-transfer .transfer-info-container .form-container {
  position: relative;
  height: 108px; }
  .page-transfer .transfer-info-container .form-container .hv100 {
    width: 100%; }

.page-transfer .transfer-info-container .vertical-line {
  width: 2px;
  height: 20px;
  position: absolute;
  top: 44px;
  left: 29px;
  z-index: 2;
  opacity: 0.5; }

.page-transfer .transfer-info-container .input-container {
  height: 43px;
  line-height: 43px;
  white-space: nowrap;
  background: #fff;
  position: relative; }
  .page-transfer .transfer-info-container .input-container.invalid {
    background-color: #FFFADB; }
  .page-transfer .transfer-info-container .input-container .ico-container {
    width: 16px;
    margin-left: 22px;
    margin-right: 18px;
    position: relative; }
    .page-transfer .transfer-info-container .input-container .ico-container .circle-center {
      margin-left: 3px; }

.page-transfer .transfer-info-container .ico-container .circle, .page-transfer .transfer-info-container .ico-container .simple-detail__content .station-list-container .list__item:after, .simple-detail__content .station-list-container .page-transfer .transfer-info-container .ico-container .list__item:after, .page-transfer .transfer-info-container .ico-container .transfer-plans-container .ico-container, .transfer-plans-container .page-transfer .transfer-info-container .ico-container .ico-container,
.page-transfer .transfer-info-container .ico-container .segment-list-container .ico-container, .segment-list-container .page-transfer .transfer-info-container .ico-container .ico-container, .page-transfer .transfer-info-container .ico-container .subway-code {
  display: inline-block;
  width: 10px;
  height: 10px; }

.page-transfer .transfer-info-container .input-container input[type="text"],
.page-transfer .transfer-info-container .input-container input[type="search"],
.page-transfer .transfer-info-container .input-container input[type="number"] {
  display: block; }

.page-transfer .transfer-info-container .input-container input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  line-height: 100%;
  background-color: transparent;
  margin-right: 62px; }

.page-transfer .transfer-info-container .input-container .input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  background-color: transparent;
  margin-right: 62px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none; }

.page-transfer .transfer-info-container .input-container .description {
  display: inline-block;
  height: 100%;
  width: 64px;
  margin-right: 8px;
  background-color: transparent; }

.page-transfer .transfer-info-container .switch-container {
  position: absolute;
  right: 0;
  top: 0;
  width: 62px;
  height: 85px;
  background-color: #fff;
  z-index: 2; }

.location-search-result-container {
  height: -webkit-calc(100% - 50px);
  height: calc(100% - 50px);
  top: 50px; }
  .location-search-result-container .list__item__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }

.transfer-tips-list .list__item {
  line-height: 43px;
  padding-left: 16px; }

.transfer-tips-list .list-pos {
  margin-bottom: 10px; }

.transfer-tips-list .clear-history {
  width: 100%;
  text-align: center;
  height: 43px; }

.transfer-tips-list .list__item {
  height: 43px;
  padding-left: 15px; }
  .transfer-tips-list .list__item .ico-container {
    display: block;
    height: 43px;
    text-align: center;
    position: relative; }
    .transfer-tips-list .list__item .ico-container .web-history {
      width: 16px;
      height: 16px;
      position: absolute;
      top: 13.5px;
      left: 0; }
  .transfer-tips-list .list__item .tip-title,
  .transfer-tips-list .list__item .tip-name {
    display: inline-block;
    margin-right: 15px; }
  .transfer-tips-list .list__item .tip-name {
    padding-left: 24px; }
  .transfer-tips-list .list__item .tip-description {
    display: inline-block;
    margin-right: 15px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }

.new-search-result {
  height: 60px;
  padding-left: 15px; }
  .new-search-result .result-li {
    padding: 10px 15px 10px 24px;
    position: relative;
    height: 100%; }
    .new-search-result .result-li .ico-web-history-ic, .new-search-result .result-li .transfer-tips-list .list__item .ico-container .web-history, .transfer-tips-list .list__item .ico-container .new-search-result .result-li .web-history {
      position: absolute;
      left: 0;
      top: 22px; }

.transfer-history-list-container {
  margin-top: 12px; }
  .transfer-history-list-container .title-description {
    padding-left: 16px;
    display: inline-block;
    height: 44px;
    width: 100%; }
  .transfer-history-list-container .vertical-line {
    width: 2px;
    height: 20px;
    position: absolute;
    top: 26px;
    left: 3px;
    z-index: 2;
    opacity: 0.5; }
  .transfer-history-list-container .transfer-history—list-item {
    height: 72px;
    position: relative;
    margin-left: 15px; }
  .transfer-history-list-container .oval-circle-container {
    position: relative;
    width: 21px;
    padding-top: 14px; }
  .transfer-history-list-container .enter-icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 72px;
    width: 36px; }
  .transfer-history-list-container .transfer-history-dpt {
    height: 36px;
    position: relative; }
  .transfer-history-list-container .transfer-history-dst {
    height: 36px;
    position: relative; }
  .transfer-history-list-container .transfer-history-ellipsis {
    max-width: -webkit-calc(100% - 56px);
    max-width: calc(100% - 56px); }

.transfer-clear-history,
.transfer-search-clear-history {
  width: 100%;
  text-align: center;
  height: 43px; }

.location-history-list-container .transfer-history-list-container {
  height: 42px;
  text-align: center; }
  .location-history-list-container .transfer-history-list-container .link {
    display: inline-block;
    padding: 13px 40px 10px 40px; }
    .location-history-list-container .transfer-history-list-container .link:active {
      color: #62ADDD; }

.page-line-search .result-list-container {
  margin-bottom: 10px; }

.page-line-search .subway-search-bar {
  height: 44px;
  width: 100%;
  position: relative; }
  .page-line-search .subway-search-bar .ico-subway-search-ic {
    position: relative;
    top: -1px;
    margin-right: 2px; }

.page-line-search .ico-enter-ic, .page-line-search .transfer-list-container .plans-container .plans-detail .right-arrow, .transfer-list-container .plans-container .plans-detail .page-line-search .right-arrow {
  position: absolute;
  right: 15px;
  top: 14px; }

.page-recent .list__item__delete {
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  right: 15px;
  top: 11px; }

.page-recent .shadow {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); }
  .page-recent .shadow .box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 260px;
    height: 160px;
    background: #fff;
    -webkit-border-radius: 6px;
            border-radius: 6px; }
    .page-recent .shadow .box .shadow_con {
      margin-bottom: 10px; }
    .page-recent .shadow .box .shadow_tit {
      text-align: center;
      margin: 10px 0;
      font-size: 18px;
      font-weight: bold; }
    .page-recent .shadow .box p {
      padding-left: 30px; }
    .page-recent .shadow .box .shadow_btn {
      width: 100px;
      height: 34px;
      text-align: center;
      line-height: 34px;
      margin: 0 auto;
      background: #3498DB;
      -webkit-border-radius: 8px;
              border-radius: 8px;
      color: #fff; }

.detail__top {
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px 0 10px; }
  .detail__top .line-review {
    display: block;
    position: absolute;
    top: 26px;
    right: 16px; }
  .detail__top .adstyle-basic {
    position: absolute;
    z-index: 2;
    right: 0;
    top: -1px; }

.detail__content {
  /* ATTETION: never set position: relative to this block
         * otherwise, it brokes its parent x-axis scroll behavior
         */
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  /* 隐藏横向滑动的滑动条 */ }
  .detail__content::-webkit-scrollbar {
    display: none; }
  .detail__content .station-list-container {
    position: relative; }
  .detail__content .line-container {
    height: 10px;
    position: absolute;
    top: -8px;
    left: 10px;
    -webkit-border-radius: 4px;
            border-radius: 4px; }
    .detail__content .line-container .before-line, .detail__content .line-container .after-line {
      height: 100%; }
    .detail__content .line-container .after-line {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .detail__content .line-container .traffic-level {
      height: 7px;
      float: left; }
    .detail__content .line-container .traffic-level-first {
      -webkit-border-radius: 4px 0 0 4px;
              border-radius: 4px 0 0 4px; }
    .detail__content .line-container .traffic-level-last {
      -webkit-border-radius: 0 4px 4px 0;
              border-radius: 0 4px 4px 0; }
  .detail__content .subway_ic {
    width: 18px;
    text-align: center;
    height: 18px;
    margin: 5px 0 5px 21px; }
  .detail__content .list {
    height: 100%;
    margin: 55px 10px 0;
    font-size: 0; }
  .detail__content .list__item {
    width: 60px;
    height: auto;
    display: inline-block;
    position: relative;
    vertical-align: top; }
    .detail__content .list__item .current-bg-cover, .detail__content .list__item .current-location, .detail__content .list__item .current-arrow {
      display: none; }
    .detail__content .list__item .bus-coming, .detail__content .list__item .bus-here {
      position: absolute;
      top: -23px;
      overflow: visible; }
      .detail__content .list__item .bus-coming i, .detail__content .list__item .bus-here i {
        display: block;
        position: relative;
        top: -10px;
        width: 22px;
        height: 12px;
        line-height: 12px;
        font-style: normal;
        text-align: center; }
    .detail__content .list__item .bus-coming {
      left: -10px; }
      .detail__content .list__item .bus-coming.bus-nearest {
        left: -16px; }
    .detail__content .list__item .bus-here {
      left: 20px; }
      .detail__content .list__item .bus-here.bus-current {
        left: 14px; }
      .detail__content .list__item .bus-here.bus-nearest {
        left: 15px; }
    .detail__content .list__item .bus-nearest,
    .detail__content .list__item .bus-current {
      top: -32px; }
      .detail__content .list__item .bus-nearest i,
      .detail__content .list__item .bus-current i {
        width: 32px; }
    .detail__content .list__item .capacity-bus-coming, .detail__content .list__item .capacity-bus-here {
      position: absolute;
      top: -39px;
      overflow: visible; }
      .detail__content .list__item .capacity-bus-coming i, .detail__content .list__item .capacity-bus-here i {
        display: block;
        position: relative;
        top: -12px;
        width: 22px;
        height: 12px;
        line-height: 12px;
        font-style: normal;
        text-align: center; }
    .detail__content .list__item .capacity-bus-coming {
      left: -12px; }
    .detail__content .list__item .capacity-bus-here {
      left: 16px; }
    .detail__content .list__item .tags {
      position: absolute;
      top: 20px;
      font-size: 10px;
      left: 100%;
      -webkit-transform: translateX(-80%);
              transform: translateX(-80%); }
    .detail__content .list__item .tag {
      display: block;
      border: 1px solid #999;
      color: #999;
      padding: 4px 0;
      -webkit-border-radius: 2px;
              border-radius: 2px;
      text-align: center;
      width: 16px;
      word-break: break-word;
      white-space: normal;
      line-height: 1.2;
      margin-bottom: 2px; }
  .detail__content .list__item__link {
    position: relative;
    display: block;
    width: 18px;
    font-size: 18px;
    line-height: 20px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    text-align: center;
    word-break: break-all;
    word-wrap: break-word; }
    .detail__content .list__item__link .number {
      display: inline-block;
      height: 16px;
      width: 100%;
      margin-bottom: 5px; }
    .detail__content .list__item__link .name {
      width: 100%; }
    .detail__content .list__item__link::before {
      content: '';
      width: 10px;
      height: 10px;
      display: block;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      position: absolute;
      top: -18px;
      left: 4px; }
  .detail__content .list__item--active .current-bg-cover {
    position: absolute;
    display: block;
    top: -10px;
    left: 23px;
    z-index: 2; }
  .detail__content .list__item--active .list__item__link {
    width: 20px; }
  .detail__content .list__item--active .current-location {
    position: absolute;
    display: inline-block; }
  .detail__content .list__item--active .default-location {
    top: -36px;
    left: 20px; }
  .detail__content .list__item--active .ico-ad-location {
    left: 18px;
    top: -37px;
    width: 24px;
    height: 24px; }
  .detail__content .list__item--active .current-arrow {
    position: absolute;
    display: inline-block;
    top: -56px;
    left: 23px;
    z-index: 2; }

.detail__bottom {
  position: absolute;
  z-index: 5;
  bottom: 0;
  width: 100%; }
  .detail__bottom ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: justify;
        -ms-flex-pack: justify;
            justify-content: justify; }
  .detail__bottom li {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    height: 50px; }
    .detail__bottom li .ico {
      display: block;
      margin-bottom: 3px; }
    .detail__bottom li span {
      display: block; }
  .detail__bottom.show-fav .swap-container, .detail__bottom.show-fav .fav-container, .detail__bottom.show-fav .ads, .detail__bottom.show-fav .same-station-container, .detail__bottom.show-fav .refresh-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .detail__bottom.hide-fav .fav-container, .detail__bottom.hide-fav .ads {
    display: none; }
  .detail__bottom.hide-fav .swap-container, .detail__bottom.hide-fav .refresh-container, .detail__bottom.hide-fav .same-station-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }

.line-map {
  height: initial;
  line-height: initial;
  padding: 6px 10px;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px; }

.right-up-fav {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -16px; }

.page-detail {
  position: relative;
  height: 100vh; }

.has-header .page-detail {
  height: -webkit-calc(100vh - 50px);
  height: calc(100vh - 50px); }

.has-footer .page-detail {
  height: -webkit-calc(100vh - 58px);
  height: calc(100vh - 58px); }

[class~="has-header"][class~="has-footer"] .page-detail {
  height: -webkit-calc(100vh - 108px);
  height: calc(100vh - 108px); }

.bottom-ad {
  width: 125px;
  height: 120px;
  position: fixed;
  right: 0;
  bottom: 60px;
  display: none; }

.has-footer .bottom-ad {
  bottom: 118px; }

body::-webkit-scrollbar, .page-detail::-webkit-scrollbar {
  display: none !important; }

.line-detial-tips {
  background-color: #fff;
  padding: 0 10px; }

.notice-module {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); }
  .notice-module .module {
    position: absolute;
    left: 50%;
    top: 46%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 294px;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    background: #fff;
    overflow: auto;
    padding: 10px; }
    .notice-module .module .main {
      margin-bottom: 20px;
      max-height: 200px;
      overflow: auto;
      word-wrap: break-word; }
    .notice-module .module .btn {
      width: 180px;
      margin-left: 50px;
      -webkit-border-radius: 6px;
              border-radius: 6px; }

.detail-top-left {
  width: 76%; }

.has-header .linemap-container .map,
.has-header .location-search-container .map {
  top: 49px; }

.linemap-container .map,
.location-search-container .map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden; }

.linemap-container .info-window,
.location-search-container .info-window {
  padding: 6px 12px;
  -webkit-box-shadow: 1px 1px 5px #888;
          box-shadow: 1px 1px 5px #888;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  white-space: nowrap; }

.linemap-container .angle,
.location-search-container .angle {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  position: absolute;
  left: -6px;
  bottom: -6px;
  margin-left: 50%; }

.linemap-container .refresh-btn,
.location-search-container .refresh-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #fff;
  padding: 12px;
  -webkit-box-shadow: 1px 1px 5px #888;
          box-shadow: 1px 1px 5px #888; }

.marker_station {
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 2px solid #fff; }

.marker_start {
  background: #44cba9; }

.marker_off {
  background: #FF5500; }

.marker_pass {
  background: #3498DB;
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 2px solid #fff; }

.marker_label {
  color: #3498DB;
  padding: 5px 10px;
  -webkit-border-radius: 5px;
  border-radius: 20px;
  margin-top: 5px;
  -webkit-box-shadow: 1px 1px 5px #888888;
  box-shadow: 1px 1px 5px #888888;
  white-space: nowrap;
  position: relative;
  left: -40%; }

.icon_map_bus_inner {
  white-space: nowrap;
  position: relative;
  background-color: #fff;
  border: 1px solid #3498db;
  color: #333;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 0 6px;
  font-size: 12px; }
  .icon_map_bus_inner:after {
    position: absolute;
    bottom: -6px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 10px;
    height: 6px;
    content: '';
    background: url("../images/zhoushan/Slice@2x.png") no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%; }

.bus-detail {
  position: relative;
  height: 133px;
  margin: 10px 10px 0;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  /*box-shadow: 0 1px 0 $color-d;*/ }
  .bus-detail .last-report-time-container {
    position: absolute;
    right: 0;
    top: -20px; }
    .bus-detail .last-report-time-container .ico-warning-red {
      position: relative;
      top: -2px; }
  .bus-detail .shelter {
    position: absolute;
    bottom: -10px;
    display: block;
    z-index: 3; }
    .bus-detail .shelter .block-shelter, .bus-detail .shelter .gradient-shelter {
      height: 10px;
      width: 12px;
      float: left; }
    .bus-detail .shelter .gradient-shelter {
      width: 16px; }
    .bus-detail .shelter .block-shelter {
      background-color: #EBEBF1; }
    .bus-detail .shelter.left-shelter {
      left: -10px; }
      .bus-detail .shelter.left-shelter .gradient-shelter {
        background: -webkit-gradient(linear, left top, right top, from(#ebebf1), to(rgba(235, 235, 241, 0)));
        background: -webkit-linear-gradient(left, #ebebf1, rgba(235, 235, 241, 0));
        background: linear-gradient(to right, #ebebf1, rgba(235, 235, 241, 0)); }
    .bus-detail .shelter.right-shelter {
      right: -10px; }
      .bus-detail .shelter.right-shelter .gradient-shelter {
        background: -webkit-gradient(linear, right top, left top, from(#ebebf1), to(rgba(235, 235, 241, 0)));
        background: -webkit-linear-gradient(right, #ebebf1, rgba(235, 235, 241, 0));
        background: linear-gradient(to left, #ebebf1, rgba(235, 235, 241, 0)); }
  .bus-detail .flex-container {
    width: 100%;
    height: 100px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: visible; }
    .bus-detail .flex-container .main-detail, .bus-detail .flex-container .secondary-detail {
      text-align: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    .bus-detail .flex-container .secondary-detail {
      position: relative; }
      .bus-detail .flex-container .secondary-detail .traffic-time {
        position: relative; }
    .bus-detail .flex-container .baseline {
      -webkit-box-align: baseline;
      -webkit-align-items: baseline;
          -ms-flex-align: baseline;
              align-items: baseline; }
      .bus-detail .flex-container .baseline .unit-text {
        display: inline-block;
        position: relative;
        top: -1px; }
    .bus-detail .flex-container .main-detail {
      width: 100%; }
      .bus-detail .flex-container .main-detail .ico {
        margin-right: 8px; }
      .bus-detail .flex-container .main-detail .distance {
        display: inline-block;
        margin-left: 5px; }
    .bus-detail .flex-container .detail-seperator {
      background-color: #DDD;
      height: 75px;
      width: 1px; }
    .bus-detail .flex-container.show-travel-time .main-detail {
      width: 50%; }
  .bus-detail .card-action-list-container {
    width: 100%;
    height: 44px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .bus-detail .card-action-list-container .card-action-container {
      height: 100%;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .bus-detail .card-action-list-container .card-action-container .ico {
        position: relative;
        top: 0;
        margin-left: 5px; }
  .bus-detail .time-table {
    width: 100%;
    height: 88px; }
  .bus-detail .nearest-bus-indicator {
    position: absolute;
    width: 56px;
    height: 26px;
    line-height: 26px;
    display: block;
    right: 0;
    text-align: center; }
  .bus-detail .nearest-bus-indicator,
  .bus-detail .time-table-item.nearest-bus .index-indicator {
    top: -2px;
    -webkit-border-radius: 2px;
            border-radius: 2px; }
    .bus-detail .nearest-bus-indicator:before,
    .bus-detail .time-table-item.nearest-bus .index-indicator:before {
      content: '';
      display: block;
      position: absolute;
      bottom: -4px;
      left: 24px;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid #FF5722; }
  .bus-detail .time-table-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative; }
    .bus-detail .time-table-item .index-indicator {
      margin-left: -28px;
      width: 56px;
      height: 26px;
      line-height: 26px; }
    .bus-detail .time-table-item .bus-detail-delay {
      position: absolute;
      width: 24px;
      height: 24px;
      top: -18px;
      right: -49px;
      z-index: 1; }
    .bus-detail .time-table-item .bus-detail-delay-content {
      position: absolute;
      width: 95px;
      border: 1px solid #8E8E94;
      height: 20px;
      -webkit-border-radius: 2px;
              border-radius: 2px;
      line-height: 18px;
      right: -51px;
      top: 8px;
      z-index: 3; }
      .bus-detail .time-table-item .bus-detail-delay-content .triangle-up {
        width: 0;
        height: 0;
        border-width: 0 6px 6px;
        border-style: solid;
        position: absolute;
        right: 8px;
        z-index: 2; }
      .bus-detail .time-table-item .bus-detail-delay-content .triangle-9 {
        border-color: transparent transparent #8E8E94;
        bottom: 18px; }
      .bus-detail .time-table-item .bus-detail-delay-content .triangle-f {
        border-color: transparent transparent #fff;
        bottom: 17px; }
    .bus-detail .time-table-item .normal {
      position: relative; }
    .bus-detail .time-table-item .time-estimate {
      width: 82px;
      margin-left: -41px;
      bottom: -10px;
      display: inline-block;
      position: absolute;
      text-align: center;
      left: 50%; }
      .bus-detail .time-table-item .time-estimate .time-ico {
        position: relative; }
        .bus-detail .time-table-item .time-estimate .time-ico i {
          position: absolute;
          top: -8px;
          right: -1px; }
      .bus-detail .time-table-item .time-estimate .time-arrivaltime-ico {
        position: relative; }
        .bus-detail .time-table-item .time-estimate .time-arrivaltime-ico i {
          position: absolute;
          top: 0px;
          right: -10px; }
      .bus-detail .time-table-item .time-estimate label {
        display: inline-block; }
    .bus-detail .time-table-item .time-interval {
      width: 100px;
      margin-left: -50px;
      bottom: -23px;
      display: inline-block;
      position: absolute;
      text-align: center;
      left: 50%; }
    .bus-detail .time-table-item.nearest-bus .time-estimate {
      bottom: -10px; }
    .bus-detail .time-table-item.nearest-bus .time-interval {
      bottom: -23px; }
    .bus-detail .time-table-item.following-bus .index-indicator {
      top: 7px; }
    .bus-detail .time-table-item.following-bus:before {
      content: '';
      display: block;
      position: absolute;
      top: 26px;
      left: 0;
      width: 1px;
      height: 48px;
      background-color: #DDD; }
    .bus-detail .time-table-item .bus-detail-tomorrow {
      position: absolute;
      border: 1px solid #3498DB;
      width: 28px;
      height: 14px;
      -webkit-border-radius: 2px;
              border-radius: 2px;
      top: -17px;
      right: -70px; }
    .bus-detail .time-table-item .tag {
      position: absolute;
      right: 5px;
      top: 5px;
      width: 30px;
      height: 16px;
      -webkit-border-radius: 2px;
              border-radius: 2px;
      text-align: center; }
    .bus-detail .time-table-item .table-time {
      position: absolute;
      right: 0;
      top: 15px;
      height: 20px;
      padding: 0 5px 0 20px;
      -webkit-border-bottom-left-radius: 10px;
              border-bottom-left-radius: 10px;
      -webkit-border-top-left-radius: 10px;
              border-top-left-radius: 10px; }
      .bus-detail .time-table-item .table-time .ico-linedetail_timetable_ic {
        position: absolute;
        top: 4px;
        left: 4px; }
  .bus-detail .time-table.only-one-bus .index-indicator {
    left: auto;
    right: 0; }

.time-table-page .top {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2; }
  .time-table-page .top .top-bar {
    width: 100%;
    height: 60px;
    padding: 10px 15px; }
  .time-table-page .top .placeholder {
    width: 100%;
    height: 10px; }

.time-table-page .table-container {
  margin: 70px 0 50px; }
  .time-table-page .table-container .times-list {
    margin-bottom: 1px; }
    .time-table-page .table-container .times-list .title {
      width: 100%;
      height: 44px;
      padding: 0 35px;
      position: relative; }
      .time-table-page .table-container .times-list .title .tag-type {
        -webkit-border-radius: 2px;
                border-radius: 2px;
        width: 42px;
        height: 16px;
        padding: 1px 5px;
        margin-left: 10px; }
      .time-table-page .table-container .times-list .title .icon_timetable_watch {
        position: absolute;
        left: 15px;
        top: 50%;
        margin-top: -6px; }
      .time-table-page .table-container .times-list .title .icon_timetable_open {
        position: absolute;
        top: 50%;
        margin-top: -6px;
        right: 15px; }
      .time-table-page .table-container .times-list .title .icon_timetable_open_rotate {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    .time-table-page .table-container .times-list .content {
      width: 100%;
      padding: 15px 0 5px 0;
      text-align: center; }
      .time-table-page .table-container .times-list .content .block {
        float: left;
        width: 25%;
        height: 18px;
        margin-bottom: 10px; }
        .time-table-page .table-container .times-list .content .block .time-text {
          position: relative; }
          .time-table-page .table-container .times-list .content .block .time-text .circle, .time-table-page .table-container .times-list .content .block .time-text .simple-detail__content .station-list-container .list__item:after, .simple-detail__content .station-list-container .time-table-page .table-container .times-list .content .block .time-text .list__item:after, .time-table-page .table-container .times-list .content .block .time-text .transfer-plans-container .ico-container, .transfer-plans-container .time-table-page .table-container .times-list .content .block .time-text .ico-container,
          .time-table-page .table-container .times-list .content .block .time-text .segment-list-container .ico-container, .segment-list-container .time-table-page .table-container .times-list .content .block .time-text .ico-container, .time-table-page .table-container .times-list .content .block .time-text .subway-code {
            position: absolute;
            left: -8px;
            top: 5px;
            width: 5px;
            height: 5px;
            display: block;
            -webkit-border-radius: 50%;
                    border-radius: 50%; }

.time-table-page .times-information {
  margin-bottom: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px;
  background-color: rgba(255, 87, 33, 0.8); }
  .time-table-page .times-information .desc_timetable_information {
    width: 100%;
    height: 100%;
    line-height: 22px;
    margin-left: 8px; }

.station-detail .destination {
  width: 100%;
  height: 44px;
  margin-bottom: 10px;
  position: relative; }
  .station-detail .destination .ico-weixin_choose_ic {
    position: relative;
    top: 2px;
    margin-right: 5px; }
  .station-detail .destination .clear {
    position: absolute;
    right: 15px;
    top: 9px;
    width: 46px;
    height: 26px;
    -webkit-border-radius: 2px;
            border-radius: 2px; }

.station-detail .dest-ellipsis {
  padding-right: 71px; }

.destination-search .bus-station {
  width: 100%;
  height: 44px; }

.page--simple-detail {
  height: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.simple-detail-container {
  height: 100%; }

.simple-detail__top {
  position: relative;
  height: 70px;
  padding: 16px; }
  .simple-detail__top .swap-container {
    position: absolute;
    top: 11px;
    right: 12px;
    height: 48px;
    width: 48px;
    padding: 0 8px;
    text-align: center; }

.simple-detail__content {
  height: -webkit-calc(100% - 70px);
  height: calc(100% - 70px);
  overflow-x: hidden;
  overflow-y: scroll;
  padding-left: 32px; }
  .simple-detail__content .station-list-container .list__item {
    position: relative;
    height: 50px;
    padding: 12.5px 0 12.5px 18px; }
    .simple-detail__content .station-list-container .list__item .list__item__link {
      display: block;
      height: 25px; }
    .simple-detail__content .station-list-container .list__item span {
      display: inline-block; }
    .simple-detail__content .station-list-container .list__item .number {
      position: relative;
      margin-right: 6px;
      top: -2px; }
    .simple-detail__content .station-list-container .list__item:before, .simple-detail__content .station-list-container .list__item:after {
      content: '';
      display: block;
      position: absolute; }
    .simple-detail__content .station-list-container .list__item:before {
      width: 7px;
      height: 100%;
      left: 0;
      top: 0; }
    .simple-detail__content .station-list-container .list__item:after {
      width: 5px;
      height: 5px;
      top: 22.5px;
      left: 1px; }

.transfer-plans-container,
.segment-list-container {
  position: relative; }
  .transfer-plans-container .list__item,
  .segment-list-container .list__item {
    position: relative;
    height: 72px;
    overflow: hidden;
    padding: 16px 30px 0 16px; }
  .transfer-plans-container .ico-container,
  .segment-list-container .ico-container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
    width: 40px;
    margin-right: 16px; }
  .transfer-plans-container .plan-description-container,
  .segment-list-container .plan-description-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .transfer-plans-container .plan-description-container em,
    .segment-list-container .plan-description-container em {
      color: #000; }
  .transfer-plans-container .plan-summary span, .transfer-plans-container .plan-summary i,
  .segment-list-container .plan-summary span,
  .segment-list-container .plan-summary i {
    display: inline-block;
    vertical-align: text-top; }

.transfer-plans-container .list__item:after {
  content: '';
  position: absolute;
  top: 21px;
  right: 16px; }

.segment-list-container {
  overflow: hidden; }
  .segment-list-container:before {
    content: '';
    display: block;
    width: 2px;
    height: -webkit-calc(100% - 66px);
    height: calc(100% - 66px);
    background-color: #D8D8D8;
    position: absolute;
    top: 32px;
    left: 32px; }
  .segment-list-container .list__item {
    height: 66px;
    padding: 13px 0 0 13px; }
  .segment-list-container .ico-container.bg-slightblue,
  .segment-list-container .ico-container.bg-lightblue,
  .segment-list-container .dot {
    outline: 2px solid #fff; }
  .segment-list-container .dot {
    /*position: relative;*/
    /*top: -8px;*/
    height: 12px;
    width: 12px; }
  .segment-list-container .plan-summary {
    margin: 18px 0 10px 28px; }

.route-list-container .starting-point-container {
  width: 100%;
  height: 36px;
  padding: 15px 15px 0 63px;
  position: relative; }
  .route-list-container .starting-point-container .point {
    position: absolute;
    top: 22px;
    left: 40px;
    width: 10px;
    height: 10px;
    border: 2px solid #44cba9;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    background-color: #fff; }
  .route-list-container .starting-point-container .start-line {
    width: 2px;
    height: 10px;
    position: absolute;
    background-color: #44cba9;
    bottom: 0;
    left: 44px; }
  .route-list-container .starting-point-container .point-text {
    position: absolute;
    left: 19px;
    top: -10px; }

.route-list-container .walk-container {
  width: 100%;
  height: 44px;
  padding: 0 0 0 44px;
  position: relative; }
  .route-list-container .walk-container .walking-man {
    position: absolute;
    top: 13px;
    left: 16px; }
  .route-list-container .walk-container .walk-content {
    width: 100%;
    height: 100%;
    border-left: 2px solid #44cba9;
    padding-left: 19px; }

.route-list-container .bg-bus {
  background-color: rgba(52, 151, 219, 0.1); }

.route-list-container .bg-subway-point {
  background-color: #aaa; }

.route-list-container .bd-bus {
  border-left: 2px solid #3498db; }

.route-list-container .bd-subway {
  border-left: 2px solid #aaa; }

.route-list-container .bus-container {
  width: 100%;
  padding: 0 15px 0 44px;
  position: relative; }
  .route-list-container .bus-container .bus-icon {
    position: absolute;
    top: 14px;
    left: 14px; }
  .route-list-container .bus-container .subway-icon {
    position: absolute;
    top: 13px;
    left: 14px; }
  .route-list-container .bus-container .bus-content {
    padding-left: 19px; }
    .route-list-container .bus-container .bus-content .bus-point, .route-list-container .bus-container .bus-content .subway-point {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      background-color: #3498db;
      position: absolute;
      top: 50%;
      margin-top: -4px;
      left: -24px; }
    .route-list-container .bus-container .bus-content .subway-point {
      background-color: #aaa; }
    .route-list-container .bus-container .bus-content .go-up {
      width: 100%;
      height: 44px;
      position: relative; }
    .route-list-container .bus-container .bus-content .bus-line {
      width: 100%;
      position: relative; }
      .route-list-container .bus-container .bus-content .bus-line .line-con {
        padding-right: 70px; }
      .route-list-container .bus-container .bus-content .bus-line .time-refresh {
        width: 70px;
        position: absolute;
        top: 0;
        right: 0;
        text-align: right; }
    .route-list-container .bus-container .bus-content .next-station {
      width: 100%;
      position: relative;
      margin-top: 15px; }
      .route-list-container .bus-container .bus-content .next-station .total-station {
        position: absolute;
        top: 0;
        right: 0;
        padding-right: 16px; }
        .route-list-container .bus-container .bus-content .next-station .total-station .down-arrow {
          position: absolute;
          right: 0;
          top: 9px; }
        .route-list-container .bus-container .bus-content .next-station .total-station .up-arrow {
          position: absolute;
          right: 0;
          top: 9px; }
      .route-list-container .bus-container .bus-content .next-station .station-name, .route-list-container .bus-container .bus-content .next-station .subway-name {
        width: 100%;
        height: 23px;
        position: relative; }
        .route-list-container .bus-container .bus-content .next-station .station-name:before, .route-list-container .bus-container .bus-content .next-station .subway-name:before {
          content: '';
          width: 6px;
          height: 6px;
          background-color: #3498db;
          border-radius: 3px;
          -webkit-border-radius: 3px;
          position: absolute;
          left: -23px;
          top: 50%;
          margin-top: -4px; }
      .route-list-container .bus-container .bus-content .next-station .subway-name:before {
        background-color: #aaa; }

.route-list-container .end-point-container {
  width: 100%;
  height: 36px;
  padding: 0 0 25px 44px; }
  .route-list-container .end-point-container .end-point-content {
    position: relative;
    border-left: 2px solid #44cba9;
    width: 100%;
    height: 100%;
    padding: 0 15px 0 19px; }
    .route-list-container .end-point-container .end-point-content .end-point {
      position: absolute;
      bottom: -6px;
      left: -6px;
      width: 10px;
      height: 10px;
      -webkit-border-radius: 5px;
              border-radius: 5px;
      background-color: #fff; }
    .route-list-container .end-point-container .end-point-content .point-text {
      position: absolute;
      left: 19px;
      bottom: -10px; }

.route-list-container .portable {
  padding: 10px;
  position: relative;
  background-color: #fff;
  margin-top: 10px; }
  .route-list-container .portable .portable-msg {
    position: relative;
    padding-left: 31px;
    height: 33px; }
    .route-list-container .portable .portable-msg .common, .route-list-container .portable .portable-msg .zhiti-ic, .route-list-container .portable .portable-msg .futi_ic, .route-list-container .portable .portable-msg .web_exit_ic, .route-list-container .portable .portable-msg .louti_ic {
      width: 16px;
      height: 16px;
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -8px; }
  .route-list-container .portable .up-arrow {
    width: 14px;
    height: 7px;
    position: absolute;
    left: 15px;
    top: -6.5px; }
  .route-list-container .portable .tips-blue {
    width: 14px;
    height: 14px;
    top: 20px;
    right: 20px;
    position: absolute;
    z-index: 5; }

.transfer-list-container {
  width: 100%; }
  .transfer-list-container .plans-container {
    margin-bottom: 10px;
    padding-left: 15px; }
    .transfer-list-container .plans-container .plans-detail {
      padding: 15px 43px 15px 0;
      position: relative; }
      .transfer-list-container .plans-container .plans-detail .route-container {
        margin-bottom: 10px; }
        .transfer-list-container .plans-container .plans-detail .route-container .plan {
          padding: 0 4px 0 14px;
          position: relative; }
          .transfer-list-container .plans-container .plans-detail .route-container .plan .bus-icon {
            position: absolute;
            width: 12px;
            height: 14px;
            left: 0;
            top: 2px; }
          .transfer-list-container .plans-container .plans-detail .route-container .plan .subway-icon {
            position: absolute;
            width: 12px;
            height: 14px;
            left: 0;
            top: 2px; }
      .transfer-list-container .plans-container .plans-detail .right-arrow {
        position: absolute;
        width: 6px;
        height: 12px;
        right: 16px;
        top: 50%;
        margin-top: -6px; }
      .transfer-list-container .plans-container .plans-detail .walking {
        padding-left: 14px;
        position: relative; }
        .transfer-list-container .plans-container .plans-detail .walking .walking-man {
          position: absolute;
          left: 0;
          top: 0; }
    .transfer-list-container .plans-container .easy-msg {
      height: 30px; }

.img-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 6;
  background-color: rgba(0, 0, 0, 0.3); }

.result-container {
  width: 100%;
  text-align: center; }
  .result-container .result {
    text-align: center; }
  .result-container .line-info {
    margin-top: 16px; }
  .result-container .ico {
    margin-bottom: 16px; }
  .result-container em {
    font-size: 18px; }
  .result-container .btn-blue {
    /*@extend .center-block;*/
    display: inline-block;
    margin-top: 16px;
    padding: 10px 30px; }
  .result-container .jump-container {
    margin-top: 16px; }

.more-bus {
  padding-top: 10px;
  padding-bottom: 66px; }
  .more-bus .more-bus-detail, .more-bus .more-bus-number, .more-bus .more-bus-traffic-level, .more-bus .more-bus-last-report-time-container {
    padding-left: 15px; }
    .more-bus .more-bus-detail .more-bus-item, .more-bus .more-bus-number .more-bus-item, .more-bus .more-bus-traffic-level .more-bus-item, .more-bus .more-bus-last-report-time-container .more-bus-item {
      position: relative;
      height: 60px;
      padding-top: 10px; }
      .more-bus .more-bus-detail .more-bus-item .ico-home-signal-b, .more-bus .more-bus-number .more-bus-item .ico-home-signal-b, .more-bus .more-bus-traffic-level .more-bus-item .ico-home-signal-b, .more-bus .more-bus-last-report-time-container .more-bus-item .ico-home-signal-b, .more-bus .more-bus-detail .more-bus-item .around-card .line-info .line-time .normal, .around-card .line-info .line-time .more-bus .more-bus-detail .more-bus-item .normal, .more-bus .more-bus-number .more-bus-item .around-card .line-info .line-time .normal, .around-card .line-info .line-time .more-bus .more-bus-number .more-bus-item .normal, .more-bus .more-bus-traffic-level .more-bus-item .around-card .line-info .line-time .normal, .around-card .line-info .line-time .more-bus .more-bus-traffic-level .more-bus-item .normal, .more-bus .more-bus-last-report-time-container .more-bus-item .around-card .line-info .line-time .normal, .around-card .line-info .line-time .more-bus .more-bus-last-report-time-container .more-bus-item .normal,
      .more-bus .more-bus-detail .more-bus-item .ico-home-signal-r,
      .more-bus .more-bus-number .more-bus-item .ico-home-signal-r,
      .more-bus .more-bus-traffic-level .more-bus-item .ico-home-signal-r,
      .more-bus .more-bus-last-report-time-container .more-bus-item .ico-home-signal-r {
        position: absolute;
        left: 45px;
        top: 8px; }
      .more-bus .more-bus-detail .more-bus-item .more-bus-licence, .more-bus .more-bus-number .more-bus-item .more-bus-licence, .more-bus .more-bus-traffic-level .more-bus-item .more-bus-licence, .more-bus .more-bus-last-report-time-container .more-bus-item .more-bus-licence {
        border: 1px solid #3498DB;
        -webkit-border-radius: 2px;
                border-radius: 2px;
        float: right;
        padding: 0 5px;
        margin-left: 5px; }
      .more-bus .more-bus-detail .more-bus-item .bus-tag, .more-bus .more-bus-number .more-bus-item .bus-tag, .more-bus .more-bus-traffic-level .more-bus-item .bus-tag, .more-bus .more-bus-last-report-time-container .more-bus-item .bus-tag {
        position: absolute;
        height: 20px;
        line-height: 20px;
        -webkit-border-radius: 2px;
                border-radius: 2px;
        right: 16px;
        top: 20px; }
      .more-bus .more-bus-detail .more-bus-item .more-bus-delay, .more-bus .more-bus-number .more-bus-item .more-bus-delay, .more-bus .more-bus-traffic-level .more-bus-item .more-bus-delay, .more-bus .more-bus-last-report-time-container .more-bus-item .more-bus-delay {
        position: absolute;
        width: 24px;
        height: 24px;
        right: 7px;
        top: 19px;
        z-index: 1; }
      .more-bus .more-bus-detail .more-bus-item .more-bus-tomorrow, .more-bus .more-bus-number .more-bus-item .more-bus-tomorrow, .more-bus .more-bus-traffic-level .more-bus-item .more-bus-tomorrow, .more-bus .more-bus-last-report-time-container .more-bus-item .more-bus-tomorrow {
        position: absolute;
        border: 1px solid #3498DB;
        width: 28px;
        height: 14px;
        -webkit-border-radius: 2px;
                border-radius: 2px;
        top: 16px;
        left: 56px; }
      .more-bus .more-bus-detail .more-bus-item .more-bus-delay-detail, .more-bus .more-bus-number .more-bus-item .more-bus-delay-detail, .more-bus .more-bus-traffic-level .more-bus-item .more-bus-delay-detail, .more-bus .more-bus-last-report-time-container .more-bus-item .more-bus-delay-detail {
        position: absolute;
        width: 90px;
        border: 1px solid #8E8E94;
        height: 20px;
        -webkit-border-radius: 2px;
                border-radius: 2px;
        line-height: 18px;
        right: 5px;
        bottom: -5px; }
        .more-bus .more-bus-detail .more-bus-item .more-bus-delay-detail .triangle-up, .more-bus .more-bus-number .more-bus-item .more-bus-delay-detail .triangle-up, .more-bus .more-bus-traffic-level .more-bus-item .more-bus-delay-detail .triangle-up, .more-bus .more-bus-last-report-time-container .more-bus-item .more-bus-delay-detail .triangle-up {
          width: 0;
          height: 0;
          border-width: 0 4px 4px;
          border-style: solid;
          position: absolute;
          right: 9px;
          z-index: 2; }
        .more-bus .more-bus-detail .more-bus-item .more-bus-delay-detail .triangle-9, .more-bus .more-bus-number .more-bus-item .more-bus-delay-detail .triangle-9, .more-bus .more-bus-traffic-level .more-bus-item .more-bus-delay-detail .triangle-9, .more-bus .more-bus-last-report-time-container .more-bus-item .more-bus-delay-detail .triangle-9 {
          border-color: transparent transparent #8E8E94;
          bottom: 18px; }
        .more-bus .more-bus-detail .more-bus-item .more-bus-delay-detail .triangle-f, .more-bus .more-bus-number .more-bus-item .more-bus-delay-detail .triangle-f, .more-bus .more-bus-traffic-level .more-bus-item .more-bus-delay-detail .triangle-f, .more-bus .more-bus-last-report-time-container .more-bus-item .more-bus-delay-detail .triangle-f {
          border-color: transparent transparent #fff;
          bottom: 17px; }
      .more-bus .more-bus-detail .more-bus-item.has-delay .bus-tag, .more-bus .more-bus-number .more-bus-item.has-delay .bus-tag, .more-bus .more-bus-traffic-level .more-bus-item.has-delay .bus-tag, .more-bus .more-bus-last-report-time-container .more-bus-item.has-delay .bus-tag {
        right: 33px; }
  .more-bus .more-bus-number {
    border: 1px solid #3498DB;
    -webkit-border-radius: 2px;
            border-radius: 2px;
    padding: 0 7px 0;
    margin: 10px 0 0 10px; }
  .more-bus .more-bus-traffic-level {
    -webkit-border-radius: 2px;
            border-radius: 2px;
    padding: 0 7px 0;
    margin-left: 5px; }
  .more-bus .more-bus-last-report-time-container {
    position: absolute;
    right: 0;
    margin: 10px 10px 0 0;
    width: 170px;
    text-align: right; }
    .more-bus .more-bus-last-report-time-container span {
      vertical-align: middle; }
  .more-bus .more-bus-coming {
    position: absolute;
    top: 52%;
    text-align: center;
    width: 150px; }
  .more-bus .more-bus-coming-time {
    left: 25%;
    margin-left: -75px; }
  .more-bus .more-bus-coming-position {
    right: 25%;
    margin-right: -75px; }
  .more-bus .more-bus-error-icon {
    position: absolute;
    top: 46%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px; }
  .more-bus .more-bus-indicator {
    position: absolute;
    width: 56px;
    height: 26px;
    line-height: 26px;
    display: block;
    right: 0;
    text-align: center;
    top: -2px;
    -webkit-border-radius: 2px;
            border-radius: 2px; }
    .more-bus .more-bus-indicator:before {
      content: '';
      display: block;
      position: absolute;
      bottom: -4px;
      left: 24px;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid #FF5722; }
    .more-bus .more-bus-indicator.bg-blue:before, .more-bus .more-bus-indicator.btn:before, .more-bus .more-bus-indicator.btn-blue:before, .more-bus .simple-detail__content .station-list-container .more-bus-indicator.list__item:before, .simple-detail__content .station-list-container .more-bus .more-bus-indicator.list__item:before {
      border-top: 5px solid #3498DB; }
  .more-bus .more-bus-error-detail {
    position: absolute;
    top: 52%;
    left: 50%;
    text-align: center;
    margin-left: -150px;
    width: 300px; }
  .more-bus .bus-detail {
    margin: 10px 7px 0; }
  .more-bus .last-report-overtime .bg-red, .more-bus .last-report-overtime .btn-red, .more-bus .last-report-overtime .bg-blue, .more-bus .last-report-overtime .btn, .more-bus .last-report-overtime .btn-blue, .more-bus .last-report-overtime .simple-detail__content .station-list-container .list__item:before, .simple-detail__content .station-list-container .more-bus .last-report-overtime .list__item:before {
    background-color: #DDD; }
  .more-bus .last-report-overtime .fg-red, .more-bus .last-report-overtime .detail__content .list__item--active .list__item__link, .detail__content .list__item--active .more-bus .last-report-overtime .list__item__link, .more-bus .last-report-overtime .detail__content .list__item--active .list__item__link .number, .detail__content .list__item--active .list__item__link .more-bus .last-report-overtime .number, .more-bus .last-report-overtime .detail__content .list__item--active .list__item__link .name, .detail__content .list__item--active .list__item__link .more-bus .last-report-overtime .name, .more-bus .last-report-overtime .fg-blue, .more-bus .last-report-overtime .tab-list .tab-item.active, .tab-list .more-bus .last-report-overtime .tab-item.active, .more-bus .last-report-overtime .subway-choose-line-item.current, .more-bus .last-report-overtime .fg-6, .more-bus .last-report-overtime .load, .more-bus .last-report-overtime .loading, .more-bus .last-report-overtime .detail__content .list__item .bus-coming i, .detail__content .list__item .bus-coming .more-bus .last-report-overtime i, .more-bus .last-report-overtime .detail__content .list__item .bus-here i, .detail__content .list__item .bus-here .more-bus .last-report-overtime i, .more-bus .last-report-overtime .detail__content .list__item .capacity-bus-coming i, .detail__content .list__item .capacity-bus-coming .more-bus .last-report-overtime i, .more-bus .last-report-overtime .detail__content .list__item .capacity-bus-here i, .detail__content .list__item .capacity-bus-here .more-bus .last-report-overtime i, .more-bus .last-report-overtime .detail__content .list__item__link .number, .detail__content .list__item__link .more-bus .last-report-overtime .number, .more-bus .last-report-overtime .more-bus-traffic-level {
    color: #DDD; }
  .more-bus .last-report-overtime .more-bus-traffic-level, .more-bus .last-report-overtime .more-bus-number {
    border-color: #DDD; }
  .more-bus .last-report-overtime .more-bus-indicator:before {
    border-top-color: #DDD; }

.more-bus-error {
  position: absolute;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  top: 50%;
  height: 100px;
  margin-top: -50px; }

.margin-bottom {
  margin-bottom: 10px; }

.around-card .display-inline {
  display: inline-block; }

.around-card .around-list-item {
  height: 44px;
  position: relative;
  padding-left: 49px; }
  .around-card .around-list-item .first-ellipsis {
    max-width: 60%; }
  .around-card .around-list-item .other-ellipsis {
    max-width: 75%; }
  .around-card .around-list-item .around-circle {
    position: absolute;
    left: 15px;
    top: 10px;
    width: 24px;
    height: 24px;
    -webkit-border-radius: 50%;
            border-radius: 50%; }
    .around-card .around-list-item .around-circle .ico-home_station_ic {
      position: absolute;
      left: 5px;
      top: 7px; }
  .around-card .around-list-item .ico-home-bus-12 {
    left: 6px;
    position: absolute;
    top: 6px; }
  .around-card .around-list-item .ico-subway-ic {
    position: absolute;
    left: 0;
    top: 0; }
  .around-card .around-list-item .stop-tag {
    float: right;
    margin-right: 10px; }
  .around-card .around-list-item .other-tag {
    float: right;
    margin-right: 10px; }
  .around-card .around-list-item .stop-distance {
    float: right;
    margin-right: 14px; }
  .around-card .around-list-item .subway-code-first {
    margin-right: 7px; }
  .around-card .around-list-item .subway-code {
    float: right;
    margin-top: 14px;
    margin-right: 8px; }

.around-card .line-detail {
  padding-left: 15px; }
  .around-card .line-detail .line-station {
    width: 65%; }

.around-card .line-info {
  height: 80px;
  position: relative; }
  .around-card .line-info .line-number {
    padding-top: 13px; }
  .around-card .line-info .line-nextstation {
    padding-top: 10px;
    position: relative; }
  .around-card .line-info .showFav .line-time {
    right: 15px; }
  .around-card .line-info .real-time {
    position: relative;
    right: 10px; }
  .around-card .line-info .line-time {
    position: absolute;
    width: 80px;
    right: 55px;
    top: 10px; }
    .around-card .line-info .line-time .ico {
      position: absolute;
      top: 5px;
      right: 0px; }
    .around-card .line-info .line-time .line-stnstates {
      margin-top: 5px;
      display: block; }
    .around-card .line-info .line-time .bus-arrivaled {
      margin-top: 20px; }
  .around-card .line-info .line-vertical {
    width: 2px;
    height: 50px;
    position: absolute;
    right: 40px;
    top: 15px;
    opacity: 0.5; }
  .around-card .line-info .line-bus-area {
    height: 80px; }
  .around-card .line-info .line-fav-area {
    position: absolute;
    right: 0;
    top: 0;
    height: 80px;
    width: 40px; }
  .around-card .line-info .line-fav {
    position: absolute;
    right: 14px;
    top: 33px; }
  .around-card .line-info .travel_exchange_ic:active {
    opacity: 0.5; }
  .around-card .line-info .subway-go {
    width: 80px;
    height: 30px;
    top: 25px;
    border: 1px solid #3498DB;
    -webkit-border-radius: 2px;
            border-radius: 2px; }

.around-card .line-change .ico-line-changed {
  margin-top: 10px; }

.page-around .more-station-tip {
  outline: 1px solid #eaeaea;
  position: relative;
  height: 44px; }
  .page-around .more-station-tip .expand-text {
    position: absolute;
    line-height: 44px;
    top: 0;
    left: 50%;
    margin-left: -40px; }
  .page-around .more-station-tip .ico-home-expand {
    position: absolute;
    top: 19px;
    left: 50%;
    margin-left: 34px; }
  .page-around .more-station-tip .rotate-180 {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }

.page-around .donghai-lines {
  margin-top: 10px;
  margin-bottom: 100px;
  padding: 5px 10px;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between; }
  .page-around .donghai-lines .each-line-container {
    width: 25%;
    text-align: center;
    margin: 5px 0;
    color: #3498DB; }

.page-around .chengde-feedback {
  color: #3498DB;
  padding: 20px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .page-around .chengde-feedback .chengde-feedback-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("../images/no-sprite-icons/icon-tip-2a5eeec20a.png");
    -webkit-background-size: 100% 100%;
            background-size: 100%;
    margin-right: 3px; }

.page-around .chengde-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .page-around .chengde-modal .chengde-modal-body {
    background: #fff;
    width: 90%;
    -webkit-box-shadow: 0 0 10px #999;
            box-shadow: 0 0 10px #999;
    padding: 0 15px 20px 15px; }
  .page-around .chengde-modal .modal-title {
    text-align: center;
    font-size: 15px;
    padding: 15px; }
  .page-around .chengde-modal .modal-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 15px; }
  .page-around .chengde-modal .modal-btn {
    padding: 5px 12px;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    border: 1px solid #eee;
    margin-right: 15px; }
  .page-around .chengde-modal .modal-btn-primary {
    background: #3498DB;
    color: #fff; }

.page-subway .jump-container {
  margin-top: 16px; }

.page-subway .mr10 {
  margin-right: 10px; }

.subway-code {
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 17px; }
  .subway-code.big {
    width: 18px;
    height: 18px;
    line-height: 19px; }

.subway-station-line-list, .subway-station-search-line-list {
  display: block;
  float: right; }

.subway-station-line-list-left {
  display: block;
  margin-right: 10px; }

.subway-station-list {
  padding-left: 16px; }

.subway-line {
  height: 44px; }
  .subway-line .subway-code {
    margin: 0; }

.subway-station {
  height: 44px;
  padding-right: 15px;
  position: relative; }
  .subway-station .subway-station-description {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .subway-station .subway-station-description .subway-station-name {
      display: inline-block;
      margin-right: 15px; }
  .subway-station .transfer-subway-line {
    position: absolute;
    right: 15px; }
  .subway-station .station-circle {
    width: 5px;
    height: 5px;
    margin-right: 15px;
    position: relative;
    top: 19px; }
  .subway-station .subway-code {
    margin-left: 8px;
    margin-right: 0; }
  .subway-station .ico-container {
    position: relative;
    width: 24px;
    height: 44px;
    margin: 0 6px; }

.subway-transit-suggest > *,
.subway-transit-direction-container > *,
.subway-item-time > *,
.subway-item-time > *,
.subway-item-toilet > *,
.subway-item-carrier > *,
.subway-station-peak > * {
  vertical-align: middle; }

.subway-block {
  margin-top: 10px; }

.subway-item {
  position: relative;
  display: block;
  padding: 0 0 0 52px;
  min-height: 44px; }
  .subway-item .ico-container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    position: absolute;
    width: 52px;
    height: 44px;
    top: 0;
    left: 0;
    overflow: hidden; }
  .subway-item .subway-item-content {
    line-height: 24px;
    padding: 10px 16px 10px 0; }
  .subway-item .subway-item-time {
    position: relative;
    height: 22px; }
    .subway-item .subway-item-time .direction-name {
      width: 52%; }
    .subway-item .subway-item-time span {
      display: inline-block; }
    .subway-item .subway-item-time .time-description {
      position: absolute;
      right: 30px; }
  .subway-item .subway-item-exit p {
    margin-top: 5px; }
  .subway-item .subway-item-carrier {
    display: inline-block;
    margin-right: 8px; }
  .subway-item .exit-code {
    display: inline-block;
    -webkit-border-radius: 4px;
            border-radius: 4px;
    height: 20px;
    width: 20px; }
  .subway-item .exit-buses {
    margin-top: 5px; }
  .subway-item .subway-item-facility {
    margin-top: 5px; }

.subway-station-container .subway-station-choose-container .subway-station-choose-action {
  width: 50%;
  height: 44px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .subway-station-container .subway-station-choose-container .subway-station-choose-action i {
    margin-right: 5px;
    -webkit-border-radius: 5px;
            border-radius: 5px; }
  .subway-station-container .subway-station-choose-container .subway-station-choose-action .sz-10 {
    display: inline-block; }

.subway-station-container .subway-station-choose-container span {
  display: inline-block; }

.page-subway-transfer {
  padding-bottom: 50px;
  min-height: 100%;
  height: auto; }

.subway-transfer-container {
  height: auto; }

.subway-transfer-action-container {
  position: fixed;
  z-index: 4;
  bottom: 0;
  width: 100%; }
  .subway-transfer-action-container .swap-container,
  .subway-transfer-action-container .correction-container {
    height: 50px;
    width: 50%;
    cursor: pointer;
    float: left; }
    .subway-transfer-action-container .swap-container .ico,
    .subway-transfer-action-container .correction-container .ico {
      display: block;
      margin: 0 auto 3px auto; }
    .subway-transfer-action-container .swap-container span,
    .subway-transfer-action-container .correction-container span {
      display: block; }

body.has-footer .subway-transfer-action-container {
  bottom: 58px; }

.subway-transfer-summary-container {
  height: 80px;
  padding: 16px 16px 0 16px; }
  .subway-transfer-summary-container .subway-transfer-station-summary {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .subway-transfer-summary-container .subway-transfer-station-summary div {
      height: 30px; }
    .subway-transfer-summary-container .subway-transfer-station-summary .decorate-line {
      position: absolute;
      top: 22px;
      left: 4px;
      width: 1px;
      height: 15px; }
  .subway-transfer-summary-container .subway-transfer-plan-summary {
    text-align: right; }

.subway-transit-block .subway-item,
.subway-dest-stn-block .subway-item {
  padding: 0;
  min-height: 44px;
  position: relative;
  overflow: hidden; }

.subway-transit-block .subway-item-content,
.subway-dest-stn-block .subway-item-content {
  margin-left: 66px; }

.subway-transit-block .subway-transit-sn,
.subway-dest-stn-block .subway-transit-sn {
  margin-left: 0;
  padding-left: 66px; }

.subway-transit-block .decorate-line,
.subway-dest-stn-block .decorate-line {
  position: absolute;
  top: 32px;
  left: 45px;
  width: 1px;
  height: 100%; }

.subway-transit-block .circle, .subway-transit-block .simple-detail__content .station-list-container .list__item:after, .simple-detail__content .station-list-container .subway-transit-block .list__item:after, .subway-transit-block .transfer-plans-container .ico-container, .transfer-plans-container .subway-transit-block .ico-container,
.subway-transit-block .segment-list-container .ico-container, .segment-list-container .subway-transit-block .ico-container, .subway-transit-block .subway-code,
.subway-dest-stn-block .circle,
.subway-dest-stn-block .simple-detail__content .station-list-container .list__item:after,
.simple-detail__content .station-list-container .subway-dest-stn-block .list__item:after,
.subway-dest-stn-block .transfer-plans-container .ico-container,
.transfer-plans-container .subway-dest-stn-block .ico-container,
.subway-dest-stn-block .segment-list-container .ico-container,
.segment-list-container .subway-dest-stn-block .ico-container,
.subway-dest-stn-block .subway-code {
  margin-right: 0; }

.subway-transit-block .subway-transit-arrival-time,
.subway-dest-stn-block .subway-transit-arrival-time {
  position: absolute;
  top: 9px;
  left: 4px;
  text-align: center;
  width: 30px;
  white-space: nowrap; }

.subway-transit-block .ico-container,
.subway-dest-stn-block .ico-container {
  top: 8px;
  left: 31px;
  width: 28px;
  height: 28px; }

.subway-transit-block .subway-transit-direction-container,
.subway-dest-stn-block .subway-transit-direction-container {
  position: relative; }

.subway-transit-block .subway-transit-time-info,
.subway-dest-stn-block .subway-transit-time-info {
  padding-left: 27px; }

.subway-transit-block .subway-transit-dir-name,
.subway-dest-stn-block .subway-transit-dir-name {
  display: inline-block;
  margin-left: 6px; }

.subway-transit-block .subway-transit-suggest,
.subway-dest-stn-block .subway-transit-suggest {
  display: inline-block;
  height: 20px;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  padding: 0 10px 0 6px; }
  .subway-transit-block .subway-transit-suggest .ico,
  .subway-dest-stn-block .subway-transit-suggest .ico {
    margin-right: 8px; }

.subway-transit-block .subway-station-peak,
.subway-dest-stn-block .subway-station-peak {
  position: absolute;
  top: 12px;
  right: 36px;
  width: 56px;
  height: 20px;
  padding: 0 0 0 7px;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  pointer-events: none; }
  .subway-transit-block .subway-station-peak .ico,
  .subway-dest-stn-block .subway-station-peak .ico {
    position: relative;
    top: -1px;
    margin-right: 3px; }

.subway-transit-block .ico-enter-container,
.subway-dest-stn-block .ico-enter-container {
  pointer-events: none;
  right: 8px;
  left: auto; }

.subway-transit-block .subway-transit-doors,
.subway-dest-stn-block .subway-transit-doors {
  position: relative; }

.subway-transit-block .subway-transit-door span,
.subway-dest-stn-block .subway-transit-door span {
  display: inline-block;
  margin-left: 10px;
  text-align: right; }

.subway-transit-block .subway-transit-door .subway-transit-door-aboard,
.subway-dest-stn-block .subway-transit-door .subway-transit-door-aboard {
  margin-left: 5px;
  width: 73px; }

.subway-transit-block .tooltip-container,
.subway-transit-block .tooltip-long-container,
.subway-dest-stn-block .tooltip-container,
.subway-dest-stn-block .tooltip-long-container {
  position: absolute;
  right: 13px;
  top: 9px;
  width: 24px;
  height: 24px;
  padding: 0 5px; }

.subway-transit-block .tooltip-long-container,
.subway-dest-stn-block .tooltip-long-container {
  width: 95px;
  text-align: right;
  overflow: hidden; }
  .subway-transit-block .tooltip-long-container .tooltip-text-desc,
  .subway-dest-stn-block .tooltip-long-container .tooltip-text-desc {
    display: inline-block;
    height: 13px;
    width: 66px;
    line-height: 13px; }
  .subway-transit-block .tooltip-long-container .tooltip-text-desc,
  .subway-transit-block .tooltip-long-container .ico,
  .subway-dest-stn-block .tooltip-long-container .tooltip-text-desc,
  .subway-dest-stn-block .tooltip-long-container .ico {
    vertical-align: middle; }

.subway-transit-block .subway-transit-door-exits,
.subway-dest-stn-block .subway-transit-door-exits {
  position: relative;
  padding-right: 85px;
  padding-bottom: 4px; }

.subway-transit-block .subway-door-exit-caption,
.subway-dest-stn-block .subway-door-exit-caption {
  display: inline-block;
  margin-bottom: 4px; }

.subway-transit-block .subway-door-exit-desc-container,
.subway-dest-stn-block .subway-door-exit-desc-container {
  position: relative;
  padding: 2px 0; }
  .subway-transit-block .subway-door-exit-desc-container .subway-door-exit-desc,
  .subway-dest-stn-block .subway-door-exit-desc-container .subway-door-exit-desc {
    width: -webkit-calc(100% - 67px);
    width: calc(100% - 67px);
    display: inline-block; }
    .subway-transit-block .subway-door-exit-desc-container .subway-door-exit-desc span,
    .subway-dest-stn-block .subway-door-exit-desc-container .subway-door-exit-desc span {
      display: inline-block; }
  .subway-transit-block .subway-door-exit-desc-container .subway-door-desc,
  .subway-dest-stn-block .subway-door-exit-desc-container .subway-door-desc {
    position: absolute;
    top: 2px;
    right: 0; }

.subway-transit-block .subway-transit-passby-stns,
.subway-dest-stn-block .subway-transit-passby-stns {
  margin: 0;
  padding: 0;
  max-height: 44px;
  -webkit-transition: max-height 0.8s ease;
  transition: max-height 0.8s ease; }
  .subway-transit-block .subway-transit-passby-stns.expanded,
  .subway-dest-stn-block .subway-transit-passby-stns.expanded {
    max-height: 4400px;
    -webkit-transition: max-height 0.8s ease;
    transition: max-height 0.8s ease; }
    .subway-transit-block .subway-transit-passby-stns.expanded .ico-pull-downlist-ic, .subway-transit-block .subway-transit-passby-stns.expanded .route-list-container .bus-container .bus-content .next-station .total-station .down-arrow, .route-list-container .bus-container .bus-content .next-station .total-station .subway-transit-block .subway-transit-passby-stns.expanded .down-arrow, .subway-transit-block .subway-transit-passby-stns.expanded .page-around .more-station-tip .ico-home-expand, .page-around .more-station-tip .subway-transit-block .subway-transit-passby-stns.expanded .ico-home-expand,
    .subway-dest-stn-block .subway-transit-passby-stns.expanded .ico-pull-downlist-ic,
    .subway-dest-stn-block .subway-transit-passby-stns.expanded .route-list-container .bus-container .bus-content .next-station .total-station .down-arrow,
    .route-list-container .bus-container .bus-content .next-station .total-station .subway-dest-stn-block .subway-transit-passby-stns.expanded .down-arrow,
    .subway-dest-stn-block .subway-transit-passby-stns.expanded .page-around .more-station-tip .ico-home-expand,
    .page-around .more-station-tip .subway-dest-stn-block .subway-transit-passby-stns.expanded .ico-home-expand {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }

.subway-transit-block .subway-transit-passby-stn,
.subway-dest-stn-block .subway-transit-passby-stn {
  position: relative;
  padding-left: 66px;
  height: 44px;
  line-height: 44px; }
  .subway-transit-block .subway-transit-passby-stn:before,
  .subway-dest-stn-block .subway-transit-passby-stn:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 43px;
    display: block;
    height: 5px;
    width: 5px;
    -webkit-border-radius: 50%;
            border-radius: 50%; }
  .subway-transit-block .subway-transit-passby-stn .ico-container,
  .subway-dest-stn-block .subway-transit-passby-stn .ico-container {
    left: auto;
    right: 12px; }

.subway-loading-tooltip {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 270px;
  height: 330px;
  text-align: center;
  -webkit-border-radius: 10px;
          border-radius: 10px; }

.subway-door-tooltip-img {
  -webkit-border-radius: 10px;
          border-radius: 10px; }

.page-subway-choose {
  padding-top: 52px; }

.subway-search-ui {
  padding: 10px;
  position: fixed;
  top: 0;
  z-index: 4;
  background-color: #EBEBF1;
  width: 100%; }
  .subway-search-ui .subway-search-ui-wrap {
    width: 100%;
    position: relative; }

.has-header .subway-search-ui {
  top: 49px; }

.subway-search-icon {
  position: absolute;
  top: 4px;
  left: 8px;
  z-index: 2; }

.subway-search-input {
  outline: none;
  border: 1px solid #eaeaea;
  -webkit-border-radius: 15px;
          border-radius: 15px;
  line-height: 20px;
  padding: 5px 0;
  font-size: 14px;
  color: #333;
  width: 100%; }
  .subway-search-input:-moz-placeholder {
    color: #aaa; }
  .subway-search-input::-moz-placeholder {
    color: #aaa;
    opacity: 1; }
  .subway-search-input:-ms-input-placeholder {
    color: #aaa; }
  .subway-search-input::-webkit-input-placeholder {
    color: #aaa; }

.subway-search-input {
  padding: 0 32px;
  height: 32px; }

.subway-station-search-list-firstletter {
  display: block;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  text-align: left; }

.subway-station-search-list-item {
  display: block;
  height: 44px;
  line-height: 44px;
  padding-left: 20px;
  text-align: left; }

.subway-station-search-line-list {
  margin-right: 14px; }

.subway-station-search-list-container,
.subway-choose-container {
  max-height: -webkit-calc(100% - 52px);
  max-height: calc(100% - 52px);
  top: 52px;
  padding-bottom: 0px;
  /* 隐藏滚动条 */ }
  .subway-station-search-list-container::-webkit-scrollbar,
  .subway-choose-container::-webkit-scrollbar {
    display: none; }

.has-header .subway-station-search-list-container,
.has-header .subway-choose-container {
  max-height: -webkit-calc(100% - 101px);
  max-height: calc(100% - 101px);
  top: 101px; }

.subway-choose-container {
  padding-left: 10px; }

.subway-choose-line-list-container,
.subway-choose-station-list-container {
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  /* 隐藏滚动条 */ }
  .subway-choose-line-list-container::-webkit-scrollbar,
  .subway-choose-station-list-container::-webkit-scrollbar {
    display: none; }

.subway-choose-line-list-container {
  width: 132px; }

.subway-choose-station-list-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 15px; }

.subway-choose-line-list {
  -webkit-border-radius: 2px;
          border-radius: 2px; }

.subway-choose-line-item,
.subway-choose-station-item {
  display: block;
  height: 44px; }

.subway-choose-line-item {
  position: relative;
  padding-left: 3px; }
  .subway-choose-line-item .subway-code, .subway-choose-line-item .ico {
    position: absolute; }
  .subway-choose-line-item .subway-code {
    top: 14px;
    left: 12px; }
  .subway-choose-line-item .ico {
    top: 16px;
    right: 16px; }
  .subway-choose-line-item.first-subway-line {
    -webkit-border-top-left-radius: 2px;
            border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
            border-top-right-radius: 2px; }
  .subway-choose-line-item.last-subway-line {
    -webkit-border-bottom-right-radius: 2px;
            border-bottom-right-radius: 2px;
    border-bottom-right-radius: 2px; }
  .subway-choose-line-item .subway-choose-line-name {
    width: 77px;
    display: inline-block; }

.correction-list-container {
  padding-left: 16px; }
  .correction-list-container .correction-item {
    position: relative; }
  .correction-list-container .ico-enter-ic, .correction-list-container .transfer-list-container .plans-container .plans-detail .right-arrow, .transfer-list-container .plans-container .plans-detail .correction-list-container .right-arrow {
    position: absolute;
    top: 16px;
    right: 16px; }

.correction-form-container {
  position: relative; }
  .correction-form-container span {
    margin-left: 20px; }
  .correction-form-container .correction-content-textarea {
    width: 100%;
    height: 168px;
    border: 0;
    padding: 10px 20px; }
  .correction-form-container .word-count-tip {
    position: absolute;
    bottom: 70px;
    right: 16px;
    pointer-events: none; }
  .correction-form-container .submit-container {
    margin: 20px 20px 0 20px; }
    .correction-form-container .submit-container .btn {
      width: 100%;
      height: 40px;
      display: inline-block;
      line-height: 40px;
      -webkit-border-radius: 2px;
              border-radius: 2px;
      z-index: 1; }
      .correction-form-container .submit-container .btn:active {
        background-color: #62ADDD; }

.search-input {
  width: 100%; }
  .search-input .search-form {
    overflow: hidden;
    width: 100%;
    height: 50px; }
  .search-input .search-ui {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 9px 15px; }
  .search-input .search-ui-wrap {
    width: 100%;
    position: relative; }
  .search-input .search-icon {
    position: absolute;
    top: 4px;
    left: 8px;
    z-index: 2; }
  .search-input .search-input {
    outline: 0;
    border: 1px solid #eaeaea;
    -webkit-border-radius: 15px;
            border-radius: 15px;
    line-height: 20px;
    font-size: 14px;
    color: #333;
    width: 100%;
    padding: 0 32px;
    height: 32px; }
    .search-input .search-input:-moz-placeholder {
      color: #aaa; }
    .search-input .search-input::-moz-placeholder {
      color: #aaa;
      opacity: 1; }
    .search-input .search-input:-ms-input-placeholder {
      color: #aaa; }
    .search-input .search-input::-webkit-input-placeholder {
      color: #aaa; }
  .search-input .search-button {
    visibility: hidden;
    display: block;
    position: absolute;
    height: 0;
    width: 0; }
  .search-input .search-control-link-cancel {
    padding-right: 15px;
    text-align: left;
    display: inline-block; }

/*$tablet: "(min-width: 768px) and (max-width: 1023px)";*/
/*$desktop: "(min-width: 1024px)";*/
@media only screen and (max-height: 568px) {
  .page-detail .f-40, .more-bus .f-40 {
    font-size: 30px; }
  .page-detail .f-30, .more-bus .f-30 {
    font-size: 24px; }
  .page-detail .f-24, .more-bus .f-24 {
    font-size: 21px; }
  .page-detail .f-20, .page-detail .detail__content .list__item--active .list__item__link .name, .detail__content .list__item--active .list__item__link .page-detail .name, .more-bus .f-20, .more-bus .detail__content .list__item--active .list__item__link .name, .detail__content .list__item--active .list__item__link .more-bus .name {
    font-size: 18px; }
  .page-detail .f-18, .page-detail .detail__content .list__item__link .name, .detail__content .list__item__link .page-detail .name, .more-bus .f-18, .more-bus .detail__content .list__item__link .name, .detail__content .list__item__link .more-bus .name {
    font-size: 15px; }
  .page-detail .f-15, .page-detail .btn-red, .page-detail .btn-grey, .page-detail .btn-blue, .more-bus .f-15, .more-bus .btn-red, .more-bus .btn-grey, .more-bus .btn-blue {
    font-size: 13px; }
  .page-detail .f-13, .page-detail .detail__content .list__item--active .list__item__link .number, .detail__content .list__item--active .list__item__link .page-detail .number, .more-bus .f-13, .more-bus .detail__content .list__item--active .list__item__link .number, .detail__content .list__item--active .list__item__link .more-bus .number {
    font-size: 11px; }
  .page-detail .f-11, .page-detail .subway-code, .more-bus .f-11, .more-bus .subway-code {
    font-size: 10px; }
  .detail__top {
    height: 50px;
    padding-top: 8px; }
    .detail__top .right-icon {
      width: 66px;
      height: 40px; }
    .detail__top h2 {
      font-size: 13px;
      line-height: 19px; }
    .detail__top p {
      font-size: 10px;
      line-height: 14px; }
  .bus-detail .last-report-time-container {
    top: -18px;
    font-size: 10px; }
  .bus-detail .flex-container .detail-seperator,
  .bus-detail .time-table .detail-seperator {
    height: 60px; }
  .bus-detail .flex-container .main-detail, .bus-detail .flex-container .secondary-detail,
  .bus-detail .time-table .main-detail,
  .bus-detail .time-table .secondary-detail {
    position: relative;
    top: 5px; }
  .bus-detail .flex-container .error-tip,
  .bus-detail .time-table .error-tip {
    font-size: 15px; }
  .bus-detail .flex-container .time-estimate,
  .bus-detail .time-table .time-estimate {
    bottom: -10px; }
  .bus-detail .flex-container .time-interval,
  .bus-detail .time-table .time-interval {
    bottom: -25px; }
  .bus-detail .flex-container .nearest-bus .time-estimate,
  .bus-detail .time-table .nearest-bus .time-estimate {
    bottom: -10px; }
  .bus-detail .flex-container .nearest-bus .time-interval,
  .bus-detail .time-table .nearest-bus .time-interval {
    bottom: -25px; }
  .bus-detail .flex-container .following-bus:before,
  .bus-detail .time-table .following-bus:before {
    top: 14px; }
  .bus-detail .flex-container .bus-detail-tomorrow,
  .bus-detail .time-table .bus-detail-tomorrow {
    top: -13px;
    right: -62px; }
  .bus-detail .card-action-list-container {
    height: 40px; }
  .detail__content .list {
    margin-top: 48px; }
  .detail__content .list__item .bus-coming, .detail__content .list__item .bus-here {
    top: -22px; }
    .detail__content .list__item .bus-coming i, .detail__content .list__item .bus-here i {
      top: -7px; }
  .detail__content .list__item .bus-nearest,
  .detail__content .list__item .bus-current {
    top: -30px; }
    .detail__content .list__item .bus-nearest i,
    .detail__content .list__item .bus-current i {
      top: -7px; }
  .detail__content .list__item__link {
    width: 15px;
    line-height: 15px;
    margin-top: 5px;
    font-size: 13px; }
    .detail__content .list__item__link:before {
      top: -9px;
      left: 5px; }
    .detail__content .list__item__link .number {
      height: 14px;
      margin-bottom: 2px; }
  .detail__content .list__item--active .list__item__link {
    width: 18px; }
    .detail__content .list__item--active .list__item__link:before {
      top: -9px;
      left: 6px; }
  .detail__content .list__item--active .name {
    line-height: 20px; }
  .detail__content .list__item--active .current-location {
    top: -34px; }
  .detail__content .list__item--active .current-arrow {
    top: -48px; }
  .more-bus .more-bus-error-detail {
    top: 55%; } }

@media only screen and (max-width: 330px) {
  .more-bus .more-bus-number {
    margin-left: 8px; }
  .more-bus .more-bus-last-report-time-container {
    margin-right: 8px; }
  .more-bus .bus-detail {
    margin-top: 7px; }
  .subway-transit-block .subway-transit-door-exits,
  .subway-dest-stn-block .subway-transit-door-exits {
    padding-right: 55px; }
  .subway-item .subway-item-time .direction-name {
    width: 50%; }
  .subway-item .subway-item-time .time-description {
    right: 15px; }
  .around-card .line-detail .line-station {
    width: 60%; } }

@media only screen and (max-height: 480px) {
  .transfer-list-container .plans-container .plans-detail {
    padding-right: 70px; }
  .vertical-mid {
    top: 56%; } }

.bus-detail .time-table-item .more-bus-block {
  height: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.bus-detail .line-detail-banner-ad-container {
  width: 100%;
  height: 44px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .bus-detail .line-detail-banner-ad-container .flex-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-flex: 1 1 auto; }
  .bus-detail .line-detail-banner-ad-container .flex-none {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-flex: 0 0 auto; }
  .bus-detail .line-detail-banner-ad-container .left {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .bus-detail .line-detail-banner-ad-container .ad-tag-text {
    margin-right: 10px;
    padding: 0 5px;
    height: 18px;
    line-height: 18px;
    -webkit-border-radius: 2px;
            border-radius: 2px; }
  .bus-detail .line-detail-banner-ad-container .ad-tag-image,
  .bus-detail .line-detail-banner-ad-container .ad-button-image {
    height: 44px; }
    .bus-detail .line-detail-banner-ad-container .ad-tag-image img,
    .bus-detail .line-detail-banner-ad-container .ad-button-image img {
      width: auto;
      height: 100%; }
  .bus-detail .line-detail-banner-ad-container .ad-button-text {
    margin-left: 10px;
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
    -webkit-border-radius: 26px;
            border-radius: 26px;
    border-style: solid;
    border-width: 1px; }

.bus-detail .pl-15 {
  padding-left: 15px; }

.bus-detail .pr-15 {
  padding-right: 15px; }

.ad-card-container {
  width: 300px; }
  .ad-card-container .ad-card {
    padding-top: 10px;
    height: 380px;
    -webkit-border-radius: 8px;
            border-radius: 8px; }
    .ad-card-container .ad-card .ad-image {
      margin: 0 10px;
      height: 180px;
      -webkit-border-radius: 4px;
              border-radius: 4px;
      background-color: #EBEBF1; }
      .ad-card-container .ad-card .ad-image img {
        height: 100%;
        width: 100%;
        -webkit-border-radius: 4px;
                border-radius: 4px; }
    .ad-card-container .ad-card .ad-logo-and-name {
      margin-top: 15px;
      margin-bottom: 6px; }
      .ad-card-container .ad-card .ad-logo-and-name .ad-logo {
        margin: 0 15px;
        width: 40px;
        height: 40px;
        -webkit-border-radius: 40px;
                border-radius: 40px;
        border: solid 1px #dddddd;
        background-color: #EBEBF1; }
        .ad-card-container .ad-card .ad-logo-and-name .ad-logo img {
          height: 100%;
          width: 100%;
          -webkit-border-radius: 40px;
                  border-radius: 40px; }
      .ad-card-container .ad-card .ad-logo-and-name .ad-right .ad-name {
        line-height: 21px; }
      .ad-card-container .ad-card .ad-logo-and-name .ad-right .ad-tag {
        margin-top: 3px;
        width: 215px;
        height: 16px; }
        .ad-card-container .ad-card .ad-logo-and-name .ad-right .ad-tag img {
          height: 100%; }
    .ad-card-container .ad-card .ad-address {
      position: relative;
      height: 60px; }
      .ad-card-container .ad-card .ad-address .ad-address-block {
        -webkit-box-align: baseline;
        -webkit-align-items: baseline;
            -ms-flex-align: baseline;
                align-items: baseline;
        width: 100%;
        line-height: 18px;
        padding-right: 54px; }
      .ad-card-container .ad-card .ad-address .ad-address-left {
        width: 70px;
        font-weight: 500;
        -webkit-box-flex: 0;
        -webkit-flex: none;
            -ms-flex: none;
                flex: none; }
      .ad-card-container .ad-card .ad-address .ad-address-content {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical; }
      .ad-card-container .ad-card .ad-address .ad-address-icon {
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -18px;
        width: 54px;
        height: 36px; }
        .ad-card-container .ad-card .ad-address .ad-address-icon .ico-ad-navigation {
          margin: 6px auto; }
    .ad-card-container .ad-card .button-container {
      margin-top: 10px;
      padding: 0 15px; }
      .ad-card-container .ad-card .button-container .button-call,
      .ad-card-container .ad-card .button-container .button-link {
        height: 44px;
        line-height: 44px;
        -webkit-border-radius: 2px;
                border-radius: 2px;
        font-size: 17px; }
      .ad-card-container .ad-card .button-container .button-link {
        background-color: #ffaf00; }
      .ad-card-container .ad-card .button-container .double-button {
        width: 125px; }
    .ad-card-container .ad-card .has-two {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
  .ad-card-container .button-close {
    margin: 20px auto; }
