/* 生态合作页 — 标准文档流 + 浮动分栏，无 flex */
.xceco-page-root {
  background: #f6f9ff;
}

.xceco-page {
  /* padding-bottom: 80px; */
}

.xceco-subnav {
  position: sticky;
  top: 62px;
  z-index: 900;
  box-shadow: 0 8px 24px rgba(7, 26, 53, 0.05);
}

.xceco-section {
  padding: 72px 0 80px;
  scroll-margin-top: 130px;
}

.xceco-section:nth-child(even) {
  background: #fff;
}

.xceco-section:nth-child(odd) {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.xceco-section:first-of-type {
  padding-top: 56px;
}

.xceco-section .xcabout-section-head {
  margin-bottom: 40px;
}

.xceco-section-intro {
  margin: -16px 0 36px;
  max-width: 920px;
  font-size: 15px;
  line-height: 1.9;
  color: #5a7194;
}

.xceco-panel-note {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(0, 80, 190, 0.06);
  color: #75849c;
  font-size: 13px;
  line-height: 1.7;
}

.xceco-subhead {
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 3px solid #0050be;
  font-size: 17px;
  color: #0050be;
}

/* 左侧三级导航 + 右侧内容 */
.xceco-panel::after {
  content: "";
  display: block;
  clear: both;
}

.xceco-tertiary-nav {
  float: left;
  width: 200px;
  position: sticky;
  top: 148px;
  z-index: 10;
}

.xceco-tertiary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.xceco-tertiary-nav li {
  list-style: none;
  margin-bottom: 1px;
}

.xceco-tertiary-nav a {
  display: block;
  position: relative;
  padding: 14px 18px 14px 22px;
  margin-bottom: 8px;
  color: #38517d;
  font-size: 16px;
  /* font-weight: 600; */
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 80, 190, 0.1);
  border-radius: 12px;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.xceco-tertiary-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: transparent;
  transition: background 0.22s ease;
  -webkit-transition: background 0.22s ease;
  -moz-transition: background 0.22s ease;
  -ms-transition: background 0.22s ease;
  -o-transition: background 0.22s ease;
}

.xceco-tertiary-nav a:hover {
  color: #0050be;
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 8px 22px rgba(0, 80, 190, 0.1);
}

.xceco-tertiary-nav a.is-active,
.xceco-tertiary-nav li.is-active a {
  color: #0050be;
  background: #fff;
  border-color: rgba(0, 80, 190, 0.22);
  box-shadow: 0 10px 28px rgba(0, 80, 190, 0.12);
}

.xceco-tertiary-nav a.is-active::before,
.xceco-tertiary-nav li.is-active a::before {
  background: #0050be;
}

.xceco-panel-main {
  float: right;
  width: calc(100% - 228px);
  min-height: 320px;
}

.xceco-tertiary-panel {
  display: none;
  animation: xcecoFadeUp 0.45s ease both;
}

.xceco-tertiary-panel.is-active {
  display: block;
}

@keyframes xcecoFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 北大概要条 */
.xceco-pku-banner {
  overflow: hidden;
  margin-bottom: 28px;
  padding: 24px 28px;
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(7, 24, 58, 0.92) 0%, rgba(0, 80, 190, 0.88) 100%),
    url(../images/main6_bg.png) center center / cover no-repeat;
  color: #fff;
  box-shadow: 0 16px 40px rgba(7, 26, 53, 0.18);
}

.xceco-pku-banner__logo {
  float: left;
  width: 72px;
  height: 72px;
  line-height: 72px;
  margin-right: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.xceco-pku-banner__body {
  overflow: hidden;
}

.xceco-pku-banner__body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.xceco-pku-banner__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.xceco-pku-stats {
  overflow: hidden;
  margin-top: 18px;
}

.xceco-pku-stats__item {
  float: left;
  width: 25%;
  text-align: center;
}

.xceco-pku-stats__num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.xceco-pku-stats__label {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

/* 合作内容卡片 — grid 三列 */
.xceco-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.xceco-content-card {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 16px;
  border: 1px solid rgba(0, 80, 190, 0.1);
  background: #fff;
  box-shadow: 0 10px 30px rgba(12, 39, 86, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.xceco-content-card::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 80, 190, 0.12) 0%, rgba(0, 80, 190, 0) 70%);
  transition: transform 0.3s ease;
}

.xceco-content-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 80, 190, 0.22);
  box-shadow: 0 18px 42px rgba(12, 39, 86, 0.12);
}

.xceco-content-card:hover::after {
  transform: scale(1.35);
}

.xceco-content-card__icon {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #0050be;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.xceco-content-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #17315a;
}

.xceco-content-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #75849c;
}

/* 合作成果 — 四级 pill 切换 */
.xceco-quad-tabs {
  overflow: hidden;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(0, 80, 190, 0.12);
}

.xceco-quad-tabs a {
  float: left;
  position: relative;
  padding: 12px 20px 14px;
  margin-right: 8px;
  color: #5a7194;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.xceco-quad-tabs a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 2px;
  background: #0050be;
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.xceco-quad-tabs a.is-active {
  color: #0050be;
}

.xceco-quad-tabs a.is-active::after {
  transform: scaleX(1);
}

.xceco-quad-panel {
  display: none;
}

.xceco-quad-panel.is-active {
  display: block;
  animation: xcecoFadeUp 0.4s ease both;
}

/* 成果列表 */
.xceco-result-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.xceco-result-list li {
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(0, 80, 190, 0.14);
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.xceco-result-list li:hover {
  padding-left: 8px;
  background: rgba(246, 249, 255, 0.8);
}

.xceco-result-list li:last-child {
  border-bottom: none;
}

.xceco-result-list a {
  display: block;
  color: #17315a;
  font-size: 16px;
  font-weight: 600;
}

.xceco-result-list a:hover {
  color: #0050be;
}

.xceco-result-list span {
  display: block;
  margin-top: 6px;
  color: #8a99b0;
  font-size: 13px;
}

.xceco-result-list__title {
  display: block;
  color: #17315a;
  font-size: 16px;
  font-weight: 600;
}

/* 专家观点 — 文章/视频切换 */
.xceco-expert-switch {
  overflow: hidden;
  margin-bottom: 20px;
}

.xceco-expert-switch button {
  float: left;
  min-width: 120px;
  height: 40px;
  margin-right: 10px;
  padding: 0 18px;
  border: 1px solid rgba(0, 80, 190, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #38517d;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
}

.xceco-expert-switch button.is-active {
  background: #0050be;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 80, 190, 0.28);
}

.xceco-expert-pane {
  display: none;
}

.xceco-expert-pane.is-active {
  display: block;
  animation: xcecoFadeUp 0.4s ease both;
}

/* 文章列表 */
.xceco-article-item {
  overflow: hidden;
  margin-bottom: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(0, 80, 190, 0.08);
  background: #fff;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.xceco-article-item:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 32px rgba(12, 39, 86, 0.1);
}

.xceco-article-item__tag {
  float: left;
  margin-right: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 80, 190, 0.1);
  color: #0050be;
  font-size: 12px;
  font-weight: 700;
}

.xceco-article-item__body {
  overflow: hidden;
}

.xceco-article-item__body h5 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #17315a;
}

.xceco-article-item__body p {
  margin: 0;
  font-size: 13px;
  color: #8a99b0;
  line-height: 1.7;
}

/* 视频卡片 — 两列 grid */
.xceco-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.xceco-video-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #07183a;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.xceco-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7, 26, 53, 0.22);
}

