body {
  background-color: #F7F7F7;
}
.banner {
  margin-top: 100px;
  height: 290px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner .h2 {
  font-size: 24px;
  font-family: Source Han Sans, Source Han Sans;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 35px;
}
.banner .h3 {
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 24px;
  text-transform: uppercase;
}
.banner .btnMember {
  width: 130px;
  height: 34px;
  background: #F7941D;
  border-radius: 66px;
  color: #FFFFFF;
  line-height: 34px;
  text-align: center;
  margin-top: 15px;
  cursor: pointer;
}
.boxWarp {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 35px;
}
.boxWarp .ctrlBox {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 38px 0 24px;
}
.boxWarp .ctrlBox .ctrlBtn {
  margin: 0;
  width: 100px;
  height: 36px;
  border-radius: 5px;
  opacity: 1;
  border: 1px solid #F7941D;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  color: #1A1A1A;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.boxWarp .ctrlBox .ctrlBtn.active,
.boxWarp .ctrlBox .ctrlBtn:hover {
  color: #FFFFFF;
  background-color: #F7941D;
}
.boxWarp .breadcrumbs {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 18px;
  display: flex;
  align-items: center;
}
.boxWarp .breadcrumbs a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.boxWarp .boxContent {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 40px 60px 60px;
}
.boxWarp .boxContent .subTitle {
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 23px;
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
.boxWarp .boxContent .subTitle::before {
  display: block;
  content: "";
  width: 3px;
  height: 16px;
  background: #F7941D;
  border-radius: 14px;
  margin-right: 10px;
}
.boxWarp .boxContent .content {
  margin-bottom: 70px;
}
.boxWarp .boxContent .content p {
  margin-bottom: 1em;
}
.boxWarp .boxContent .contentList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  margin: 0;
}
.boxWarp .boxContent .contentList .contentItem {
  border-right: 1px solid #D8D8D8;
  margin: 0;
  width: calc(33.3% - 20px);
  min-width: 245px;
  padding-right: 20px;
  box-sizing: border-box;
}
.boxWarp .boxContent .contentList .contentItem:nth-last-of-type(1) {
  border-right: none;
}
.boxWarp .boxContent .contentList .contentItem .info .item {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}
.boxWarp .boxContent .contentList .contentItem .info .item .icon {
  margin: 0;
}
.boxWarp .boxContent .contentList .contentItem .info .item span {
  font-size: 14px;
  font-weight: 400;
  color: #9E9E9E;
  margin: 0 12px;
}
.boxWarp .boxContent .contentList .contentItem .info .item a {
  margin: 0;
  cursor: pointer;
}
.pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-enter-active,
.v-leave-active {
  transition: opacity 0.5s ease;
}
.v-enter-from,
.v-leave-to {
  opacity: 0;
}
@media (max-width: 1286px) {
  .boxWarp .boxContent .contentList .contentItem {
    width: calc(50% - 20px) !important;
  }
  .boxWarp .boxContent .contentList .contentItem:nth-of-type(2n) {
    border-right: none;
  }
}
