.project .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 35px;
}
.project .listBox .item {
  width: calc((100% - 35px * 2) / 3);
}
@media screen and (max-width: 767px) {
  .project .listBox .item {
    width: calc((100% - 35px) / 2);
  }
}
@media screen and (max-width: 575px) {
  .project .listBox .item {
    width: 100%;
  }
}
.project .listBox .item:hover .pic img {
  transition: all 20s ease;
  transform: scale(1.2);
}
.project .listBox .item:hover .pic::after {
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
}
.project .listBox .pic {
  margin: 0 0 10px;
  position: relative;
  overflow: hidden;
}
.project .listBox .pic::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-image: linear-gradient(to right, #fff 0%, #fff 100%), linear-gradient(to bottom, #fff 0%, #fff 100%), linear-gradient(to left, #fff 0%, #fff 100%), linear-gradient(to top, #fff 0%, #fff 100%);
  background-size: 0 1px, 1px 0, 0 1px, 1px 0;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: all 0.6s ease-in-out;
}
.project .listBox .title {
  font-size: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1000px) {
  .project .listBox .title {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .project .listBox .title {
    font-size: 1.25rem;
  }
}

.projectDetail .siteHeader {
  background: none;
}
.projectDetail .siteMain {
  padding: 0;
}
.projectDetail {
  overflow: hidden;
}
.projectDetail .wrapper {
  padding: 0;
}
/* .projectDetail.headFix .headerBox {
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  } */
.projectDetail .siteHeader {
  position: fixed;
}
.projectDetail .headerBox {
  background: none;
}
.projectDetail .headerBox .logo,
.projectDetail .headerBox .container {
  border: none;
}
.projectDetail:not(.headFix) .menuBox .mainMenu > ul > li > a,
.projectDetail:not(.headFix) .menuBox .mainMenu > ul > li > button {
  color: #fff;
}
.projectDetail .menuBox .mainMenu > ul > li > a:hover,
.projectDetail .menuBox .mainMenu > ul > li > button:hover {
  color: #fff;
}
.projectDetail .listBox .item .pic {
  height: 100vh;
  height: 100dvh;
}
.projectDetail .siteMain .listBox .slick-slide img {
  object-fit: cover;
}
.projectDetail .sideNav {
  position: fixed;
  right: 0px;
  top: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 100vh;
  transition: all 1s ease-in-out;
}
.projectDetail .sideNav button {
  width: 2px;
  height: 20px;
  padding: 0;
  margin: 5px 0;
  background: #fff;
  transition: all 1s ease-in-out;
}
.projectDetail .sideNav button.active {
  background: #b20000;
}
.projectDetail .page {
  height: 100vh;
  position: relative;
  isolation: isolate;
}
.projectDetail .page::before {
  content: '';
  position: absolute;
  display: block;
  inset: 0;
  opacity: 0.2;
  z-index: 0;
}
.projectDetail .page .pic {
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}
.projectDetail .page .pic img {
  -o-object-fit: cover;
  object-fit: cover;
}

.projectDetail .contentBox {
  position: relative;
}
.projectDetail .contentBox::before {
  content: '';
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: block;
  inset: 0;
  z-index: 5;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
}
.projectDetail .contentBox .infoBox {
  position: absolute;
  inset: 40px;
  z-index: 9;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .projectDetail .contentBox .infoBox {
    inset: 60px 40px 0;
  }
}
.projectDetail .contentBox .infoBox .content {
  max-width: 1200px;
  width: 100%;
  margin-top: 10%;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.8;
}
@media screen and (max-width: 1600px) {
.projectDetail .contentBox .infoBox .content {
  max-width: 850px;
  width: 100%;
  margin-top: 9%;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.5;
    }
}
.projectDetail .contentBox .infoBox .content .title,
.projectDetail .contentBox .infoBox .content .slogan,
.projectDetail .contentBox .infoBox .content .description,
.projectDetail .contentBox .infoBox .content table {
  max-width: 530px;
}

.projectDetail .infoBox .content .title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 50px;
}
@media screen and (max-width: 1600px) {
  .projectDetail .infoBox .content .title {
    font-size: 32px;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .projectDetail .infoBox .content .title {
    font-size: 26px;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .projectDetail .infoBox .content .title {
    font-size: 20px;
  }
}
.projectDetail .infoBox .content .slogan {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 25px;
}
@media screen and (max-width: 1600px) {
  .projectDetail .infoBox .content .slogan {
    font-size: 22px;
    margin: 0 0 15px;
  }
}
@media screen and (max-width: 1000px) {
  .projectDetail .infoBox .content .slogan {
    font-size: 20px;
    margin: 0 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .projectDetail .infoBox .content .slogan {
    font-size: 16px;
  }
}
.projectDetail .infoBox .content .description {
  font-size: 18px;
  margin: 0 0 60px;
}
@media screen and (max-width: 1600px) {
  .projectDetail .infoBox .content .description {
    font-size: 16px;
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 1000px) {
  .projectDetail .infoBox .content .description {
    font-size: 15px;
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .projectDetail .infoBox .content .description {
    font-size: 14px;
  }
}
.projectDetail .infoBox .content a {
  color: #fff;
}
.projectDetail .infoBox .content a:hover {
  color: #a59768;
}
.projectDetail .infoBox .content table {
  text-align: left;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .projectDetail .infoBox .content table {
    font-size: 13px;
  }
}
.projectDetail .infoBox .content table th {
  padding: 0 25px 0 0;
}

.projectDetail .logo {
  z-index: 9;
}
.projectDetail .mobileBtn::before {
  background: #fff;
  box-shadow: #fff 0 7px 0 0, #fff 0 -7px 0 0;
}
.projectDetail .mobileBtn::after {
  background: #fff;
}
.projectDetail.mobileOpen .mobileBtn::before {
  background: #a59768;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: none;
}
.projectDetail.mobileOpen .mobileBtn::after {
  background: #a59768;
  transform: translate(-50%, -50%) rotate(-45deg);
}