.xceco-video-card__thumb {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.xceco-video-card:hover .xceco-video-card__thumb {
  opacity: 0.95;
  transform: scale(1.04);
}

.xceco-video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.xceco-video-card__play::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #0050be;
}

.xceco-video-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(7, 24, 58, 0) 0%, rgba(7, 24, 58, 0.88) 100%);
  color: #fff;
}

.xceco-video-card__meta h5 {
  margin: 0 0 4px;
  font-size: 15px;
}

.xceco-video-card__meta span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

/* 合作伙伴墙 */
.xceco-partner-group {
  margin-bottom: 28px;
}

.xceco-partner-group:last-child {
  margin-bottom: 0;
}

.xceco-partner-group h4 {
  margin: 0 0 16px;
  padding-left: 12px;
  border-left: 3px solid #0050be;
  font-size: 17px;
  color: #0050be;
}

.xceco-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.xceco-partner-tile {
  min-height: 88px;
  padding: 16px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 80, 190, 0.1);
  background: #fff;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.xceco-partner-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 80, 190, 0.28);
  box-shadow: 0 12px 28px rgba(12, 39, 86, 0.1);
}

.xceco-partner-tile strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: #17315a;
  line-height: 1.4;
}

.xceco-partner-tile span {
  display: block;
  font-size: 12px;
  color: #8a99b0;
}

/* 智库动态时间线 */
.xceco-thinktank-feed {
  margin: 0;
  padding: 0;
  list-style: none;
}

.xceco-thinktank-feed li {
  position: relative;
  overflow: hidden;
  padding: 0 0 22px 28px;
}

.xceco-thinktank-feed li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: rgba(0, 80, 190, 0.18);
}

.xceco-thinktank-feed li:last-child::before {
  bottom: auto;
  height: 8px;
}

.xceco-thinktank-feed li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #0050be;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 80, 190, 0.12);
}

.xceco-thinktank-feed time {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #0050be;
  font-weight: 600;
}

.xceco-thinktank-feed a {
  display: block;
  font-size: 16px;
  color: #17315a;
  font-weight: 600;
  line-height: 1.5;
}

.xceco-thinktank-feed a:hover {
  color: #0050be;
}

.xceco-thinktank-feed p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #8a99b0;
  line-height: 1.7;
}

/* 政府客户 — 层级 tab */
.xceco-gov-level-tabs {
  overflow: hidden;
  margin-bottom: 20px;
}

.xceco-gov-level-tabs a {
  float: left;
  min-width: 88px;
  padding: 10px 16px;
  margin: 0 8px 8px 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 80, 190, 0.12);
  background: #fff;
  color: #5a7194;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}

.xceco-gov-level-tabs a.is-active {
  background: #0050be;
  border-color: #0050be;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 80, 190, 0.24);
}

.xceco-gov-level-panel {
  display: none;
}

.xceco-gov-level-panel.is-active {
  display: block;
  animation: xcecoFadeUp 0.4s ease both;
}

.xceco-gov-client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.xceco-gov-client {
  padding: 20px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0, 80, 190, 0.1);
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.xceco-gov-client:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(12, 39, 86, 0.1);
}

.xceco-gov-client__level {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(0, 80, 190, 0.08);
  color: #0050be;
  font-size: 12px;
  font-weight: 700;
}

.xceco-gov-client h5 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #17315a;
}

.xceco-gov-client p {
  margin: 0;
  font-size: 13px;
  color: #8a99b0;
  line-height: 1.7;
}

.xceco-empty-tip {
  padding: 36px 20px;
  border-radius: 14px;
  border: 1px dashed rgba(0, 80, 190, 0.18);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  color: #8a99b0;
  font-size: 14px;
}

/* 媒体合作 */
.xceco-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.xceco-media-card {
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid rgba(0, 80, 190, 0.1);
  background: #fff;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.xceco-media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(12, 39, 86, 0.12);
}

.xceco-media-card__icon {
  display: inline-block;
  width: 52px;
  height: 52px;
  line-height: 52px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eef4ff 0%, #dce8ff 100%);
  color: #0050be;
  font-size: 20px;
  font-weight: 700;
}

.xceco-media-card h5 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #17315a;
}

.xceco-media-card p {
  margin: 0;
  font-size: 13px;
  color: #8a99b0;
  line-height: 1.7;
}

/* 地图 + 伙伴列表布局 */
.xceco-map-layout::after {
  content: "";
  display: block;
  clear: both;
}

.xceco-map-layout__map {
  float: left;
  width: 58%;
}

.xceco-map-layout__list {
  float: right;
  width: 38%;
}

.xceco-map-tip {
  margin: 0 0 12px;
  font-size: 13px;
  color: #8a99b0;
}

.xceco-partner-map {
  min-height: 340px;
}

.xceco-partner-tags {
  overflow: hidden;
}

.xceco-partner-tag {
  display: inline-block;
  margin: 0 10px 10px 0;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 80, 190, 0.12);
  background: #fff;
  color: #17315a;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.xceco-partner-tag:hover {
  border-color: rgba(0, 80, 190, 0.28);
  box-shadow: 0 6px 18px rgba(12, 39, 86, 0.08);
}

.xceco-partner-tags--wide .xceco-partner-tag {
  margin-bottom: 12px;
}

/* 合作伙伴 logo 墙：结构取自财通资本 servicelogolist / logolist，交互改为主色深蓝 */
.xceco-logowall.servicelogolist {
  padding-top: 0;
}

.xceco-logowall .logoitem {
  margin-bottom: 10px;
}

.xceco-logowall .logoitem h2,
.xceco-logowall .logoitem h4 {
  margin: 0;
  font-size: 20px;
  line-height: 40px;
  color: #17315a;
  font-weight: 600;
}

