@charset "utf-8";
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    overflow: auto;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(180,180,180,0.2);
    border-radius: 12px;
    background-clip: padding-box;
    border: 1px solid rgba(180,180,180,0.4);
    min-height: 28px;
}

::-webkit-scrollbar-track-piece {
    background-color: rgba(180,180,180,0.06);
    border-radius: 3px;
}

* {
    margin: 0;
    padding: 0;
    /*去掉禁用文字或者在其他地方用类添加，否则input禁掉文字，ios输入不了文字*/
    /*-webkit-user-select:none;*/
    /*-moz-user-select:none;*/
    /*-ms-user-select:none;*/
    /*user-select:none;*/
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

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

html, body, .map-wrap, #map {
    margin:0;
    padding:0;
    width:100%;
    height:100%;
    background-color: #fafada;
    font-family: Helvetica, "Microsoft YaHei", Arial, sans-serif;
    color: #333;
    font: 14px/1.5 Helvetica, "Microsoft YaHei", Arial, sans-serif;
}

body.device-iphone-x {
    padding-bottom: 30px;
}

html, body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width:100%;
    height:100%;
    overflow: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-pointer.help-status,
.help-status .cursor-pointer,
.cursor-pointer .help-status {
    cursor: auto;
}

.clearfix::after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

.fr {
    float: right;
}

.fl {
    float: left;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}

.pf {
    position: fixed;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.flex-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    flex-direction: row;
}

.flex-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
}

