    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: #f5f5f5;
      color: #333;
      font-family: "Microsoft YaHei", "SimSun", sans-serif;
      font-size: 14px;
    }

    a {
      color: #004cff;
      text-decoration: none;
    }

    .page {
      width: 1650px;
      max-width: calc(100vw - 22px);
      margin: 0 auto;
    }

    .topline .page {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }

    .top-left,
    .top-right {
      display: flex;
      align-items: center;
      gap: 18px;
      white-space: nowrap;
    }

    .phone-icon {
      width: 23px;
      height: 36px;
      border: 3px solid #1fb7e8;
      border-radius: 3px;
      position: relative;
    }

    .phone-icon::before {
      content: "";
      position: absolute;
      left: 5px;
      right: 5px;
      top: 4px;
      height: 2px;
      background: #1fb7e8;
    }

    .phone-icon::after {
      content: "";
      position: absolute;
      left: 7px;
      bottom: 4px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #1fb7e8;
    }

    .top-divider {
      color: #cfcfcf;
    }

    .pay-guide-modal[hidden] {
      display: none;
    }

    .pay-guide-mask {
      position: fixed;
      z-index: 9000;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.36);
    }

    .pay-guide-box {
      position: fixed;
      z-index: 9001;
      left: 50%;
      top: 50%;
      max-width: 82vw;
      max-height: 82vh;
      padding: 18px;
      background: #fff;
      border: 1px solid #d8d8d8;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
      transform: translate(-50%, -50%);
    }

    .pay-guide-box img {
      display: block;
      max-width: 76vw;
      max-height: 74vh;
    }

    .pay-guide-close {
      position: absolute;
      right: -12px;
      top: -12px;
      width: 28px;
      height: 28px;
      border: 0;
      border-radius: 50%;
      background: #078fd2;
      color: #fff;
      font-size: 20px;
      line-height: 28px;
      cursor: pointer;
    }

    .header {
      background: #fff;
      padding: 34px 0 36px;
    }

    .header-grid {
      display: grid;
      grid-template-columns: 420px 1fr 160px;
      align-items: center;
      gap: 90px;
    }

    .logo-mark img {
      display: block;
      width: 390px;
      height: auto;
    }

    .search-tabs {
      display: flex;
      align-items: flex-end;
      height: 38px;
    }

    .search-tabs a {
      min-width: 120px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #0088cc;
    }

    .search-tabs .active {
      background: #098fd2;
      color: #fff;
      font-weight: 700;
    }

    .search-row {
      display: flex;
      height: 58px;
      border: 3px solid #068bd0;
      position: relative;
      overflow: visible;
    }

    .search-input-wrap {
      position: relative;
      flex: 1;
      min-width: 0;
      background: #fff;
    }

    .search-row input {
      display: block;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      border: 0;
      padding: 0 24px;
      font-size: 21px;
      outline: none;
      color: #222;
    }

    .search-row > button {
      width: 144px;
      border: 0;
      background: #098fd2;
      color: #fff;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: 8px;
      cursor: pointer;
    }

    .search-history-list {
      position: absolute;
      z-index: 1200;
      top: 100%;
      left: -3px;
      right: 0;
      margin-top: 3px;
      max-height: 300px;
      overflow-y: auto;
      border: 1px solid #b8b8b8;
      background: #fff;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
    }

    .search-history-list[hidden] {
      display: none;
    }

    .search-row .search-history-item {
      display: block;
      width: 100%;
      max-width: 100%;
      min-height: 38px;
      box-sizing: border-box;
      padding: 7px 14px;
      overflow: hidden;
      border: 0;
      border-bottom: 1px solid #eee;
      background: #fff;
      color: #222;
      font-size: 17px;
      line-height: 24px;
      text-align: left;
      text-overflow: ellipsis;
      white-space: nowrap;
      cursor: pointer;
    }

    .search-row .search-history-item:last-child {
      border-bottom: 0;
    }

    .search-row .search-history-item:hover,
    .search-row .search-history-item.active {
      background: #f5f5f5;
      color: #000;
    }

    .filters {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 6px;
    }

    .filters select {
      height: 36px;
      border: 1px solid #ddd;
      background: #fff;
      color: #777;
      font-size: 20px;
      padding: 0 12px;
    }

    .header-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 92px;
      font-size: 18px;
      line-height: 1.2;
      text-align: center;
    }

    .header-links a {
      color: #0048ff;
      text-decoration: none;
      white-space: nowrap;
    }

    .header-links .top-divider {
      display: none;
    }

    .nav {
      background: #078fd2;
      border-bottom: 4px solid #e5e5e5;
    }

    .nav .page {
      display: flex;
      height: 58px;
    }

    .nav a {
      display: flex;
      flex: 1 1 0;
      align-items: center;
      justify-content: center;
      color: #002ad4;
      font-size: 16px;
      font-weight: 700;
      border-right: 2px dotted rgba(255, 255, 255, .65);
      min-width: 0;
      white-space: nowrap;
    }

    .nav a:last-child {
      border-right: 0;
    }

    .main {
      padding: 32px 0 16px;
    }