.xceco-logowall .logolist {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.xceco-logowall .logolist li {
  float: left;
  width: 15.4%;
  margin-right: 1.52%;
  margin-bottom: 15px;
  position: relative;
  list-style: none;
  border-bottom: 2px solid #e8eef6;
}

.xceco-logowall .logolist li:nth-child(6n) {
  margin-right: 0;
}

.xceco-logowall .logolist li a {
  position: relative;
  display: block;
  width: 100%;
  height: 90px;
  padding: 18px 8px 0;
  text-align: center;
  cursor: default;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.xceco-logowall .logolist li a::after {
  content: " ";
  display: inline-block;
  width: 0;
  height: 2px;
  background: #0050be;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: width 0.3s;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
}

.xceco-logowall .logolist li a img {
  display: block;
  margin: 0 auto;
  max-width: 88%;
  max-height: 54px;
  width: auto;
  height: auto;
}

.xceco-logowall .logolist li a img + .xceco-logowall__name {
  display: none;
}

.xceco-logowall__name {
  display: inline-block;
  max-width: 100%;
  color: #17315a;
  font-size: 14px;
  line-height: 1.4;
  vertical-align: middle;
}

.xceco-logowall .logolist li:hover a::after {
  width: 100%;
}

@media (max-width: 991px) {
  .xceco-logowall .logolist li {
    width: 23.86%;
    margin-bottom: 5px;
  }

  .xceco-logowall .logolist li:nth-child(6n) {
    margin-right: 1.52%;
  }

  .xceco-logowall .logolist li:nth-child(4n) {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .xceco-logowall.servicelogolist {
    padding-top: 5px;
  }

  .xceco-logowall .logoitem {
    margin-bottom: 15px;
  }

  .xceco-logowall .logoitem h2,
  .xceco-logowall .logoitem h4 {
    font-size: 18px;
    line-height: 36px;
  }

  .xceco-logowall .logolist {
    margin-top: 5px;
  }

  .xceco-logowall .logolist li {
    width: 47.5%;
    margin-right: 5%;
    margin-bottom: 0;
  }

  .xceco-logowall .logolist li:nth-child(4n),
  .xceco-logowall .logolist li:nth-child(6n) {
    margin-right: 5%;
  }

  .xceco-logowall .logolist li:nth-child(2n) {
    margin-right: 0;
  }
}

/* 合作内容列表 */
.xceco-bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.xceco-bullet-list li {
  position: relative;
  margin-bottom: 16px;
  padding: 18px 20px 18px 28px;
  border-radius: 12px;
  border: 1px solid rgba(0, 80, 190, 0.1);
  background: #fff;
  font-size: 15px;
  line-height: 1.85;
  color: #5a7194;
}

.xceco-bullet-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0050be;
}

.xceco-bullet-list strong {
  color: #17315a;
}

/* 合作成果案例 */
.xceco-case-group {
  margin-bottom: 28px;
}

.xceco-case-group:last-child {
  margin-bottom: 0;
}

.xceco-case-group__title {
  position: relative;
  margin: 0 0 14px;
  padding-left: 12px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.xceco-case-group__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 18px;
  margin-top: -9px;
  background: #0050be;
}

.xceco-case-cards {
  overflow: hidden;
  margin: 0 -8px;
}

.xceco-case-card {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 8px;
  box-sizing: border-box;
  color: #333;
  text-decoration: none;
}

.xceco-case-card__box {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 108px;
  padding: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.xceco-case-card__thumb {
  float: left;
  width: 35%;
  /*height: 80px;
  */margin-right: 18px;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: #eef3f9;
}

.xceco-case-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xceco-case-card__body {
  display: block;
  overflow: hidden;
}

.xceco-case-card h3 {
  display: block;
  margin: 0 0 6px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.xceco-case-card__tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 12px;
  background: #e8f1ff;
  color: #0050be;
  font-size: 14px;
  line-height: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.xceco-case-card p {
  display: block;
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 26px;
}

.xceco-case-card:hover h3 {
  color: #0050be;
}

article.xceco-case-card {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.xceco-case-card__label {
  display: inline-block;
  margin: 0 0 6px;
  padding: 1px 8px;
  background: #e8f1ff;
  color: #0050be;
  font-size: 12px;
  line-height: 20px;
}

.xceco-case-empty {
  overflow: hidden;
  min-height: 260px;
  padding: 0 16px;
  line-height: 260px;
  text-align: center;
  background: #fff url(../images/bg-pkuimg.jpg) no-repeat center;
  background-size: cover;
  border: 1px solid #eee;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.xceco-case-empty__icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: 0 12px 0 0;
  vertical-align: middle;
  border: 2px dotted #0050be;
  border-radius: 50%;
  animation: xcecoEmptySpin 1.6s linear infinite;
}

.xceco-case-empty p {
  position: relative;
  z-index: 1;
  display: inline;
  margin: 0;
  vertical-align: middle;
  color: #333;
  font-size: 20px;
  line-height: 32px;
}

@keyframes xcecoEmptySpin {
  to { transform: rotate(360deg); }
}

.xceco-case-more {
  padding: 8px 0 0;
  text-align: center;
}

.xceco-case-more a {
  display: inline-block;
  color: #0050be;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.xceco-case-more a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  vertical-align: -2px;
  background: url(../images/arrow-down.png) no-repeat center;
  background-size: 16px auto;
  animation: xcecoMoreArrowBounce 1.4s ease-in-out infinite;
}

.xceco-case-more a:hover {
  color: #0050be;
}

/* 品牌荣誉 */
.xceco-honor-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.xceco-honor-list li {
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(0, 80, 190, 0.14);
}

.xceco-honor-list li:last-child {
  border-bottom: none;
}

.xceco-honor-list time {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0, 80, 190, 0.08);
  color: #0050be;
  font-size: 13px;
  font-weight: 700;
}

.xceco-honor-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #5a7194;
}

.xceco-feed-title {
  display: block;
  font-size: 16px;
  color: #17315a;
  font-weight: 600;
  line-height: 1.6;
}

/* 媒体与品牌合作 — 沿用封面模板分栏，仅改样式；不用 flex / grid / table */
.xceco-page-root:has(.xceco-section--media) {
  background: #fafbff;
}

.xceco-section--media {
  background: #fafbff !important;
  padding: 48px 0 72px;
}

.xceco-section--media .xceco-media-intro {
  margin-bottom: 36px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.xceco-section--media .xceco-media-intro__copy {
  float: left;
  width: 55%;
  padding: 45px;
}

.xceco-section--media .xceco-media-intro__kicker {
  display: block;
  margin-bottom: 8px;
  color: #0050be;
  font-size: 16px;
  line-height: 32px;
}

.xceco-section--media .xceco-media-intro__copy h2 {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}

.xceco-section--media .xceco-media-intro__copy p {
  margin: 0;
  max-width: none;
  color: #333;
  font-size: 16px;
  text-align: justify;
  line-height: 32px;
}

.xceco-section--media .xceco-media-intro__copy p + p {
  margin-top: 12px;
}

.xceco-section--media .xceco-media-intro__visual {
  float: right;
  width: 45%;
}

.xceco-section--media .xceco-media-intro__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.xceco-section--media .xceco-tertiary-nav {
  background: #fff;
 /*  border-radius: 12px;
  padding: 8px 0; */
  overflow: hidden;
}

.xceco-section--media .xceco-tertiary-nav a {
  margin: 0;
  padding: 14px 16px 14px 20px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #333;
  font-size: 18px;
  line-height: 42px;
}

.xceco-section--media .xceco-tertiary-nav a::before {
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 0;
}

.xceco-section--media .xceco-tertiary-nav a:hover {
  color: #0050be;
  background: #eef4ff;
  transform: none;
  box-shadow: none;
}

.xceco-section--media .xceco-tertiary-nav a.is-active,
.xceco-section--media .xceco-tertiary-nav li.is-active a {
  color: #0050be;
  background: #eef4ff;
  border-color: transparent;
  box-shadow: none;
}

.xceco-section--media .xceco-tertiary-nav a.is-active::before,
.xceco-section--media .xceco-tertiary-nav li.is-active a::before {
  background: #0050be;
}

.xceco-section--media .xceco-tertiary-panel,
.xceco-section--media .xceco-tertiary-panel.is-active {
  display: block;
  animation: none;
  margin-bottom: 20px;
  padding: 30px 25px 40px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.xceco-section--media .xceco-tertiary-panel:last-child {
  margin-bottom: 0;
}

.xceco-section--media .xceco-subhead {
  margin: 0 0 20px;
  padding-left: 32px;
  border-left: none;
  background: url(../images/icon-1-blue.png) no-repeat left center;
  background-size: 20px auto;
  color: #000;
  font-size: 24px;
  line-height: 42px;
}

.xceco-partner-board::after {
  content: "";
  display: block;
  clear: both;
}

.xceco-partner-board__list {
  float: none;
  width: 100%;
  padding-right: 0;
  overflow: hidden;
}

.xceco-partner-board__map {
  float: none;
  width: 100%;
  overflow: visible;
}

.xceco-partner-tabs {
  overflow: hidden;
}

.xceco-partner-tab {
  float: left;
  margin: 0 10px 10px 0;
  padding: 8px 18px;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  background: #f5f7fa;
  color: #333;
  font-size: 18px;
  line-height: 28px;
  cursor: pointer;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.xceco-partner-tab.is-on {
  background: #94070a;
  border-color: #94070a;
  color: #fff;
}

.xceco-partner-board--soe .xceco-partner-tab.is-on {
  background: #0050be;
  border-color: #0050be;
}

.xceco-partner-map-stage {
  position: relative;
  height: 620px;
  overflow: visible;
}

.xceco-partner-chart {
  height: 100%;
}

.xceco-map-marker {
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 36px;
  margin-left: -14px;
  margin-top: -36px;
  cursor: pointer;
}

.xceco-map-marker.is-open {
  z-index: 6;
}

.xceco-map-flag {
  display: block;
  width: 28px;
  height: 36px;
  -webkit-animation: xcecoFlagBounce 1.8s ease-in-out infinite;
  animation: xcecoFlagBounce 1.8s ease-in-out infinite;
}

.xceco-map-flag img {
  display: block;
  width: 28px;
  height: auto;
}

@-webkit-keyframes xcecoFlagBounce {
  0%, 100% { -webkit-transform: translateY(0); }
  50% { -webkit-transform: translateY(-8px); }
}

@keyframes xcecoFlagBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.xceco-map-callout {
  display: none;
  position: absolute;
  left: 34px;
  top: 2px;
  z-index: 4;
  width: max-content;
  max-width: 280px;
  min-width: 0;
  padding: 12px 16px 10px;
  background: #fff;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(12, 39, 86, 0.12);
  color: #333;
  font-size: 16px;
  line-height: 28px;
  box-sizing: border-box;
}

.xceco-map-marker.is-open .xceco-map-callout {
  display: block;
}

.xceco-map-marker.is-simple .xceco-map-callout {
  max-width: none;
  white-space: nowrap;
}

.xceco-map-callout::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 8px solid #fff;
}

.xceco-map-marker.is-left .xceco-map-callout {
  left: auto;
  right: 34px;
}

.xceco-map-marker.is-left .xceco-map-callout::before {
  left: auto;
  right: -7px;
  border-right: 0;
  border-left: 8px solid #fff;
}

.xceco-map-marker.is-up .xceco-map-callout {
  top: auto;
  bottom: 8px;
}

.xceco-map-marker.is-up .xceco-map-callout::before {
  top: auto;
  bottom: 14px;
}

.xceco-map-callout__group {
  margin: 0 0 15px;
}

.xceco-map-callout__group:last-child {
  margin-bottom: 0;
}

.xceco-map-callout strong {
  position: relative;
  display: block;
  margin: 0 0 8px;
  padding-left: 12px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  white-space: nowrap;
}

.xceco-map-callout strong:only-child {
  margin-bottom: 0;
}

.xceco-map-callout strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: #94070a;
}

.xceco-partner-board--soe .xceco-map-callout strong::before {
  background: #0050be;
}

.xceco-map-callout__tags {
  overflow: hidden;
  color: #333;
  font-size: 16px;
  line-height: 28px;
}

.xceco-map-callout__tags span {
  position: relative;
  float: left;
  margin: 0 16px 0 0;
  padding: 0 0 0 18px;
  color: #333;
  font-size: 16px;
  line-height: 32px;
  white-space: nowrap;
}

.xceco-map-callout__tags span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0050be;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.xceco-section--media .xceco-panel-note {
  display: none;
}

.xceco-section--media .xceco-partner-grid {
  display: block;
  overflow: hidden;
}

.xceco-section--media .xceco-partner-tile {
  float: left;
  width: 23.5%;
  margin: 0 2% 14px 0;
  box-sizing: border-box;
}

.xceco-section--media .xceco-partner-tile:nth-child(4n) {
  margin-right: 0;
}

.xceco-media-logo-wrap {
  position: relative;
  padding: 4px 0 48px;
}

.xceco-media-logo-swiper {
  overflow: hidden;
  margin-bottom: 20px;
}

.xceco-media-logo-item {
  height: 88px;
  border: 1px solid #e6edf5;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0;
}

.xceco-media-logo-item::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.xceco-media-logo-item span {
  display: inline-block;
  max-width: 88%;
  color: #17315a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  vertical-align: middle;
  white-space: normal;
}

.xceco-media-logo-item img {
  height: 100%;
  width: auto;
  vertical-align: middle;
}

.xceco-media-logo-wrap .xceco-media-logo-prev,
.xceco-media-logo-wrap .xceco-media-logo-next {
  position: absolute;
  top: auto;
  bottom: 0;
  z-index: 3;
  width: 36px;
  height: 36px;
  margin-top: 0;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% auto !important;
  filter: grayscale(1);
  cursor: pointer;
}

.xceco-media-logo-wrap .xceco-media-logo-prev {
  left: 50%;
  right: auto;
  margin-left: -44px;
  background-image: url(../images/arrow-hl.png) !important;
}

.xceco-media-logo-wrap .xceco-media-logo-next {
  left: 50%;
  right: auto;
  margin-left: 56px;
  background-image: url(../images/arrow-hr.png) !important;
}

.xceco-media-logo-prev::after,
.xceco-media-logo-next::after {
  display: none;
  content: none;
}

.xceco-media-logo-prev:hover,
.xceco-media-logo-next:hover {
  filter: none;
}

.xceco-media-logo-prev.swiper-button-disabled,
.xceco-media-logo-next.swiper-button-disabled,
.xceco-media-logo-prev.swiper-button-disabled:hover,
.xceco-media-logo-next.swiper-button-disabled:hover {
  opacity: 0.35;
  cursor: default;
  filter: grayscale(1);
}

.xceco-media-logo-wrap.is-static {
  padding-bottom: 4px;
}

.xceco-media-logo-wrap.is-static .xceco-media-logo-prev,
.xceco-media-logo-wrap.is-static .xceco-media-logo-next {
  display: none;
}

.xceco-section--media .xceco-honor-list {
  position: relative;
  overflow: hidden;
}

.xceco-section--media .xceco-honor-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  z-index: 1;
  width: 0;
  border-left: 1px dashed #d0d7e2;
  pointer-events: none;
}

.xceco-section--media .xceco-honor-list li {
  position: relative;
  float: left;
  width: 50%;
  margin: 0 0 24px;
  padding: 0 36px 0 0;
  overflow: visible;
  border-bottom: none;
  box-sizing: border-box;
}

.xceco-section--media .xceco-honor-list li:nth-child(2n) {
  padding-right: 0;
  padding-left: 36px;
}

.xceco-section--media .xceco-honor-list li:nth-child(2n+1) {
  clear: left;
}

.xceco-section--media .xceco-honor-list li:last-child {
  margin-bottom: 0;
}

.xceco-section--media .xceco-honor-list li:nth-child(odd)::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 8px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d7e2;
}

.xceco-section--media .xceco-honor-item {
  display: block;
  overflow: hidden;
  padding-left: 62px;
  background: url(../images/icon-honorli.png) no-repeat left 2px;
  background-size: 48px auto;
  color: inherit;
}

.xceco-section--media .xceco-honor-item > span {
  display: block;
  margin: 0 0 4px;
  padding: 0;
  background: none;
  border-radius: 0;
  color: #0050be;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.xceco-section--media .xceco-honor-body {
  overflow: hidden;
}

.xceco-section--media .xceco-honor-body p {
  position: relative;
  display: block;
  margin: 0 0 4px;
  padding: 0 0 0 16px;
  background: none;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.xceco-section--media .xceco-honor-body p:last-child {
  margin-bottom: 0;
}

.xceco-section--media .xceco-honor-body p::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 12px;
  width: 8px;
  height:3px;
  background: #0050be;
}

.xceco-section--media .xceco-thinktank-feed {
  padding-left: 12px;
}

.xceco-section--media .xceco-thinktank-feed li {
  padding: 0 0 22px 32px;
  overflow: visible;
}

.xceco-section--media .xceco-thinktank-feed li.is-more-hidden {
  display: none;
}

.xceco-section--media .xceco-thinktank-feed li:last-child {
  padding-bottom: 12px;
}

.xceco-section--media .xceco-thinktank-feed li:last-child::before {
  bottom: 0;
  height: auto;
}

.xceco-section--media .xceco-thinktank-feed a > span {
  float: none;
  display: block;
  width: auto;
  margin: 0 0 6px;
  color: #0050be;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.xceco-section--media .xceco-thinktank-feed a,
.xceco-section--media .xceco-thinktank-feed .xceco-feed-title {
  display: block;
  overflow: hidden;
  padding-right: 0;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.xceco-section--media .xceco-thinktank-feed a {
  position: static;
}

.xceco-section--media .xceco-thinktank-feed a::after {
  display: none;
}

.xceco-section--media .xceco-thinktank-feed a:hover,
.xceco-section--media .xceco-thinktank-feed a:hover .xceco-feed-title {
  color: #0050be;
}

.xceco-section--media .xceco-thinktank-feed a:not([href]) {
  cursor: default;
}

.xceco-section--media .xceco-thinktank-feed a:not([href]):hover {
  color: #333;
}

.xceco-section--media .xceco-thinktank-feed p {
  display: none;
}

.xceco-coop-cards {
  overflow: hidden;
}

.xceco-coop-card {
  float: left;
  width: 32%;
  margin: 0 2% 0 0;
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 20px 118px 20px 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0, 80, 190, 0.06);
}

.xceco-coop-card:nth-child(3n) {
  margin-right: 0;
}

.xceco-coop-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.xceco-coop-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 26px;
}

.xceco-coop-card::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 0;
  width: 60%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.xceco-coop-card--research::after {
  background-image: url(../images/pku-cooperation-content-research-icon.jpg);
}

.xceco-coop-card--rd::after {
  background-image: url(../images/pku-cooperation-content-engineering-icon.jpg);
}

.xceco-coop-card--talent::after {
  background-image: url(../images/pku-cooperation-content-talent-icon.jpg);
}

.xceco-section--media .xceco-subhead-wrap {
  overflow: hidden;
  margin: 0 0 16px;
}

.xceco-section--media .xceco-subhead-wrap .xceco-subhead {
  float: left;
  margin: 0;
}

.xceco-info-more {
  float: right;
  color: #333;
  font-size: 16px;
  line-height: 42px;
  text-decoration: none;
}

.xceco-info-more::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  vertical-align: -2px;
  background: url(../images/arrow-right.png) no-repeat center;
  background-size: contain;
}

.xceco-info-more:hover {
  color: #0050be;
}

.xceco-info-more:hover::after {
  background-image: url(../images/arrow-right-blue.png);
}

.xceco-info-list {
  margin: 0 -8px;
  padding: 4px 0 8px;
  list-style: none;
}

.xceco-info-list::after {
  content: "";
  display: block;
  clear: both;
}

.xceco-info-list li {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 8px 16px;
  box-sizing: border-box;
}

.xceco-info-list li.is-more-hidden {
  display: none;
}

.xceco-info-list a {
  display: block;
  position: relative;
  min-height: 134px;
  padding: 22px 56px 20px 22px;
  background: #fff;
  border: 1px solid #eee;
  color: #333;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: box-shadow 0.28s ease;
  -moz-transition: box-shadow 0.28s ease;
  -ms-transition: box-shadow 0.28s ease;
  -o-transition: box-shadow 0.28s ease;
  transition: box-shadow 0.28s ease;
}

.xceco-info-list a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #0050be;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: transform 0.35s ease;
  -moz-transition: transform 0.35s ease;
  -ms-transition: transform 0.35s ease;
  -o-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
}

