.news-left {
  width: 700px;
  height: 350px;
  background: red;
  float: left;
}
.news-play {
  width: 100%;
  overflow: hidden;
  height: 100%;
  position: relative;
  background-color: #ccc;
}
.news-play a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.news-play a p {
  position: absolute;
  display: block;
  bottom: 0;
  width: 100%;
  background: rgb(0, 0, 0, 0.5);
  color: white;
  margin: 0;
  height: 30px;
  line-height: 30px;
  padding-left: 20px;
}
img {
  width: 100%;
  height: 100%;
}
.points {
  position: absolute;
  z-index: 5;
  list-style: none;
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 5px;
  height: 20px;
  border-radius: 25px;
  right: 5%;
}

.points li {
  cursor: pointer;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0px auto;
  border-radius: 15px;
  background-color: cadetblue;
}

.active {
  background-color: hsla(0, 0%, 100%, 1) !important;
}

.prev {
  border-radius: 0 30px 30px 0;
}

.next,
.prev {
  appearance: menu;
  margin: 0 auto;
  width: 40px;
  display: block;
  float: left;
  height: 40px;
  position: absolute;
  line-height: 40px;
  text-align: center;
  font-family: "瀹嬩綋";
  color: aliceblue;
  z-index: 999;
  background-color: hsla(0, 0%, 0%, 0.1);
  top: 45%;
  -webkit-appearance: button;
  cursor: pointer;
}

.next {
  right: 0px;
  border-radius: 30px 0 0 30px;
}
.prev:hover {
  background-color: hsla(0, 0%, 0%, 0.5);
}
.next:hover {
  background-color: hsla(0, 0%, 0%, 0.5);
}
