.news-box .main-content {
  min-height: calc(100vh - 42px);
  padding-top: 91px;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 80px;
  background-color: #F4F5F8;
}
.news-box .main-content .container {
  display: flex;
  align-items: flex-start;
}
.news-box .main-content .left-content {
  padding: 10px 20px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  width: calc(100% - 310px);
}
.news-box .main-content .left-content .tab .tab-item {
  font-size: 16px;
  color: var(--title-color);
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  cursor: pointer;
  margin-right: 12px;
  border-bottom: 2px solid transparent;
}
.news-box .main-content .left-content .tab .tab-item:last-child {
  margin-right: 0;
}
.news-box .main-content .left-content .tab .tab-item-active {
  border-color: var(--p-color-2);
}
.news-box .main-content .left-content .list {
  margin-top: 10px;
}
.news-box .main-content .left-content .list .list-item {
  border-bottom: 1px solid var(--border2-color);
  display: flex;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  height: 195px;
  transition: all 0.3s ease 0s;
  border-radius: 5px;
}
.news-box .main-content .left-content .list .list-item:last-child {
  border-bottom: 0;
}
.news-box .main-content .left-content .list .list-item:hover {
  background-color: #F8F8F8;
}
.news-box .main-content .left-content .list .list-item .img-cover {
  display: inline-block;
  min-width: 246px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 20px;
}
.news-box .main-content .left-content .list .list-item .img-cover:hover img {
  transform: scale(1.06);
}
.news-box .main-content .left-content .list .list-item .img-cover img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease 0s;
}
.news-box .main-content .left-content .list .list-item .desc-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.news-box .main-content .left-content .list .list-item .desc-info .d-wrap {
  flex: 1;
}
.news-box .main-content .left-content .list .list-item .desc-info .title {
  max-height: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-decoration: none;
  color: var(--title-color);
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
}
.news-box .main-content .left-content .list .list-item .desc-info .title:hover {
  color: var(--p-color-2);
}
.news-box .main-content .left-content .list .list-item .desc-info .desc {
  color: rgba(26, 26, 26, 0.8);
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 15px;
  max-height: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.news-box .main-content .left-content .list .list-item .desc-info .date {
  color: var(--c666-color);
  font-size: 12px;
}
.news-box .main-content .fixed-right {
  position: fixed;
  top: 91px;
}
.news-box .main-content .fixed-right .img-box {
  background-color: #fff;
  text-align: center;
  padding: 20px 0 30px;
  box-sizing: border-box;
  border-radius: 8px;
  margin-left: 30px;
  width: 280px;
  position: relative;
  overflow: hidden;
}
.news-box .main-content .fixed-right .img-box .title {
  color: var(--title-color);
  font-size: 16px;
}
.news-box .main-content .fixed-right .img-box .d-text {
  color: var(--c666-color);
  margin: 6px 0;
}
.news-box .main-content .fixed-right .img-box .s-qr {
  width: 180px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  border: 1px solid var(--c333-color);
  padding: 5px;
  box-sizing: border-box;
}
.news-box .main-content .fixed-right .img-box .s-qr img {
  width: 100%;
}