.flex-grow-0 {
    min-width: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.flex-grow-1 {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.flex-x-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-y-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.flex-y-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end;
}
.text-more {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

.text-more-2 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.text-more-3 {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

/*
 leaflet.responsive.popup 0.6.4
 (c) 2019 https://github.com/yafred
*/

/* North */
.leaflet-resp-popup-north .leaflet-popup-tip {
    box-shadow: none;
}


/* South */
.leaflet-resp-popup-south .leaflet-popup-tip-container {
    top: 0;
    margin-top: -20px;
}

.leaflet-resp-popup-south .leaflet-popup-tip {
    margin: 11px auto 0;
    box-shadow: none;
}


/* West */
.leaflet-resp-popup-west .leaflet-popup-tip-container {
    right: 0;   
    margin-right: -20px;
    left: 100%;
    margin-left: -2px;
    top: 50%;
    margin-top: -11px;
}

.leaflet-resp-popup-west .leaflet-popup-tip {
    margin: 1px -8px 0 -8px;
    box-shadow: none;
}


/* East */
.leaflet-resp-popup-east .leaflet-popup-tip-container {
    width: 20px;
    left: 2px;
    top: 50%;
    margin-top: -11px;
}

.leaflet-resp-popup-east .leaflet-popup-tip {
    margin: 0 11px;
    box-shadow: none;
}


/* South-East */
.leaflet-resp-popup-south-east .leaflet-popup-tip-container {
    left: 0;
    margin-left: 0;
    top: 0;
    margin-top: -20px;
}

.leaflet-resp-popup-south-east .leaflet-popup-tip {
    margin: 11px 11px 11px -8px;
    box-shadow: none;
}

.leaflet-resp-popup-south-east .leaflet-popup-content-wrapper {
    border-radius: 0 20px 20px 20px;
}

.leaflet-popup.line-popup.leaflet-resp-popup-south-east .leaflet-popup-content-wrapper {
    border-radius: 0 8px 8px 8px;
}


/* East-South */
.leaflet-resp-popup-east-south .leaflet-popup-tip-container {
    width: 20px;
    left: 0;
    top: 0;
}

.leaflet-resp-popup-east-south .leaflet-popup-tip {
    margin: -8px 11px;
    box-shadow: none;
}

.leaflet-resp-popup-east-south .leaflet-popup-content-wrapper {
    border-radius: 0 20px 20px 20px;
}

.leaflet-popup.line-popup.leaflet-resp-popup-east-south .leaflet-popup-content-wrapper {
    border-radius: 0 8px 8px 8px;
}


/* North-East */
.leaflet-resp-popup-north-east .leaflet-popup-tip-container {
    left: 0;
    margin-left: 0;
    margin-top: -1px;
}

.leaflet-resp-popup-north-east .leaflet-popup-tip {
    margin: -8px 11px 11px -8px;
    box-shadow: none;
}

.leaflet-popup.line-popup.leaflet-resp-popup-north-east .leaflet-popup-content-wrapper {
    border-radius: 8px 8px 8px 0;
}


/* East-North */
.leaflet-resp-popup-east-north .leaflet-popup-tip-container {
    left: 0;
    margin-left: -20px;
    margin-top: -20px;
}

.leaflet-resp-popup-east-north .leaflet-popup-tip {
    margin: 11px 11px 11px 11px;
    box-shadow: none;
}


/* North-West */
.leaflet-resp-popup-north-west .leaflet-popup-tip-container {
    width: 20px;
    margin-right: 0;
    margin-top: -1px;
    left: 100%;
    right: 0;
}

.leaflet-resp-popup-north-west .leaflet-popup-tip {
    margin: -8px 11px 11px 11px;
    box-shadow: none;
}

.leaflet-resp-popup-north-west .leaflet-popup-content-wrapper {
    border-radius: 20px 20px 0 20px;
}

.leaflet-popup.line-popup.leaflet-resp-popup-north-west .leaflet-popup-content-wrapper {
    border-radius: 8px 8px 0 8px;
}


/* West-North */
.leaflet-resp-popup-west-north .leaflet-popup-tip-container {
    margin-left: 0;
    margin-top: -20px;
    left: 100%;
    right: 0;
}

.leaflet-resp-popup-west-north .leaflet-popup-tip {
    margin: 11px 11px 0px -8px;
    box-shadow: none;
}

.leaflet-resp-popup-west-north .leaflet-popup-content-wrapper {
    border-radius: 20px 20px 0 20px;
}

.leaflet-popup.line-popup.leaflet-resp-popup-west-north .leaflet-popup-content-wrapper {
    border-radius: 8px 8px 0 8px;
}



/* South-West */
.leaflet-resp-popup-south-west .leaflet-popup-tip-container {
    width: 20px;
    left: 100%;
    top: 0;
    margin-top: -20px;
}

.leaflet-resp-popup-south-west .leaflet-popup-tip {
    margin: 11px 11px 11px 11px;
    box-shadow: none;
}

.leaflet-resp-popup-south-west .leaflet-popup-content-wrapper {
    border-radius: 20px 0 20px 20px;
}

.leaflet-popup.line-popup.leaflet-resp-popup-south-west .leaflet-popup-content-wrapper {
    border-radius: 8px 0 8px 8px;
}


/* West-South */
.leaflet-resp-popup-west-south .leaflet-popup-tip-container {
    margin-left: 0;
    margin-right: -20px;
    left: 100%;
    right: 0;
    top: 0;
}

.leaflet-resp-popup-west-south .leaflet-popup-tip {
    margin: -8px;
    box-shadow: none;
}

.leaflet-resp-popup-west-south .leaflet-popup-content-wrapper {
    border-radius: 20px 0 20px 20px;
}

.leaflet-popup.line-popup.leaflet-resp-popup-west-south .leaflet-popup-content-wrapper {
    border-radius: 8px 0 8px 8px;
}

.leaflet-popup.line-popup .leaflet-popup-content-wrapper {
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}

.leaflet-popup.line-popup .marker-cover {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    z-index: 99;
}

.leaflet-popup.line-popup .loading {
    top: 50%;
    left: 50%;
    margin-top: -24px;
    margin-left: -24px;
    width: 48px;
    height: 48px;
}

.leaflet-popup.line-popup .info-name {
    padding-left: 8px;
    width: 152px;
    height: 56px;
}

.leaflet-popup.line-popup .info-title {
    font-size: 16px;
    font-weight: 700;
}

.leaflet-popup.line-popup .info-date {
    font-size: 12px;
}

.leaflet-popup.line-popup .info-desc {
    font-size: 12px;
    color: #808281;
}

.leaflet-popup.line-popup .desc-bottom {
    margin: 10px -8px -8px;
}

.leaflet-popup.line-popup .leaflet-popup-tip-container {
    z-index: 999;
}

.leaflet-popup.line-popup .leaflet-popup-content {
    margin: 0;
}

.leaflet-popup.line-popup a.leaflet-popup-close-button {
    display: none;
}

.leaflet-line-marker {
    width: 24px;
    height: 24px;
    background: #ff544c;
    color: #fff;
    border-radius: 100%;
    border: 1.5px solid #fff;
}

.line-index {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.line-label {
    padding: 5px;
    line-height: 1;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    border: none;
}

.leaflet-tooltip-left {
    margin-left: -18px;
}

.leaflet-tooltip-right {
    margin-left: 18px;
}

.leaflet-tooltip-top {
    margin-top: -18px;
}

.leaflet-tooltip-bottom {
    margin-top: 18px;
}

.leaflet-tooltip-right:before {
    border-right-color: rgba(0, 0, 0, 0.78);
}

.leaflet-tooltip-left:before {
    border-left-color: rgba(0, 0, 0, 0.78);
}

.leaflet-tooltip-bottom:before {
    border-bottom-color: rgba(0, 0, 0, 0.78);
}

.leaflet-tooltip-top:before {
    border-top-color: rgba(0, 0, 0, 0.78);
}

.tip-wrap {
    z-index: 999999999;
}

.tip-main {
    display: table;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tip-section {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.tip-msg {
    position: relative;
    display: inline-block;
    text-align: left;
    background-color: #fff;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0,0,0,.1);
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    width: auto;
    max-width: 90%;
    margin: 0 auto;
    bottom: -150px;
    background-color: rgba(0,0,0,.7);
    color: #fff;
}

.tip-content {
    padding: 10px 18px;
    line-height: 22px;
    text-align: center;
}


/*loading start*/
.weui-mask_transparent {
    position: fixed;
    z-index: 999999999;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.weui-toast {
    position: fixed;
    z-index: 5000;
    width: 136px;
    height: 136px;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;
    border-radius: 12px;
    color: rgba(255,255,255,0.9);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: #4c4c4c;
    box-sizing: border-box;
    line-height: 1.4;
}

.weui-icon_toast {
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.weui-primary-loading {
    font-size: 16px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    position: relative;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    color: #606060;
    -webkit-animation: circleLoading 1s steps(60,end) infinite;
    animation: circleLoading 1s steps(60,end) infinite;
}

@keyframes circleLoading {
  0% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.weui-icon_toast.weui-primary-loading {
    font-size: 40px;
    color: #EDEDED;
}

.weui-primary-loading:before, .weui-primary-loading:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 1em;
    box-sizing: border-box;
    border: 0.125em solid;
    border-color: currentColor;
}

.weui-primary-loading:before {
    border-right-width: 0;
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
    -webkit-mask-image: -webkit-linear-gradient(top,#000000 8%,rgba(0,0,0,0.3) 95%);
}

.weui-icon_toast.weui-primary-loading:before {
    border-width: 4px 0 4px 4px;
}

.weui-primary-loading:after {
    border-left-width: 0;
    border-top-right-radius: 1em;
    border-bottom-right-radius: 1em;
    -webkit-mask-image: -webkit-linear-gradient(top,rgba(0,0,0,0) 8%,rgba(0,0,0,0.3) 95%);
}

.weui-icon_toast.weui-primary-loading:after {
    border-width: 4px 4px 4px 0;
}

.weui-primary-loading__dot {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -0.0625em;
    width: 0.125em;
    height: 0.125em;
    border-top-right-radius: 0.125em;
    border-bottom-right-radius: 0.125em;
    background: currentColor;
}

.weui-icon_toast.weui-primary-loading .weui-primary-loading__dot {
    width: 4px;
    height: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.weui-toast__content {
    font-size: 17px;
    padding: 0 12px;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}
/*loading end*/

.left-top-wrap {
    top: 65px;
    left: 15px;
    z-index: 1010;
    transition: all .25s;
}

.left-top-wrap.line-selected {
    left: -200%;
}

.right-top-wrap {
    top: 65px;
    right: 15px;
    z-index: 1010;
    transition: all .25s;
}

.right-top-wrap.line-selected {
    right: -200%;
}

.left-top-wrap.audio-open,
.right-top-wrap.audio-open {
    top: 105px;
}

.author-wrap {
    display: block;
}

.author-wrap > img {
    max-width: 98px;
    max-height: 38px;
}

.compass-wrap > img {
    max-width: 58px;
    max-height: 58px;
}

.bg-music-wrap {
    display: block;
    width: 38px;
    height: 38px;
    z-index: 99;
    border-radius: 100%;
    background: #fff;
}

.bg-music-wrap.help-status {
    /* opacity: .38; */
    background: #888;
    box-shadow: none;
}

.bg-music {
    position: relative;
    width: 38px;
    height: 38px;
}

.icon-bg-music {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 6px 2px;
    background: url(../images/icon-music-close.png) no-repeat;
    background-size: 28px;
    background-position: 6px 7px;
}

.bg-music.playing .icon-bg-music {
    background: url(../images/icon-music-open.png) no-repeat;
    background-size: 22px;
    background-position: 7px 8px;
    animation: rotating 6s linear infinite;
    animation-delay: 2s;
}

@keyframes rotating {
      0%{-webkit-transform:rotate(0deg);}
      25%{-webkit-transform:rotate(90deg);}
      50%{-webkit-transform:rotate(180deg);}
      75%{-webkit-transform:rotate(270deg);}
      100%{-webkit-transform:rotate(360deg);}
}

.icon-music-note {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    background: url(../images/icon-music-note.png) no-repeat center;
    -webkit-animation: falling 6s 0s infinite;
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 0;
    background-size: 100%;
}

.bg-music.playing.note-open .icon-music-note {
    display: block;
}

.icon-music-note:nth-of-type(2n) { -webkit-animation: falling2 6s 0s infinite; }
.icon-music-note:nth-of-type(3n) { -webkit-animation: falling3 6s 0s infinite; }

.icon-music-note:nth-of-type(n)   { -webkit-animation-delay: 2s;}
.icon-music-note:nth-of-type(2n)  { -webkit-animation-delay: 4s;}
.icon-music-note:nth-of-type(3n)  { -webkit-animation-delay: 6s;}

@-webkit-keyframes falling {
    0% { -webkit-transform: translate3d(0, 0, 0) rotate(0deg) scale(1); opacity: 0.8;}
    100% { -webkit-transform: translate3d(45px, -10px, 0) rotate(90deg) scale(0.9); opacity: 0;}
}

@-webkit-keyframes falling2 {
    0% { -webkit-transform: translate3d(0,0,0) rotate(0deg) scale(1); opacity: 0.8;}
    100% { -webkit-transform: translate3d(40px, -20px, 0) rotate(0deg) scale(0.8); opacity: 0;}
}

@-webkit-keyframes falling3 {
    0% { -webkit-transform: translate3d(0,0,0) rotate(0deg) scale(1); opacity: 0.8;}
    100% { -webkit-transform: translate3d(30px, -15px,0) rotate(-70deg) scale(0.7); opacity: 0;}
}

.btn-wrap {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 6px 2px;
}

.btn-item {
    display: block;
    width: 38px;
    height: 38px;
    z-index: 99;
    border-radius: 100%;
    background: #fff;
}

.btn-item + .btn-item {
    margin-top: 15px;
}

.right-top-wrap {
    right: 10px;
}

.right-top-wrap .btn-item {
    width: 58px;
    height: 58px;
    background-color: transparent;
}

.right-top-wrap .btn-item + .btn-item {
    margin: 0;
}

.right-top-wrap .btn-item-icon {
    width: 58px;
    height: 58px;
}

.btn-line-guide {
    background: #fff url(../images/icon-audio-play-4.png) no-repeat center 10px;
    background-size: 20px;
    box-shadow: rgb(0 0 0 / 16%) 0px 0px 6px 2px;
    border-radius: 20px;
    padding-top: 36px;
    text-align: center;
    line-height: 1.1;
}

.right-top-wrap2.line-selected {
    top: 65px;
    right: 18px;
}

.right-top-wrap .btn-item.line-guide,
.right-top-wrap2 .btn-item-icon.btn-line-guide {
    width: 38px;
    height: 76px;
}

.btn-local {
    background: url(../images/icon-local.png) no-repeat center;
    background-size: 28px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 6px 2px;
}

.btn-local.error {
    opacity: 0.2;
}

.btn-voice {
    background: url(../images/icon-lt4-voice.png?v1) no-repeat center;
    background-size: 100% 100%;
}

.btn-collect {
    background: url(../images/icon-lt4-collect.png?v1) no-repeat center;
    background-size: 100% 100%;
}

.btn-clock {
    background: url(../images/icon-lt4-clock.png?v1) no-repeat center;
    background-size: 100% 100%;
}

.btn-line-wrap {
    bottom: 18px;
    left: 50%;
    margin-left: -48px;
    width: 96px;
    height: 96px;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 16%) 0px 0px 6px 2px;
    background: #ff544c;
    z-index: 1010;
    border: 5px solid #fff;
    transform: translateY(0);
    transition: transform .25s;
}

.btn-line-wrap.marker-selected,
.btn-line-wrap.line-selected {
    transform: translateY(200%);
}

.btn-line-text {
    width: 100%;
    line-height: 24px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    text-align: center;
}

.btn-line-border {
    top: 0;
    left: 0;
    padding: 4px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.btn-line-border::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 1px solid #fff;
    box-sizing: border-box;
}

.btn-auto {
    background: url(../images/icon-auto-close.png) no-repeat center;
    background-size: 24px;
    background-position: 50% 9px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 6px 2px;
    border-radius: 100%;
}

.btn-auto.open {
    background: url(../images/icon-auto.png) no-repeat center;
    background-size: 24px;
    background-position: 50% 9px;
}

.left-bottom-wrap {
    bottom: 40px;
    left: 18px;
    z-index: 1010;
    transition: left .25s;
}

body.device-iphone-x .left-bottom-wrap,
body.device-iphone-x .right-bottom-wrap {
    bottom: 70px;
}

.left-bottom-wrap.line-selected {
    left: -200%;
}

.right-bottom-wrap {
    bottom: 40px;
    right: 18px;
    z-index: 1010;
    transition: right .25s;
}

.right-top-wrap2.line-selected.guiding,
.right-top-wrap2,
.right-bottom-wrap.line-selected {
    right: -200%;
}

.line-guide-wrap {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    transform: translateY(200%);
    transition: transform .25s;
    justify-content: space-evenly;
    z-index: 999;
}

.line-guide-wrap.guiding {
    transform: translateY(0);
}

.btn-guide-item {
    position: relative;
    width: 113px;
    height: 40px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 6px 2px;
    color: #333;
}

.btn-guide-item {
    background: #fff url(../images/icon-audio-pause-4.png) no-repeat 28px center;
    background-size: 16px;
}

.btn-guide-item::after {
    content: '暂停';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    line-height: 1;
    transform: translateY(-50%);
}

.btn-guide-item.end {
    background-image: url(../images/icon-audio-play-4.png);
}

.btn-guide-item.end::after {
    content: '重新开始';
    margin-left: -6px;
}

.btn-guide-item.pause {
    background-image: url(../images/icon-audio-play-4.png);
}

.btn-guide-item.pause::after {
    content: '继续';
}

.btn-guide-item.stop {
    background-image: url(../images/icon-audio-stop-4.png);
}

.btn-guide-item.stop::after {
    content: '退出';
}

.btn-gps-wrap {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 6px 2px;
}

.btn-item-icon.gpsfail,
.btn-gps-wrap.gpsfail {
    opacity: 0.38;
}

.btn-gps {
    width: 38px;
    height: 38px;
    z-index: 99;
}

.btn-gps {
    background: url(../images/icon-gps.png) no-repeat center;
    background-size: 24px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 6px 2px;
    opacity: 0.96;
}

.btn-gps-wrap.locating .btn-gps {
    display: none;
}

.btn-gps-wrap .loading {
    display: none;
    top: 0;
    left: 0;
}

.btn-gps-wrap.locating .loading {
    display: block;
}

.btn-gps-wrap.locking .btn-gps {
    background: url(../images/icon-lock-local.png) no-repeat center;
    background-size: 24px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 6px 2px;
    opacity: 0.96;
}

.icon-locate-wrap {
    position: relative;
    display: block;
    margin: -12px 0 0 -12px!important;
    width: 24px!important;
    height: 24px!important;
    border-radius: 100%;
    border: 3px solid #fff;
    background-color: #e63b33;
    z-index: 9999;
}

.icon-locate-wrap.orientation {
    border: 0;
    background-color: transparent;
}

.icon-locate-wrap.orientation .icon-locate {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -18px;
    margin-top: -18px;
    width: 36px;
    height: 36px;
    background: url(../images/icon-orientation-local-2.png) no-repeat center;
    background-size: 100%;
    z-index: 99;
}
/*icon-orientation-2带箭头, icon-orientation-4不带箭头*/
.icon-locate-wrap.orientation .icon-orientation {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -18px;
    margin-top: -18px;
    width: 36px;
    height: 36px;
    background: url(../images/icon-orientation-4.png) no-repeat center;
    background-size: 100%;
    border-radius: 100%;
}

.audio-wrap {
    padding: 0 1px 0 6px;
    top: 56px;
    left: 18px;
    right: 18px;
    align-items: center;
    background: #333;
    color: #fff;
    transform: translateX(-110%);
    transition: transform 0.3s;
    z-index: 999;
    box-sizing: border-box;
    border-radius: 38px;
    height: 38px;
}

.audio-wrap.open {
    transform: translateX(0);
}

.btn-audio-ctrl {
    width: 36px;
    height: 36px;
    background: url(../images/icon-audio-play-2.png) no-repeat center;
    background-size: 34px 34px;
    flex-shrink: 0;
}

.btn-audio-ctrl.playing {
    background: url(../images/music.gif) no-repeat center;
    background-size: 16px 16px;
}

.audio-info {
    line-height: 1;
}

.btn-close {
    margin-left: 15px;
    width: 36px;
    height: 36px;
    background: url(../images/icon-close-2.png) no-repeat center;
    border-radius: 100%;
    background-size: 12px;
}

.bg-wrap {
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: background .25s;
    z-index: 9999999;
}

.bg-wrap.show {
    background: rgba(0,0,0,0.7);
}

.bg-in-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content-wrap {
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
}
.pie-left,
.pie-right {
    width: 68px;
    height: 68px;
    position: absolute;
    top: 0;
    left: 0;
}
.border-left,
.border-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 68px;
    height: 68px;
    border: 6px solid #ff544c;
    border-radius: 50%;
    transform: rotate(180deg);
}
.pie-right,
.border-right {
    clip: rect(0, auto, auto, 34px);
}
.pie-left,
.border-left {
    clip: rect(0, 34px, auto, 0);
}

.blurry-block {
    top: -40px;
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg,rgba(255,255,255,0) 0,#fff 100%);
}

.introduce-wrap.unfold .introduce-context-wrap {
    height: 100%;
    padding-bottom: 30px;
}

.introduce-phone {
    color: #ff544c;
}

.desc-wrap {
    bottom: 28px;
    left: 18px;
    right: 18px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 6px 2px;
    box-sizing: border-box;
    transform: translateY(200%);
    transition: transform .25s;
}

.desc-wrap.open {
    transform: translateY(0);
}

.desc-bottom {
    border-top: 1px solid #eee;
}

.btn-desc {
    margin: 10px 0;
    text-align: center;
    flex: 1;
}

.btn-desc.active {
    color: #ff544c;
}

.btn-desc + .btn-desc {
    border-left: 1px solid #eee;
}

.desc-top {
    padding: 10px;
}

.desc-name {
    font-size: 16px;
}

.desc-tag,
.desc-address {
    font-size: 12px;
    color: #808281;
}

.desc-audio-wrap {
    margin-left: 10px;
    text-align: center;
}

.desc-audio-wrap.hide {
    display: none;
}

.btn-desc-audio {
    width: 68px;
    height: 68px;
    border-radius: 100%;
    overflow: hidden;
    background: #fff;
    /*图片img用了transform动画，导致safari的显示bug*/
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.btn-desc-audio.no-audio .btn-audio,
.audio-time.no-audio {
    opacity: 0.18;
}

.info-cover-wrap {
    overflow: hidden;
    border-radius: 6px;
}

.info-cover-wrap .btn-audio,
.btn-desc-audio img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    z-index: 999;
}

.info-cover-wrap.has-voice::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 16%);
    z-index: 99;
}

.info-cover-wrap.no-audio .btn-audio {
    display: none;
}

.btn-audio {
    z-index: 10;
}

.audio-time {
    font-size: 12px;
    margin-top: 8px;
    line-height: 1;
    color: #ff544c;
}

.info-cover-wrap.playing .btn-audio-pause,
.btn-desc-audio.playing .btn-audio-pause,
.btn-audio-play {
    display: block;
}

.info-cover-wrap.playing .btn-audio-play,
.btn-desc-audio.playing .btn-audio-play,
.btn-audio-pause {
    display: none;
}

.btn-desc-audio.playing .desc-bg {
    -webkit-transform: rotate(360deg);
    animation: rotation 8s linear infinite;
    -moz-animation: rotation 8s linear infinite;
    -o-animation: rotation 8s linear infinite;
}

@-webkit-keyframes rotation {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.search-wrap,
.nav-wrap,
.phone-wrap,
.detail-wrap,
.voice-wrap,
.line-wrap,
.line-detail-wrap {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    transform: translateY(200%);
    transition: transform .25s;
}

.nav-wrap {
    transform: translateY(-200%);
}

.search-wrap {
    transform: translateX(200%);
    background: #fff;
}

.search-wrap.open {
    transform: translateX(0);
}

.nav-wrap.open,
.phone-wrap.open,
.detail-wrap.open,
.voice-wrap.open,
.line-wrap.open,
.line-detail-wrap.open {
    transform: translateY(0);
}

.search-input {
    padding: 0 18px;
    height: 45px;
    box-shadow: rgb(0 0 0 / 16%) 0px 0px 6px 2px;
    z-index: 99;
}

.search-box {
    padding-right: 12px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 30px;
}

.search-icon {
    width: 40px;
    height: 30px;
    background: url(../images/icon-search.png) no-repeat center;
    background-size: 14px;
}

.search-input input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
}

.search-cancel {
    padding-left: 18px;
}
.search-list-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.search-item {
    padding: 0 18px;
    height: 45px;
}
.search-item.hide {
    display: none;
}
.search-item + .search-item {
    border-top: 1px solid #f7f7f7;
}
.search-item-icon {
    margin-right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    overflow: hidden;
    background: #f7f7f7;
}

.search-item-icon>img {
    width: 100%;
    height: 100%;
}

.search-tag {
    font-size: 12px;
    color: #808281;
}
.desc-bottom {
    border-top: 1px solid #eee;
}

.btn-desc {
    margin: 10px 0;
    text-align: center;
}

.line-detail-wrap .content-wrap {
    top: 108px;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 10px;
    background: #f9f9f9;
    border-radius: 6px 6px 0 0;
}

.line-detail-wrap .title-wrap {
    padding: 15px;
    height: auto;
    font-size: 18px;
    border: none;
    text-align: left;
    line-height: unset;
    background: #f9f9f9;
}

.line-detail-close {
    padding-left: 15px;
    font-size: 14px;
    color: #808281;
}

.icon-toggle-b {
    display: inline-block;
    margin-left: 6px;
    width: 13px;
    height: 8px;
    background: url(../images/icon-triangle-b.png) no-repeat center;
    background-size: 13px;
}

.line-info-list-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.line-info-list {
    padding: 0 15px 10px;
}

.line-list-item {
    padding: 10px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 6px 0px;
    border-radius: 6px;
}

.line-marker-cover {
    margin-right: 10px;
    width: 80px;
    height: 80px;
    background: #ececec;
    overflow: hidden;
    border-radius: 6px;
}

.line-marker-title {
    font-size: 16px;
    font-weight: 700;
}

.line-marker-date {
    font-size: 12px;
}

.line-marker-desc {
    font-size: 12px;
    color: #808281;
}

.line-list-tip {
    padding: 15px 0 15px 20px;
    margin: 0 15px;
    border-left: 1px solid #ececec;
    font-size: 12px;
}

.line-list-tip:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    border: 2px solid #ff544c;
    background: #fff;
    border-radius: 100%;
    box-sizing: border-box;
    margin-top: -5px;
    transform: translateX(-50%);
    z-index: 99;
}

.phone-wrap .content-wrap {
    top: 50%;
    left: 18px;
    right: 18px;
    margin-top: -140px;
    height: 280px;
}

.nav-wrap .content-wrap {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    margin: 0;
    width: 100%;
    border-radius: 0;
}

.line-wrap .content-wrap,
.voice-wrap .content-wrap {
    margin: 0;
    top: 60%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
}

body.device-iphone-x .phone-wrap .content-wrap {
    margin-top: -155px;
}

.title-wrap {
    padding: 0 48px;
    margin: 0;
    width: 100%;
    height: 48px;
    line-height: 48px;
    border-bottom: solid 1px #e8e8e8;
    background: #f9f9f9;
    box-sizing: border-box;
    font-size: 16px;
    text-align: center;
}

.nav-wrap .title-wrap {
    padding: 0 45px 0 18px;
    margin: 0;
    width: 100%;
    height: 45px;
    line-height: 45px;
    border-bottom: solid 1px #f7f7f7;
    background: #ffffff;
    box-sizing: border-box;
    font-size: 16px;
    text-align: left;
    color: #999;
}

.icon-close {
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: url(../images/icon-close.png) no-repeat center;
    background-size: 13px;
    z-index: 99;
}

.nav-wrap .icon-close {
    width: 45px;
    height: 45px;
}

.btn-gohere {
    top: 5px;
    left: 5px;
    width: 38px;
    height: 38px;
    background: #dbdada url(../images/icon-go.png) no-repeat center;
    background-size: 16px;
    z-index: 99;
    opacity: 0.78;
    border-radius: 100%;
}

.detail-content {
    padding: 15px;
    overflow-x: hidden;
    overflow-y: auto;
    /*touch-action: none;*/
}

.detail-content img,
.detail-content video {
    width: 100%;
}

.phone-wrap .detail-content {
    padding: 15px 30px;
}
.nav-wrap .detail-content,
.line-wrap .detail-content,
.voice-wrap .detail-content {
    padding: 0;
}
.nav-wrap .detail-content {
    flex-wrap: wrap;
    margin-right: -1px;
}
.nav-wrap .nav-item {
    padding: 5px;
    width: 33.333%;
    height: 50px;
    border-right: 1px solid #f7f7f7;
    border-bottom: 1px solid #f7f7f7;
    font-size: 16px;
}
.nav-item.show {
    color: #fff;
    background: #ff544c;
}
.nav-item.show .nav-item-border {
    top: 0;
    left: 0;
    padding: 3px;
    width: 100%;
    height: 100%;
}
.nav-item.show .nav-item-border::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    box-sizing: border-box;
}
.phone-item {
    min-height: 49px;
}

.line-item,
.voice-item {
    min-height: 60px;
    padding: 0 18px;
}

.line-item + .line-item,
.voice-item + .voice-item{
    border-top: 1px solid #f7f7f7;
}

.icon-phone-3 {
    display: block;
    margin-right: 20px;
    width: 24px;
    height: 24px;
    background: url(../images/icon-phone-3.png) no-repeat center;
    background-size: 100%;
}

.phone-text {
    text-decoration: none;
    color: #333;
}

.phone-num {
    font-size: 12px;
    color: #808281;
}

.line-num {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 12px;
    border-radius: 100%;
    background: #ff544c;
    color: #fff;
}

.line-name {
    font-size: 14px;
}

.line-infos {
    font-size: 12px;
    color: #808281;
}

.icon-voice {
    margin-right: 20px;
    width: 24px;
    height: 24px;
    background-image: url(../images/icon-user.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.icon-male {
    margin-right: 20px;
    width: 24px;
    height: 24px;
    background: url(../images/icon-male.png) no-repeat center;
    background-size: 100%;
}

.icon-female {
    margin-right: 20px;
    width: 24px;
    height: 24px;
    background: url(../images/icon-female.png) no-repeat center;
    background-size: 100%;
}

.voice-wrap .voice-item.selected,
.line-wrap .line-item.selected {
    background: url(../images/icon-selected-lt4.png) no-repeat;
    background-position: calc(100% - 18px) center;
    background-size: 18px 18px;
}

#mapBoxWrap {
    padding-top: 45px;
}

#mapBoxWrap.open {
    padding-top: 0;
}

.line-list-wrap {
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #fff;
}

.line-list-wrap .icon-close {
    height: 42px;
    background-color: #fff;
}
#indicator {
    top: 5px;
    left: 50%;
    width: 100px;
    height: 10px;
    z-index: 99;
    transform: translateX(-50%);
    justify-content: space-between;
}
#dotty,
.dotty {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #ff544c;
    z-index: 99;
}
.dotty {
    background: #afafaf;
    z-index: 9;
}
#lineListScroller {
    width: 10000px;
    height: 100%;
    z-index: 99;
}
#lineListScroller>ul {
    height: 100%;
    list-style: none;
}
#lineListScroller>ul>li {
    display: block;
    float: left;
    width: 100vw;
    height: 100%;
}
.line-list-wrap.open.guiding,
.line-list-wrap.no-marker.open.guiding,
.line-list-wrap.no-marker {
    height: 0;
}

