@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.9;
}

.ks-flex {
  display: flex;
}

.ks-align-center {
  align-items: center;
}

.column-center {
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.h-32 {
  height: 32px;
}

.ks-container {
  max-width: 1435px;
  width: 100%;
  margin: 0 auto;
}

/**************header****************/
header {
  display: block;
  height: 90px;
}
header > div {
  height: 100%;
}

.ks-logo {
  max-width: 223px;
}

.nav-content {
  padding: 0 0 0 48px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.nav-actions {
  margin-right: 44px;
}
.nav-actions > a {
  font-size: 12px;
  color: #000;
  font-weight: 600;
  margin-left: 42px;
}
.nav-actions span {
  margin-left: 42px;
}
.nav-actions span a {
  font-size: 12px;
  color: #000;
  font-weight: 600;
}
.nav-actions span i {
  display: block;
  height: 12px;
  width: 1px;
  background: #000;
  margin: 0 10px;
}

.menu {
  display: block;
  position: relative;
  cursor: pointer;
}

.menu-title {
  display: block;
  height: 20px;
  padding: 15px 44px;
  text-align: right;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s background-color;
}

.menu-title:after {
  content: "";
  display: block;
  height: 1px;
  background: #004b8c;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 101;
  transition: 0.2s border-bottom ease-in;
}

.menu:hover > .menu-title:after {
  border-bottom-width: 1px;
  width: 100%;
  transition: 0.2s 0.2s border-bottom-width ease-out;
}

.menu-dropdown {
  min-width: 100%;
  position: absolute;
  z-index: 100;
  transition: 0.5s padding, 0.5s background;
  background: #fff;
  box-shadow: 0 0 4px 0px #eee;
  border-radius: 0 0 8px 8px;
}

.menu:not(:hover) > .menu-dropdown {
  z-index: 99;
}

.menu:not(:hover) > .menu-dropdown:after {
  border-top-color: #dddddd;
}

.menu:not(:hover) > .menu-title:after {
  border-bottom-color: #dddddd;
}

.menu-dropdown > * {
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  padding: 5px 10px;
  background: transparent;
  white-space: nowrap;
  transition: 0.5s height cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.5s padding cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.5s margin cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.5s 0.2s color, 0.2s background-color;
}

.menu-dropdown > *:hover {
  color: #fff;
  background: #004b8c;
}

.menu:not(:hover) > .menu-dropdown > * {
  visibility: hidden;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  color: rgba(25, 25, 25, 0);
  transition: 0.5s 0.1s height, 0.5s 0.1s padding, 0.5s 0.1s margin, 0.3s color, 0.6s visibility;
  z-index: 99;
}

.hList > * {
  float: left;
}

.hList > * + * {
  margin-left: 0;
}

.code-img {
  width: 66px;
  height: 66px;
}

/*******手机端*******/
.mobile-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  color: #000;
  height: 60px;
  display: none;
}

.mobile-logo {
  width: 100%;
}
.mobile-logo img {
  margin: 0 auto;
  display: block;
  width: 160px;
}

.mobile-accordion {
  display: none; /* 隐藏菜单 */
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 1rem;
  box-sizing: border-box;
  box-shadow: 0 0 10px 3px #ddd;
}
.mobile-accordion.active {
  display: flex;
  z-index: 120;
}
.mobile-accordion a {
  font-size: 1.2rem;
  padding: 0.5rem;
  display: block;
}
.mobile-accordion .link {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 15px 15px 15px 42px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #ccc;
  position: relative;
  transition: all 0.4s ease;
}
.mobile-accordion .link span {
  flex: 1;
}
.mobile-accordion li:last-child .link {
  border-bottom: 0;
}
.mobile-accordion li svg:first-child {
  position: absolute;
  top: 14px;
  left: 12px;
  font-size: 18px;
  color: #595959;
  transition: all 0.4s ease;
}
.mobile-accordion li.open .link svg:last-child {
  transform: rotate(90deg);
}

.menu-toggle {
  display: block; /* 显示切换按钮 */
  background-color: transparent;
  border: none;
  color: #000;
  font-size: 30px;
  cursor: pointer;
}

/**
 * Submenu
 -----------------------------*/
.submenu {
  display: none;
  background: #fff;
  font-size: 12px;
}

.submenu li {
  border-bottom: 1px solid #eee;
}

.submenu a {
  display: block;
  text-decoration: none;
  color: #666;
  padding: 12px;
  font-size: 14px;
  padding-left: 42px;
  transition: all 0.25s ease;
}

@media (max-width: 769px) {
  header {
    display: none;
  }
  .mobile-navbar {
    display: flex;
  }
}
@media (min-width: 770px) and (max-width: 1024px) {
  .ks-logo {
    width: 120px;
  }
  .menu-title {
    font-size: 14px;
    padding: 15px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .ks-logo {
    width: 180px;
  }
  .nav-content {
    flex: 1;
    padding-left: 20px;
  }
  .menu-title {
    font-size: 16px;
    padding: 15px 28px;
  }
}
/**************banner****************/
.ksbanner {
  width: 100%;
  height: 640px;
}

.banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-bg {
  width: 100%;
  height: 386px;
}

.title-h3 {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 60px;
}

.service-rows {
  width: 100%;
  justify-content: center;
}

.service-item {
  flex-basis: 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.service-item a {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-item img {
  margin-bottom: 32px;
}
.service-item p {
  font-size: 30px;
  color: #fff;
}

.intro-wrapper {
  padding: 86px 0 62px;
}

.intro-container {
  justify-content: space-between;
}

.intro-content {
  width: calc(100% - 16px - 662px);
}
.intro-content .intro-p {
  font-size: 21px;
  color: #4c4948;
  font-weight: 500;
  line-height: 48px;
  padding-right: 50px;
}
.intro-content .intro-more {
  margin: 20px 0 50px;
  text-align: right;
  padding-right: 60px;
}
.intro-content .intro-more a {
  font-size: 14px;
  color: #024699;
}

.intro-items {
  padding-right: 50px;
  border-bottom: solid 12px #daf2f9;
  padding-bottom: 40px;
}
.intro-items .intro-item {
  cursor: pointer;
}
.intro-items .intro-item:not(:first-child) {
  margin-left: 20px;
}
.intro-items .intro-item:first-child > img {
  position: relative;
  top: -2px;
}
.intro-items .intro-item:nth-child(2) > img {
  width: 38px;
  height: 40px;
}
.intro-items .intro-item:nth-child(3) > img {
  width: 37px;
  height: 39px;
}
.intro-items .intro-item:hover .intro-item-box {
  color: #fff;
  background: #004ea2;
}
.intro-items .intro-item:hover .intro-item-box img {
  display: none;
}
.intro-items .intro-item > img {
  width: 42px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 8px;
}
.intro-items .intro-item-box {
  width: 172px;
  height: 40px;
  justify-content: center;
  font-size: 18px;
  color: #004ea2;
  border-radius: 30px;
  border: solid 2px #004ea2;
}
.intro-items .intro-item-box img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.intro-items .intro-item-box span {
  line-height: 1.1;
}

.intro-pic {
  width: 662px;
  height: 376px;
}
.intro-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**************news-wrapper****************/
.news-wrapper {
  padding: 65px 0 90px;
}

.news-title {
  width: 234px;
  height: 58px;
  display: flex;
  align-items: center;
  background: #0f65b1;
  justify-content: center;
  margin-bottom: 32px;
  border-radius: 8px;
}
.news-title img {
  width: 30px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 12px;
}
.news-title span {
  color: #fff;
  font-size: 24px;
}

.news-rows {
  width: 100%;
  justify-content: space-between;
}

.news-box {
  width: calc((100% - 94px) / 3);
  background: #f7f8f8;
}

.news-img {
  width: 100%;
  height: 290px;
}
.news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-content {
  border-top: solid 10px #083a79;
  padding: 16px 12px;
  height: 316px;
  box-sizing: border-box;
}
.news-content .news-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.news-content .news-head .more {
  font-size: 15px;
  color: #083a79;
}
.news-content .news-date {
  width: 85px;
  height: 80px;
  background: #00508f;
  display: flex;
  flex-direction: column;
  padding-left: 17px;
  padding-top: 16px;
  box-sizing: border-box;
}
.news-content .news-date span:first-child {
  font-size: 30px;
  color: #dfb32c;
  margin-bottom: 12px;
  font-weight: 600;
}
.news-content .news-date span:last-child {
  font-size: 15px;
  color: #fff;
}
.news-content h3 {
  font-size: 23px;
  color: #083a79;
  line-height: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 限制行数为3行 */
  overflow: hidden;
}
.news-content p {
  font-size: 14px;
  color: #4c4948;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 限制行数为3行 */
  overflow: hidden;
}
.news-content .divider {
  background: #afbfd2;
  margin: 18px 0 15px;
  width: 100%;
  height: 1px;
}

/**************column****************/
.column-banner {
  width: 100%;
  height: 255px;
}
.column-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**************crumbs****************/
.crumbs-wrap {
  padding-top: 32px;
}
.crumbs-wrap .crumbs-box {
  padding-bottom: 22px;
  border-bottom: solid 1px #b2b2b2;
}
.crumbs-wrap .crumbs-box > img {
  width: 34px;
  height: 30px;
  margin-right: 16px;
}
.crumbs-wrap .crumbs-box span,
.crumbs-wrap .crumbs-box a {
  font-size: 21px;
  color: #000;
  margin-right: 11px;
}

.common-wrapper {
  padding: 40px 0 100px;
}

.block-title {
  width: 100%;
  background: #004b8c;
  height: 84px;
  font-size: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-img_01 {
  height: 430px;
  margin: 12px 0 40px;
}
.block-img_01 img {
  -o-object-fit: cover;
     object-fit: cover;
}
.block-img_01 img:first-child {
  width: 585px;
  margin-right: 2px;
}
.block-img_01 img:last-child {
  width: calc(100% - 587px);
}

.block-title_02 .block-title {
  width: calc((100% - 54px) / 2);
}

.block-img_02 {
  margin: 16px 0 187px;
}
.block-img_02 > img {
  width: calc((100% - 54px) / 2);
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}

.block-content_03 {
  position: relative;
}
.block-content_03 .center-pic {
  width: 584px;
  height: 584px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.block-content_03 .li-cell {
  justify-content: space-between;
  margin-bottom: 196px;
}
.block-content_03 .li-cell:last-child {
  margin-bottom: 216px;
}
.block-content_03 .li-cell-text {
  width: 25%;
}
.block-content_03 h4 {
  font-size: 30px;
  color: #004b8c;
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 18px;
}
.block-content_03 h4::before {
  content: "";
  display: block;
  margin-right: 15px;
  width: 7px;
  height: 50px;
  background: #c2172e;
}
.block-content_03 p {
  font-size: 18px;
  color: #000000;
  line-height: 32px;
}

.block-content_04 img {
  max-width: 100%;
}

.row-three {
  flex-wrap: wrap;
}
.row-three a {
  width: calc((100% - 30px) / 3);
  height: 656px;
  margin-top: 28px;
}
.row-three a:not(:nth-child(3n)) {
  margin-right: 15px;
}
.row-three a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.subject-box {
  display: flex;
  justify-content: space-between;
}
.subject-box:not(:last-child) {
  padding-bottom: 54px;
  margin-bottom: 40px;
  border-bottom: solid 2px #00508f;
}
.subject-box:nth-child(2n) {
  flex-direction: row-reverse;
}
.subject-box__pic {
  width: 40%;
  height: 378px;
  border: solid 2px #00508f;
}
.subject-box__pic img {
  width: 100%;
  height: 100%;
}
.subject-box__content {
  width: 55%;
}
.subject-box__content h3 {
  font-size: 30px;
  color: #004487;
  font-weight: 600;
  margin-bottom: 15px;
  padding-top: 8px;
}
.subject-box__content p {
  font-size: 18px;
  color: #000000;
  line-height: 36px;
}
.subject-box__content ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 22px;
}
.subject-box__content ul li {
  width: 48%;
  line-height: 36px;
}
.subject-box__content ul li a {
  font-size: 18px;
  color: #00508f;
  display: flex;
  align-items: center;
}
.subject-box__content ul li a::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  margin-right: 15px;
  background: #00508f;
}

/**************历史进程****************/
.ks-history-box {
  position: relative;
}
.ks-history-box__title {
  width: 484px;
  height: 84px;
  font-size: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #004b8c;
  font-weight: 600;
}
.ks-history-box__list {
  padding-top: 70px;
  padding-left: 120px;
}
.ks-history-box__list::before {
  content: "";
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAVCAYAAABhe09AAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAydpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMS1jMDAxIDc5LjE0NjI4OTk3NzcsIDIwMjMvMDYvMjUtMjM6NTc6MTQgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyNS4yIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NTRFMTE2OEQwNTUxMUYwODI2Q0I5QzcwNkU3RkJGMSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NTRFMTE2OUQwNTUxMUYwODI2Q0I5QzcwNkU3RkJGMSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY1NEUxMTY2RDA1NTExRjA4MjZDQjlDNzA2RTdGQkYxIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY1NEUxMTY3RDA1NTExRjA4MjZDQjlDNzA2RTdGQkYxIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7c7XcQAAAJpJREFUeNpiZPDukWJgYPgKxP5ArMYCJM4D8WkgZgZic5DAMiC+BcRrgZgfJFDIgACvmBjQAIYASAs/EP8AYk8glgcJXAHik0AsCMTGIIEDQHwViFcAsTBIIBbJiAfE2cIKxH+A2B6IZUECl6F+kQZiE5DAQyB+AsTdQCwOEnDHayhWW2DAGIglQQKnoFgTFmLMUFwLxDIAAQYAKN4XwCMHDWUAAAAASUVORK5CYII=");
  width: 4px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 62px;
}
.ks-history-box__item {
  display: flex;
  padding-bottom: 73px;
  position: relative;
}
.ks-history-box__item:last-child {
  padding-bottom: 104px;
}
.ks-history-box__item::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAydpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMS1jMDAxIDc5LjE0NjI4OTk3NzcsIDIwMjMvMDYvMjUtMjM6NTc6MTQgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyNS4yIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2MEU3NkRCOEQwNTcxMUYwQjEwMUExMEY5ODFFMkM0MyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2MEU3NkRCOUQwNTcxMUYwQjEwMUExMEY5ODFFMkM0MyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjYwRTc2REI2RDA1NzExRjBCMTAxQTEwRjk4MUUyQzQzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjYwRTc2REI3RDA1NzExRjBCMTAxQTEwRjk4MUUyQzQzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Yv8ZUQAAAiBJREFUeNq0lUtIW1EQhscoaDE+goKKiq1V3NgHKC0oKAiKq6jdWCOWUiy4E6pdSqvb6qKuCj4QhUQ3PrIKLV2odFGJ4qMbH7GKSi2oiRpRQYn/H+9NpSZBc/GHnzOHZL6cezMzJ8zj8Yg/hVUMPMVSBxfC6XAivANvwD/gAc9Y3azf3P+hgGViaYcruZXAYuIo3Az4akAogOVYBuE4fVSE1Jdli/FZmjzKMEhibKTsHJzKwrpTrFOb0v11WdwnZ0zbh18CbLsGBdCIZRgOrym6Lx1v8iXFcC/gMf84j6Wp1y6WiTVuz+EXAFt9UACzEc/A+pbqx9JmeiI31QfznLQNzTN0w3kAL+mUzzoJ5AlvA6Ra8X1T0QOGeviz96Ri7M/Dao/GO1z5UinJQR45kLbxKrIaRuXo8h3n86S1jOpLs0ICUsx7XfJQ3ZoILWBU8TxdtIhVoqhYpxS25KTGaYLmouwUZRKaxIh1qEVX8g2EHjBiYWvR7qEv30mog9Hi1r4m6K91lxquEjrJaOznhiaodcqXP06omVH3txVvvYWiv64T6fvuULcWHdrKjsDGwm3qnQ4J+q7Hrg4XG3lqmzayd80Tv729fBt9tMwJ86AjhXOHU+rKPK3C0s/hwHn6FvOUnZabES8JMZGy58Y8XXN5/9Suf/OU0+kVgCPBJj+b+BNcdYOnJ+g9gI6g14mfO6oY5g/Fwy6lrseD3VEXAgwA92Xd3qtWgkMAAAAASUVORK5CYII=");
  background-size: cover;
  position: absolute;
  top: 6px;
  left: -66px;
}
.ks-history-box__item__pic {
  width: 240px;
  height: 160px;
  border: solid 2px #360000;
  border-radius: 6px;
  padding: 3px;
  margin-right: 38px;
  flex-shrink: 0;
}
.ks-history-box__item__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ks-history-box__item__content {
  position: relative;
  top: -15px;
}
.ks-history-box__item__content h3 {
  font-size: 30px;
  color: #004b8c;
  font-weight: 600;
  line-height: 55px;
}
.ks-history-box__item__content p {
  font-size: 30px;
  color: #004b8c;
  font-weight: 600;
  line-height: 55px;
}

@media (max-width: 769px) {
  .ks-history-box__title {
    width: 100%;
    height: 60px;
    font-size: 24px;
  }
  .ks-history-box__list {
    padding-left: 50px;
    padding-top: 40px;
  }
  .ks-history-box__list::before {
    left: 20px;
  }
  .ks-history-box__item {
    flex-direction: column;
    padding-bottom: 40px;
  }
  .ks-history-box__item:last-child {
    padding-bottom: 60px;
  }
  .ks-history-box__item::before {
    left: -38px;
  }
  .ks-history-box__item__pic {
    width: 100%;
    margin-right: 0;
    height: 180px;
    box-sizing: border-box;
    margin-bottom: 30px;
  }
  .ks-history-box__item__content h3 {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .ks-history-box__item__content p {
    font-size: 24px;
    line-height: 35px;
  }
}
/**************newlist****************/
.news-rows {
  margin: 45px auto 50px;
}

.news-cell {
  border-bottom: solid 1px #939393;
}
.news-cell a {
  padding: 22px 0;
  font-size: 18px;
  color: #00508f;
  display: flex;
  align-items: center;
}
.news-cell a label {
  margin-right: 100px;
  display: block;
  display: flex;
  align-items: center;
}
.news-cell a label.last {
  margin-right: 0;
}
.news-cell a label i {
  width: 5px;
  height: 2px;
  display: block;
  background: #00508f;
  margin-right: 10px;
  margin-left: 2px;
}
.news-cell a span i {
  width: 5px;
  height: 2px;
  display: block;
  background: #00508f;
  margin-right: 25px;
  margin-left: 2px;
}

a.news-large {
  align-items: flex-start;
}
a.news-large > img {
  width: 582px;
  height: 378px;
  flex-shrink: 0;
  border: solid 2px #00508f;
  margin-right: 60px;
}
a.news-large .new-right {
  padding-top: 20px;
}
a.news-large .new-right h3 {
  margin: 26px 0 45px;
  color: #083a79;
  font-size: 23px;
}
a.news-large .new-right p {
  font-size: 14px;
  line-height: 24px;
  color: #000;
}
a.news-large .news-date {
  width: 85px;
  height: 80px;
  background: #00508f;
  display: flex;
  flex-direction: column;
  padding-left: 17px;
  padding-top: 16px;
  box-sizing: border-box;
}
a.news-large .news-date span:first-child {
  font-size: 30px;
  color: #dfb32c;
  margin-bottom: 12px;
  font-weight: 600;
}
a.news-large .news-date span:last-child {
  font-size: 15px;
  color: #fff;
}

.product-rows {
  display: flex;
  flex-wrap: wrap;
}

.product-item {
  width: calc((100% - 189px) / 4);
  margin-bottom: 80px;
}
.product-item:not(:nth-child(4n)) {
  margin-right: 63px;
}
.product-item__pic {
  width: 100%;
  height: 310px;
  border: solid 1px #004b8c;
  overflow: hidden;
}
.product-item__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-item__content {
  padding-top: 15px;
}
.product-item__content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #004b8c;
}
.product-item__content .intro {
  margin: 20px 0 20px;
  font-size: 16px;
  color: #666;
}
.product-item__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 15px;
}
.product-item__foot a {
  font-size: 18px;
  color: #004b8c;
  text-decoration: underline;
}
.product-item__foot .f-action img {
  margin-right: 14px;
}
.product-item__foot .f-action span {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  margin-right: 28px;
}

/**************footer****************/
.footer-container {
  height: 348px;
  width: 100%;
  padding-top: 52px;
  box-sizing: border-box;
}

.ks-rows {
  align-items: flex-start;
}

.copyright {
  width: 100%;
  line-height: 60px;
  color: #00508f;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.ks-col-5 {
  width: 13%;
  box-sizing: border-box;
  padding: 0 10px;
}
.ks-col-5 h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
.ks-col-5 ul > li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.ks-col-5 ul > li a:hover {
  color: #fff;
}

.ks-col-2 {
  width: 35%;
  padding-left: 50px;
  box-sizing: border-box;
}
.ks-col-2 h2 {
  font-size: 24px;
  color: #fff;
  border-bottom: solid 1px #558eb8;
  padding-bottom: 12px;
}
.ks-col-2 .share-action {
  margin: 12px 0;
}
.ks-col-2 .con-cell {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}

@media (max-width: 769px) {
  .footer-container {
    height: auto;
  }
  .ks-rows {
    flex-wrap: wrap;
  }
  .ks-col-5 {
    width: 100%;
    border-bottom: solid 1px #558eb8;
  }
  .ks-col-5 h3 {
    margin: 0;
    font-size: 17px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    position: relative;
  }
  .ks-col-5 h3::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 20px;
    background-color: #fff;
    margin-right: 10px;
    vertical-align: middle;
  }
  .ks-col-5 h3::after {
    content: "";
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAAQJJREFUWEft1zEKwkAUBND5VoK3sBYbKzs7ezs7KxvxNHa5UzqPI3xZUAgWIdk/swmyW2fDY3bh7xhmvmzmPlRg9IRqgpMk6O5LAGsACzN7RhF9+7OO2N1PAI6fH7dm1qiQucALgH0HJUPmAjcA7j+pSZBZwARz9x2AqxqZDSyFDAFLIMNANZICVCJpQBWSClQg6UA2UgJkImXAHmRjZu3Q2T0F8DHmBSQDskahBMjCpWtABzJxdCAbRwUqcDSgCkcBKnFhoBoXApbAZQPdfQvgpu4jEWAqS6k0fZek0UWABwDnORf3FYDUjV9jXiZDXzDd7+ijLgfRt6cCo4nWBP8+wTd7xIspi7wicAAAAABJRU5ErkJggg==") no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    right: 0;
  }
  .ks-col-5.open h3::after {
    transform: rotate(90deg);
  }
  .ks-col-5 ul {
    display: none;
  }
  .ks-col-5 ul a {
    font-size: 15px;
  }
  .ks-col-2 {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-top: 30px;
  }
  .ks-col-2 h2 {
    font-size: 18px;
  }
  .copyright {
    line-height: 25px;
    padding: 20px 0;
  }
}
@media (min-width: 770px) and (max-width: 1024px) {
  .ks-rows {
    flex-wrap: wrap;
  }
  .ks-col-5 {
    width: 20%;
  }
  .ks-col-2 {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}
@media (max-width: 1366px) {
  .footer-container {
    height: auto;
    padding-top: 30px;
  }
}
@media (max-width: 769px) {
  .ks-container {
    width: 100% !important;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .ksbanner {
    height: 240px;
  }
  .news-title {
    width: 180px;
    height: 48px;
    margin: 0 auto 20px;
  }
  .news-title img {
    width: 28px;
    height: 28px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .news-title span {
    font-size: 20px;
  }
  .intro-wrapper {
    padding: 40px 0;
  }
  .intro-container {
    flex-direction: column;
  }
  .intro-items {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .intro-items .intro-item {
    margin-left: 0 !important;
    margin-bottom: 20px;
  }
  .intro-items .intro-item > img {
    width: 35px;
    height: 35px;
  }
  .intro-items .intro-item-box {
    width: 200px;
  }
  .intro-content {
    width: 100%;
  }
  .intro-content .intro-p {
    padding-right: 0;
    font-size: 16px;
    line-height: 1.8;
  }
  .intro-content .intro-more {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .intro-pic {
    width: 100%;
    height: 200px;
  }
  .news-rows,
  .service-rows {
    flex-wrap: wrap;
  }
  .section-bg {
    height: auto;
    padding: 30px 0;
  }
  .news-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .service-item {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
  .service-item img {
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 20px;
  }
  .service-item p {
    font-size: 20px;
  }
  .title-h3 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .news-wrapper {
    padding: 40px 0 20px;
  }
  .news-content {
    height: auto;
  }
  .news-content h3 {
    font-size: 20px;
  }
  .row-three a {
    width: 100%;
    height: 280px;
  }
  .row-three a:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .block-title {
    width: 100%;
    height: 50px;
    font-size: 20px;
  }
  .block-img_01 {
    height: 160px;
    justify-content: space-between;
  }
  .block-img_01 img {
    width: 49% !important;
  }
  .block-title_02 {
    flex-direction: row;
  }
  .block-title_02 > div.block-title {
    width: 49%;
    font-size: 18px;
    text-align: center;
    line-height: 1.3;
  }
  .block-img_02 {
    margin-bottom: 60px;
    justify-content: space-between;
  }
  .block-img_02 img {
    width: 49% !important;
    height: 160px;
  }
  .block-content_03 .center-pic {
    width: 120px;
    height: 120px;
  }
  .block-content_03 .li-cell {
    margin-bottom: 160px;
  }
  .block-content_03 .li-cell:last-child {
    margin-bottom: 60px;
  }
  .block-content_03 .li-cell-text {
    width: 49%;
  }
  .block-content_03 h4 {
    font-size: 20px;
  }
  .block-content_03 h4::before {
    width: 4px;
    height: 30px;
  }
  .block-content_03 p {
    font-size: 14px;
    line-height: 25px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .ksbanner {
    height: 380px;
  }
  .intro-wrapper {
    padding-top: 30px;
  }
  .intro-container {
    flex-wrap: wrap;
  }
  .intro-content {
    width: 100%;
  }
  .intro-pic {
    width: 100%;
    margin-top: 30px;
  }
  .news-box {
    width: calc((100% - 40px) / 3);
  }
  .news-img {
    height: 240px;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .intro-items {
    flex-wrap: wrap;
  }
  .intro-items .intro-item {
    margin-bottom: 20px;
  }
  .intro-content {
    width: calc(100% - 16px - 400px);
  }
  .intro-pic {
    width: 400px;
    flex-shrink: 0;
  }
}
@media (min-width: 769px) and (max-width: 1366px) {
  .ks-container {
    width: calc(100% - 40px);
  }
  .crumbs-wrap .crumbs-box > img {
    width: 25px;
    height: 25px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .crumbs-wrap .crumbs-box span,
  .crumbs-wrap .crumbs-box a {
    font-size: 18px;
  }
  .block-title {
    height: 62px;
    font-size: 22px;
  }
  .row-three a {
    height: 240px;
  }
}/*# sourceMappingURL=index.css.map */