.scaffold-list {
  display: flex;
  flex-direction: row;
  & > a {
    flex: 1;
    max-width: 50%;
  }
}

.scaffold-item-link {
  transition: transform 0.3s ease;
  &:hover {
    transform: translateY(-2px);
  }
}

.scaffold-item {
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  &:active {
    text-decoration: none;
  }
  &:hover {
    box-shadow: 0 0 10px rgba(191, 200, 209, 0.5);
  }
}

.scaffold-item-info {
  margin-bottom: 20px;
  .scaffold-item-title {
    margin-top: 14px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
  }

  .scaffold-item-desc {
    color: #999;
    margin-top: 10px;
    font-size: 12px;
    font-weight: normal;
  }
}

// 更多
//.scaffold-more {
//  width: 350px;
//  height: 40px;
//  margin: 95px auto 0;
//  border-radius: 20px;
//  background: #1b73ff;
//  display: flex;
//  justify-content: center;
//  align-items: center;
//  text-align: center;
//  color: #fff;
//  font-size: 17px;
//  cursor: progress;
//  box-shadow: 0 5px 15px rgba(102, 102, 102, 0.4);
//}
