@charset "UTF-8";
/**
 * 用户注册
 * date: 2024-9-2
 * author: fxyue;
 */
.module {
  margin-top: 40px;
  padding: 20px;
}

.register > ul {
  display: flex;
  margin-left: -20px;
}
.register-item {
  width: calc(33.33% - 20px);
  background: #F8FAFF;
  padding: 20px 16px;
  height: 500px;
  box-sizing: border-box;
  margin-left: 20px;
}
.register-item:nth-child(1) .register-top {
  background: url("../images/register_item_bg1.png") no-repeat;
}
.register-item:nth-child(1) .register-top::after {
  background: url("../images/register_icon1.png") no-repeat;
}
.register-item:nth-child(2) .register-top {
  background: url("../images/register_item_bg2.png") no-repeat;
}
.register-item:nth-child(2) .register-top::after {
  background: url("../images/register_icon2.png") no-repeat;
}
.register-item:nth-child(3) .register-top {
  background: url("../images/register_item_bg3.png") no-repeat;
}
.register-item:nth-child(3) .register-top::after {
  background: url("../images/register_icon3.png") no-repeat;
}
.register-top {
  height: 210px;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 39px 0 0 42px;
  position: relative;
  margin-bottom: 16px;
  display: block;
  font-weight: bold;
  font-size: 22px;
  color: #fff;
}
.register-top::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 25px;
  left: 42px;
  bottom: 42px;
  background: url("../images/register_arr.png") no-repeat;
}
.register-top::after {
  content: "";
  position: absolute;
  width: 75px;
  height: 81px;
  right: 27px;
  bottom: 20px;
}
.register-top + ul {
  height: calc(100% - 210px - 16px);
  overflow: auto;
}
.register-list {
  line-height: 24px;
  font-size: 16px;
  padding-left: 24px;
  background: url("../images/register_dot.png") 0 5px no-repeat;
}
.register-list:nth-child(n+2) {
  margin-top: 23px;
}