:root {
  --base-background: linear-gradient(145deg, #f8f4ea, #f2ebe0);
  --base-font-color: #3a3a3a;
  --base-font-color-gray: #5a5a5a;
  --header-height: 18rem;
  --header-background-color: rgba(255, 255, 255, 0.7);
  --header-busStop-background: linear-gradient(to right, #d4b15f, #b8903b);
  --header-busStop-font-color: #fff;
  --split-border-background-color: rgba(0, 0, 0, 0.1);
  --shift-item-width: calc(100% - 9rem);
  --shift-item-background-color: rgba(255, 255, 255, 0.8);
  --shift-item-height: 22rem;
  --shift-item-border-radius: 1.5rem;
  --first-shift-item-width: calc(100% - 6rem);
  --first-shift-item-height: 34rem;
}
[v-cloak] {
  display: none !important;
}
html,
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-size: 10px;
}
* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.app {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.app .container {
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--base-background);
  overflow: hidden;
  position: relative;
  color: var(--base-font-color);
}
.app .container .header {
  width: 100%;
  height: var(--header-height);
  background-color: var(--header-background-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.app .container .header .baseInfo {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.app .container .header .baseInfo .dateTime {
  height: 100%;
  text-align: center;
  width: fit-content;
  padding-left: 4rem;
  padding-right: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 6.6rem;
  position: relative;
}
.app .container .header .baseInfo .dateTime:after {
  content: "";
  width: 1px;
  height: 8rem;
  background-color: var(--split-border-background-color);
  position: absolute;
  right: -0.3rem;
  top: 50%;
  transform: translateY(-45%);
}
.app .container .header .baseInfo .dateTime .time {
  color: var(--base-font-color);
  font-size: 6rem;
  font-weight: bold;
}
.app .container .header .baseInfo .dateTime .date {
  color: var(--base-font-color-gray);
  font-size: 4.6rem;
}
.app .container .header .baseInfo .weather {
  width: fit-content;
  height: 100%;
  text-align: center;
  color: var(--base-font-color);
  padding-left: 3rem;
  margin-top: -2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.app .container .header .baseInfo .weather .icon img {
  width: 9rem;
  height: 9rem;
}
.app .container .header .baseInfo .weather .temp {
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 3rem;
}
.app .container .header .baseInfo .weather .temp .text {
  width: 100%;
  text-align: center;
}
.app .container .header .busStopInfo {
  min-width: 80rem;
  max-width: 120rem;
  height: 14rem;
  background: var(--header-busStop-background);
  color: var(--header-busStop-font-color);
  border-radius: 15px 0 0 15px;
  box-shadow: 0 5px 15px rgba(184, 144, 59, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-right: 4rem;
  line-height: 6rem;
}
.app .container .header .busStopInfo .cname {
  font-size: 6rem;
}
.app .container .header .busStopInfo .ename {
  font-size: 4.2rem;
}
.app .container .header .busStopInfo .cname .code,
.app .container .header .busStopInfo .ename .code {
  margin-right: 1rem;
}
.app .container .header .busStopInfo .cname .name,
.app .container .header .busStopInfo .ename .name {
  font-weight: bold;
}
.app .container .main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 0;
  position: relative;
}
.app .container .main .item {
  width: var(--shift-item-width);
  height: var(--shift-item-height);
  background-color: var(--shift-item-background-color);
  border-radius: var(--shift-item-border-radius);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  border: 0.5rem solid transparent;
  transition: all 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 10rem;
  padding-right: 5rem;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}
.app .container .main .item .endStop {
  display: flex;
  flex-direction: column;
}
.app .container .main .item .endStop .to {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}
.app .container .main .item .endStop .cname {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: -6.5rem;
}
.app .container .main .item .endStop .cname .icon {
  width: 6rem;
  height: 6rem;
  color: var(--base-font-color);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.app .container .main .item .endStop .cname .icon .svg-icon {
  fill: currentColor;
  width: 5rem;
  height: 5rem;
}
.app .container .main .item .endStop .cname span {
  font-size: 6rem;
  font-weight: bold;
  line-height: 6rem;
}
.app .container .main .item .endStop .ename {
  font-size: 4rem;
}
.app .container .main .item .routeAndStatus {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.app .container .main .item .routeAndStatus .to {
  font-size: 3.4rem;
  padding-top: 3rem;
  padding-right: 5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.app .container .main .item .routeAndStatus .status .stops {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  height: 12rem;
}
.app .container .main .item .routeAndStatus .status .stops .minsAway {
  color: red;
  font-size: 15rem;
  font-weight: 700;
  padding-right: 5rem;
}
.app .container .main .item .routeAndStatus .status .stops .names {
  padding-top: 2.6rem;
  font-size: 3.4rem;
  color: var(--base-font-color);
}
.app .container .main .item .routeAndStatus .status .stops .names .cname {
  font-weight: 700;
  font-size: 3.8rem;
  margin-bottom: 0.2rem;
}
.app .container .main .item .routeAndStatus .status .stops .names .icon {
  width: 3rem;
  margin-top: 1rem;
}
.app .container .main .item .routeAndStatus .status .arrivingsoon .names,
.app .container .main .item .routeAndStatus .status .startDeparture .names,
.app .container .main .item .routeAndStatus .status .notDeparted .names {
  padding-top: 0;
  text-align: right;
}
.app .container .main .item .routeAndStatus .status .arrivingsoon .names .cname,
.app .container .main .item .routeAndStatus .status .startDeparture .names .cname,
.app .container .main .item .routeAndStatus .status .notDeparted .names .cname {
  font-size: 8rem;
  line-height: 11rem;
}
.app .container .main .item .routeAndStatus .status .arrivingsoon .names .ename,
.app .container .main .item .routeAndStatus .status .startDeparture .names .ename,
.app .container .main .item .routeAndStatus .status .notDeparted .names .ename {
  font-size: 3.8rem;
  line-height: 4.4rem;
}
.app .container .main .item .routeAndStatus .status .startDeparture .names .cname {
  color: red;
}
.app .container .main .item .routeAndStatus .status .arrivingsoon .names .cname {
  color: red;
}
.app .container .main .item-first {
  transition: all 0.3s;
  width: var(--first-shift-item-width);
  height: var(--first-shift-item-height);
  background: linear-gradient(to right, rgba(255, 242, 208, 0.9), rgba(255, 255, 255, 0.9));
  border-color: #d6c69b;
}
.app .container .main .item-first .endStop {
  color: #000;
}
.app .container .main .item-first .endStop .to {
  font-size: 4.8rem;
  margin-bottom: 3rem;
}
.app .container .main .item-first .endStop .cname {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: -7.5rem;
}
.app .container .main .item-first .endStop .cname .icon {
  width: 7rem;
  height: 7rem;
  color: #000;
}
.app .container .main .item-first .endStop .cname .icon .svg-icon {
  width: 6rem;
  height: 6rem;
}
.app .container .main .item-first .endStop .cname span {
  font-size: 8rem;
  font-weight: bold;
  line-height: 10rem;
}
.app .container .main .item-first .endStop .ename {
  font-size: 4.8rem;
  font-weight: bold;
}
.app .container .main .item-first .routeAndStatus .to {
  padding-top: 5.6rem;
  padding-right: 4rem;
}
.app .container .main .item-first .routeAndStatus .status .stops .minsAway {
  font-size: 20rem;
}
.app .container .main .item-first .routeAndStatus .status .stops .names {
  padding-top: 2.8rem;
  font-size: 4rem;
  color: #000;
}
.app .container .main .item-first .routeAndStatus .status .stops .names .cname {
  font-size: 5rem;
}
.app .container .main .item-first .routeAndStatus .status .stops .names .icon {
  width: 4rem;
}
.app .container .main .item-first .routeAndStatus .status .arrivingsoon .names,
.app .container .main .item-first .routeAndStatus .status .startDeparture .names,
.app .container .main .item-first .routeAndStatus .status .notDeparted .names {
  padding-top: 0;
  text-align: right;
}
.app .container .main .item-first .routeAndStatus .status .arrivingsoon .names .cname,
.app .container .main .item-first .routeAndStatus .status .startDeparture .names .cname,
.app .container .main .item-first .routeAndStatus .status .notDeparted .names .cname {
  font-size: 8rem;
  line-height: 11rem;
}
.app .container .main .item-first .routeAndStatus .status .arrivingsoon .names .ename,
.app .container .main .item-first .routeAndStatus .status .startDeparture .names .ename,
.app .container .main .item-first .routeAndStatus .status .notDeparted .names .ename {
  font-size: 3.8rem;
  line-height: 4.4rem;
}
.app .container .main .item-first .routeAndStatus .status .startDeparture .names .cname {
  color: red;
}
.app .container .main .item-first .routeAndStatus .status .arrivingsoon .names .cname {
  color: red;
}
.app .container .main .noSchedule {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.app .container .main .noSchedule .cname {
  font-weight: 700;
  font-size: 8rem;
  line-height: 11rem;
  margin-bottom: 0.2rem;
}
.app .container .main .noSchedule-first {
  font-size: 4.8rem;
  font-weight: 700;
}
.app .container .main .noSchedule-first .cname {
  font-size: 8rem;
  line-height: 15rem;
  margin-bottom: 0.2rem;
}
@keyframes marquee-content {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 5px 15px rgba(184, 144, 59, 0.25);
  }
  50% {
    box-shadow: 0 5px 20px rgba(184, 144, 59, 0.4);
  }
  100% {
    box-shadow: 0 5px 15px rgba(184, 144, 59, 0.25);
  }
}
.slide-enter-active,
.slide-leave-active {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-enter-from,
.slide-leave-to {
  opacity: 0;
}
.slide-enter-to,
.slide-leave-from {
  opacity: 1;
}
.slide-move {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-leave-active {
  position: absolute !important;
}
