body {
  background: linear-gradient(#93d4f6, #99caff);
}
.home-container {
  min-height: 1000px;
  height: 100%;
  background: url(../images/home/bg.png) no-repeat center top;
  background-size: 100% auto;
  padding-top: 265px;
  box-sizing: border-box;
  position: relative;
}
.home-container .title {
  display: block;
  margin: 0 auto 105px;
}
.home-container .btn-entrance {
  width: 506px;
  height: 176px;
  line-height: 160px;
  font-size: 46px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 8px;
  background: url(../images/home/btn-entrance.png) no-repeat;
  margin: 0 auto;
  cursor: pointer;
}
.home-container .entrances {
  width: 100%;
  border-radius: 115px 115px 0 0;
  background: linear-gradient(#e0f1ff, #b1d6ff);
  box-shadow: 0 10px 10px #fff inset;
  padding: 95px 168px 85px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
}
.home-container .entrances .swiper {
  padding: 0 14px;
  margin: 0 auto;
  overflow-y: visible;
}
.home-container .entrances .swiper-slide {
  height: 140px;
  background: #ecf6ff;
  border-radius: 18px;
  box-shadow: 0 0 14px 4px rgba(128, 167, 255, 0.33);
  cursor: pointer;
}
.home-container .entrances .swiper-slide p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  line-height: 40px;
  font-size: 28px;
  font-weight: bold;
  color: #0071ff;
  text-align: center;
  border-radius: 18px;
  box-shadow: 10px 10px 10px #fff inset;
  padding: 20px 40px;
  box-sizing: border-box;
}
.home-container .entrances .swiper-button-prev,
.home-container .entrances .swiper-button-next {
  width: 90px;
  height: 90px;
  position: absolute;
  top: 140px;
}
.home-container .entrances .swiper-button-prev::after,
.home-container .entrances .swiper-button-next::after {
  display: none;
}
.home-container .entrances .swiper-button-prev {
  background: url(../images/home/btn-prev.png) no-repeat;
  left: 40px;
}
.home-container .entrances .swiper-button-next {
  background: url(../images/home/btn-next.png) no-repeat;
  right: 40px;
}
.branches {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.branches .content {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 260px);
  width: 1400px;
  font-weight: bold;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.branches .content > header {
  line-height: 134px;
  font-size: 36px;
  text-align: center;
  color: #333;
  letter-spacing: 4px;
  margin-bottom: 6px;
}
.branches .content > footer {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.branches .content > footer .btn {
  width: 360px;
  height: 80px;
  line-height: 80px;
  font-size: 28px;
  text-align: center;
  border-radius: 20px;
  margin: 0 10px;
  cursor: pointer;
}
.branches .content > footer .btn.cancel {
  color: #0071ff;
  background: #e3f2ff;
}
.branches .content > footer .btn.confirm {
  color: #fff;
  background: #4a84ff;
}
.branches .content ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0 40px;
  overflow-y: auto;
}
.branches .content ul li {
  display: flex;
  align-items: center;
  width: calc(50% - 40px);
  height: 110px;
  font-size: 24px;
  color: #333;
  background: #f2f9ff;
  border: 2px solid #e3f2ff;
  border-radius: 10px;
  box-sizing: border-box;
  margin: 0 20px 20px;
  position: relative;
  cursor: pointer;
}
.branches .content ul li.selected {
  border-color: #568cff;
  background: none;
}
.branches .content ul li.selected::after {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/home/icon-checked.png) no-repeat;
  position: absolute;
  top: -2px;
  right: -2px;
}
.branches .content ul img {
  margin: 0 30px 0 35px;
}
