


html, body {
  width: 100%;
  min-height: 100%;
  height: 100%;
}
::-webkit-scrollbar {
  display: none;
}
.page {
  width: 100%;
  min-width: 1440px;
  height: 100%;
}

.space {
  flex-grow: 1;
}


.page .tabs {
  width: 100%;
  background-color: #fff;

}
.page .tabs .tabs-wrapper {
  width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.page .tabs .tabs-wrapper .tab {
  width: 352px;
  height: 80px;
  background-color: #DDE8F3;
  font-family: Source Sans Pro, Source Sans Pro;
  font-weight: 700;
  font-size: 24px;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page .tabs .tabs-wrapper .tab.active {
  background-color: #105DAA;
  color: #fff;
  font-family: Source Sans Pro, Source Sans Pro;
  font-weight: 700;
  font-size: 24px;
}
.page .about {
  width: 100%;
  /* height: 692px; */
  box-sizing: border-box;
  padding: 48px 0;
  background-image: url("../static/123.png");
  background-size: 100% 100%;
}
.page .about .content {
  width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: repeat(4, 1fr); */
  gap: 48px 26px ;
}
.page .about .content .tag {
  width: 100%;
  height: 88px;
  font-size: 16px;
  border-radius: 10px 10px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  color: #105DAA;
  background: #E4F1FF;
  border: 1px solid #105DAA;
  padding: 0 45px;
  box-sizing: border-box;
  cursor:pointer;

}

/*.page .about .content .tag:nth-child(1) {*/
/*  color: #fff;*/
/*  background: linear-gradient( 180deg, #158BDF 0%, #105DAA 100%);*/
/*}*/
.page .about .content .tag:hover {
  color: #fff;
  background: linear-gradient( 180deg, #158BDF 0%, #105DAA 100%);
}