.xceco-info-list h3 {
  display: -webkit-box;
  margin: 0;
  height: 56px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #333;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.xceco-info-list .xceco-info-card__time {
  display: block;
  margin-top: 8px;
  padding-left: 26px;
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  color: #666;
  background: url(../images/icon-date.png) no-repeat left center;
  background-size: 20px auto;
}

.xceco-info-list a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border-radius: 50%;
  background-image: url(../images/arrow-right.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px auto;
  -webkit-transition: background 0.28s ease;
  -moz-transition: background 0.28s ease;
  -ms-transition: background 0.28s ease;
  -o-transition: background 0.28s ease;
  transition: background 0.28s ease;
}

.xceco-info-list a:hover {
  box-shadow: 0 10px 24px rgba(0, 80, 190, 0.12);
}

.xceco-info-list a:hover h3 {
  color: #0050be;
}

.xceco-info-list a:hover::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.xceco-info-list a:hover::after {
  background-color: #0050be;
  background-image: url(../images/arrow-right-white.png);
}

.xceco-section--media .news-list .news-list-item {
  margin: 0;
  border-bottom: 1px solid #eee;
}

.xceco-section--media .news-list .news-list-item:last-child {
  border-bottom: 0;
}

.xceco-section--media .news-list .news-list-item.is-more-hidden {
  display: none;
}

