﻿.dynamic-tabs {
  margin: 60px auto 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.dynamic-tabs .item {
  width: 300px;
  height: 58px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 20px;
  font-size: 20px;
  line-height: 28px;
  color: #333333;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.dynamic-tabs .item:hover {
  background-color: #3A4B99;
  color: #fff;
}

.dynamic-tabs .active {
  background-color: #3A4B99;
  color: #fff;
}

.news-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
}

.news-list .news-item {
  margin-top: 40px;
  width: 620px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news-list .news-item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.news-list .cover {
  width: 100%;
  height: 280px;
  display: block;
  overflow: hidden;
}

.news-list .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news-list .cover:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.news-list .content {
  padding: 24px;
}

.news-list .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: #3A4B99;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.news-list .desc {
  font-size: 16px;
  line-height: 28px;
  color: #3A4B99;
  margin-top: 12px;
  max-height: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-list .link {
  font-size: 16px;
  line-height: 28px;
  color: #3A4B99;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news-list .link .icon {
  width: 20px;
  height: auto;
}

.news-list .link:hover {
  text-decoration: underline;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  opacity: 0.85;
  gap: 15px;
}

.dynamic-detail {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 40px 60px;
  background-color: #fff;
  margin-top: 20px;
}

.dynamic-detail .main {
  width: 740px;
}

.dynamic-detail .main .main-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
}

.dynamic-detail .main .html-box {
  padding-top: 27px;
}

.dynamic-detail .other {
  width: 300px;
}

.dynamic-detail .other .title {
  font-size: 24px;
  line-height: 34px;
  padding-bottom: 20px;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
}

.dynamic-detail .other .list {
  margin-top: 20px;
}

.dynamic-detail .other .item {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.dynamic-detail .other .item ~ .item {
  margin-top: 40px;
}

.dynamic-detail .other a {
  display: block;
}

.dynamic-detail .other .img {
  width: 100%;
  height: 185px;
  overflow: hidden;
}

.dynamic-detail .other .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.dynamic-detail .other .img:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.dynamic-detail .other .info {
  padding: 10px 12px 12px;
}

.dynamic-detail .other .name {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  max-height: 40px;
  color: #333333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dynamic-detail .other .item:hover {
  box-shadow: 0 4px 20px rgba(0, 13, 78, 0.1);
}

.dynamic-detail .other .item:hover .name {
  color: #3A4B99;
}