#detail-page[hidden] {
  display: none;
}

body.detail-mode .topline,
body.detail-mode .header,
body.detail-mode .nav,
body.detail-mode .main > :not(#detail-page) {
  display: none;
}

body.detail-mode .main {
  padding: 22px 0 16px;
}

#detail-page {
  width: 1174px;
  max-width: calc(100vw - 40px);
  margin: 0 auto;
}

body.detail-admin-active #detail-page {
  width: 1510px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1174px);
  gap: 28px;
  align-items: start;
}

.admin-detail-panel {
  background: #fff;
  border: 1px solid #dcdcdc;
  padding: 22px 20px 24px;
  color: #333;
}

.admin-detail-panel h3 {
  margin: 0 0 18px;
  color: #078fd2;
  font-size: 22px;
}

.admin-detail-panel label,
.admin-category-title,
.admin-attachment-title {
  display: block;
  margin: 14px 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.admin-detail-panel select,
.admin-detail-panel input[type="text"],
.admin-detail-panel textarea,
.admin-rich-editor {
  width: 100%;
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #333;
  font-size: 14px;
  padding: 0 8px;
}

.admin-detail-panel select,
.admin-detail-panel input[type="text"] {
  height: 34px;
}

.admin-detail-panel textarea,
.admin-rich-editor {
  box-sizing: border-box;
  min-height: 210px;
  padding: 8px;
  line-height: 1.5;
  overflow: auto;
  resize: vertical;
}

.admin-rich-editor {
  max-height: 480px;
}

.admin-rich-editor:focus {
  border-color: #078fd2;
  outline: 0;
}

.admin-editor-tip {
  margin-top: 6px;
  color: #888;
  font-size: 12px;
  line-height: 1.5;
}

.admin-attachment-drop {
  box-sizing: border-box;
  width: 100%;
  padding: 16px 10px;
  border: 1px dashed #8bc8e6;
  background: #f6fcff;
  color: #666;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  cursor: pointer;
}

.admin-attachment-drop.is-dragging {
  border-color: #078fd2;
  background: #e9f8ff;
}

.admin-attachment-drop button {
  border: 0;
  background: transparent;
  color: #078fd2;
  cursor: pointer;
  text-decoration: underline;
}

.admin-attachment-message {
  min-height: 18px;
  margin-top: 5px;
  color: #777;
  font-size: 12px;
  line-height: 1.5;
}

.admin-attachment-message.success {
  color: #078fd2;
}

.admin-attachment-message.error {
  color: #d80000;
}

.admin-attachment-list {
  margin-top: 4px;
  color: #999;
  font-size: 12px;
  line-height: 1.7;
}

.admin-attachment-item {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-attachment-item a {
  color: #078fd2;
}

.admin-attachment-item button {
  margin-left: 4px;
  border: 0;
  background: transparent;
  color: #d80000;
  cursor: pointer;
}

.admin-detail-panel .admin-check {
  margin: 10px 0;
  font-weight: 400;
}

.admin-check input {
  margin-right: 8px;
  vertical-align: middle;
}

#admin-save-notice {
  width: 100%;
  height: 42px;
  margin-top: 18px;
  border: 0;
  border-radius: 3px;
  background: #078fd2;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}

#admin-delete-notice {
  width: 100%;
  height: 40px;
  margin-top: 10px;
  border: 1px solid #d80000;
  border-radius: 3px;
  background: #fff;
  color: #d80000;
  font-size: 16px;
  cursor: pointer;
}

#admin-delete-notice:hover {
  background: #fff4f4;
}