.xceco-section--media .news-list .news-list-item__link {
  display: block;
  overflow: hidden;
  padding: 18px 0;
  text-decoration: none;
  color: inherit;
}

.xceco-section--media .news-list .news-list-item__thumb {
  float: right;
  width: 180px;
  max-width: 30%;
  margin-left: 20px;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.xceco-section--media .news-list .news-list-item__thumb img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f0f2f5;
}

.xceco-section--media .news-list .news-list-item__main {
  overflow: hidden;
}

.xceco-section--media .news-list .news-list-item__date {
  float: left;
  margin-right: 18px;
  min-width: 68px;
  padding: 14px 10px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  background: #fff;
  color: #333;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.xceco-section--media .news-list .news-list-item__date-day {
  display: block;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #636363;
}

.xceco-section--media .news-list .news-list-item__date-ym {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 18px;
  color: #999;
}

.xceco-section--media .news-list .news-list-item__body {
  overflow: hidden;
}

.xceco-section--media .news-list .news-list-item__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xceco-section--media .news-list .news-list-item__summary {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #636363;
  overflow: hidden;
}

.xceco-section--media .news-list .news-list-item__link:hover .news-list-item__title {
  color: #0050be;
}

.xceco-section--media .news-list .news-list-item__link:hover .news-list-item__date {
  border-color: #0050be;
}

