html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.resources {
  width: 100%;
  height: 100%;
  overflow: scroll;
}

.resources_top {
  height: 174px;
  width: 100%;

}

.resources_top img {
  width: 100%;
  height: 100%;
}

.resources_container {
  width: 100%;
  height: calc(100% - 174px);
  position: relative;
}

.resources_list {
  width: calc(100% - 40px);
  box-sizing: border-box;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.resources_list_li {
  width: 100%;
  height: 80px;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 50px 8px;
  display: flex;
  overflow: hidden;
  margin-bottom: 20px;
}

.resources_li_left {
  flex: 1;
  padding-left: 9px;
  position: relative;
}

.resources_li_left::after {
  content: '';
  width: 3px;
  height: 18px;
  background: #5E677D;
  position: absolute;
  top: 18px;
  left: 0;
}

.left_title {
  font-size: 14px;
  color: #5E677D;
  line-height: 20px;
  margin-top: 17px;
}

.left_label {
  font-size: 12px;
  font-weight: 400;
  color: #B7BCC4;
  line-height: 16px;
  padding-left: 4px;
}

.left_label img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.resources_li_right {
  width: 90px;

}

.right_btn {
  width: 66px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  background: #EDF3FF;
  border-radius: 15px;
  font-size: 12px;
  color: #2579FF;
  text-decoration: none;
  margin-top: 25px;
}

.right_btn img {
  width: 4px;
  height: 5px;
}