.line-list-wrap.no-marker.open,
.line-list-wrap.open {
    height: 156px;
}

.line-list-wrap .content-wrap {
    display: inline-block;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    margin: 0;
    border-radius: 0;
}

.line-list-wrap .title-wrap {
    padding: 15px 48px 0 15px;
    height: auto;
    text-align: left;
    background: #fff;
    border: none;
    line-height: 38px;
}

.line-list-wrap .line-info {
    padding: 0 15px 10px;
}

.line-info-wrap {
    font-size: 12px;
}

.line-info {
    padding: 0 15px 15px;
    line-height: 1;
}

.line-info-item {
    color: #808281;
}

.line-list-detail {
    padding: 15px 15px 10px 10px;
    margin-top: -15px;
    margin-right: -15px;
    margin-bottom: -10px;
}

.icon-triangle-r {
    display: inline-block;
    margin-left: 8px;
    width: 8px;
    height: 13px;
    background: url(../images/icon-triangle-r.png) no-repeat center;
    background-size: contain;
}

.line-marker-list-wrap {
    padding: 10px 0;
    width: 100%;
    overflow: hidden;
}

.line-marker-list {
    width: 10000px;
    height: 56px;
    white-space: nowrap;
}

.line-marker-item {
    display: inline-block;
    width: 90px;
    padding: 0 15px;
    text-align: center;
}

