@import 'header.css';
@import 'footer.css';
.container {
  width: 100%;
  height: auto;
}
/* .container .banner {
  width: 100%;
  height: auto;
} */

.container .banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
header ul{
  margin-bottom:2px;
  height: 70px;
}
header a:hover{
  text-decoration: none;
}
.container .banner .banner-pic {
  width: 300%;
  display: flex;
}
.container .banner .banner-pic li {
  width: 100vw;
  height: auto;
}
.container .banner .banner-pic li img {
  width: 100vw;
}
.container .banner .b-btn {
  position: absolute;
  display: flex;
  align-items: center;
  width: 9.16666667vw;
  left: 50%;
  margin-left: -4.58333333vw;
  bottom: 2.03125vw;
}
.container .banner .b-btn li {
  cursor: pointer;
  width: 1.97916667vw;
  height: 0.20833333vw;
  background: #fff;
  margin-left: 0.3125vw;
  transform: skew(-45deg);
}
.container .banner .b-btn li:nth-child(1) {
  margin: 0;
}
.container .banner .b-btn .on {
  background: #a71f1f;
}

.container .news-list-wrapper{
  /* width: 50%; */
  margin: 20px auto;
  max-width: 950px;
}
.container .news-list-wrapper .news-item{
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #ccc;
  padding: 10px 0;
  
}

.container .news-list-wrapper .news-item .news-item-content{
  flex: 1;
  max-width: 650px;
}
.container .news-list-wrapper .news-item .news-img{
  width: 300px;
  max-height: 150px;
  height: 150px;
  border-radius: 10px;
}

.container .news-list-wrapper .news-item .news-item-content .news-item-content-title{
  font-size: 22px;
  color: #000;
  opacity: 0.9;
  position: relative;
  text-indent: 20px;
  margin-top: 25px;
  width: 80%;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.container .news-list-wrapper .news-item .news-item-content .news-item-content-title::before{
  width: 5px;
  height: 29px;
  background: darkred;
  display: inline-block;
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
}
.container .news-list-wrapper .news-item .news-item-content .news-item-content-text{
  color: dimgrey;
  margin-top: 18px;
  padding-right: 23px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.container .news-list-wrapper .news-item .news-item-content .news-item-content-op{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 19px;
}
.container .news-list-wrapper .news-item .news-item-content .news-item-content-op .news-item-content-btn{
  width: 130px;
  line-height: 40px;
  color: #666;
  border-radius: 6px;
  box-shadow: 0 0 1px 1px #ccc;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
}
.container .news-list-wrapper .news-item .news-item-content .news-item-content-op .news-item-content-btn:hover{
  box-shadow: 0 0 1px 1px #666;
  color: dimgrey;
}
.container .news-list-wrapper .news-item .news-item-content .news-item-content-op .news-item-content-time{
  color: dimgrey;
  margin-right: 20px;
}

.container .news-list-wrapper nav #pagination-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed #ccc;
  padding: 20px 0;
}
.container .news-list-wrapper nav #pagination-wrap .page-btn,
.container .news-list-wrapper nav #pagination-wrap #page-previous,
.container .news-list-wrapper nav #pagination-wrap #page-next{
  padding: 0 10px;
  font-size: large;
  position: relative;
  color: #7588f3;
}
#page-previous:hover:after,
#page-next:hover:after{
  position: absolute;
  left: -2rem;
  top: -2rem;
  text-align: center;
  padding: 5px 0;
  background-color: #ccc;
  border-radius: 5px;
  color: #fff;
  /*这里显示的内容为title属性对应的值*/
  content: attr(tip);
  z-index: 2;
  width: 100px;
}
.container .news-list-wrapper nav #pagination-wrap .active{
  color: #000;
  cursor: default;
}