﻿@charset "UTF-8";

:root {
  --blue: #143acb;
  --blue2: #1e84e8;
  --deep: #082a69;
  --text: #222;
  --muted: #667085;
  --line: #e5ecf5;
  --bg: #f5f8fc;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul,
ol,
dl,
dd,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.w1272,
.container,
.inner {
  width: min(1272px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 998;
  width: 100%;
  height: 86px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 2px 18px rgba(21, 66, 141, .12);
}

.headerNav .container {
  height: 86px;
  display: flex;
  align-items: center;
}

.logobox {
  flex: 0 0 auto;
  margin-right: 44px;
}

.logo {
  margin: 0;
}

.logo a {
  height: 86px;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 52px;
}

.logoMark {
  min-width: 210px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  padding-left: 66px;
  position: relative;
  color: var(--blue);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.logoMark::before {
  content: "";
  position: absolute;
  left: 0;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
}

.logoMark::after {
  content: "T";
  position: absolute;
  left: 15px;
  top: 8px;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
}

.navbar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar li {
  position: relative;
}

.navbar li > a {
  height: 86px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  color: #1b2b44;
  font-size: 16px;
  white-space: nowrap;
}

.navbar li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.navbar li:hover > a {
  color: var(--blue);
}

.navbar li:hover > a::after {
  width: 42px;
}

.navbar .lang,
.navbar .tel {
  display: none;
}

.mNavBtn,
.sbtn {
  display: none;
}

.searchBox {
  display: none;
  position: absolute;
  top: 86px;
  left: 0;
  right: 0;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0 14px 28px rgba(28, 58, 96, .12);
}

.searchBox.show {
  display: block;
}

.searchPup {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
}

.searchForm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 10px;
}

.searchForm input {
  height: 44px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid var(--line);
  font: inherit;
}

.searchForm button {
  border: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
}

.breadcrumb {
  padding-top: 86px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.breadcrumb .container {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #6b7280;
  font-size: 14px;
}

.breadcrumb i::before {
  content: "/";
  color: #a5b0bf;
}

.ct-banner {
  padding-top: 86px;
  position: relative;
  background: #eaf2fb;
}

.ct-banner-bg {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 42, 105, .92), rgba(20, 58, 203, .62) 48%, rgba(255, 255, 255, .04)),
    url(images/ctgt-banner.jpg) center/cover no-repeat;
}

.ct-banner-bg::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: -70px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .06), 0 0 0 160px rgba(255, 255, 255, .035);
}

.ct-banner-copy {
  width: min(1272px, calc(100% - 40px));
  min-height: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: #fff;
}

.ct-banner-copy em {
  color: #b7d6ff;
  font-size: 18px;
  font-style: normal;
  letter-spacing: 3px;
}

.ct-banner-copy h2 {
  max-width: 760px;
  margin-top: 18px;
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
}

.ct-banner-copy p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.8;
}

.ct-banner-copy a {
  width: max-content;
  margin-top: 34px;
  padding: 12px 28px;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
}

.ct-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.ct-banner-dots span {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, .48);
}

.ct-banner-dots .active {
  background: #fff;
}

.ct-title {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
}

.ct-title span {
  min-width: 220px;
  text-align: center;
  color: var(--deep);
  font-size: 38px;
  font-weight: 700;
  position: relative;
}

.ct-title span::before,
.ct-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue));
}

.ct-title span::before {
  right: 100%;
  margin-right: 22px;
}

.ct-title span::after {
  left: 100%;
  margin-left: 22px;
  transform: rotate(180deg);
}

.ct-news {
  padding: 72px 0 66px;
  background: #fff;
}

.ct-news-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 26px;
}

