.resume {
  width: 100%;
}
.resume .list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.resume .list .item-wrap {
  width: 25%;
  margin-bottom: 27px;
}

.resume .list .item {
  position: relative;
  width: 270px;
  height: 375px;
  margin: 0 auto;
  padding: 33px 10px 10px 31px;
  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.resume .list .item .item-avatar {
  overflow: hidden;
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
}


.resume .list .item .item-name {
  margin-top: 24px;
  color: #333;
  font-size: 20px;
}


.resume .list .item .item-position {
  margin-top: 17px;
  color: #be3f44;
  font-size: 20px; 
}

.resume .list .item .item-experience {
  margin-top: 21px;
  color: #666;
}

.resume .list .item .item-btn {
  display: block;
  width: 170px;
  height: 42px;
  margin: 32px auto 0 auto;
  line-height: 42px;
  color: #ee4e53;
  background-color: #fff2f2;
	border-radius: 21px;
	border: 1px solid #f59fa3;
}

.resume .list .item .item-btn:hover {
  opacity: .8;
}

.resume .list .item .item-tips {
  position: absolute;
  top: 21px;
  right: 21px;
  color: #aaa;
  cursor: pointer;
}