body,
* {
  box-sizing: border-box;
}
body {
  color: rgba(41, 42, 48, 0.83);
  font-size: 100%;
  background: #F6F7F9;
}
*,
::after,
::before {
  box-sizing: border-box;
}
a {
  transition: color 0.3s, background-color 0.3s;
  text-decoration: initial;
}
[v-cloak] {
  display: none;
}
.header {
  width: 100%;
  height: 72px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  background: #fff;
  padding: 0 16px 0 24px;
  display: flex;
  align-items: center;
}
.header .mask-paper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .ant-btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .menu-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-bar {
  width: 18.75rem;
  position: fixed;
  overflow: visible;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 16px 10px;
  margin-top: 72px;
  height: calc(100vh - 72px);
  background: white;
}
.side-bar .ant-menu {
  flex: 1;
  height: 100%;
  font-size: 16px;
}
.side-bar .ant-menu-vertical {
  border-inline-end: 0 !important;
}
.side-bar .ant-menu-item {
  height: 48px;
  line-height: 48px;
  border-radius: 48px;
}
.main-content.with-side-bar {
  width: 100%;
  padding: calc(72px + 14px) calc(52px) 1.5rem 20.25rem;
}
.main-container {
  --bs-gutter-x: 0;
  display: flex;
}
.stops-list {
  border-radius: 1.375rem;
  overflow: hidden;
}
.stops-list .stop-header {
  display: flex;
  align-items: center;
  background: #18A47C;
  gap: 28px;
  padding: 0.75rem 3.25rem 0.75rem 3.25rem;
}
.stops-list .stop-header .item {
  font-size: clamp(12px, 1.25rem, 20px);
  color: white;
  text-align: center;
}
.stops-list .stop-header .item .fare {
  font-size: clamp(12px, 1.5rem, 24px);
  margin: 0rem 1rem 0rem 1rem;
  font-weight: 500;
}
.stop-center {
  outline: 0;
  position: relative;
  width: 100%;
  background: white;
  padding: 2rem 3.25rem 0.75rem 3.25rem;
  --bs-link-hover-color-rgb: rgba(41, 42, 48, 0.83);
  display: flex;
  overflow-y: scroll;
  overflow-x: hidden;
  flex-direction: column;
  height: 55vh;
  -webkit-overflow-scrolling: touch;
  /* WebKit 浏览器 */
  /* Firefox */
  scrollbar-width: thin;
  /* auto | thin | none */
  scrollbar-color: #bbb #f1f1f1;
}
.stop-center::-webkit-scrollbar {
  width: 0px;
  /* 垂直滚动条宽度 */
  height: 0px;
  /* 水平滚动条高度 */
}
.stop-center::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0px;
}
.stop-center::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 0px;
}
.stop-center::-webkit-scrollbar-thumb:hover {
  background: #a2a2a2;
}
.stop-container {
  outline: 0;
  padding: 1.5rem 0rem 1.5rem 3.75rem;
  position: relative;
  display: table;
  width: 100%;
  color: rgba(41, 42, 48, 0.83);
  border-radius: 1rem;
}
.stop-container::before {
  top: inherit;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: calc(100%);
}
.stop-container:last-child::before {
  opacity: 0;
}
.stop-container:first-child .stop-body::before {
  height: 50%;
  top: calc(50%);
}
.stop-container:last-child .stop-body::before {
  height: 50%;
  top: 0;
}
.stop-container .stop-body > h3 {
  font-size: clamp(14px, 1.125rem, 18px);
  font-weight: inherit;
}
.stop-container .stop-body > h3::before {
  background: #18A47C;
  border-radius: 50%;
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.stop-container .stop-body::before {
  background: #CFEDE5;
  content: "";
  height: calc(100%);
  position: absolute;
  left: 1.75rem;
  top: 0;
  width: 1rem;
}
.stop-container .bus-Chevron_Right_Duo {
  color: white;
  font-size: 0.75rem;
  left: 1.75rem;
  transform: rotate(90deg);
  display: block;
  position: absolute;
  top: calc(50% - 20px);
  z-index: 1;
  /* 动画 */
  animation: moveY 3s linear infinite;
}
.stop-container:last-child .bus-Chevron_Right_Duo {
  display: none;
}
@keyframes moveY {
  0% {
    top: calc(50% - 20px);
    visibility: visible;
  }
  33.333% {
    top: calc(100% + 20px);
    visibility: hidden;
  }
  100% {
    top: calc(100% + 20px);
    visibility: hidden;
  }
}
.stop-container.selected,
.stop-container:hover {
  background: #EEF9F6;
  color: var(--bs-link-hover-color-rgb);
}
.stop-container.selected .stop-body > h3::before,
.stop-container:hover .stop-body > h3::before {
  background: #E33939;
}
.ant-modal-mask {
  backdrop-filter: blur(5px);
}
.ant-input-search-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.iconfont {
  font-size: 18px;
}
.left-content {
  background: #EEF9F6;
  padding: 2.625rem 3.25rem 3.25rem 3.25rem;
  border-radius: 4.5rem;
}
.left-content h4 {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: clamp(12px, 2.25rem, 36px);
}
.left-content h4 .bus-Chevron_Right_Duo {
  font-size: clamp(12px, 1.125rem, 18px);
  margin: 0rem 2rem 0rem 2rem;
}
.left-content h4 .icon_swap {
  font-size: clamp(12px, 1.0625rem, 17px);
  padding: 8px 10px;
  background: rgba(24, 164, 124, 0.1);
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  color: #18A47C;
  margin: 0rem 2rem 0rem 2rem;
}
.route-container .schedule-links-wrapper {
  padding: 16px 14px 4px;
}
.route-container .schedule-links-wrapper a {
  color: #1a65e5;
  text-decoration: underline;
  font-size: 0.82352941rem;
  display: block;
  margin-bottom: 12px;
}
.route-container .card-title {
  font-size: clamp(16px, 1.5rem, 24px);
}
.route-container .route-body {
  margin: 0rem 0rem 1.5rem 0rem;
}
.route-container .route-body .route-info {
  display: flex;
  align-items: center;
  height: 100%;
  border-radius: 1rem;
  padding: 1.5rem 2.375rem 1.5rem 2.375rem;
  background: white;
}
.route-container .route-body .route-info .line {
  display: flex;
  flex-direction: column;
  background: #18A47C;
  font-weight: 400;
  align-items: center;
  padding: 0.75rem 2.625rem 0.75rem 2.625rem;
  margin: 0rem 1.5625rem 0rem 0rem;
  border-radius: 0.375rem;
  white-space: nowrap;
}
.route-container .route-body .route-info .line .no {
  font-size: clamp(12px, 1.5rem, 24px);
  color: white;
  margin: 0rem 0rem 0.625rem 0rem;
  font-weight: 500;
}
.route-container .route-body .route-info .line .co {
  font-size: clamp(12px, 1.125rem, 18px);
  color: #CFEDE5;
}
.route-container .route-body .route-info .wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.route-container .route-body .route-info .wrap .title {
  font-size: clamp(12px, 1.25rem, 20px);
  margin-bottom: 8px;
}
.route-container .route-body .route-info .wrap .desc {
  font-size: clamp(12px, 1rem, 16px);
  color: #A2A2A2;
}
.route-container .route-body .route-info .icon_swap {
  font-size: clamp(12px, 1rem, 16px);
  padding: 6px 10px;
  background: rgba(24, 164, 124, 0.1);
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  color: #18A47C;
  margin: 0rem 0.625rem 0rem 0.625rem;
}
.route-container .route-body .route-info .icon_swap .bus-icon_swap {
  font-size: clamp(12px, 1rem, 16px);
}
.route-container .route-body .ant-spin-nested-loading,
.route-container .route-body .ant-spin-container {
  height: 100%;
}
.route-container .route-body .eta-list {
  display: flex;
  gap: 1.5rem;
  height: 100%;
  min-height: 8.375rem;
}
.route-container .route-body .eta-list .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 1rem;
  background: white;
}
.route-container .route-body .eta-list .item * {
  position: relative;
  z-index: 1;
}
.route-container .route-body .eta-list .item .time {
  font-size: clamp(12px, 1.5rem, 24px);
  color: #18A47C;
  font-weight: 500;
}
.route-container .route-body .eta-list .item .minute {
  font-size: clamp(12px, 1.125rem, 18px);
  color: #A2A2A2;
}
.route-container .route-body .eta-list .item .bus-a-route_detail_eta_dst_mtr1 {
  position: absolute;
  left: 0;
  bottom: 0.6875rem;
  color: #EEF9F6;
  font-size: clamp(12px, 3.4375rem, 55px);
  z-index: 0;
  display: flex;
  align-items: center;
  height: 2.625rem;
}
.route-container .right-content .ant-card {
  box-shadow: none;
}
.route-container .right-content .ant-card-body {
  padding: 0;
}
.route-container .freq-list .item {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  margin-bottom: 1rem;
}
.route-container .freq-list .item .week {
  display: flex;
  align-items: center;
  background: #EEF9F6;
  color: #18A47C;
  padding: 0.75rem 1.5rem 0.75rem 1.5rem;
  border-radius: 1rem;
  font-size: clamp(14px, 1.25rem, 20px);
}
.route-container .freq-list .item .week .bus-a-TimeCircle {
  color: #18A47C;
  font-size: clamp(12px, 1.5rem, 24px);
  margin: 0rem 1rem 0rem 0rem;
}
.route-container .freq-list .item .date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #67686B;
  font-size: clamp(13px, 1.125rem, 18px);
}
.route-container .freq-list .item .date p {
  margin: 0;
}
.route-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.route-list .item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: #EEF9F6;
  color: #67686B;
  font-size: clamp(12px, 1.25rem, 20px);
  padding: 1rem 0.75rem 1rem 0.75rem;
  border-radius: 1rem;
}
.route-list .item .line {
  border-radius: 0.75rem;
  padding: 0.75rem 0.875rem 0.75rem 0.875rem;
  color: white;
  background: #18A47C;
  white-space: nowrap;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.route-list .item .line .bus-bus {
  font-size: clamp(12px, 1.5rem, 24px);
}
.route-list .item .no {
  color: #18A47C;
}
.pdf-container .page-height {
  position: relative;
  height: 1131.55px;
  overflow: hidden;
  padding-top: 16px;
  box-sizing: border-box;
}
.pdf-container .page-height .after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 19.05px;
  background: #18A47C;
}
.pdf-container .pdf-header {
  background: url('../../web/img/route-pdf-header.png') no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  font-size: 24px;
  padding: 19px 24px 19px 98px;
  margin-bottom: 20px;
  font-weight: 500;
  color: white;
  line-height: 1;
}
.pdf-container .img-arrival {
  width: 368.9px;
  height: 63.6px;
  margin-top: 10px;
}
.pdf-container .stop-container {
  padding: 9.5px 0vw 10px 24px !important;
}
.pdf-container .stop-container .stop-body::before {
  left: 0;
  width: 8px;
}
.pdf-container .stop-container .stop-body > h3 {
  line-height: 22px;
}
.pdf-container .stop-container .stop-body > h3::before {
  width: 8px;
  height: 8px;
  left: 0;
}
.pdf-container .stop-container .bus-Chevron_Right_Duo {
  display: none;
}
.pdf-container .stop-center {
  padding: 6px 16px;
}
.pdf-container .stops-list .stop-header {
  padding: 0.75rem 3.25rem 0.75rem 10px;
  gap: 10px;
}
.pdf-container .stops-list .stop-header .item {
  font-size: 14px;
  display: flex;
  white-space: nowrap;
}
.pdf-container .stops-list .stop-header .item .fare {
  font-size: 14px;
}
.pdf-container .left-content {
  padding: 12px;
  border-radius: 8px;
}
.pdf-container .left-content h4 {
  font-size: 22px;
  margin-bottom: 16px !important;
}
.pdf-container .left-content h4 .bus-Chevron_Right_Duo {
  margin: 0 10px;
}
.pdf-container .right-content {
  border-radius: 8px;
}
.pdf-container .route-body {
  margin-bottom: 16px;
}
.pdf-container .route-body .route-info {
  margin-bottom: 0;
  padding: 16px;
}
.pdf-container .route-body .route-info .line .no {
  margin-bottom: 0;
}
/* 大屏幕 (小型桌面顯示器) tablet */
@media (max-width: 991px) {
  html {
    font-size: 16px;
  }
  .main-content.with-side-bar {
    padding: calc(72px + 14px) 0 0 0;
  }
  .right-content {
    padding-right: 20px;
  }
  .left-content .ant-row {
    gap: 16px;
  }
  .stop-container {
    padding: 10px 0vw 10px 50px !important;
  }
  .stop-center {
    padding: 14px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 12px !important;
  }
  .main-container {
    padding: 0;
  }
  .breadcrumb {
    display: none;
  }
  html {
    font-size: 14px;
  }
  .main-content.with-side-bar {
    padding: calc(72px + 14px) 0 0 0;
  }
  .left-content {
    padding: 12px 0;
    background: white;
    border-radius: 16px 16px 0 0;
  }
  .stop-center {
    padding: 14px;
  }
  .route-container .route-body {
    padding: 0 16px;
  }
  .route-container .route-body .route-info {
    height: auto;
    padding: 0 10px 0 24px;
  }
  .route-container .route-body .eta-list {
    min-height: 3.75rem;
  }
  .route-container .route-body .eta-list .item {
    padding: 0;
  }
  .route-container .route-body .eta-list .item .bus-a-route_detail_eta_dst_mtr1 {
    font-size: 24px;
    bottom: 0;
    z-index: 0;
    height: 21px;
    display: flex;
    align-items: center;
  }
  .route-container .right-content .ant-card-body {
    padding: 14px;
  }
}