.admin-detail-message {
  min-height: 22px;
  margin-top: 12px;
  color: #777;
  line-height: 1.6;
}

.admin-detail-message.success {
  color: #078fd2;
}

.admin-detail-message.error {
  color: #d80000;
}

.newsview {
  min-height: 1126px;
  background: #fff;
  border: 1px solid #dcdcdc;
  padding: 44px 78px 42px;
}

.version-selector {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 0 28px;
  color: #333;
  font-size: 15px;
}

.version-selector[hidden] {
  display: none;
}

.version-selector label {
  font-weight: 700;
}

.version-selector select {
  width: 260px;
  height: 32px;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: #333;
  font-size: 14px;
  padding: 0 8px;
}

.nwtitle {
  margin: 0;
  color: #222;
  font-size: 24px;
  line-height: 1.35;
  text-align: center;
}

.search-highlight {
  padding: 0 1px;
  background: #fff176;
  color: inherit;
  font-weight: 700;
}

.nv_content {
  padding: 106px 30px 86px;
  color: #333;
  font-family: "Microsoft YaHei", SimSun, sans-serif;
  font-size: 18px;
  line-height: 1.85;
  max-width: 100%;
  overflow-x: auto;
  overflow-wrap: normal;
  word-break: normal;
  zoom: 1.08;
}

