:root{
  --row-gutter: 30px;
}
.about-main {
  padding-top: 25px;
}
.about-page {
  background: #fff;
  padding: var(--row-gutter);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}
.about-row {
  display: flex;
  margin-bottom: var(--row-gutter)
}
.about-block {
  flex: 1;
  min-width: 0;
}
.about-block + .about-block {
  margin-left: var(--row-gutter)
}
/* 领导简介 */
.leader-profile {
  display: flex;
  margin-bottom: 20px;
}
.leader-left {
  flex-shrink: 0;
  width: 150px;
  height: 190px;
  margin-right: 20px;
  background: #e8f1fb;
  overflow: hidden;
}
.leader-left img {
  display: block;
  width: 100%;
  height: 210px;
  /* object-fit: cover; */
}
.leader-right {
  flex: 1;
  min-width: 0;
}
.leader-name {
  margin: 0 0 10px;
  font-size: var(--font-size-base);
  font-weight: 700;
}
.leader-duty {
  margin: 0 0 8px;
  line-height: 1.8;
}
.leader-bio-box {
  position: relative;
  margin: 0 0 8px;
  line-height: 1.8;
}
.leader-bio-box .leader-bio-text {
  margin: 0;
  line-height: 1.8;
  word-break: normal;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.leader-bio-box .bio-more {
  display: none;
  color: #c8161d;
  cursor: pointer;
}
.leader-bio-box.is-overflow .bio-more {
  display: inline;
  position: absolute;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 14px, #fff);
  padding-left: 14px;
}
.leader-mail-btn {
  display: inline-block;
  padding: 6px 18px;
  min-width: 170px;
  background: #3385E4;
  color: #fff;
  border-radius: 6px;
  transition: background .2s;
}
.leader-mail-btn img {
  margin-right: 10px;
  vertical-align: middle;
}
.leader-mail-btn:hover,
.leader-mail-btn:active,
.leader-mail-btn:focus {
  color: #fff;
}
.leader-list {
  padding: 10px 25px;
  background: #F3F8FF;
}
.leader-list li {
  line-height: 2;
}
.leader-list li b {
  font-weight: normal;
      color: #0960b7;
}
.leader-list li span {
      margin: 0 8px;
}
/* 机构职能 */
.duty-list-wrap {
  height: 100%;
  max-height:385px;
  overflow-y: auto;
  padding-right: 6px;
}
.duty-list-wrap::-webkit-scrollbar {
  width: 6px;
}
.duty-list-wrap::-webkit-scrollbar-thumb {
  background: #1e5aab;
  border-radius: 3px;
}
.duty-list-wrap::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.duty-list {
  margin: 0;
  padding-left: 1.4em;
}
.duty-list li {
  line-height: 1.9;
  margin-bottom: 10px;
  text-indent: 2em;
}
.duty-list li::marker {
  font-weight: 700;
}
/* 内设机构 / 直属单位 */
.org-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
  padding: 0;
  list-style: none;
}
.org-grid li {
  width: calc(16.666666% - 25px);
  margin: 0 12.5px 25px;
  padding: 10px;
  background: #e8f1fb;
  text-align: center;
  line-height: 1.5;
  transition: background .2s;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.org-grid li:hover {
  background: #d0e3f7;
  color: #1e5aab;
}
.common-tabs .common-tabs__header{
  margin-bottom: var(--row-gutter);
}
@media only screen and (max-width: 1200px) {
  .org-grid li {
    width: calc(33.333333% - 25px);
  }
}
@media only screen and (max-width: 992px) {
  .about-row {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --row-gutter: 15px;
  }
  .about-main{
    padding-top: var(--row-gutter);
  }
  .layout-width {
    padding: 0 var(--row-gutter);
  }
  .leader-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
  }
  .leader-left {
    width: 120px;
    height: 160px;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .org-grid li {
    margin: 0 5px 10px;
    width: calc(50% - 10px);
  }
}