.line-marker-item + .line-marker-item .line-marker-index:after {
    content: "";
    display: block;
    width: 40px;
    top: 50%;
    left: -53px;
    position: absolute;
    border-top: 1px dashed #929592;
}

.line-marker-index {
    margin: 0 auto 6px;
    width: 28px;
    height: 28px;
    text-align: center;
    border-radius: 100%;
    border: 1px solid #ff544c;
    font-size: 18px;
    font-weight: 700;
    color: #ff544c;
    background: #fff;
}

.line-marker-item.active .line-marker-index {
    color: #fff;
    background: #ff544c;
}

.header-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    z-index: 9999;
    transform: translateY(0);
    transition: transform .25s;
}

.header-wrap.line-selected {
    transform: translateY(-200%);
}

.navbar-wrap {
    width: 100%;
    height: 45px;
    background: #fff;
    overflow: hidden;
}

.navbar-wrap.help-status {
    background: #888;
}

.navbar-wrap.help-status .nav-icon {
    opacity: 0.38;
}

.navbar-wrap.help-status .nav-text {
    color: #666;
}

.navbar-center {
    padding-left: 45px;
    padding-right: 45px;
    width: 100%;
    height: 100%;
}

.btn-search-box,
.btn-toggle-box {
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    box-shadow: rgb(255 255 255 / 68%) 0px 0px 6px 5px;
    z-index: 9;
}

