﻿main .party .tabList {
  display: flex;
}
main .party .tabList li {
  position: relative;
  background: #E6E6E6;
  width: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: #333;
}
main .party .tabList li:first-child::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #3678FB;
  transform: rotate(45deg);
  z-index: 10;
  top: 20px;
  right: -10px;
}
main .party .tabList li img {
  width: 15px;
  margin-right: 7px;
}
main .party .tabList li .img2 {
  display: block;
}
main .party .tabList li .img1 {
  display: none;
}
main .party .tabList li span {
  font-size: 15px;
}
main .party .tabList li.on {
  background: #3678FB;
  color: #fff;
  transition: all 0.2s ease-in;
}
main .party .tabList li.on .img2 {
  display: none;
}
main .party .tabList li.on .img1 {
  display: block;
}
main .party .infoList > li {
  width: 100%;
}
main .party .infoList > li:last-child {
  display: none;
}
main .party .infoList > li .newsList {
  padding-top: 20px;
}
main .party .infoList > li .newsList li {
  padding: 25px 0;
  border-bottom: 1px solid #ECECEC;
}
main .party .infoList > li .newsList li a > p.newName {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}
main .party .infoList > li .newsList li a > p.tips {
  display: flex;
  width: 100%;
  align-items: center;
}
main .party .infoList > li .newsList li a > p.tips img {
  width: 12px;
}
main .party .infoList > li .newsList li a > p.tips span {
  padding-left: 10px;
  font-size: 13px;
  color: #666;
}