.admin-rich-editor * {
  max-width: 100%;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.nv_content p,
.nv_content li,
.nv_content div:not(.detail-table-scroll) {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

.nv_content img {
  max-width: 100%;
}

.nv_content table {
  width: auto;
  max-width: none;
  min-width: 0;
  border-collapse: collapse;
  overflow-wrap: normal;
  word-break: normal;
}

.detail-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 12px 0;
}

.detail-table-scroll table {
  margin: 0;
}

.detail-restored-table {
  width: 100%;
  border: 1px solid #d8d8d8;
}

.detail-restored-table td,
.detail-restored-table th {
  border: 1px solid #d8d8d8;
  padding: 6px 8px;
  vertical-align: top;
}

.nv_content td,
.nv_content th {
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
}

.nv_content pre,
.nv_content code {
  white-space: pre-wrap !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.notice-attachments {
  margin: 0 30px 30px;
  padding-top: 18px;
  border-top: 1px dashed #e2e2e2;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

.notice-attachments[hidden] {
  display: none;
}

.notice-attachments-title {
  font-weight: 700;
}

.notice-attachments-list a {
  display: block;
  color: #d80000;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.notice-source-link {
  margin: 0 30px 26px;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  text-align: right;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.notice-source-link[hidden] {
  display: none;
}

.notice-source-link a {
  color: #d80000;
  text-decoration: none;
}

.notice-source-link a:hover {
  text-decoration: underline;
}

.nwline {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  padding-top: 86px;
  border-top: 1px dashed #e2e2e2;
  color: #333;
  font-size: 16px;
}

.favorite-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: #333;
  font: inherit;
  cursor: pointer;
  padding: 0 4px;
}

.favorite-toggle:hover {
  color: #d72525;
}

.favorite-toggle.is-favorite {
  color: #d72525;
}

.favorite-heart {
  font-size: 20px;
  line-height: 1;
}

    .content-grid {
      display: grid;
      grid-template-columns: 315px 1fr 315px;
      gap: 30px;
      align-items: stretch;
    }

    .user-panel,
    .side-panel {
      background: #fff;
      border: 1px solid #ddd;
      min-height: 420px;
    }

    .user-welcome {
      display: flex;
      gap: 22px;
      padding: 22px 42px;
      align-items: center;
      min-height: 92px;
    }

    .avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #d6d6d6;
      position: relative;
    }

    .avatar::before {
      content: "";
      position: absolute;
      left: 14px;
      top: 8px;
      width: 18px;
      height: 18px;
      background: #eee;
      border-radius: 50%;
    }

    .avatar::after {
      content: "";
      position: absolute;
      left: 8px;
      bottom: 7px;
      width: 30px;
      height: 17px;
      background: #eee;
      border-radius: 16px 16px 5px 5px;
    }

    .user-welcome strong {
      display: block;
      color: #222;
      font-size: 18px;
      font-weight: 500;
    }

    .user-welcome span {
      display: block;
      color: #999;
      font-size: 18px;
      margin-top: 8px;
    }

    .user-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: #0790d4;
      height: 92px;
    }

    .user-actions a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      color: #fff;
      font-size: 25px;
      border-right: 1px solid rgba(255,255,255,.25);
    }

    .action-icon {
      font-size: 34px;
      line-height: 1;
    }

    .hotline {
      min-height: 156px;
      display: grid;
      place-items: center;
      text-align: center;
      border-bottom: 1px solid #e5e5e5;
    }

    .hotline-label {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      color: #333;
      font-size: 20px;
    }

    .phone-big {
      color: #0790d4;
      font-size: 48px;
      font-weight: 700;
    }

    .hotline-number {
      display: block;
      color: #777;
      font-size: 24px;
      font-weight: 700;
      margin-top: 16px;
    }

    .qq-row {
      display: none !important;
    }

    .qq-dot {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #d7d7d7;
      position: relative;
    }

    .qq-dot::after {
      content: "";
      position: absolute;
      left: 14px;
      top: 11px;
      width: 20px;
      height: 26px;
      border-radius: 50%;
      background: #f5f5f5;
    }

    .vip {
      color: #f00;
      font-weight: 700;
      margin: 0 2px;
    }

    .ssht-authenticated .user-welcome,
    .ssht-authenticated .mini-welcome {
      gap: 14px;
      min-height: 76px;
      padding: 14px 24px;
      align-items: center;
    }

    .ssht-authenticated .avatar {
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
    }

    .ssht-authenticated .avatar::before {
      left: 10px;
      top: 6px;
      width: 14px;
      height: 14px;
    }

    .ssht-authenticated .avatar::after {
      left: 6px;
      bottom: 5px;
      width: 22px;
      height: 12px;
    }

    .ssht-authenticated .auth-greeting {
      display: block;
      color: #222;
      font-size: 14px;
      font-weight: 400;
      line-height: 1.4;
      white-space: nowrap;
    }

    .ssht-authenticated .user-welcome span,
    .ssht-authenticated .mini-welcome span {
      font-size: 14px;
      margin-top: 3px;
    }

    .ssht-authenticated .user-welcome .vip,
    .ssht-authenticated .mini-welcome .vip {
      display: inline;
      color: #f00;
      font-size: 14px;
      margin: 0 3px;
    }

    .ssht-authenticated .user-actions,
    .ssht-authenticated .mini-actions {
      height: 50px;
    }

    .ssht-authenticated .user-actions a,
    .ssht-authenticated .mini-actions a {
      gap: 8px;
      font-size: 18px;
    }

    .ssht-authenticated .action-icon {
      font-size: 26px;
    }

    .ssht-authenticated .hotline,
    .ssht-authenticated .mini-hotline {
      min-height: 150px;
    }

    .user-panel.ssht-authenticated .user-welcome {
      gap: 16px;
      min-height: 92px;
      padding: 18px 32px;
    }

    .user-panel.ssht-authenticated .avatar {
      width: 42px;
      height: 42px;
      flex-basis: 42px;
    }

    .user-panel.ssht-authenticated .avatar::before {
      left: 13px;
      top: 8px;
      width: 16px;
      height: 16px;
    }

    .user-panel.ssht-authenticated .avatar::after {
      left: 8px;
      bottom: 7px;
      width: 26px;
      height: 15px;
    }

    .user-panel.ssht-authenticated .auth-greeting {
      font-size: 16px;
      line-height: 1.45;
    }

    .user-panel.ssht-authenticated .user-welcome span {
      font-size: 16px;
      margin-top: 5px;
    }

    .user-panel.ssht-authenticated .user-welcome .vip {
      font-size: 16px;
    }

    .user-panel.ssht-authenticated .user-actions {
      height: 64px;
    }

    .user-panel.ssht-authenticated .user-actions a {
      gap: 10px;
      font-size: 21px;
    }

    .user-panel.ssht-authenticated .action-icon {
      font-size: 30px;
    }

    .detail-login-message {
      margin: 80px auto;
      text-align: center;
      font-size: 22px;
      line-height: 2;
    }

    .detail-login-message a {
      color: #078fd2;
      text-decoration: underline;
    }

    .hero {
      min-height: 420px;
      position: relative;
      overflow: hidden;
      background: #dceef5;
    }

    .slide {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      opacity: 0;
      transition: opacity .45s ease;
    }

    .slide.active {
      opacity: 1;
    }

    .slide-dots {
      position: absolute;
      right: 72px;
      bottom: 30px;
      display: flex;
      gap: 8px;
      z-index: 2;
    }

    .slide-dot {
      width: 28px;
      height: 7px;
      border: 0;
      background: #f4f4f4;
      cursor: pointer;
      padding: 0;
    }

    .slide-dot.active {
      background: #ee5a35;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: rgba(0,0,0,.04);
    }

    .side-title {
      height: 54px;
      border-top: 4px solid #078fd2;
      border-bottom: 1px solid #e5e5e5;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 26px 0 34px;
      font-size: 22px;
      color: #111;
      background: #fff;
    }

    .plus {
      color: #078fd2;
      font-size: 42px;
      line-height: 1;
    }

    .notice {
      margin-top: 16px;
      height: 48px;
      background: #e8f7fc;
      border: 1px solid #d5edf6;
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 0 38px;
      color: #222;
      font-size: 18px;
    }

    .speaker {
      color: #777;
      font-size: 31px;
    }

    .notice a {
      font-size: 18px;
    }

    .ad-strip {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 30px;
      margin-top: 16px;
    }

    .ad-strip.equal {
      grid-template-columns: 1fr 1fr;
    }

    .ad-strip img {
      display: block;
      width: 100%;
      height: 150px;
      object-fit: fill;
    }

    .info-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 30px;
    }

