﻿.notice {
  padding: 0.29rem 0 1.04rem;
  background: #fff;
}
.notice_list {
  list-style: none;
}
.notice_list .notice_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 0.01rem solid #E2E2E2;
}
.notice_list .notice_item .line1 {
  max-width: calc(100% - 3.79rem);
  font-size: 0.2rem;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  position: relative;
  padding-left: 0.22rem;
}
.notice_list .notice_item .line1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.15rem;
  height: 0.15rem;
  transform: translateY(-50%);
  background: url(../images/notice_icon1.png) center no-repeat;
  background-size: contain;
}
.notice_list .notice_item span {
  font-weight: 400;
  font-size: 0.16rem;
  color: #676767;
}
.notice_list .notice_item:hover .line1 {
  color: #0A50B4;
}
.notice_list .notice_item:hover .line1::before {
  background: url(../images/notice_icon2.png) center no-repeat;
  background-size: contain;
}
.notice_list .notice_item:hover span {
  color: #000000;
}
@media screen and (max-width: 1042px) {
  .notice_list .notice_item {
    padding: 20px 0;
  }
  .notice_list .notice_item .line1 {
    max-width: calc(100% - 180px);
    font-size: 18px;
    padding-left: 20px;
  }
  .notice_list .notice_item .line1:before {
    width: 14px;
    height: 14px;
  }
  .notice_list .notice_item span {
    font-size: 16px;
  }
}
@media screen and (max-width: 769px) {
  .notice_list .notice_item {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .notice_list .notice_item .line1 {
    max-width: 100%;
    font-size: 16px;
    white-space: normal;
    line-height: 1.5;
  }
  .notice_list .notice_item .line1:before {
    width: 12px;
    height: 12px;
    top: 5px;
    transform: none;
  }
  .notice_list .notice_item span {
    font-size: 14px;
    margin: 0 0 0 auto;
  }
}
