/* flex */
.flex {
  display: flex;
  display: -ms-flexbox;    /* IE10 */
}
.flex-none {
  flex: none;
}
.flex-1 {
  -ms-flex: 1;     /* IE10 关键 */
  flex: 1;
  min-width: 0;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.align-items-center {
  align-items: center;
}
.no-break {
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.line-clamp-2 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.w-100 {
  width: 100%;
}

/* 公共尾部 */
.npc-footer {
  background-color: #487bc5;
}
.npc-footer-link {
  padding: 25px 0;
  border-bottom: 1px solid #5186d2;
}
.npc-footer .dropdown-menu {
  position: relative;
  height: 50px;
  background-color: #f7f7f7;
  margin-left: 40px;
}
.npc-footer .dropdown-menu:first-child {
  margin-left: 0;
}
.npc-footer .dropdown-title {
  position: relative;
  height: 100%;
  font-size: 18px;
  color: #666666;
  line-height: 50px;
  cursor: pointer;
  padding: 0 26px 0 36px;
  box-sizing: border-box;
}
.npc-footer .dropdown-title::after {
  content: '';
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #666666;
  transition: transform 0.3s ease;
}
.npc-footer .dropdown-menu:hover .dropdown-title::after {
  transform: translateY(-50%) rotate(180deg);
}
.npc-footer .dropdown-content {
  display: none;
  z-index: 1000;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  max-height: 300px;
  overflow-y: auto;
}
.npc-footer .dropdown-content a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  color: #666666;
  text-decoration: none;
  transition: all 0.3s;
}
.npc-footer .dropdown-content a:hover {
  background-color: #f0f0f0;
  color: #487bc5;
}
.npc-footer .dropdown-menu:hover .dropdown-content {
  display: block;
}
@media screen and (max-width: 768px) {
  .npc-footer-link {
    display: none;
  }
}

/* npc-pos */
.npc-pos {
  display: flex;
  padding: 30px 0;
}
.npc-pos-icon {
  width: 25px;
	height: 25px;
  margin-right: 13px;
}
.npc-pos-icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.npc-pos-title {
  font-size: 18px;
  color: #999;
  line-height: 24px;
}
.npc-pos-list a {
  position: relative;
  display: block;
  font-size: 18px;
  color: #999;
  line-height: 24px;
  padding-right: 13px;
}
.npc-pos-list a:not(:last-child)::after {
  position: absolute;
  right: 0;
  content: ' > ';
  font-size: 18px;
  color: #999;
  line-height: 24px;
}
@media screen and (max-width: 992px) {
  .npc-pos {
    display: none;
  }
}


/* section-news */
.section-news-tabs {
  width: 100%;
}
.section-news-tabs .tabs-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #ecf3f9;
  padding-right: 17px;
  box-sizing: border-box;
}
.section-news-tabs .tabs-title {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 50px;
  overflow-x: auto;
  overflow-y: hidden;
}
.section-news-tabs .tabs-title-wrapper {
  z-index: 9;
  position: relative;
  height: 50px;
  white-space: nowrap;
  cursor: grab;
}
.section-news-tabs .tabs-title-wrapper.dragging {
  cursor: grabbing;
  user-select: none;
}
.section-news-tabs .tabs-title-item {
  flex: none;
  font-size: 20px;
  color: #333;
  line-height: 50px;
  font-weight: 600;
  padding: 0 48px;
  cursor: pointer;
}
.section-news-tabs .tabs-title-item_active {
  color: #ffffff;
  background-color: #487bc5;
}
/* 自定义滚动条样式 - 一级栏目 */
.section-news-tabs .tabs-title::-webkit-scrollbar {
  height: 4px;
}
.section-news-tabs .tabs-title::-webkit-scrollbar-track {
  background: #e8eff7;
}
.section-news-tabs .tabs-title::-webkit-scrollbar-thumb {
  background: #a8c8e8;
  border-radius: 2px;
}
.section-news-tabs .tabs-title::-webkit-scrollbar-thumb:hover {
  background: #8eb8dc;
}
/* 自定义滚动条样式 - 二级栏目 */
.section-news-tabs .child-list::-webkit-scrollbar {
  height: 4px;
}
.section-news-tabs .child-list::-webkit-scrollbar-track {
  background: #e8eff7;
}
.section-news-tabs .child-list::-webkit-scrollbar-thumb {
  background: #a8c8e8;
  border-radius: 2px;
}
.section-news-tabs .child-list::-webkit-scrollbar-thumb:hover {
  background: #8eb8dc;
}
/* IE10/11 隐藏系统滚动条（已有拖拽滚动替代） */
.section-news-tabs .tabs-title,
.section-news-tabs .child-list {
  -ms-overflow-style: none;
}
/* Firefox 细滚动条（用 @supports 隔离，避免覆盖 Chrome WebKit 样式） */
@supports not selector(::-webkit-scrollbar) {
  .section-news-tabs .tabs-title,
  .section-news-tabs .child-list {
    scrollbar-width: thin;
    scrollbar-color: #a8c8e8 #e8eff7;
  }
}
.section-news-tabs .tabs-more {
  flex: none;
  margin-left: 17px;
}
.section-news-tabs .tabs-more-item {
  display: none;
  width: 82px;
	height: 32px;
  background-color: #ffffff;
	border-radius: 15px;
	border: solid 1px #c2d9eb;
  font-size: 16px;
  color: #b2c2cf;
  line-height: 32px;
  text-align: center;
}
.section-news-tabs .tabs-more-item:first-child {
  display: block;
}
.section-news-tabs .tabs-child {
  display: flex;
  align-items: flex-end;
  height: 66px;
}
.section-news-tabs .tabs-child.tabs-child-hidden {
  height: 0 !important;
  overflow: hidden;
}
.section-news-tabs .child-list {
  display: none;
  position: relative;
  width: 100%;
  height: 42px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
}
.section-news-tabs .child-list.dragging {
  cursor: grabbing;
  user-select: none;
}
.section-news-tabs .child-list:first-child {
  display: flex;
}
.section-news-tabs .child-list-wrapper {
  z-index: 9;
  position: relative;
  height: 100%;
  white-space: nowrap;
}
.section-news-tabs .child-list-item {
  font-size: 18px;
  color: #333;
  line-height: 42px;
  text-align: center;
  flex: none;
  min-width: 118px;
  padding: 0 13px;
  box-sizing: border-box;
  background-color: #f3f3f3;
  margin-left: 23px;
	cursor: pointer;
}
.section-news-tabs .child-list-item:first-child {
  margin-left: 0;
}
.section-news-tabs .child-list-item_active {
  color: #fff;
  background-color: #487bc5;
}
.section-news .news-first {
  padding: 36px 0 24px 0;
  border-bottom: 1px solid #eeeeee;
}
.section-news .news-first-img {
  width: 157px;
	height: 112px;
	background-color: #f8e8db;
  margin-right: 15px;
}
.section-news .news-first-img img {
  width: 100%;
	height: 100%;
}
.section-news .news-first-title {
  font-size: 18px;
  color: #333;
  line-height: 20px;
  margin-bottom: 14px;
}
.section-news .news-first-intro {
  font-size: 16px;
  color: #666;
  line-height: 24px;
  max-height: 48px;
  overflow-y: hidden;
}
.section-news .news-first-date {
  margin-top: 12px;
}
.section-news .news-first-date_icon {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 9px;
}
.section-news .news-first-date_text {
  font-size: 16px;
  color: #b4b4b4;
}
.section-news .news-first:hover .news-first-title {
  color: #487bc5;
  transform: scale(0.99);
  transition: all 0.3s;
}
.section-news-list .news-list-content,
.section-news-list .news-list-content .news-list {
  display: none;
}
.section-news-list .news-list-content:first-child,
.section-news-list .news-list-content .news-list:first-child {
  display: block;
}
.section-news-list .news-list-item {
  display: flex;
  align-items: center;
  height: 66px;
  border-bottom: 1px solid #eeeeee;
  font-size: 18px;
}
.section-news-list .news-list-item_title {
  position: relative;
  color: #333;
  padding-left: 18px;
  flex: 1;
  min-width: 0;
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news-list .news-list-item_title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #487bc5;
  transition: all 0.3s;
}
.section-news-list .news-list-item_date {
  flex: none;
  color: #999;
  margin-left: 15px;
}
.section-news-list .news-list-item:hover .news-list-item_title {
  color: #487bc5;
  transform: scale(0.99);
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .section-news-tabs .tabs-main {
    height: 40px;
    padding-right: 13px;
  }
  .section-news-tabs .tabs-child {
    height: 50px;
  }
  .section-news-tabs .child-list {
    height: 32px;
  }
  .section-news-tabs .child-list-item {
    font-size: 14px;
    line-height: 32px;
  }
  .section-5 .section-news-tabs .tabs-child {
    height: 74px;
    padding-bottom: 10px;
  }
  .section-news-tabs .tabs-title {
    height: 40px;
  }
  .section-news-tabs .child-list,
  .section-news-tabs .tabs-title {
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .section-news-tabs .tabs-title-wrapper {
    height: 40px;
  }
  .section-news-tabs .tabs-title-item {
    font-size: 16px;
    line-height: 40px;
    padding: 0 36px;
  }
  .section-news-tabs .tabs-more-item {
    width: 62px;
    height: 24px;
    font-size: 14px;
    line-height: 24px;
  }
  .section-news .news-first {
    padding: 22px 0 16px 0;
  }
  .section-news .news-first-img {
    width: 117px;
    height: 84px;
  }
  .section-news .news-first-title {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 8px;
  }
  .section-news .news-first-intro {
    font-size: 14px;
    line-height: 20px;
    max-height: 40px;
  }
  .section-news .news-first-date {
    margin-top: 7px;
  }
  .section-news .news-first-date_icon {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
  .section-news .news-first-date_text {
    font-size: 14px;
  }
  .section-news-list .news-list-item {
    height: 50px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .section-news-tabs .tabs-title-item {
    font-size: 18px;
  }
}


/* common-pagination */
.common-pagination {
  overflow: hidden;
  font-size: 14px;
  text-align: center;
}
.common-pagination__item {
  display: inline-block;
  height: 30px;
  padding: 0 10px;
  background-color: #fff;
  border: 1px #e8e8e8 solid;
  margin-right: 5px;
  color: #515151;
  line-height: 30px;
  cursor: pointer;
}
.common-pagination__item:hover {
  color: #d30b15;
}
.common-pagination__cur {
  color: #fff;
  background-color: #d30b15;
}
.common-pagination__cur:hover {
  color: #fff;
}
.common-pagination__next {
  margin-left: 5px;
}
.common-pagination-list {
  display: inline-block;
}
.pagination-ellipsis-prev,
.pagination-ellipsis-next {
  margin-right: 5px;
}
.common-pagination-form__input {
  width: 53px;
  height: 37px;
  border: 1px #e8e8e8 solid;
  margin: 0 4px;
  box-sizing: border-box;
  text-align: center;
  outline: none;
}
.common-pagination-form__button {
  height: 37px;
  background-color: #fff;
  border: 1px #e8e8e8 solid;
  padding: 0 10px;
  font-size: 14px;
}
.common-pagination__prev,
.common-pagination__next,
.common-pagination__count,
.common-pagination-form {
  display: none;
}
@media screen and (min-width: 768px) {
  .common-pagination__item {
    height: 37px;
    padding: 0 15px;
    line-height: 37px;
  }
}
@media screen and (min-width: 1024px) {
  .common-pagination__item {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1540px) {
  .common-pagination-form,
  .common-pagination__count {
    display: inline-block !important;
  }
}

/* npc-img */
.npc-img-position {
  position: relative;
  width: 100%;
	background-color: #f8f8f8;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.npc-img-position:hover {
  transform: scale(1.05);
}

/* npc-section-header_menu */
.npc-section-header_menu {
  position: relative;
  width: 170px;
  height: 36px;
  border-radius: 18px;
  border: 2px solid #487bc5;
  cursor: pointer;
}
.npc-section-header_menu .menu-title {
  width: 100%;
  height: 100%;
}
.npc-section-header_menu .menu-title-icon {
  width: 24px;
  height: 19px;
  margin-right: 15px;
}
.npc-section-header_menu .menu-title-text {
  font-size: 18px;
  color: #487bc5;
}
.npc-section-header_menu .menu-content {
  display: none;
  z-index: 1000;
  position: absolute;
  top: 100%;
  left: 10px;
  width: 150px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
	border: solid 1px #e9e9e9;
  padding: 15px 0;
  margin-top: 1px;
}
.npc-section-header_menu:hover .menu-content {
  display: block;
}
.npc-section-header_menu .menu-content a {
  display: block;
  font-size: 18px;
  color: #333;
  line-height: 36px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
.npc-section-header_menu .menu-content a:hover {
  background-color: #dae4f3;
  color: #487bc5;
}
@media screen and (max-width: 480px) {
  .npc-section-header_menu .menu-title-icon {
    width: 16px;
    height: 12px;
    margin-right: 5px;
  }
  .npc-section-header_menu .menu-title-text,
  .npc-section-header_menu .menu-content a {
    font-size: 14px;
  }
}

/* news-detail */
.news-detail-title {
  text-align: center;
  padding: 0 20px 48px 20px;
}
.news-detail-title_shoulder {
  font-size: 18px;
  color: #666;
  line-height: 28px;
  padding-bottom: 10px;
}
.news-detail-title_main {
  font-size: 36px;
  color: #333333;
  line-height: 42px;
  font-weight: 600;
}
.news-detail-title_subtitle {
  font-size: 20px;
  color: #666;
  line-height: 30px;
  font-weight: 600;
  padding-top: 15px;
}
.news-detail-info {
  width: 100%;
  height: 50px;
  background-color: #f2f2f2;
  padding: 0 36px;
}
.news-detail-info span {
  font-size: 16px;
  color: #666666;
  line-height: 50px;
}
.news-detail-info span {
  margin-left: 20px;
}
.news-detail-info span:first-child {
  margin-left: 0;
}
.news-detail-info .operate-item {
  height: 50px;
  margin-left: 25px;
  cursor: pointer;
}
.news-detail-info .operate-item>img {
  height: 22px;
}
.news-detail-info .operate-item:first-child {
  margin-left: 0;
}
.news-detail-info .operate-print-text {
  font-size: 16px;
  color: #666666;
  line-height: 50px;
  margin-left: 10px;
}
.news-detail-desc {
  padding-top: 45px;
}
.news-detail-desc,
.news-detail-desc p,
.news-detail-desc span,
.news-detail-desc text,
.news-detail-desc section,
.news-detail-desc img {
  font-size: 18px !important;
  color: #333333;
  line-height: 42px !important;
  max-width: 100% !important;
  margin-top: 0;
  margin-bottom: 0;
}
.news-detail-pdf {
  width: 100%;
  height: 800px;
  border: none;
}
/* 字体大小控制类 */
.news-detail-desc.font-size-xs,
.news-detail-desc.font-size-xs p,
.news-detail-desc.font-size-xs span,
.news-detail-desc.font-size-xs text,
.news-detail-desc.font-size-xs section {
  font-size: 14px !important;
}
.news-detail-desc.font-size-sm,
.news-detail-desc.font-size-sm p,
.news-detail-desc.font-size-sm span,
.news-detail-desc.font-size-sm text,
.news-detail-desc.font-size-sm section {
  font-size: 16px !important;
}
.news-detail-desc.font-size-md,
.news-detail-desc.font-size-md p,
.news-detail-desc.font-size-md span,
.news-detail-desc.font-size-md text,
.news-detail-desc.font-size-md section {
  font-size: 18px !important;
}
.news-detail-desc.font-size-lg,
.news-detail-desc.font-size-lg p,
.news-detail-desc.font-size-lg span,
.news-detail-desc.font-size-lg text,
.news-detail-desc.font-size-lg section {
  font-size: 20px !important;
}
.news-detail-desc.font-size-xl,
.news-detail-desc.font-size-xl p,
.news-detail-desc.font-size-xl span,
.news-detail-desc.font-size-xl text,
.news-detail-desc.font-size-xl section {
  font-size: 22px !important;
}
.news-detail-desc.font-size-xxl,
.news-detail-desc.font-size-xxl p,
.news-detail-desc.font-size-xxl span,
.news-detail-desc.font-size-xxl text,
.news-detail-desc.font-size-xxl section {
  font-size: 24px !important;
}
@media screen and (max-width: 992px) {
  .news-detail-info .operate {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .news-detail-title {
    padding: 0 15px 20px 15px;
  }
  .news-detail-title_shoulder {
    font-size: 16px;
    padding-bottom: 0;
  }
  .news-detail-title_main {
    font-size: 26px;
  }
  .news-detail-title_subtitle {
    font-size: 18px;
    padding-top: 0;
  }
  .news-detail-info {
    height: 36px;
    justify-content: center;
  }
  .news-detail-info span {
    font-size: 14px;
    line-height: 36px;
  }
  .news-detail-desc {
    padding-top: 25px;
  }
  .news-detail-desc,
  .news-detail-desc p,
  .news-detail-desc span,
  .news-detail-desc text,
  .news-detail-desc section {
    font-size: 16px !important;
    line-height: 32px !important;
  }
  .news-detail-pdf {
    height: 600px;
  }
}
@media screen and (max-width: 480px) {
  .news-detail-title {
    padding: 0 15px 15px 15px;
  }
  .news-detail-title_shoulder {
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 0;
  }
  .news-detail-title_main {
    font-size: 22px;
    line-height: 36px;
  }
  .news-detail-title_subtitle {
    font-size: 16px;
    padding-top: 0;
  }
  .news-detail-info {
    height: auto;
    padding: 5px 10px;
  }
  .news-detail-info div {
    flex-wrap: wrap;
    justify-content: center;
  }
  .news-detail-info span {
    flex: none;
    font-size: 12px;
    line-height: 20px;
    margin: 0 10px;
  }
  .news-detail-desc {
    padding-top: 15px;
  }
  .news-detail-desc,
  .news-detail-desc p,
  .news-detail-desc span,
  .news-detail-desc text,
  .news-detail-desc section {
    line-height: 28px !important;
  }
  .news-detail-pdf {
    height: 500px;
  }
}


/* share dropdown */
.operate-share {
  position: relative;
}
.operate-share-dropdown {
  display: none;
  z-index: 1000;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
}
.operate-share-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.operate-share-dropdown::after {
  content: '';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #ddd;
  z-index: -1;
}
.operate-share:hover .operate-share-dropdown {
  display: block;
}
.operate-share-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.operate-share-item span {
  font-size: 16px;
  color: #333;
  line-height: 42px;
}
.operate-share-item:hover span {
  color: #487bc5;
}
.operate-share-item img {
  flex: none;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

/* share popup */
.share-popup {
  display: none;
  z-index: 2000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.share-popup-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  width: 400px;
}
.share-popup-title {
  font-size: 24px;
  color: #333;
  text-align: center;
  font-weight: 600;
}
.share-popup-qrcode {
  width: 200px;
  height: 200px;
  margin: 30px auto;
  background-color: #f5f5f5;
}
.share-popup-qrcode img {
  width: 100%;
  height: 100%;
}
.share-popup-tip {
  font-size: 16px;
  color: #666;
  text-align: center;
}
.share-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.share-popup-close:hover {
  color: #666;
}

/* director */
.director-title-icon {
  height: 40px;
  max-width: 100%;
}
.director-title-text {
  width: 192px;
  font-size: 36px;
  color: #487bc5;
  text-align: center;
  font-weight: 600;
}
.director-section .director-list-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.director-section .avatar-director {
  position: relative;
  width: 71.42%;
}
.director-section:first-child .avatar-director {
  width: 85.71%;
}
.director-section .director-list-item_avatar {
  position: relative;
  width: 100%;
  padding-top: 133%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.director-section .director-list-item_name {
  font-size: 24px;
  color: #333;
  line-height: 26px;
  text-align: center;
  padding: 28px 0;
}
@media screen and (max-width: 1024px) {
  .director-title-icon {
    height: 30px;
  }
  .director-title-text {
    width: 144px;
    font-size: 28px;
  }
  .director-section .director-list-item_name {
    font-size: 20px;
    line-height: 22px;
    padding: 24px 0;
  }
}
@media screen and (max-width: 768px) {
  .director-title-icon {
    height: 22px;
  }
  .director-title-text {
    width: 108px;
    font-size: 22px;
  }
  .director-section .director-list-item {
    width: 33.3%;
  }
  .director-section .avatar-director {
    width: 85.71%;
  }
  .director-section:first-child .avatar-director {
    width: 100%;
  }
  .director-section .director-list-item_name {
    font-size: 16px;
    line-height: 18px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .director-section .director-list-item {
    width: 50%;
  }
  .director-section .avatar-director {
    width: 95%;
  }
}

/* search */
.search-form {
  height: 70px;
	border-radius: 8px;
	border: solid 1px #e2e2e2;
}
.search-form-icon {
  position: relative;
  width: 30px;
	height: 30px;
  padding: 0 26px;
  box-sizing: content-box;
}
.search-form-icon img {
  width: 100%;
  height: 100%;
}
.search-form-icon::after {
  position: absolute;
  right: 0;
  top: -12.5px;
  content: '';
  width: 1px;
  height: 55px;
	background-color: #f1f1f1;
}
.search-form-input {
  display: block;
  border: none;
  outline: none;
  padding: 0 18px;
  box-sizing: border-box;
  font-size: 18px;
}
.search-form-submit {
  width: 160px;
  height: 100%;
  background-color: #487bc5;
	border-radius: 0px 8px 8px 0px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
}
.search-result-title {
  position: relative;
  font-size: 36px;
  color: #333;
  font-weight: 600;
  line-height: 40px;
  border-bottom: 3px solid #eee;
  padding: 45px 0 33px 0;
  margin-bottom: 13px;
}
.search-result-title::after {
  position: absolute;
  left: 0;
  bottom: -3px;
  content: '';
  width: 143px;
	height: 3px;
	background-color: #487bc5;
}
@media screen and (max-width: 1024px) {
  .search-form {
    height: 52px;
  }
  .search-form-icon {
    width: 22px;
    height: 22px;
    padding: 0 20px;
  }
  .search-form-icon::after {
    top: -9px;
    height: 40px;
  }
  .search-result-title {
    font-size: 28px;
    line-height: 32px;
    padding: 34px 0 20px 0;
  }
  .search-result-title::after {
    width: 112px;
  }
  .search-form-submit {
    width: 130px;
  }
}
@media screen and (max-width: 480px) {
  .search-form {
    height: 42px;
  }
  .search-form-icon {
    width: 18px;
    height: 18px;
    padding: 0 10px;
  }
  .search-form-icon::after {
    top: -6px;
    height: 30px;
  }
  .search-form-input {
    padding: 0 10px;
    font-size: 16px;
  }
  .search-form-submit {
    width: 80px;
    font-size: 16px;
  }
  .search-result-title {
    font-size: 22px;
    padding: 20px 0 10px 0;
  }
}

.no-data {
  font-size: 16px;
  color: #999;
  text-align: center;
  padding: 30px 0;
}