.info-block {
  display: grid;
  grid-template-columns: 315px 1fr;
  height: 480px;
  background: #fff;
  border: 1px solid #ddd;
}

.side-ads {
  padding: 20px 10px;
  border-right: 1px solid #ddd;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 20px;
  min-height: 0;
  overflow: hidden;
}

.side-ads a {
  display: block;
  min-height: 0;
  overflow: hidden;
}

.side-ads img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.info-content {
  padding: 34px 26px 20px 30px;
  min-width: 0;
  overflow: hidden;
}

    .info-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 28px;
    }

    .info-title {
      display: flex;
      align-items: center;
      gap: 20px;
      color: #333;
      font-size: 29px;
      font-weight: 700;
      white-space: nowrap;
    }

    .title-mark {
      width: 5px;
      height: 28px;
      display: inline-block;
      background: #df1f2d;
    }

    .title-mark.blue {
      background: #2e5a88;
    }

    .info-more {
      color: #d71928;
      font-size: 42px;
      line-height: 1;
      font-weight: 300;
    }

    .info-more.blue {
      color: #2e5a88;
    }

    .company-list {
      list-style: none;
      padding: 0;
      margin: 4px 0 0;
    }

.company-list li {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr) 96px;
  gap: 14px;
  align-items: center;
  min-height: 42px;
  color: #1f3654;
  font-size: 18px;
}

    .company-list li::before {
      content: "";
  width: 5px;
  height: 5px;
  background: #2e5a88;
  margin-right: 12px;
  display: inline-block;
}

.company-list a {
  grid-column: 2;
  color: #1f3654;
  min-width: 0;
  overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

.company-list time {
  grid-column: 3;
  color: #2e5a88;
  font-size: 18px;
  text-align: right;
  white-space: nowrap;
}

    .industry-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px 32px;
      margin-top: 30px;
    }

.industry-block {
  display: grid;
  grid-template-columns: 315px 1fr;
  height: 480px;
  background: #fff;
  border: 1px solid #ddd;
}

