@charset "UTF-8";
.content-box {
  flex: 1;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1000px) {
  .content-box {
    padding: 10px;
  }
}
.block-1 {
  background: url(/images/M1.jpg) no-repeat 0 0;
  background-size: cover;
  height: 638px;
  display: flex;
  align-items: center;
}
.block-1 .content-box .text-box {
  color: #fff;
  word-break: break-word;
}
.block-1 .content-box .text-box .t1 {
  font-size: 52px;
  font-weight: 600;
  max-width: 478px;
  margin-bottom: 20px;
}
.block-1 .content-box .text-box .d1 {
  color: #fffc;
  font-size: 26px;
  font-weight: 600;
  max-width: 530px;
}
.block-2 {
  padding: 72px 0 150px;
}
.block-2 .box-1 {
  margin-bottom: 80px;
}
.block-2 .box-1 .tag-box {
  display: inline-flex;
  padding: 15px 20px;
  background: linear-gradient(90deg, #c6ab66 13.97%, #a28438 94.63%);
  border-radius: 50px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 31px;
}
.block-2 .box-1 .t1 {
  color: #333;
  font-size: 44px;
  font-weight: 500;
  line-height: 58px;
}
.block-2 .box-1 .d1 {
  color: #333;
  font-size: 16px;
  font-weight: 500;
}
.tabs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  border: 1px solid #d9d9d9;
  margin-bottom: 30px;
}
.tabs-list .tab-item {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
}
.tabs-list .tab-item.active {
  background: #333;
  color: #fff;
}
.tabs-content {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .tabs-content {
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(200px, 378px));
  }
}
.item-box {
  border-radius: 4px;
  border: 1px solid #fff;
  background: linear-gradient(107deg, #d3d3d3 2.29%, #fff 84.77%);
  position: relative;
  overflow: hidden;
  min-height: 235px;
}
.item-box .main {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  padding: 15px 8px 15px 25px;
}
.item-box .main .column-1 {
  display: flex;
  justify-content: space-between;
}
.item-box .main .num {
  font-size: 68px;
  background: linear-gradient(180deg, #333 43.97%, #fff0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.item-box .main .icon {
  max-width: 113px;
  align-self: flex-end;
}
.item-box .main .title {
  margin-bottom: 18px;
  color: #333;
  font-size: 18px;
  font-weight: 500;
}
.item-box .main .desc {
  color: #333;
  font-size: 14px;
}
.item-box .mask-content {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px;
  border: 1px solid #fff;
  background: #09274b66;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.item-box .mask-content .icon {
  max-width: 32px;
  margin-bottom: 10px;
}
.item-box .mask-content .tips {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