.btn-search-box {
    left: 0;
    right: auto;
}

.btn-search,
.btn-toggle {
    width: 45px;
    height: 45px;
    background: url(../images/icon-more-lt4.png) no-repeat center;
    background-size: 18px;
}

.btn-search {
    background: url(../images/icon-search-2.png) no-repeat center;
    background-size: 18px;
}

.list-wrap {
    height: 0;
    transition: height 0.3s;
}

.header-wrap.open .list-wrap {
    height: 68%;
    height: 68vh;
    background: #fff;
}

.nav-swiper {
    width: 100%;
    height: 45px;
    overflow: hidden;
}

.nav-swiper .swiper-slide {
    width: auto;
    height: 45px;
}

.nav-swiper .swiper-slide:first-child {
    margin-left: 6px;
}

.nav-icon {
    margin: 0 auto;
    width: 24px;
    height: 24px;
}

.icon-marker {
    width: 24px;
    height: 24px;
    bottom: 0;
}

.nav-text {
    padding: 8px 18px;
    font-size: 16px;
    text-align: center;
    line-height: 1;
}

.nav-border {
    display: none;
    position: absolute;
    padding: 3px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff544c;
    z-index: -1;
    border-radius: 45px;
    overflow: hidden;
    letter-spacing: 2px;
}

