@charset "UTF-8";
/**
 * 20230504首钢集团招标系统建设项目(临时)
 * date: 2023-5-4
 * author: sxw;
 */
.main-container {
  background: url("../images/register_bg.jpg") no-repeat center;
  background-size: auto 100%;
}

.register-item {
  width: 384px;
  height: 530px;
  margin-bottom: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
  box-shadow: inset 0px 4px 29px rgba(255, 255, 255, 0.36);
  filter: drop-shadow(0px 4px 22px #79b5fc);
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  position: relative;
}
.register-item + .register-item {
  margin-left: 24px;
}
.register-item .photo {
  text-align: center;
  padding-top: 48px;
}
.register-item .photo p {
  font-weight: 500;
  font-size: 20px;
  color: #333;
  line-height: 30px;
}
.register-item:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.735) 100%);
  box-shadow: 0px 11px 22px rgba(115, 179, 255, 0.72);
  backdrop-filter: blur(23px);
}
.register-item:hover .photo p {
  color: #3a6fee;
  font-weight: 700;
}
.register-item:hover .register-btn {
  background: #3a6fee;
}
.register-item .detail {
  padding: 8px 24px 0 32px;
  line-height: 21px;
}
.register-item .warn {
  width: 336px;
  margin: 8px auto 0 auto;
  padding: 8px 12px 8px 18px;
  background: #ffede0;
  border: 1px solid #ffc38f;
  border-radius: 2px;
  color: #ff5f05;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 15px;
}
.register-item .warn img {
  margin-right: 10px;
}
.register-btn {
  position: absolute;
  width: 104px;
  height: 37px;
  background: #055aaa;
  border-radius: 4px;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 37px;
  color: #fff;
  cursor: pointer;
}