.main_water_center_bottom_notice {
  width: 100%;
  max-width: 478px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.main_water_center_bottom_notice > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main_water_center_bottom_notice > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 10px;
  padding: 20px 30px;
  border-radius: 20px;
  border: 2px dashed #DDD;
  background: #F7F7F7;
}
.main_water_center_bottom_notice > a .main_water_new_btn {
  position: absolute;
  top: 0;
  right: 40px;
  display: flex;
  width: 50px;
  height: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: #0B5B66;
  color: #FFF;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.7px;
  transform: translateY(-12.5px);
}
.main_water_center_bottom_notice > a:hover {
  border: 2px dashed #00B4CD;
  background: #EEFAFB;
}
.main_water_center_bottom_notice > a p:first-child {
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 154.545%;
  letter-spacing: -0.66px;
}
.main_water_center_bottom_notice > a p:nth-child(2) {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.main_water_center_bottom_notice > a p:nth-child(2) span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: #FFF;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #333;
  text-overflow: ellipsis;
  font-family: "Paperlogy";
  font-size: 0.8rem;
  font-weight: 500;
}
.main_water_center_bottom_notice > ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.main_water_center_bottom_notice > ul li > a {
  padding: 5px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 111.111%;
  display: flex;
  align-items: center;
  gap: 15px;
}
.main_water_center_bottom_notice > ul li > a p {
  flex: 1;
}
.main_water_center_bottom_notice > ul li > a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background-color: #00B4CD;
}
.main_water_center_bottom_notice > ul li > a:hover {
  border-radius: 999px;
  background: #EEFAFB;
}

@media (max-width: 1440px) {
  .main_water_center_bottom_notice {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .main_water_center_bottom_notice ul {
    display: none;
  }
  .main_water_center_bottom_notice > div {
    align-items: center;
  }
  .main_water_center_bottom_notice > div > a svg {
    width: 20px;
    height: 20px;
  }
  .main_water_center_bottom_notice > a p:first-child {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    align-self: stretch;
  }
}