.btn-icon {
    width: 100%;
    height: 100%;
    color: #333;
}

.btn-icon.show {
    color: #fff;
}

.btn-icon.show .nav-border {
    display: block;
}

.btn-icon.show .nav-border::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 40px;
    box-sizing: border-box;
}

.list-swiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.list-search {
    padding: 0 15px;
    width: 100%;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    background: #fff;
    border-bottom: solid 1px #eee;
}

.input-wrap {
    padding: 0 10px;
    background: #eee;
    height: 36px;
    border-radius: 36px;
}

.input-wrap img {
    width: 16px;
    height: 16px;
    z-index: 10;
}

.input-wrap input {
    padding: 0 0 0 6px;
    width: 100%;
    height: 26px;
    line-height: 26px;
    border: none;
    outline: none;
    background: transparent;
}

.no-marker-tip {
    text-align: center;
    font-size: 12px;
    line-height: 28px;
    color: #999;
}

.list-item + .list-item {
    border-top: 1px solid #eee;
}

.list-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.list-swiper .swiper-slide {
    display: none;
    padding: 0 15px;
}

.list-swiper .swiper-slide .list-item {
    position: relative;
    padding: 7.5px 20px 7.5px 0;
    min-height: 45px;
}

.list-swiper .swiper-slide .list-item.hide {
    display: none;
}