.xceco-section--media .news-list .news-list-item__link:hover .news-list-item__date-day,
.xceco-section--media .news-list .news-list-item__link:hover .news-list-item__date-ym {
  color: #0050be;
}

.xceco-section--media .xceco-media-more {
  position: relative;
  padding: 0 0 0 44px;
  text-align: left;
}

.xceco-section--media .xceco-media-more a {
  display: inline-block;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.xceco-section--media .xceco-media-more a::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  width: 28px;
  height: 28px;
  margin: 0;
  background: url(../images/arrow-down.png) no-repeat center;
  background-size: 28px auto;
  animation: xcecoMoreArrowBounce 1.4s ease-in-out infinite;
}

.xceco-section--media .xceco-media-more a::after {
  display: none;
}

.xceco-section--media .xceco-media-more a:hover {
  color: #0050be;
}

.xceco-section--media .xceco-media-more a:hover::before {
  animation-duration: 0.8s;
}

.xceco-section--media .xceco-info-more-bar {
  padding: 4px 0 0;
  text-align: center;
}

.xceco-section--media .xceco-info-more-bar a {
  position: relative;
  padding-top: 0;
}

.xceco-section--media .xceco-info-more-bar a::before {
  display: none;
}

.xceco-section--media .xceco-info-more-bar a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  vertical-align: text-bottom;
  background-image: url(../images/arrow-down.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px auto;
  animation: xcecoMoreArrowBounce 1.4s ease-in-out infinite;
}

.xceco-section--media .xceco-info-more-bar a:hover::after {
  animation-duration: 0.8s;
}

@keyframes xcecoMoreArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* 滚动入场 */
.xceco-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.xceco-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 视频弹窗 */
.xceco-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.xceco-video-modal.is-open {
  display: block;
}

.xceco-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 46, 0.72);
}

.xceco-video-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 860px;
  max-width: calc(100% - 32px);
  transform: translate(-50%, -50%);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.xceco-video-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #17315a;
  font-size: 22px;
  line-height: 36px;
  cursor: pointer;
}

.xceco-video-modal__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.xceco-video-modal__frame iframe,
.xceco-video-modal__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 北大战略合作：合作内容 / 合作成果 / 专家视点 */
.xceco-pku-flow {
  overflow: hidden;
}

.xceco-pku-flow__item {
  float: left;
  width: 24.25%;
  margin: 0 1% 0 0;
  min-height: 228px;
  padding: 20px 14px 16px;
  position: relative;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #dce8f6;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 80, 190, 0.06);
}

.xceco-pku-flow__item:nth-child(4n),
.xceco-pku-flow__item:last-child {
  margin-right: 0;
}

.xceco-pku-flow__icon {
  display: block;
  width: 42px;
  height: 42px;
  margin: 4px auto 12px;
}

