.main-content {
  background-color: #F9FAFF;
}

.main-content .menu {
  background: #FFFFFF;
}

.article {
  width: 378px;
  height: 378px;
  border: 1px solid #EBEDF0;
  border-radius: 6px;
  background: #FFFFFF;
  overflow: hidden;
  margin-top: 32px;
  margin-right: 32px;
  float: left;
  cursor: pointer;
}

.article:nth-child(3n) {
  margin-right: 0;
}

.article .img-box {
  width: 100%;
  height: 216px;
  overflow: hidden;
}

.article .img-box:hover img {
  transform: scale(1.2);
}

.article .img-box img {
  width: 100%;
  height: 100%;
  transition: all 1s;
}

.article .text-box {
  padding: 0 15px;
}

.article .text-box .title {
  height: 58px;
  margin: 18px 0;
  font-size: 20px;
  color: #333;
  line-height: 28px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: box;
  display: -webkit-box;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.article .text-box .btn {
  border-top: solid 1px #EBEDF0;
  font-size: 18px;
  color: #004BE1;
  line-height: 67px;
  text-align: center;
}

.branding {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 75px;
  padding: 0;
}

.branding img {
  width: 142px;
}

.branding .text-box {
  margin-left: 50px;
  text-align: left;
}

.branding .text-box .title {
  font-size: 36px;
  color: #fff;
  /* font-weight: 600; */
  line-height: 50px;
}

.branding .text-box .desc {
  font-size: 20px;
  line-height: 28px;
  margin-top: 16px;
  color: #fff;
}

.branding .btn {
  width: 184px;
  height: 50px;
  border-radius: 4px;
  background: #fff;
  margin-left: 150px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color: #115DE8;
  cursor: pointer;
}