.no-data {
    padding: 18px 0;
    text-align: center;
    opacity: 0.58;
}

.list-swiper .swiper-slide .list-item.selected {
    padding-right: 26px;
    background: url(../images/icon-selected.png) center right no-repeat;
    background-size: 18px 18px;
}

.list-swiper .swiper-slide .list-item .list-icon {
    margin-right: 7.5px;
    width: 18px;
    height: 18px;
}

.list-icon.has-voice.playing > .icon-playing,
.list-icon.has-voice > .icon-has-voice {
    display: block;
}

.list-icon.has-voice.playing > .icon-has-voice,
.list-icon.has-voice > .icon-playing {
    display: none;
}

.list-swiper .swiper-slide .list-item .list-text {

}

.list-swiper .swiper-slide .list-item .list-icon img {
    width: 100%;
    height: 100%;
}

.list-block {
    position: relative;
    padding: 28px 15px 0;
    margin: 0 -15px;
}

.list-block > .list-category {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 28px;
    line-height: 28px;
    padding: 0 15px;
    background: #f6f6f6;
    color: #808281;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    z-index: 99;
}

.cover-wrap {
    position: relative;
    overflow: hidden;
    background: #ececec;
}

.cover-wrap > img {
    position: relative;
    width: 100%;
    height: 100%;
}

.nav-swiper .swiper-wrapper {
    width: 10000px;
    height: 45px;
    white-space: nowrap;
}

.nav-swiper .swiper-slide {
    position: relative;
    display: inline-block;
    width: auto;
    height: 45px;
    line-height: 45px;
    text-align: center;
}

.help-wrap {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.7);
    color: #fff;
    overflow: hidden;
    z-index: 1005;
}

.help-title {
    padding: 18px;
    line-height: 38px;
    font-size: 20px;
    font-weight: 700;
}

.btn-item.help-status {
    /*opacity: .38;*/
    background: #888;
    box-shadow: none;
}

.btn-item-icon {
    width: 38px;
    height: 38px;
}

.help-step-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.help-step-wrap.help-step-1 .help-step:nth-child(1),
.help-step-wrap.help-step-2 .help-step:nth-child(2),
.help-step-wrap.help-step-3 .help-step:nth-child(3),
.help-step-wrap.help-step-4 .help-step:nth-child(4),
.help-step-wrap.help-step-5 .help-step:nth-child(5),
.help-step-wrap.help-step-6 .help-step:nth-child(6),
.help-step-wrap.help-step-7 .help-step:nth-child(7),
.help-step-wrap.help-step-8 .help-step:nth-child(8),
.help-step-wrap.help-step-9 .help-step:nth-child(9) {
    display: block;
}

.help-step {
    display: none;
    top: 0;
    left: 0;
    padding: 0 68px;
    width: 100%;
    height: 100%;
}

.help-step:nth-child(1),
.help-step:last-child {
    top: 50%;
    left: 50%;
    height: auto;
    transform: translate(-50%, -50%);
}

.help-tip {
    line-height: 1.6;
}

.help-btns {
    margin-top: 18px;
    margin-bottom: 10px;
    justify-content: space-between;
}

.help-btn {
    width: 42%;
    line-height: 34px;
    text-align: center;
    border: 1px solid #eee;
}

.help-btn.btn-next {
    background: #ff544c;
}

.help-hand {
    display: block;
    margin: 0 auto 18px;
    width: 77px;
}

.help-avatar {
    display: block;
    margin: 0 auto 18px;
    width: 88px;
    border-radius: 6px;
}