.xceco-pku-flow__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.xceco-pku-flow__item h3 {
  margin: 0 0 8px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

.xceco-pku-flow__item p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.xceco-pku-result-list {
  overflow: hidden;
  margin: 0 -8px;
  padding: 0;
  list-style: none;
}

.xceco-pku-result-list li {
  float: left;
  width: 50%;
  margin: 0 0 16px;
  padding: 0 8px;
  box-sizing: border-box;
}

.xceco-pku-result-item {
  display: block;
  position: relative;
  min-height: 148px;
  padding: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  color: #333;
  text-decoration: none;
}

.xceco-pku-result-item__cover {
  float: left;
  width: 38%;
  height: 116px;
  margin-right: 14px;
  position: relative;
  overflow: hidden;
  background: #f4f7fb;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.xceco-pku-result-item__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.xceco-pku-result-item__badge {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 2;
  padding: 3px 8px;
  background: #e8b84a;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
}

.xceco-pku-result-item__body {
  display: block;
  overflow: hidden;
  padding: 8px 0 0;
}

.xceco-pku-result-item h3 {
  margin: 0 0 8px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

a.xceco-pku-result-item h3 {
  padding-right: 6px;
}

a.xceco-pku-result-item h3::after {
  content: "";
  float: right;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  background: url(../images/arrow-right.png) no-repeat center;
  background-size: contain;
  -webkit-transition: -webkit-transform 0.22s ease;
  -moz-transition: -moz-transform 0.22s ease;
  -ms-transition: -ms-transform 0.22s ease;
  -o-transition: -o-transform 0.22s ease;
  transition: transform 0.22s ease;
}

.xceco-pku-result-item p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 28px;
}

a.xceco-pku-result-item:hover h3 {
  color: #0050be;
}

a.xceco-pku-result-item:hover h3::after {
  background-image: url(../images/arrow-right-blue.png);
  -webkit-transform: translateX(4px);
  -moz-transform: translateX(4px);
  -ms-transform: translateX(4px);
  -o-transform: translateX(4px);
  transform: translateX(4px);
}

.xceco-pku-expert-lead {
  float: left;
  margin: 0 0 0 12px;
  color: #666;
  font-size: 16px;
  line-height: 42px;
}

.xceco-pku-expert-wrap {
  position: relative;
  padding: 0 0 52px;
}

.xceco-pku-expert-swiper {
  overflow: hidden;
  height: 312px;
}

.xceco-pku-expert-swiper .swiper-slide {
  height: 148px;
  box-sizing: border-box;
}

.xceco-pku-expert-card {
  display: block;
  height: 100%;
  min-height: 118px;
  padding: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  color: #333;
  text-decoration: none;
}

.xceco-pku-expert-card__thumb {
  float: left;
  width: 35%;
  margin-right: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  background: #eef3f9;
}

.xceco-pku-expert-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xceco-pku-expert-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.xceco-pku-expert-card__play::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #0050be;
}

.xceco-pku-expert-card__body {
  display: block;
  overflow: hidden;
}

.xceco-pku-expert-card__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 12px;
  background: #e8f1ff;
  color: #0050be;
  font-size: 14px;
  border-radius: 5px;
  line-height: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.xceco-pku-expert-card h3 {
  margin: 0 0 8px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xceco-pku-expert-card__time {
  display: block;
  margin-top: 6px;
  padding-left: 26px;
  color: #666;
  font-size: 16px;
  line-height: 28px;
  background: url(../images/icon-date.png) no-repeat left center;
  background-size: 20px auto;
}

.xceco-pku-expert-card:hover h3 {
  color: #0050be;
}

.xceco-pku-expert-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom:0px;
  height: 36px;
  line-height: 36px;
  text-align: center;
}

.xceco-pku-expert-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  background: #d0d7e2;
  opacity: 1;
}

.xceco-pku-expert-pagination .swiper-pagination-bullet-active {
  background: #0050be;
}

.xceco-pku-expert-prev,
.xceco-pku-expert-next {
  position: absolute;
  top: auto;
  bottom: 0;
  width: 36px;
  height: 36px;
  margin-top: 0;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% auto !important;
  filter: grayscale(1);
  cursor: pointer;
}

.xceco-pku-expert-prev {
  left: 50%;
  right: auto;
  margin-left: -80px;
  background-image: url(../images/arrow-hl.png) !important;
}

.xceco-pku-expert-next {
  left: 50%;
  right: auto;
  margin-left: 52px;
  background-image: url(../images/arrow-hr.png) !important;
}

.xceco-pku-expert-prev::after,
.xceco-pku-expert-next::after {
  display: none;
  content: none;
}

.xceco-pku-expert-prev:hover,
.xceco-pku-expert-next:hover {
  filter: none;
}

.xceco-pku-expert-prev.swiper-button-disabled,
.xceco-pku-expert-next.swiper-button-disabled,
.xceco-pku-expert-prev.swiper-button-disabled:hover,
.xceco-pku-expert-next.swiper-button-disabled:hover {
  opacity: 0.35;
  cursor: default;
  filter: grayscale(1);
}

@media (max-width: 1199px) {
  .xceco-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xceco-partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .xceco-tertiary-nav,
  .xceco-panel-main {
    float: none;
    width: 100%;
  }

  .xceco-tertiary-nav {
    position: static;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .xceco-tertiary-nav li,
  .xceco-tertiary-nav a {
    float: left;
    width: calc(50% - 6px);
    margin: 0 12px 10px 0;
    box-sizing: border-box;
  }

  .xceco-tertiary-nav li:nth-child(2n),
  .xceco-tertiary-nav a:nth-child(2n) {
    margin-right: 0;
  }

  .xceco-tertiary-nav li a {
    float: none;
    width: 100%;
    margin: 0;
  }

  .xceco-pku-stats__item {
    width: 50%;
    margin-bottom: 12px;
  }

  .xceco-gov-client-grid,
  .xceco-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xceco-map-layout__map,
  .xceco-map-layout__list {
    float: none;
    width: 100%;
  }

  .xceco-map-layout__list {
    margin-top: 20px;
  }

  .xceco-partner-board__list,
  .xceco-partner-board__map {
    float: none;
    width: 100%;
  }

  .xceco-case-cards {
    margin: 0;
  }

  .xceco-case-card {
    float: none;
    width: 100%;
    margin-bottom: 12px;
    padding: 0;
  }

  .xceco-section--media .xceco-tertiary-nav {
    width: 100%;
    margin-bottom: 20px;
  }

  .xceco-section--media .xceco-tertiary-nav li,
  .xceco-section--media .xceco-tertiary-nav a {
    float: none;
    width: 100%;
    margin: 0;
  }

  .xceco-section--media .xceco-panel-main {
    width: 100%;
  }

  .xceco-section--media .xceco-media-intro__copy,
  .xceco-section--media .xceco-media-intro__visual {
    float: none;
    width: 100%;
    padding: 0;
  }

  .xceco-section--media .xceco-media-intro__copy {
    margin-bottom: 20px;
  }

  .xceco-section--media .xceco-media-intro__copy h2 {
    font-size: 22px;
  }

  .xceco-section--media .xceco-partner-tile {
    width: 49%;
    margin-right: 2%;
  }

  .xceco-section--media .xceco-partner-tile:nth-child(4n) {
    margin-right: 2%;
  }

  .xceco-section--media .xceco-partner-tile:nth-child(2n) {
    margin-right: 0;
  }

  .xceco-coop-card {
    float: none;
    width: 100%;
    margin: 0 0 16px;
    min-height: 148px;
    padding-right: 118px;
  }

  .xceco-coop-card:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }

  .xceco-coop-card:not(:last-child) {
    margin-bottom: 16px;
  }

  .xceco-pku-flow__item {
    float: none;
    width: 100%;
    margin: 0 0 12px;
    min-height: 0;
  }

  .xceco-pku-result-list li {
    float: none;
    width: 100%;
  }

  .xceco-pku-expert-wrap {
    padding: 0 0 52px;
  }
}

