﻿.department {
  margin-top: 60px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

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

.department .department-item {
  text-align: center;
  padding: 36px 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: calc(100% / 6);
  box-sizing: border-box;
}

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

.department .department-item:hover .department-text {
  font-weight: 600;
}

.department .department-img {
  width: 80px;
  height: 80px;
}

.department .department-text {
  margin-top: 20px;
  color: #3A4B99;
  font-size: 20;
  font-weight: 500;
}

.dep-box {
  padding: 40px 0;
}

.dep-item {
  margin-top: 60px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}

.dep-item .img {
  width: 540px;
  height: 540px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.dep-item .img::after, .dep-item .img::before {
  content: "";
  border: 1px solid #569fd0;
  border: 1px solid rgba(86, 159, 208, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.dep-item .img::after {
  width: 100%;
  height: 100%;
}

.dep-item .img::before {
  width: 500px;
  height: 500px;
}

.dep-item .img img {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.dep-item .info {
  width: 640px;
}

.dep-item .info .title {
  font-size: 36px;
  font-weight: 500;
  line-height: 50px;
  color: #3A4B99;
}

.dep-item .info .desc {
  white-space: pre-line;
  margin-top: 12px;
  color: #3A4B99;
  font-size: 16px;
  line-height: 28px;
  max-height: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
}

.dep-item .info .app-btn {
  margin-top: 30px;
}

.dep-item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

.department-detail-title {
  padding-top: 60px;
  padding-bottom: 20px;
  font-size: 36px;
  line-height: 50px;
  text-align: center;
  font-weight: 600;
  color: #3A4B99;
}

.department-html {
  padding-bottom: 100px;
  color: #3A4B99;
  font-size: 14px;
  line-height: 26px;
}

.news {
  padding-bottom: 68px;
  margin-top: 100px;
}

.news .news-head {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.news .news-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 4px;
  color: #3A4B99;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding-top: 5px;
}

.news .news-list .item {
  width: calc((100% - 8px - 90px) / 3);
  margin-top: 20px;
  padding: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news .news-list a {
  display: block;
}

.news .news-list .img {
  width: 100%;
  height: 234px;
  overflow: hidden;
}

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

.news .news-list .info {
  margin-top: 30px;
}

.news .news-list .date {
  font-size: 16px;
  line-height: 18px;
}

.news .news-list .title {
  margin-top: 8px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.news .news-list .desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 26px;
  height: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

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