.help-line {
    top: 0;
    right: 39px;
    width: calc(50% - 36px);
    height: 66px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.help-step.help-left .help-line {
    right: unset;
    left: 39px;
    border-left: none;
    border-right: 2px solid #fff;
}

.help-step.help-bottom .help-line {
    top: auto;
    border-top: none;
    border-bottom: 2px solid #fff;
}

.help-step-wrap.help-step-2 .help-step:nth-child(2) .help-line {
    top: 35px;
}

.help-step-wrap.help-step-3 .help-step:nth-child(3) .help-line {
    top: 142px;
}

.help-step-wrap.help-step-4 .help-step:nth-child(4) .help-line {
    top: 195px;
}

.help-step-wrap.help-step-5 .help-step:nth-child(5) .help-line {
    top: 248px;
}

.help-step-wrap.help-step-6 .help-step:nth-child(6) .help-line {
    top: 301px;
}

.help-step-wrap.help-step-6 .help-step.help-bottom:nth-child(6) .help-line {
    top: 238px;
}

.help-content {
    top: 100%;
    left: 0;
    width: calc(200% - 58px);
    border-top: 2px solid #fff;
    transform: translateX(-50%);
}

.help-step.help-left .help-content {
    left: unset;
    right: 0;
    transform: translateX(50%);
}

.help-step.help-bottom .help-content  {
    top: unset;
    bottom: 100%;
    border-top: none;
    border-bottom: 2px solid #fff;
}

.help-content .help-tip {
    margin-top: 10px;
}

.help-tip.help-ps {
    color: #ff0;
}

@media (min-width: 970px) {
    
    .content-wrap {
        top: 16%;
        left: 50%;
        right: unset;
        bottom: 16%;
        margin-left: -290px;
        width: 580px;
    }

    .phone-wrap .content-wrap {
        left: 50%;
        right: auto;
        margin-top: -190px;
        height: 380px;
    }
    
    .desc-wrap {
        left: 50%;
        right: auto;
        margin-left: -290px;
        width: 580px;
    }

    .line-detail-wrap .content-wrap {
        left: 0;
        margin: 0;
        width: 100%;
    }

    .help-line {
        width: 151.5px;
    }

    .help-step:nth-child(1),
    .help-step:last-child {
        left: 50%;
        padding: 0;
        width: 241px;
        transform: translate(-50%, -50%);
    }
}

.loading {
    padding: 6px;
    width: 100%;
    height: 100%;
}

.loading-bar {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    background-color: transparent;
    border: 2px solid #808281;
    border-bottom-color: transparent;
    background: transparent !important;
    -webkit-animation: loading 0.75s 0s linear infinite; 
    animation: loading 0.75s 0s linear infinite; 
}

.data-empty {
    opacity: 0.58;
}

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

.s-popup .leaflet-popup-content-wrapper,
.min-popup .leaflet-popup-content-wrapper {
    padding: 0;
    overflow: hidden;
}

.s-popup .leaflet-popup-content {
    position: relative;
    width: 280px;
    height: 160px;
    padding: 0;
    margin: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 0.02rem 0.05rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.02rem 0.05rem 0 rgba(0, 0, 0, 0.1);
}

.s-popup a.leaflet-popup-close-button {
    position: absolute;
    padding: 0;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    line-height: 38px;
    z-index: 1;
    text-align: center;
    color: transparent;
    font-size: 20px;
    background: url(../images/icon-close.png) no-repeat center;
    background-size: 13px;
}

.btn-gohere-s {
    position: absolute;
    top: 0;
    right: 38px;
    width: 38px;
    height: 38px;
    background: url(../images/icon-gohere.png) no-repeat center;
    background-size: 16px;
}

.leaflet-container .s-popup a.leaflet-popup-close-button:hover {
    color: transparent;
}

.s-popup .info-name {
    padding: 0 38px 0 10px;
    height: 38px;
    line-height: 38px;
    border-bottom: solid 1px #e8e8e8;
    background: #f9f9f9;
}

.s-popup .info-wrap {
    padding: 10px;
}

.s-popup .info-cover-wrap {
    width: 102px;
    height: 102px;
    background: #f9f9f9;
}

.s-popup .info-right-wrap {
    padding-left: 108px;
    width: 100%;
    height: 102px;
}

.s-popup .marker-cover {
    width: 102px;
    height: 102px;
    z-index: 99;
}

.s-popup .marker-video {
    top: 0;
    left: 0;
    width: 102px;
    height: 102px;
    z-index: 199;
    background: url(../images/icon-audio-play-4.png) no-repeat center;
    background-size: 38px;
}

.s-popup .info-btn-wrap {
    width: 100%;
    height: 42px;
}

.info-brief {
    height: 60px;
}

.btn-info-item {
    display: inline-block;
    width: 72px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 6px;
    background: #333;
    color: #fff;
}

.btn-info-icon {
    margin: 3px auto 4px;
}

.btn-info-text {
    font-size: 12px;
    line-height: 1;
}

.btn-info-item + .btn-info-item {
    margin-left: 5px;
}

/*.btn-audio-ctrl {*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    background: url(../images/icon-audio-play-3.png) no-repeat center;*/
/*    background-size: 18px;*/
/*}*/

/*.btn-play.pause .btn-audio-ctrl {*/
/*    background: url(../images/icon-audio-pause-3.png) no-repeat center;*/
/*    background-size: 16px;*/
/*}*/

/*.btn-play.playing .btn-audio-ctrl {*/
/*    background: url(../images/music.gif) no-repeat center;*/
/*    background-size: 16px;*/
/*}*/

/*.btn-detail-ctrl {*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    background: url(../images/icon-detail.png) no-repeat center;*/
/*    background-size: 17px;*/
/*}*/

.btn-go-ctrl {
    width: 18px;
    height: 18px;
    background: url(../images/icon-go2.png) no-repeat center;
    background-size: 17px;
}

.min-popup .leaflet-popup-content {
    position: relative;
    width: 186px;
    height: 60px;
    padding: 0;
    margin: 0;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 0.02rem 0.05rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.02rem 0.05rem 0 rgba(0, 0, 0, 0.1);
}

.min-popup a.leaflet-popup-close-button {
    display: none;
}

.min-popup .info-wrap {
}

.min-popup .info-cover-wrap {
    width: 60px;
    height: 60px;
    background: #f9f9f9;
}

.min-popup .marker-cover {
    width: 60px;
    height: 60px;
    z-index: 99;
}

.min-popup .marker-video {
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    z-index: 199;
    background: url(../images/icon-audio-play-4.png) no-repeat center;
    background-size: 38px;
}

.min-popup .info-name {
    padding: 0 5px;
}

.min-popup .btn-min-gohere {
    width: 38px;
    height: 60px;
    background: #f9f9f9 url(../images/icon-go.png) no-repeat center;
    background-size: 20px;
    z-index: 99;
    opacity: 0.8;
}

.leaflet-marker-icon.no-voice .marker-icon {
    width: 24px;
    height: 24px;
    background: url(../images/icon-map-scenic.png) no-repeat center;
    background-size: 24px;
}

.marker-icon::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: -2px;
    margin-left: -6px;
    width: 0;
    height: 0;
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.ztoo-marker-img {
    width: 100%;
    height: 100%;
    z-index: 9;
    border-radius: 100%;
    border: 2px solid #fff;
    overflow: hidden;
    background: #f8f8f8 url(../images/waiting.gif) no-repeat center;
    background-size: 80%;
}

.ztoo-marker-icon {
    width: 100%;
    height: 100%;
    z-index: 9;
    border-radius: 100%;
}

.leaflet-marker-icon.has-voice .marker-icon {
    width: 24px;
    height: 24px;
    background: url(../images/icon-map-scenic-video.png) no-repeat center;
    background-size: 24px;
}

.leaflet-marker-icon.cluster-marker .marker-icon {
    width: 50px;
    height: 24px;
    background: url(../images/icon-map-scenic-video-cluster.png) no-repeat center;
    background-size: 24px;
}

.leaflet-marker-icon.cluster-marker.hide {
    display: none;
}

.leaflet-marker-icon.playing .marker-icon {
    width: 50px;
    height: 24px;
    background: url(../images/scenic-playing-2.gif) no-repeat center;
    background-size: 50px 24px;
}

.leaflet-marker-icon.cluster-marker.playing .marker-icon {
    width: 50px;
    height: 24px;
    background: url(../images/scenic-playing-cluster-2.gif) no-repeat center;
    background-size: 50px 24px;
}

.marker-label {
    top: 100%;
    left: 50%;
    padding: 3px 6px;
    margin-top: 6px;
    line-height: 1;
    transform: translate(-50%, 0);
    font-size: 12px;
    border-radius: 9px;
    background: #fff;
    color: #333;
    white-space: nowrap;
}

.marker-icon {
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, 0);
    transition: all .25s;
}

.marker-icon.marker-selected {
    width: 48px;
    height: 48px;
    transform: translate(-50%, -24px);
}

.marker-num {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 99;
}

.video-wrap {
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333;
    z-index: 99999998;
}

.video-wrap>div{
    width: 100%;
    height: 100%;
}

.video-title {
    top: 0;
    left: 0;
    padding: 0 49px;
    width: 100%;
    height: 49px;
    z-index: 999;
    color: #fff;
    text-align: center;
    font-size: 16px;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.video-close {
    top: 0;
    right: 0;
    width: 49px;
    height: 49px;
    background: url(../images/icon-close-2.png) no-repeat center;
    background-size: 13px;
    z-index: 9999;
}

.video-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}