@charset "UTF-8";
/**!
* 公共样式
* date:2022-10-18
* author: xjl;
*/
.policy-title {
  margin-bottom: 30px;
  height: 32px;
  line-height: 32px;
  font-weight: bold;
  font-size: 32px;
  color: #3c3f46;
}
.policy-title > a {
  font-weight: normal;
  font-size: 14px;
  color: #999;
}

.banner {
  padding-top: 70px;
  height: 240px;
}
.banner-title {
  height: 40px;
  line-height: 40px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 4px 8px rgba(8, 136, 254, 0.68);
}
.banner-title > span {
  color: #ffe54a;
}
.banner-text {
  margin-top: 20px;
  width: 656px;
  font-size: 16px;
  color: #fff;
}

.policy-list {
  width: 649px;
  height: 302px;
  overflow: hidden;
  background: none;
}
.policy-list .policy-item {
  position: relative;
  height: 55px;
  line-height: 54px;
  font-size: 16px;
  border-bottom: 1px dashed #a0a0a0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.policy-list .policy-item:first-child {
  margin-top: -15px;
}
.policy-list .policy-item::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  background-color: #9a9a9a;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.policy-list .policy-item:hover {
  color: #0083ff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.policy-list .policy-item:hover::before {
  background-color: #0083ff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.policy-list .policy-item:hover .date {
  color: #0083ff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.policy-list .policy-item > a {
  display: block;
  padding-left: 18px;
  width: 100%;
  height: 100%;
}
.policy-list .policy-item .text {
  width: 484px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.policy-list .policy-item .date {
  color: #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
