@charset "UTF-8";
.mainArticle .commonDiv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mainArticle .site1 {
  width: 830px;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.mainArticle .site1 .swiper-slide a {
  width: 100%;
  height: 100%;
  position: relative;
}

.mainArticle .site1 .swiper-slide a .popup {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 60px;
  font-size: 22px;
  color: #fff;
  line-height: 60px;
  padding: 0 60px 0 30px;
}

.mainArticle .site1 .button-next,
.mainArticle .site1 .button-prev {
  width: 24px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -30px;
  z-index: 20;
}

.mainArticle .site1 .button-next img,
.mainArticle .site1 .button-prev img {
  max-width: 100%;
  display: block;
  max-height: 100%;
}

.mainArticle .site1 .button-next {
  left: initial;
  right: 0;
}

.mainArticle .site1 img {
  width: 100%;
  height: 320px;
}

.mainArticle .site1 .swiperPoints {
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
}

.mainArticle .site1 .swiperPoints .item {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 6px;
  margin-right: 10px;
}

.mainArticle .site1 .swiperPoints .item:last-child {
  margin-right: 0;
}

.mainArticle .site1 .swiperPoints .active {
  width: 26px;
  transition: all 0.3s;
  background-color: #1a79ff;
}

.mainArticle .site1:hover .button-next,
.mainArticle .site1:hover .button-prev {
  opacity: 1;
}

.mainArticle .site2 {
  width: 320px;
  height: 320px;
  display: flex;
  flex-wrap: wrap;
}

.mainArticle .site2 .item {
  width: 155px;
  height: 155px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.mainArticle .site2 .item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.mainArticle .site2 .item a img.title {
  width: 100%;
  height: 100%;
}

.mainArticle .site2 .item a .message {
  width: 100%;
  padding: 12px 10px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.66);
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 14px;
}

.mainArticle .site2 .item a .message span {
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */
  overflow: hidden;
}

.mainArticle .site2 .item:nth-of-type(2n) {
  margin-right: 0;
}

.mainArticle .site2 .item:nth-of-type(n > 2) {
  margin-bottom: 0;
}

.articleList {
  margin-top: 30px;
}

.articleList .commonDiv {
  display: flex;
  justify-content: space-between;
}

.articleList .mainCenter {
  width: 830px;
}

.articleList .mainCenter .side1 {
  display: flex;
  border-bottom: 1px solid #e6ebf2;
}

.articleList .mainCenter .side1 .list {
  display: flex;
  align-items: center;
  overflow-x: auto;
  width: 100%;
  height: 60px;
}

.articleList .mainCenter .side1 .item {
  position: relative;
  top: 1px;
  float: left;
  min-width: 48px;
  margin-right: 50px;
  font-size: 18px;
  line-height: 40px;
  color: #4d4d4d;
  text-align: center;
  cursor: pointer;
  transition: color .3s;
  white-space: nowrap;
  position: relative;
}

.articleList .mainCenter .side1 .item .bar {
  width: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #1a79ff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  margin: auto;
  transition: all 0.4s;
}

.articleList .mainCenter .side1 .item:last-child {
  margin-right: 0;
}

.articleList .mainCenter .side1 .active {
  color: #1a79ff;
  font-weight: 700;
}

.articleList .mainCenter .side1 .hoverClass .bar {
  width: 100%;
}

.articleList .mainCenter .side2 .item {
  width: 100%;
  height: 140px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.articleList .mainCenter .side2 .item .site1 a {
  display: block;
  width: 210px;
  height: 140px;
}

.articleList .mainCenter .side2 .item .site1 img {
  width: 210px;
  height: 140px;
}

.articleList .mainCenter .side2 .item .site2 {
  width: 580px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.articleList .mainCenter .side2 .item .site2 .site21 a {
  color: #8a9090;
  font-size: 20px;
  transition: all 0.3s;
}

.articleList .mainCenter .side2 .item .site2 .site21 a:hover {
  color: #1a79ff;
  font-weight: bold;
}

.articleList .mainCenter .side2 .item .site2 .site22 {
  color: #8a9090;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 1.2px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */
  overflow: hidden;
}

.articleList .mainCenter .side2 .item .site2 .site23 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.articleList .mainCenter .side2 .item .site2 .site23 .site231 {
  display: flex;
  align-items: center;
}

.articleList .mainCenter .side2 .item .site2 .site23 .site231 .an a {
  color: #a1a8b3;
  font-size: 12px;
  background-color: #f2f7f7;
  border-radius: 10px;
  padding: 0 12px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  margin-right: 10px;
  display: block;
}

.articleList .mainCenter .side2 .item .site2 .site23 .site231 .an a:hover {
  background-color: #1a79ff;
  color: #fff;
}

.articleList .mainCenter .side2 .item .site2 .site23 .site232 {
  font-size: 12px;
  color: #a1a8b3;
}

.articleList .slide {
  width: 300px;
}

.articleList .slide .site1 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.articleList .slide .site1 .site11 a {
  position: relative;
  z-index: 10;
  color: #262626;
}

.articleList .slide .site1 .site11::after {
  width: 38px;
  height: 12px;
  background: #a6cbff;
  position: absolute;
  left: 0;
  top: 16px;
  border-bottom: none;
  content: "";
  z-index: 2;
  display: block;
}

.articleList .slide .site1 .site12 a {
  display: flex;
  align-items: center;
}

.articleList .slide .site1 .site12 a .text {
  font-size: 14px;
  color: #a1a8b3;
}

@keyframes refresh {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.articleList .slide .site1 .site12 a .more.refresh {
  animation: refresh 0.5s;
}

.articleList .slide .site2 {
  margin-top: 20px;
}

.articleList .slide .site2 .item {
  position: relative;
  width: 100%;
  height: 88px;
  overflow: hidden;
  padding-left: 5px;
  box-sizing: border-box;
}

.articleList .slide .site2 .item a {
  position: relative;
  display: block;
  height: 100%;
  padding-left: 25px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  transition: all .3s;
}

.articleList .slide .site2 .item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  z-index: 2;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border: 2px solid #1a79ff;
  border-radius: 50%;
  transition: all .3s;
}

.articleList .slide .site2 .title {
  height: 44px;
  overflow: hidden;
  font-size: 14px;
  line-height: 22px;
  margin-top: 8px;
  color: #333;
  position: relative;
  z-index: 2;
}

.articleList .slide .site2 .date {
  margin-top: 8px;
  font-size: 12px;
  line-height: 14px;
  color: #a1a8b3;
  position: relative;
  z-index: 2;
}

.articleList .slide .site3 {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.articleList .slide .site3 a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 42px;
  height: 40px;
  font-size: 14px;
  color: #a1a8b3;
  line-height: 40px;
  border: 1px solid #a1a8b3;
  border-radius: 2px;
  transition: all .3s;
  cursor: pointer;
}

.articleList .slide .site3 a:hover {
  color: #fff;
  background-color: #1a79ff;
  border-color: #1a79ff;
  transition: all .3s;
}

#footer {
  margin-top: 30px;
}
