.main-content {
  padding-bottom: 40px;
}

.case-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.case-list .case-item {
  width: 578px;
  height: 422px;
  padding: 32px 24px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #E1E6F0;
  margin-top: 43px;
}

.case-list .case-item:hover{
  box-shadow: -3px 9px 13px 0px rgba(0, 0, 0, 0.08);
}

.case-list .case-item .img-box {
  width: 204px;
  height: 358px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.case-list .case-item .img-box .screenshot {
  width: 100%;
  height: 100%;
}

.case-list .case-item .img-box .screenshot img {
  width: 100%;
  max-height: 100%;
  max-height: 100%;
}

.case-list .case-item .img-box .wechat-code {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  text-align: center;
}

.case-list .case-item .img-box .wechat-code img {
  width: 80px;
}

.case-list .case-item .img-box .wechat-code .text {
  font-size: 12px;
  color: #333;
  line-height: 20px;
}

.case-list .case-item .img-box:hover .screenshot {
  background: rgba(255, 255, 255, 0.5);
  filter: blur(7px);
}

.case-list .case-item .img-box:hover .wechat-code {
  display: block;
}

.case-list .case-item .text-box {
  width: 300px;
  margin-left: 23px;
}

.case-list .case-item .text-box .logo-box {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
}

.case-list .case-item .text-box .logo-box img {
  max-width: 100%;
  max-height: 100%;
}

.case-list .case-item .text-box .name {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #333;
  text-align: center;
}

.case-list .case-item .text-box .desc {
  height: 56px;
  font-size: 16px;
  line-height: 28px;
  color: #666;
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.case-list .case-item .text-box .tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  color: #666;
  line-height: 10px;
  padding: 3px 5px;
  border-radius: 2px;
  background-color: #F1F2F4;
}

.case-list .case-item .text-box .btn-box {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

.case-list .case-item .text-box .btn-box .btn {
  width: 123px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}

.case-list .case-item .text-box .btn-box .btn.hollow {
  border: solid 1px #004BE1; 
  color: #004BE1;
}

.case-list .case-item .text-box .btn-box .btn.solid {
  background: linear-gradient(to right, #4591FF, #004BE1);
  color: #fff;
}