* {
  margin: 0;
  padding: 0;
}

[v-cloak] {
  display: none;
}

body {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background-color: #f2f2f2;
}

/* 大座位图屏幕 - max-canvas screen css */
#screen {
  position: absolute;
  width: 100%;
  height: 40px;
  margin-top: 15px;
}
#screen > img {
  display: block;
  width: 60%;
  margin: 0 auto;
}
#screen > p {
  display: block;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 20px;
  font-size: 12px;
  transform: translateX(-50%);
}

/* 大座位图 - max-canvas css */
#container {
  position: relative;
}
#canvas {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 80px;
}

/* 大座位图左边数字标识 css */
.siled {
  margin-top: 40px;
  position: absolute;
  left: 5px;
  padding: 0 2px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  border-radius: 100px;
  z-index: 999;
}

.seats-option {
  width: 60%;
  margin: 0 auto;
}
.seats-option > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.seats-option li {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.seats-option li > img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.seats-option li > span {
  font-size: 12px;
}

#app {
  padding: 10px 0 0;
}

/* 底部业务 - css */
.footer-container {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  z-index: 9999;
  background-color: #fff;
  padding-bottom: 20px;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.notice {
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  padding: 0 15px;
  color: #82848a;
  position: relative;
}
.notice::after {
  content: "";
  width: 93%;
  position: absolute;
  left: 15px;
  bottom: 0;
  border-bottom: 1px solid #f3f4f6;
}

.film-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-right: 20px;
}

.change-plan-text {
  color: #008EFF;
  font-size: 12px;
}

.film-info {
  padding: 10px 15px 0;
}
.name {
  font-size: 15px;
  font-weight: 600;
}
.time {
  padding-top: 4px;
  font-size: 13px;
  color: #82848a;
}
.rec-node {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px 15px;
}

.rec-node ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-left: 20px;
}

.rec-node ul li {
  padding: 5px 10px;
  background-color: #f4f4f4;
  margin-right: 5px;
  border-radius: 5px;
  font-size: 13px;
}

.btn {
  width: 80%;
  margin: 0 auto;
  /* background: linear-gradient(329deg, #ffeea8 0%, #f37b1d 65%); */
  background:#008EFF;
  text-align: center;
  color: #fff;
  line-height: 40px;
  border-radius: 100px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.integral-image {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

.selected-node {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px 15px;
  overflow-x: auto;
}

.selected-node ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.selected-node ul li {
  margin-right: 10px;
  background-color: #f4f4f4;
  padding: 6px 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
}

.selected-li-active {
  border: 1px solid #f37b1d;
}

.selected-node ul li span {
  padding-left: 1px;
  font-size: 12px;
  color: #82848a;
}

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

.seat-hall-name {
  font-size: 12px;
  color: #999;
}

.seat-date-container {
  position: relative;
  width: 88px;
}

.seat-date-price {
  position: absolute;
  top: 6px;
  right: 4px;
  font-size: 13px;
  color: #f00;
  display: flex;
}

.seat-price {
  font-size: 13px;
  color: #f00;
  padding-top: 2px;
}
.selected-node::-webkit-scrollbar {
  display: none;
}

/* 加载动画 */

.loading-toast {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 100%;
}

.toast {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(17, 17, 17, 0.7);
  border-radius: 10px;
  width: 128px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.circle {
  width: 35px;
  height: 35px;
  background: conic-gradient(transparent 10%, #e4e4e4 90%);
  border-radius: 50%;
  position: relative;
  margin: 0.2rem auto;
  animation: rotate 1s linear infinite;
}

.mask {
  width: 30px;
  height: 30px;
  background-color: rgb(76, 76, 76);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
    /* 初始状态 */
  }

  100% {
    transform: rotate(360deg);
    /* 结束状态 */
  }
}

.text {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #e4e4e4;
  margin-top: 10px;
}