.news-top,
.news-li {
  background: #f6f9fd;
  box-shadow: 0 8px 24px rgba(22, 70, 132, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.news-top:hover,
.news-li:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(22, 70, 132, .14);
}

.news-img img {
  width: 100%;
  aspect-ratio: 1.84 / 1;
  object-fit: cover;
}

.news-top-text {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-top-tit {
  color: #1b2b44;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

.news-time {
  color: #7b8794;
  font-size: 15px;
}

.news-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.news-li-img img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.news-group-text {
  padding: 16px 18px 18px;
}

.news-group-tit {
  min-height: 58px;
  display: -webkit-box;
  overflow: hidden;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-group-time {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  color: #8a95a3;
  font-size: 14px;
}

.news-group-time a {
  color: var(--blue);
}

.news-more {
  margin-top: 36px;
  text-align: center;
}

.news-more a {
  display: inline-flex;
  align-items: center;
  min-width: 142px;
  height: 44px;
  justify-content: center;
  border: 1px solid var(--blue);
  color: var(--blue);
}

.news-empty {
  grid-column: 1 / -1;
  min-height: 160px;
  display: grid;
  place-items: center;
  background: #f6f9fd;
  color: #8a95a3;
}

.ct-honor {
  padding: 72px 0;
  background: linear-gradient(180deg, #f7fbff, #eef5ff);
}

.honor-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.honor-list article {
  min-height: 210px;
  padding: 34px 30px;
  background: #fff;
  border-top: 5px solid var(--blue);
  box-shadow: 0 10px 30px rgba(22, 70, 132, .08);
}

.honor-list strong {
  display: block;
  min-height: 48px;
  color: var(--deep);
  font-size: 22px;
  line-height: 1.45;
}

.honor-list hr {
  width: 44px;
  height: 3px;
  margin: 20px 0;
  border: 0;
  background: var(--blue2);
}

.honor-list p {
  color: #445166;
  line-height: 1.8;
}

.honor-list span {
  display: block;
  margin-top: 18px;
  color: #8a95a3;
}

.ct-industry {
  padding: 76px 0 86px;
  background: #fff;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.industry-card {
  min-height: 230px;
  padding: 42px 44px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 42, 105, .92), rgba(20, 58, 203, .32)),
    url(images/ctgt-industry.jpg) center/cover no-repeat;
  transition: transform .35s ease;
}

.industry-card:hover::before {
  transform: scale(1.05);
}

.industry-card a,
.industry-card p {
  position: relative;
  z-index: 2;
}

.industry-card a {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

.industry-card p {
  max-width: 540px;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  line-height: 1.9;
}

.industry-control::before {
  background:
    linear-gradient(90deg, rgba(8, 42, 105, .92), rgba(30, 132, 232, .28)),
    url(images/ctgt-control.jpg) center/cover no-repeat;
}

.industry-data::before {
  background:
    linear-gradient(90deg, rgba(8, 42, 105, .92), rgba(20, 58, 203, .28)),
    url(images/ctgt-data.jpg) center/cover no-repeat;
}

.industry-new::before {
  background:
    linear-gradient(90deg, rgba(8, 42, 105, .92), rgba(30, 132, 232, .25)),
    url(images/ctgt-new.jpg) center/cover no-repeat;
}

.main {
  padding: 126px 0 70px;
  background: var(--bg);
}

.main > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}

.article,
.umArt,
.sideBox {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(22, 70, 132, .06);
}

.article,
.umArt {
  min-width: 0;
  padding: 32px;
}

.section-title {
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.section-title h1,
.umArtTit {
  color: var(--deep);
  font-size: 32px;
  font-weight: 700;
}

.section-title span {
  display: block;
  margin-top: 8px;
  color: #777;
}

.col3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.postImg {
  overflow: hidden;
  background: #edf1f5;
}

.postImg img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}

.postImg:hover img {
  transform: scale(1.05);
}

.postImg .text {
  display: none;
}

.postText {
  min-height: 104px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
}

.postText h4 {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.postText .time {
  display: block;
  margin-top: 10px;
  color: #999;
  font-size: 14px;
}

.istop {
  grid-column: 1 / -1;
  padding: 20px;
  background: #eef4ff;
  border-left: 4px solid var(--blue);
}

.istop span {
  color: var(--blue);
  font-weight: 700;
}

.istop h4 {
  margin: 8px 0;
  font-size: 22px;
}

.istop p {
  color: #666;
}

.sidebar {
  display: grid;
  gap: 18px;
}

.sideBox {
  padding: 20px;
}

.sideBox h3 {
  margin-bottom: 14px;
  color: var(--deep);
  font-size: 18px;
  font-weight: 700;
}

.sideBox li {
  margin: 9px 0;
}

.tagCloud a,
.artTags a {
  display: inline-flex;
  margin: 0 8px 8px 0;
  padding: 4px 10px;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 14px;
}

.artMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 14px 0 28px;
  color: #888;
  font-size: 14px;
}

.entry {
  color: #333;
  font-size: 16px;
  line-height: 1.9;
}

.entry p {
  margin-bottom: 18px;
}

.entry h2,
.entry h3 {
  margin: 26px 0 14px;
  color: var(--deep);
  font-weight: 700;
}

.entry img {
  height: auto;
  margin: 18px 0;
}

.entry blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--blue);
  background: #f3f7ff;
}

.entry pre {
  overflow: auto;
  padding: 16px;
  background: #111722;
  color: #eaf2ff;
}

.artTags,
.postNav,
.related,
.comments {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.artTags span {
  margin-right: 8px;
  color: #666;
}

.postNav p,
.related li {
  margin: 8px 0;
  color: #666;
}

.related h3,
.comments h3 {
  margin-bottom: 14px;
  color: var(--deep);
  font-weight: 700;
}

.commentList li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.commentList time {
  display: block;
  color: #999;
  font-size: 13px;
}

.pagebar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pagebar a,
.pagebar span {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
}

.pagebar .now-page {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.errorPage {
  width: min(760px, calc(100% - 48px));
  margin: 150px auto 70px;
  padding: 70px 24px;
  background: #fff;
  text-align: center;
}

.errorPage h1 {
  color: var(--blue);
  font-size: 80px;
  line-height: 1;
}

.errorPage p {
  margin: 16px 0 24px;
  color: #777;
}

.foot_content {
  padding-top: 48px;
  background: #0b2a62;
  color: #fff;
}

.foot_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.foot-brand strong {
  display: block;
  font-size: 30px;
  font-weight: 700;
}

.foot-brand span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
}

.wx {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .82);
}

.wx-box {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}

.foot-line {
  height: 1px;
  margin: 34px 0 30px;
  background: rgba(255, 255, 255, .18);
}

.foot-main {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.foot_tit {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.foot_list li {
  margin-bottom: 9px;
}

.foot_list a {
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.foot_bottom {
  grid-column: 1 / -1;
  margin-top: 26px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .72);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 980px) {
  .w1272,
  .container,
  .inner {
    width: calc(100% - 28px);
  }

  .header,
  .headerNav .container {
    height: 68px;
  }

  .logobox {
    margin-right: 0;
  }

  .logo a {
    height: 68px;
  }

  .logoMark {
    min-width: auto;
    height: 44px;
    padding-left: 52px;
    font-size: 20px;
  }

  .logoMark::before {
    width: 44px;
    height: 44px;
  }

  .logoMark::after {
    left: 13px;
    top: 7px;
    font-size: 27px;
  }

  .mNavBtn,
  .sbtn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
  }

  .mNavBtn {
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
  }

  .mNavBtn i {
    width: 18px;
    height: 2px;
    background: #333;
  }

  .sbtn {
    margin-left: 8px;
  }

  .sbtn::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 2px solid #333;
    border-radius: 50%;
  }

  .navbar {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    padding: 10px 14px 18px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(28, 58, 96, .12);
  }

  .navbar.show {
    display: block;
  }

  .navbar li > a {
    height: 42px;
    padding: 0;
  }

  .searchBox {
    top: 68px;
  }

  .breadcrumb,
  .ct-banner {
    padding-top: 68px;
  }

  .ct-banner-bg,
  .ct-banner-copy {
    min-height: 440px;
  }

  .ct-banner-copy h2 {
    font-size: 36px;
  }

  .ct-banner-copy p {
    font-size: 17px;
  }

  .ct-title span {
    font-size: 30px;
  }

  .ct-title span::before,
  .ct-title span::after {
    width: 34px;
  }

  .ct-news-grid,
  .news-side,
  .honor-list,
  .industry-grid,
  .main > .container,
  .col3,
  .foot-main {
    grid-template-columns: 1fr;
  }

  .foot_logo {
    align-items: flex-start;
    flex-direction: column;
  }
}

