/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  color: #3D3D3D;
  background-color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* === Flex 原子类 === */
.flex {
  display: -ms-flexbox;
  display: flex;
}

.flex-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* 方向 */
.flex-x {
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-y {
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-x-reverse {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-y-reverse {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/* 换行 */
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* 主轴对齐 (justify-content) */
.flex-start {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-end {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-between {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* 交叉轴对齐 (align-items) */
.flex-items-start {
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-items-end {
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-items-center {
  -ms-flex-align: center;
  align-items: center;
}

.flex-items-stretch {
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* 单轴居中快捷方式 */
.flex-x-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-y-center {
  -ms-flex-align: center;
  align-items: center;
}

/* 双轴居中 */
.flex-center-xy {
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 子元素弹性 */
.flex-1 {
  -ms-flex: 1;
  flex: 1;
}

.flex-auto {
  -ms-flex: auto;
  flex: auto;
}

.flex-none {
  -ms-flex: none;
  flex: none;
}

.flex-shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.flex-grow-0 {
  -ms-flex-positive: 0;
  flex-grow: 0;
}

/* Gap */
.flex-gap-4 { gap: 4px; }
.flex-gap-8 { gap: 8px; }
.flex-gap-12 { gap: 12px; }
.flex-gap-16 { gap: 16px; }
.flex-gap-20 { gap: 20px; }
.flex-gap-24 { gap: 24px; }
.flex-gap-32 { gap: 32px; }

/* === Utility: Content Container === */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Section Title Pattern === */
.section-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-header__tabs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.section-header__tab {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #2F3030;
  padding: 0 20px;
  cursor: pointer;
  line-height: 1.2;
  position: relative;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.section-header__tab:first-child {
  /* padding-left: 0; */
}

.section-header__tab--active {
  color: #1B54B8;
}

.section-header__tab:hover {
  color: #1B54B8;
}

.section-header__line {
  position: relative;
  height: 8px;
  margin-bottom: 6px;
}

.section-header__line-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  width: auto;
  -webkit-transition: left 0.3s ease, width 0.3s ease;
  transition: left 0.3s ease, width 0.3s ease;
}

.section-header__more {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 17px;
  color: #999999;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  white-space: nowrap;
}

.section-header__more:hover {
  color: #1B54B8;
}

/* === Top Banner === */
.top-banner {
  width: 100%;
  background-color: #1B54B8;
  height: 40px;
}

.top-banner__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.top-banner__left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.top-banner__right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.top-banner__org {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.5px;
}

.top-banner__link {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  font-family: inherit;
}

.top-banner__link:hover {
  color: #fff;
}

.top-banner__link img{
  width: 21px;
  height: 16px;
  margin-right: 5px;
  margin-top: 2px;
}

.top-banner__date {
  color: #fff;
  font-size: 14px;
}

/* === Hero Carousel === */
.hero-carousel {
  width: 100%;
  height: 452px;
  overflow: hidden;
  position: relative;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}

.hero-slide--active {
  opacity: 1;
}

.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -ms-flexbox;
  display: flex;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  margin: 0 4px;
  cursor: pointer;
  border: none;
}

.hero-dot--active {
  background: #fff;
}

.hero-search {
  position: absolute;
  top: 24px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 10;
}

.hero-search__box {
  display: -ms-flexbox;
  display: flex;
}

.hero-search__input {
  width: 220px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #ccc;
  border-right: none;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.hero-search__btn {
  height: 36px;
  padding: 0 20px;
  background: #1B54B8;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}

.hero-search__btn:hover {
  background: #1F74DB;
}

/* === App Header (Nav) === */
.app-header {
  width: 100%;
  position: relative;
  z-index: 100;
}

.app-header__nav-bar {
  background: #1B54B8;
  position: relative;
}

.app-header__nav-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 63px;
}

.app-header__nav-item {
  position: relative;
  height: 100%;
}

.app-header__nav-item:first-child > .app-header__nav-link {
  padding-left: 36px;
}

.app-header__nav-link {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 0 44px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
}

.app-header__nav-link:not(.app-header__nav-link--active):hover {
  background-color: rgba(255,255,255,0.12);
}

.app-header__nav-link--active {
  height: 66px;
  margin-top: -3px;
  padding-top: 3px;
  background-image: url("../images/menu-active.png");
  background-repeat: no-repeat;
  background-size: 100% 120%;
  background-position: center bottom;
  z-index: 2;
}

.app-header__nav-arrow {
  margin-left: 4px;
  font-size: 10px;
  opacity: 0.7;
}

.app-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 200;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.app-header__nav-item--has-children:hover .app-header__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.app-header__dropdown-link {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.app-header__dropdown-link:not(.app-header__dropdown-link--active):hover {
  background: rgba(27,84,184,0.08);
  color: #1B54B8;
}

.app-header__dropdown-link--active {
  background: #0262d6;
  color: #fff;
}

.app-header__nav-shadow {
  height: 8px;
  background: -webkit-linear-gradient(top, rgba(27,84,184,0.25), transparent);
  background: linear-gradient(to bottom, rgba(27,84,184,0.25), transparent);
}

/* === App Footer === */
.app-footer {
  width: 100%;
}

.footer-links {
  background: #0262D6;
  padding: 14px 0;
}

.footer-links__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-dropdown {
  position: relative;
  margin-right: 20px;
  margin-bottom: 0;
}

.footer-dropdown__trigger {
  color: #fff;
  min-width: 180px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.footer-dropdown__trigger:hover {
  background: rgba(255,255,255,0.14);
}

.footer-dropdown__arrow {
  font-size: 10px;
  margin-left: 4px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  display: inline-block;
}

.footer-dropdown--open .footer-dropdown__arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.footer-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 100;
  padding: 6px 0;
  border-radius: 0 0 4px 4px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.footer-dropdown--open .footer-dropdown__panel {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.footer-dropdown__link {
  display: block;
  padding: 8px 16px;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
  -webkit-transition: background 0.15s, color 0.15s;
  transition: background 0.15s, color 0.15s;
}

.footer-dropdown__link:hover {
  background: rgba(27,84,184,0.08);
  color: #1B54B8;
}

.footer-info {
  background: #0262D6;
  padding: 40px 0 24px;
}

.footer-info__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-info__main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
}

.footer-info__icon {
  font-size: 48px;
  color: #fff;
  line-height: 1;
  opacity: 0.9;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 4px;
  margin-right: 20px;
}

.footer-info__icon{
  width: 48px;
  height: 60px;
}

.footer-text {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 2;
  display: block;
}

.footer-info__qr {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.footer-info__qr-box {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-info__qr-placeholder {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-info__qr-label {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 10px;
}

.footer-copyright {
  background: #0073E6;
  padding: 14px 0;
  text-align: center;
}

.footer-copyright__text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

/* === Main Content === */
.main-content {
  min-height: 60vh;
}

/* === Breadcrumb === */
.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 4px;
  font-size: 16px;
  color: #3D3D3D;
}

.breadcrumb__icon {
  margin-right: 8px;
}

.breadcrumb__icon img {
  width: 16px;
  height: 18px;
  vertical-align: middle;
}

.breadcrumb__link {
  color: #3D3D3D;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.breadcrumb__link:hover {
  color: #1B54B8;
}

.breadcrumb__sep {
  margin: 0 6px;
  color: #999;
}

/* === Sidebar (shared for service pages) === */
.sidebar {
  border-radius: 6px;
  overflow: hidden;
}

.sidebar__header {
  background: #1B54B8;
  padding: 16px 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 80px;
}

.sidebar__header-icon {
  font-size: 60px;
  color: #fff;
  opacity: 0.12;
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar__header-text {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  margin-left: 48px;
}

.sidebar__nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sidebar__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 28px;
  font-size: 20px;
  color: #3D3D3D;
  background: #F2F7FF;
  border-bottom: 1px solid rgba(225,231,242,0.5);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}

.sidebar__item:first-child {
  border-top: 1px solid rgba(225,231,242,0.5);
}

.sidebar__item:hover {
  background: #e8f0fe;
  color: #1B54B8;
}

.sidebar__item--active {
  background: #1B54B8 !important;
  color: #fff !important;
  font-weight: 700;
}

.sidebar__arrow {
  font-size: 18px;
  font-weight: 700;
}

/* === Sidebar + Content Layout (two-column) === */
.page-layout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page-layout .sidebar {
  width: 300px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.page-layout .content {
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  padding-left: 32px;
}

/* === Pagination === */
.page-pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 28px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-pagination__btn {
  display: inline-block;
  min-width: 40px;
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #D2D2D2;
  background: #fff;
  border-radius: 2px;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-family: inherit;
  text-align: center;
  margin: 0 4px;
}

.page-pagination__btn:hover:not(.page-pagination__btn--disabled):not(.page-pagination__btn--active) {
  border-color: #1B54B8;
  color: #1B54B8;
}

.page-pagination__btn--disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-pagination__btn--active {
  background: #1B54B8;
  color: #fff;
  border-color: #1B54B8;
}

.page-pagination__ellipsis {
  display: inline-block;
  min-width: 24px;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  color: #999;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 4px;
}

/* === Content Header (shared) === */
.content-header__title {
  font-size: 26px;
  font-weight: 700;
  color: #1B54B8;
  letter-spacing: 1px;
  display: inline-block;
}

.content-header__title::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: #1B54B8;
  border-radius: 1px;
  margin-top: 8px;
}

.content-header__subtitle {
  font-size: 26px;
  color: #2F3030;
  margin-left: 24px;
}

.content-header__line {
  display: none;
}

.content-header__divider {
  border: none;
  border-top: 1px solid #EAEAEA;
  margin: 10px 0 24px;
}

/* === Article Sidebar (left panel with header) === */
.article-sidebar-wrap {
  width: 320px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.article-sidebar {
  width: 100%;
}

.article-sidebar__header {
  background: url("../images/left-nav-bg.png");
  background-size: 100% 100%;
  height: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 4px;
}

.article-sidebar__header-text {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 1px 2px 4px rgba(18,43,79,0.8);
}

.article-sidebar__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #F2F7FF;
}

.article-sidebar__menu-item {
  display: block;
  height: 90px;
  line-height: 90px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2F3030;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  position: relative;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.article-sidebar__menu-item:hover {
  background: #d8e7fa;
}

.article-sidebar__menu-item--active {
  background: #d8e7fa !important;
  color: #1B54B8 !important;
}

.article-sidebar__menu-item--active::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 18px;
  background: url(../images/news-menu-right.png) no-repeat center / contain;
}

/* === Responsive === */
@media (max-width: 768px) {
  .top-banner__date {
    display: none;
  }
  .top-banner__org {
    font-size: 12px;
  }
  .hero-carousel {
    height: 280px;
  }
  .hero-slide {
    height: 280px;
  }
  .footer-links__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer-dropdown {
    min-width: 45%;
    margin-bottom: 10px;
  }
  .footer-info__inner {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .app-header__nav-link {
    font-size: 17px;
    padding: 0 28px;
  }
  .page-layout .sidebar {
    width: 260px;
  }
}

@media (max-width: 900px) {
  .app-header__nav-link {
    font-size: 15px;
    padding: 0 18px;
  }
  .page-layout {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .page-layout .sidebar {
    width: 100%;
    margin-bottom: 24px;
  }
  .page-layout .content {
    padding-left: 0;
  }
  .page-layout .article-sidebar-wrap {
    margin-bottom: 24px;
  }
  .article-sidebar-wrap {
    width: 100%;
  }
  .article-body {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.padding-right-20{
  padding-right: 20px;
}

/* === Special Work (shared component) === */
.special-work {
  background: #F3F9FF;
  border-radius: 6px;
  overflow: hidden;
}

.special-work__header {
  background: -webkit-linear-gradient(right, #3b81da 0%, #86bafd 100%);
  background: linear-gradient(270deg, #3b81da 0%, #86bafd 100%);
  padding: 12px 20px;
}

.special-work__title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.special-work__carousel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 8px;
}

.special-work__viewport {
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.special-work__track {
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

.special-work__page {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.special-work__item {
  position: relative;
  height: 82px;
  border-radius: 6px;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 12px;
  cursor: pointer;
  margin-bottom: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.special-work__item:last-child {
  margin-bottom: 0;
}

.special-work__nav-btn {
  width: 30px;
  height: 57px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  margin: 0 4px;
}

.special-work__nav-btn img {
  width: 100%;
  height: 100%;
  display: block;
}

.special-work__nav-btn:hover:not(:disabled) {
  opacity: 0.8;
}

.special-work__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.special-work__item-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(315deg, #1565c0 0%, #42a5f5 100%);
  background: linear-gradient(135deg, #1565c0 0%, #42a5f5 100%);
  opacity: 0.88;
}

.special-work__item-icon {
  position: relative;
  z-index: 1;
  margin-right: 14px;
  width: 40px;
  height: 29px;
}

.special-work__item-label {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 2px 4px rgba(18, 43, 79, 0.5);
}