html {
  transform-origin: top left;
  /* width: 1920px; */
  transition: 0.1s;
}

body {
  background: #F3F3F3;
}

.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.home-content-view {
  width: 1270px;
  margin-top: -70px;
}

.home-num-view {
  height: 181px;
  background: rgba(255, 255, 255, 0.99);
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
}

.home-num-view::before,
.home-num-view::after {
  content: '';
  display: block;
}

.home-num-view .box {
  display: flex;
  flex-direction: column;
  min-width: 540px;
}

.home-num-view .box .titles {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.home-num-view .title-total {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #5A5A5A;
}

.home-num-view .title-date {
  font-family: Source Han Sans CN;
  color: #989797;
}

.home-num-view .num {
  font-family: Bebas;
  font-weight: 400;
  font-size: 58px;
  letter-spacing: 5px;
  color: #1B1B1B;
  line-height: 1;
  margin-top: 36px;
}

.home-num-view .divider {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 1px;
  height: 126px;
  background: #DEDDDD;
  margin-top: auto;
}

.home-num-view .other-divider {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 1px;
  height: 126px;
  background: #DEDDDD;
  margin-bottom: auto;
}

.home-num-view .title-total-right {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #5A5A5A;
}

.home-num-view .title-date-right {
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #989797;
}

.home-num-view .num-right {
  font-family: Bebas;
  font-weight: 400;
  font-size: 62px;
  letter-spacing: 5px;
  color: #1B1B1B;
  line-height: 1;
  margin-top: 36px;
}

.tip-view {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
  align-items: center;
  margin-top: 40px;
  transition: 0.3s;
}

.tip-view .box {
  width: 253px;
  height: 79px;
  background: url(../../assets/to-right.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  align-items: center;
  transition: 0.3s;
}

.tip-view .box:hover {
  background: url(../../assets/to-right-hover.png) no-repeat;
  background-size: 100% 100%;
}

.tip-view .box:active {
  background: url(../../assets/to-right.png) no-repeat;
  background-size: 100% 100%;
}

.tip-view .box+.box {
  margin-right: 68px;
  width: 278px;
  background: url(../../assets/to-right-light-long.png) no-repeat;
  background-size: 100% 100%;
}

.tip-view .box+.box:hover {
  background: url(../../assets/to-right-light-long-hover.png) no-repeat;
  background-size: 100% 100%;
}

.tip-view .box+.box:active {
  background: url(../../assets/to-right-light-long.png) no-repeat;
  background-size: 100% 100%;
}

.tip-view .box .icon {
  width: 39px;
  height: 34px;
  margin-left: 28px;
}

.tip-view .box .text {
  margin-left: 25px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 24px;
  color: #FEFEFE;
}

.page-view {
  /* 382.35px */
  width: 100%;
  height: 407px;
  position: relative;
  /* background: rgba(255, 0, 0, 0.3); */
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.page-view .loading {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.page-view .box {
  width: 383px;
  height: 407px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
}

.page-view .box .top-img {
  width: 100%;
  height: 231px;
  background: rgba(233, 226, 129, 0.3);
}

.page-view .box .divider {
  width: 366px;
  height: 6px;
  align-self: center;
  margin-top: 3px;
}

.page-view .box .title {
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 18px;
  color: #1B1B1B;
  line-height: 1;
  margin: 19px 22px 0 22px;
}

.page-view .box .description {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #5A5A5A;
  line-height: 26px;
  margin: 20px 18px 0 20px;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.page-view .box .button {
  width: 137px;
  height: 100px;
  margin-top: 25px;
  align-self: flex-end;
  background: url(./button1.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #56B3C5;
  padding-left: 25px;
  margin-right: 27px;
  cursor: pointer;
  transition: 0.3s;
}

.page-view .box .button:hover {
  opacity: 0.8;
}

.page-view .box .button:active {
  opacity: 1;
}

.page-view .arraw {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -71px;
  width: 52px;
  height: 52px;
  margin: auto;
  cursor: pointer;
  background: #FFFFFF;
  border-radius: 3px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.page-view .arraw:hover {
  opacity: 0.8;
}

.page-view .arraw:active {
  opacity: 1;
}

.page-view .arraw-left {
  position: absolute;
  top: 0;
  bottom: 0;
  right: unset;
  left: -71px;
}

.button-bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.button-bottom .button {
  margin-top: 74px;
  width: 312px;
  height: 85px;
  line-height: 85px;
  background: url(./button-bottom.png);
  background-size: 100% 100%;
  font-family: Source Han Sans CN;
  font-weight: bold;
  font-size: 24px;
  color: #4DA2B3;
  padding-left: 30px;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.3s;
}

.button-bottom .button:hover {
  background: url(./button-bottom-hover.png);
  background-size: 100% 100%;
}

.button-bottom .button:active {
  background: url(./button-bottom.png);
  background-size: 100% 100%;
}