.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 11.7vw;
  width: 100vw;
  z-index: 99;
  background-color: rgb(235, 235, 235);
}
.navbar .logoWrap {
  position: absolute;
  bottom: 22px;
  left: 8.5vw;
  right: 8.5vw;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .logoWrap .logo {
  height: 100%;
}
.navbar .logoWrap .subLogoWrap {
  flex: 1;
  text-align: right;
  height: 22px;
}
.navbar .logoWrap .subLogoWrap .subLogo {
  height: 100%;
}

.root {
  padding-top: calc(11.7vw + 22px);
  padding: calc(11.7vw + 22px) 8.5vw 120px;
}
.root .navWrap {
  line-height: 48px;
  font-size: 32px;
  position: relative;
}
.root .navWrap .dropItem {
  padding: 9px 34px;
  background-color: rgb(255, 255, 255);
  color: rgb(51, 51, 51);
  display: inline-block;
  border-radius: 33px;
  border: 2px solid rgb(0, 0, 0);
}
.root .navWrap .dropList {
  position: absolute;
  top: 71px;
  left: 0;
  width: 30vw;
  text-align: center;
  padding: 20px 0;
  background-color: rgb(255, 255, 255);
  color: rgb(51, 51, 51);
  border-radius: 10px;
  z-index: 109;
}
.root .navWrap .dropList li {
  margin-top: 30px;
  height: 52px;
}
.root .navWrap .dropList li:first-child {
  margin-top: 0;
}
.root .navWrap .dropList.hide {
  display: none;
}
.root .topBox {
  margin-top: 22px;
  height: 350px;
  width: 83vw;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.root .topBox .itemBg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 60px;
  object-fit: cover;
}
.root .topBox .itemBg.full {
  max-width: 100%;
  max-height: 100%;
  height: 350px;
}
.root .topBox .itemBg.hide {
  display: none;
}
.root .topBox .play {
  position: absolute;
  top: 20px;
  right: 26px;
  width: 64px;
  height: 64px;
  z-index: 9;
}
.root .topBox .play.hide {
  display: none;
}
.root .topBox .hoverShow {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.root .topBox .hoverShow video {
  width: 83vw;
  height: 350px;
  object-fit: cover;
  z-index: 0;
}
.root .midbar {
  height: 134px;
}
.root .midbar .logoWrap {
  height: 134px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 22px;
}
.root .midbar .logoWrap .subLogo {
  height: 40px;
}
.root .midbar .logoWrap .subLogo.travel {
  height: 28px;
}
.root .midbar .logoWrap .subLogo.homeFurnishing {
  height: 30px;
}
.root .listWrap {
  margin-top: 44px;
  width: 83vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.root .listWrap .listItem {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 228px;
}
.root .listWrap .listItem .itemBg {
  width: 100%;
  height: 228px;
  object-fit: cover;
}
.root .listWrap .listItem video {
  width: 100%;
  height: 228px;
  object-fit: cover;
}
.root .listWrap .listItem .foot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 66px;
  background-color: rgba(0, 0, 0, 0.52);
  padding: 10px 16px 0 16px;
  box-sizing: border-box;
}
.root .listWrap .listItem .foot .title {
  font-size: 20px;
  text-align: left;
  line-height: 38px;
  color: rgb(255, 255, 255);
}
.root .listWrap .listItem .foot .logo {
  height: 26px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.root .listWrap .listItem .foot .logo.panda {
  height: 43px;
  top: 7px;
}

@media screen and (min-width: 768px) {
  .home .listWrap .listItem .foot .title {
    font-size: 16px;
  }
}
.home .listWrap .listItem {
  margin-bottom: 2.6vw;
}
.home .listWrap .listItem:last-child {
  margin-bottom: 0;
}
.home .listWrap .listItem:nth-child(5) {
  margin-bottom: 0;
}
.home .listWrap .listItem .foot {
  display: flex;
  padding-top: 0;
  justify-content: center;
}

.newListPage {
  padding-bottom: 88px;
}
.newListPage .newListTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newListPage .newListTop .logo {
  width: 30vw;
}
.newListPage .topBox .itemBg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newListPage .topBox .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.newListPage .homeLink {
  position: fixed;
  right: 0;
  height: 154px;
  width: 77px;
  top: calc(112px + 11.7vw);
  font-size: 32px;
  line-height: 40px;
  color: rgb(51, 51, 51);
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border: 2px solid rgb(0, 0, 0);
  border-right: none;
  z-index: 19;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.newListPage .listWrap .listItem {
  height: 356px;
}
.newListPage .listWrap .listItem .itemBg {
  height: 356px;
}
.newListPage .listWrap .listItem .itemBg.hide {
  display: none;
}
.newListPage .listWrap .listItem video {
  width: 100%;
  height: 356px;
  object-fit: cover;
}
.newListPage .listWrap .listItem .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  z-index: 9;
}
.newListPage .listWrap .listItem .play.hide {
  display: none;
}
.newListPage .listWrap .listItem .foot.hide {
  display: none;
}
.newListPage .moreWrap {
  display: flex;
  justify-content: flex-end;
  width: 83vw;
}
.newListPage .moreWrap .more {
  margin-top: 22px;
  margin-bottom: 44px;
  width: 25.6vw;
  text-align: center;
  font-size: 36px;
  line-height: 44px;
  color: rgb(51, 51, 51);
  background-color: rgb(255, 255, 255);
  border-radius: 36px;
  border: 2px solid rgb(0, 0, 0);
  padding: 14px 0;
}

.about .swiperWrap {
  margin-top: 22px;
  height: 266px;
}
.about .swiperWrap .swiper-slide {
  height: 266px;
}
.about .swiperWrap .swiper-slide .itemBg {
  height: 266px;
  width: 83vw;
  object-fit: cover;
}
.about .infoWrap {
  padding-top: 58px;
  padding-bottom: 58px;
  color: rgb(51, 51, 51);
}
.about .infoWrap .line:not(:last-child) {
  padding-bottom: 30px;
}
.about .infoWrap .line .title {
  margin-top: 30px;
  margin-bottom: 24px;
  font-size: 36px;
  line-height: 54px;
  font-weight: 700;
}
.about .infoWrap .line p {
  font-size: 28px;
  line-height: 38px;
}
.about .infoWrap .line p:nth-child(3) {
  margin-top: 42px;
}

.footer {
  margin: 22px auto 0;
  width: 83vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .logo {
  height: 44px;
}
.footer .footerItem {
  text-align: center;
  font-size: 36px;
  line-height: 44px;
  background-color: rgb(255, 255, 255);
  color: rgb(51, 51, 51);
  border-radius: 36px;
  padding: 14px 42px;
  box-sizing: border-box;
  border: 2px solid rgb(0, 0, 0);
}

.footerModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20;
}
.footerModal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  box-sizing: border-box;
  border-radius: 10px;
  z-index: 102;
}
.footerModal .modal-content.hide {
  display: none;
}
.footerModal .modal-content.contactUs {
  width: 66vw;
  height: 578px;
  padding: 46px 33px 70px;
}
.footerModal .modal-content.contactUs p {
  line-height: 44px;
  font-size: 36px;
  overflow-wrap: break-word;
  margin-top: 16px;
}
.footerModal .modal-content.contactUs p:nth-child(2) {
  margin-top: 32px;
}
.footerModal .modal-content.contactUs p:nth-child(3) {
  margin-top: 32px;
}
.footerModal .modal-content.contactUs p:nth-child(5) {
  margin-top: 32px;
}
.footerModal .modal-content.agreement {
  width: 66vw;
  height: 750px;
  padding: 47px 0 47px 48px;
}
.footerModal .modal-content.agreement .agreement-content {
  overflow: scroll;
  height: 100%;
  overflow-x: hidden;
}
.footerModal .modal-content.agreement .agreement-content p {
  line-height: 50px;
  font-size: 36px;
}
.footerModal .modal-content.subscription {
  width: 40vw;
  height: 440px;
  padding: 13px 5px;
}
.footerModal .modal-content.subscription img {
  width: calc(40vw - 10px);
}
.footerModal .modal-content.subscription p {
  text-align: center;
  font-size: 36px;
  line-height: 44px;
}
.footerModal .modal-content.subscription p:first-child {
  margin-top: 24px;
}
.footerModal.hide {
  display: none;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 100;
}
.mask.hide {
  display: none;
}

/*# sourceMappingURL=home.css.map */