@media (max-width: 767px) {
  .xceco-section {
    padding: 48px 0 56px;
  }

  .xceco-content-grid,
  .xceco-video-grid,
  .xceco-partner-grid,
  .xceco-gov-client-grid,
  .xceco-media-grid {
    grid-template-columns: 1fr;
  }

  .xceco-tertiary-nav a {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  .xceco-quad-tabs a {
    float: none;
    display: block;
    margin-right: 0;
  }

  .xceco-section--media .xceco-tertiary-panel,
  .xceco-section--media .xceco-tertiary-panel.is-active {
    padding: 20px 18px;
  }

  .xceco-partner-board__list,
  .xceco-partner-board__map {
    float: none;
    width: 100%;
    padding-right: 0;
  }

  .xceco-partner-tab {
    margin-right: 8px;
    padding: 6px 14px;
  }

  .xceco-partner-board__map {
    margin-top: 16px;
  }

  .xceco-partner-map-stage {
    height: auto;
  }

  .xceco-partner-chart {
    height: 400px;
  }

  .xceco-section--media .xceco-honor-list li,
  .xceco-section--media .xceco-honor-list li:nth-child(2n),
  .xceco-section--media .xceco-honor-list li:nth-child(2n+1),
  .xceco-section--media .xceco-honor-list li:last-child {
    float: none;
    clear: none;
    width: 100%;
    margin-bottom: 20px;
    padding: 0 0 16px;
  }

  .xceco-section--media .xceco-honor-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .xceco-section--media .xceco-honor-list::before,
  .xceco-section--media .xceco-honor-list li:nth-child(odd)::after,
  .xceco-section--media .xceco-honor-list li:not(:last-child)::before,
  .xceco-section--media .xceco-honor-list li:not(:last-child)::after {
    display: none;
  }

  .xceco-section--media .xceco-thinktank-feed a > span {
    float: none;
    display: block;
    width: auto;
    margin-bottom: 4px;
  }

  .xceco-section--media .xceco-thinktank-feed a,
  .xceco-section--media .xceco-thinktank-feed .xceco-feed-title {
    white-space: normal;
  }

  .xceco-info-list li {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .xceco-section--media .news-list .news-list-item__thumb {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0 0 12px;
  }

  .xceco-section--media .news-list .news-list-item__date {
    float: none;
    display: inline-block;
    margin: 0 0 10px;
  }

  .xceco-section--media .news-list .news-list-item__title {
    white-space: normal;
  }

  .xceco-section--media .xceco-partner-tile,
  .xceco-section--media .xceco-partner-tile:nth-child(2n),
  .xceco-section--media .xceco-partner-tile:nth-child(4n) {
    float: none;
    width: 100%;
    margin-right: 0;
  }

  .xceco-pku-expert-swiper {
    height: 160px;
  }

  .xceco-pku-expert-swiper .swiper-slide {
    height: 148px;
  }

  .xceco-coop-card {
    min-height: 140px;
    padding-right: 96px;
  }

  .xceco-coop-card::after {
    width: 80px;
    height: 80px;
    margin-top: -40px;
  }

  .xceco-case-empty {
    min-height: 100px;
    padding: 0 16px;
    line-height: 100px;
  }

  .xceco-case-card__thumb {
    width: 96px;
    height: 64px;
    margin-right: 10px;
  }
}

/* 手机端：生态合作侧栏改横向滚动 + 合作卡片/案例布局 */
@media (max-width: 767px) {
  .xceco-tertiary-nav,
  .xceco-section--media .xceco-tertiary-nav {
    float: none;
    width: auto;
    position: static;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px 16px;
    padding: 0 16px 6px;
  }

  .xceco-tertiary-nav ul {
    display: block;
    white-space: nowrap;
    font-size: 0;
  }

  .xceco-tertiary-nav li {
    display: inline-block;
    vertical-align: top;
    width: auto;
    margin: 0 8px 0 0;
    white-space: normal;
  }

  .xceco-tertiary-nav li:last-child {
    margin-right: 0;
  }

  .xceco-tertiary-nav a,
  .xceco-section--media .xceco-tertiary-nav a {
    display: inline-block;
    width: auto;
    min-width: 120px;
    max-width: 72vw;
    margin: 0;
    padding: 10px 14px;
    font-size: 14px;
    transform: none;
    box-shadow: none;
  }

  .xceco-tertiary-nav a:hover {
    transform: none;
  }

  .xceco-tertiary-nav a::before,
  .xceco-section--media .xceco-tertiary-nav a::before {
    top: auto;
    bottom: 0;
    left: 10px;
    right: 10px;
    width: auto;
    height: 3px;
  }

  .xceco-coop-card {
    float: none;
    width: 100%;
    min-height: 0;
    padding: 16px;
  }

  .xceco-coop-card::after {
    position: static;
    display: block;
    width: 64px;
    height: 64px;
    margin: 12px auto 0;
    right: auto;
    top: auto;
    background-size: contain;
  }

  .xceco-coop-card h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .xceco-coop-card p {
    font-size: 14px;
    line-height: 24px;
  }

  .xceco-case-card__box {
    display: block;
  }

  .xceco-case-card__thumb {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 12px;
  }

  .xceco-case-card__thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .xceco-case-card__tag {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px 0 0;
  }

  .xceco-case-card h3 {
    display: inline;
    font-size: 16px;
    line-height: 24px;
  }

  .xceco-case-card p {
    clear: both;
    margin-top: 8px;
    font-size: 14px;
    line-height: 24px;
  }

  .xceco-section--media .xceco-tertiary-nav li,
  .xceco-section--media .xceco-tertiary-nav a {
    float: none !important;
    display: inline-block !important;
    width: auto !important;
    max-width: none;
    margin: 0 8px 0 0 !important;
  }

  .xceco-subhead,
  .xceco-logowall .logoitem h2,
  .xceco-logowall .logoitem h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .xceco-partner-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .xceco-partner-tabs::-webkit-scrollbar {
    display: none;
  }

  .xceco-partner-tab {
    float: none;
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    font-size: 15px;
    line-height: 22px;
  }

  .xceco-quad-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .xceco-quad-tabs a {
    float: none;
    display: inline-block;
    vertical-align: top;
  }

  .xceco-logowall .logolist {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    font-size: 0;
    scrollbar-width: none;
  }

  .xceco-logowall .logolist::-webkit-scrollbar {
    display: none;
  }

  .xceco-logowall .logolist li {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: 118px;
    margin: 0 10px 0 0 !important;
  }

  .xceco-logowall .logolist li:nth-child(2n),
  .xceco-logowall .logolist li:nth-child(4n),
  .xceco-logowall .logolist li:nth-child(6n) {
    margin-right: 10px !important;
  }

  .xceco-logowall .logolist li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    padding: 10px 8px;
  }

  .xceco-logowall .logolist li a img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
  }
}