.industry-ads {
  padding: 20px 10px;
  border-right: 1px solid #ddd;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 20px;
  min-height: 0;
  overflow: hidden;
}

.industry-ads a {
  display: block;
  min-height: 0;
  overflow: hidden;
}

.industry-ads img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.industry-content {
  padding: 34px 16px 20px 30px;
  min-width: 0;
  overflow: hidden;
}

    .industry-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 24px;
    }

    .industry-title {
      display: flex;
      align-items: center;
      gap: 20px;
      color: #333;
      font-size: 28px;
      font-weight: 700;
      white-space: nowrap;
      cursor: pointer;
    }

    .industry-mark {
      width: 5px;
      height: 28px;
      display: inline-block;
      background: #078fd2;
    }

    .industry-mark.green {
      background: #00b884;
    }

    .industry-mark.cyan {
      background: #0ab7b6;
    }

    .industry-mark.red {
      background: #f25562;
    }

    .industry-more {
      color: #078fd2;
      font-size: 42px;
      line-height: 1;
      font-weight: 300;
      cursor: pointer;
    }

    .industry-more.green {
      color: #00b884;
    }

    .industry-more.cyan {
      color: #0ab7b6;
    }

    .industry-more.red {
      color: #f25562;
    }

    .news-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

.news-list li {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr) 92px;
  gap: 14px;
  align-items: center;
  min-height: 42px;
  color: #1f3654;
  font-size: 18px;
}

    .news-list li::before {
      content: "";
  width: 5px;
  height: 5px;
  background: var(--bullet, #078fd2);
  margin-right: 12px;
  display: inline-block;
}

.news-list a {
  grid-column: 2;
  color: #1f3654;
  min-width: 0;
  overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

.notice a.notice-read,
.news-list a.notice-read {
  color: #004cff !important;
}

.news-list time {
  grid-column: 3;
  color: var(--date-color, #078fd2);
  text-align: right;
  white-space: nowrap;
      font-size: 18px;
    }

    .partners {
      margin-top: 34px;
      display: grid;
      grid-template-columns: 208px 1fr;
      gap: 22px;
      align-items: stretch;
    }

    .partners-title {
      height: 150px;
      background: #078fd2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 1.35;
    }

    .partners-title span {
      font-family: Arial, sans-serif;
      font-size: 22px;
      letter-spacing: 1px;
    }

    .partner-marquee {
      overflow: hidden;
      height: 150px;
      background: #f5f5f5;
    }

    .partner-track {
      display: flex;
      gap: 24px;
      width: max-content;
      animation: partner-scroll 32s linear infinite;
    }

    .partner-marquee:hover .partner-track {
      animation-play-state: paused;
    }

    .partner-track a {
      display: block;
      width: 176px;
      height: 150px;
      flex: 0 0 auto;
      background: #fff;
    }

    .partner-track img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: fill;
    }

    @keyframes partner-scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }

    .friend-links {
      margin-top: 30px;
      background: #f1f1f1;
    }

    .friend-title {
      width: 195px;
      height: 43px;
      background: #078fd2;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 24px;
      border-bottom: 3px solid #078fd2;
    }

    .friend-links-body {
      border-top: 3px solid #078fd2;
      padding: 24px 30px;
      color: #1f3654;
      font-size: 18px;
      line-height: 2.05;
    }

    .friend-links-body a {
      color: #1f3654;
      display: inline-block;
      margin-right: 21px;
      white-space: nowrap;
    }

    .site-footer {
      margin-top: 30px;
      text-align: center;
      color: #777;
      font-size: 18px;
    }

    .footer-nav {
      height: 44px;
      background: #078fd2;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 54px;
    }

    .footer-nav a {
      color: #0d3151;
      font-size: 18px;
    }

    .copyright {
      margin-top: 14px;
    }

    .footer-certs {
      margin-top: 18px;
      display: flex;
      justify-content: center;
      gap: 12px;
      align-items: center;
    }

    .footer-certs img {
      height: 74px;
      width: auto;
      border: 1px solid #cfcfcf;
      background: #fff;
    }

    @media (max-width: 1100px) {
      .header-grid,
      .content-grid,
      .ad-strip,
      .info-row,
      .info-block,
      .industry-grid,
      .industry-block,
      .partners {
        grid-template-columns: 1fr;
      }

      .header-grid {
        gap: 24px;
      }

      .header-links {
        display: none;
      }

      .nav .page,
      .filters {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
      }

      .nav a {
        height: 48px;
      }

      .info-block,
      .industry-block {
        height: auto;
        min-height: 0;
      }

      .side-ads img,
      .industry-ads img {
        height: 120px;
      }

      .footer-nav {
        height: auto;
        flex-wrap: wrap;
        gap: 18px 28px;
        padding: 12px;
      }
    }

/* IE10/IE11 fallback: keep the layout usable without modern CSS Grid. */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .page {
    width: 1650px;
    max-width: none;
  }

  .topline .page,
  .header-grid,
  .content-grid,
  .ad-strip,
  .info-row,
  .industry-grid,
  .partners,
  .footer-certs {
    display: block;
  }

  .topline .page:after,
  .header-grid:after,
  .content-grid:after,
  .ad-strip:after,
  .info-row:after,
  .industry-grid:after,
  .partners:after,
  .footer-certs:after {
    content: "";
    display: table;
    clear: both;
  }

  .top-left {
    float: left;
    line-height: 56px;
  }

  .top-right {
    float: right;
    line-height: 56px;
  }

  .top-left > *,
  .top-right > * {
    display: inline-block;
    vertical-align: middle;
    margin-right: 14px;
  }

  .logo-mark {
    float: left;
    width: 420px;
  }

  .search-area {
    float: left;
    width: 900px;
  }

  .header-links {
    float: right;
    width: 160px;
  }

  .search-tabs,
  .search-row,
  .filters,
  .nav .page,
  .user-actions,
  .qq-row,
  .notice,
  .side-title,
  .info-heading,
  .info-title,
  .industry-heading,
  .industry-title,
  .slide-dots,
  .footer-nav,
  .partner-track {
    display: -ms-flexbox;
  }

  .search-input-wrap {
    width: 750px;
  }

  .filters select {
    float: left;
    width: 24%;
    margin-right: 1%;
  }

  .nav .page {
    display: table;
  }

  .nav a {
    display: table-cell;
    width: 11.111%;
    height: 58px;
    line-height: 58px;
    text-align: center;
    white-space: nowrap;
  }

  .user-panel {
    float: left;
    width: 315px;
  }

  .hero {
    float: left;
    width: 960px;
    margin-left: 30px;
  }

  .side-panel {
    float: right;
    width: 315px;
  }

  .user-actions a,
  .qq-row > * {
    float: left;
    width: 33.33%;
  }

  .user-actions a {
    width: 50%;
  }

  .ad-strip a {
    float: left;
    width: 80%;
  }

  .ad-strip a + a {
    float: right;
    width: 18%;
  }

  .ad-strip.equal a,
  .ad-strip.equal a + a {
    width: 49%;
  }

  .info-block,
  .industry-block {
    float: left;
    width: 49%;
    margin-right: 2%;
    display: block;
  }

  .info-block:nth-child(2n),
  .industry-block:nth-child(2n) {
    margin-right: 0;
  }

  .side-ads,
  .industry-ads {
    float: left;
    width: 315px;
    display: block;
  }

  .side-ads a,
  .industry-ads a {
    height: 126px;
    margin-bottom: 20px;
  }

  .info-content,
  .industry-content {
    margin-left: 315px;
  }

  .company-list li,
  .news-list li {
    display: block;
    min-height: 42px;
    line-height: 42px;
    white-space: nowrap;
  }

  .company-list li:before,
  .news-list li:before {
    float: left;
    margin-top: 18px;
  }

  .company-list a,
  .news-list a {
    float: left;
    width: 70%;
  }

  .company-list time,
  .news-list time {
    float: right;
    width: 96px;
  }

  .partners-title {
    float: left;
    width: 208px;
  }

  .partner-marquee {
    margin-left: 230px;
  }

  .partner-track {
    width: 3600px;
  }
}
