@charset "UTF-8";
:root {
  --theme-jb: linear-gradient(225deg, #F76680 0%, #57007B 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: 'PingFang SC', 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background-color: white;
}

img {
  display: inline-block;
  vertical-align: middle;
}

.kz-logo {
  height: 54px;
}

.kz-color-gray {
  color: #718096;
}

.kz-color-theme {
  color: transparent;
  background-image: var(--theme-jb);
  text-overflow: clip;
  -webkit-background-clip: text;
}

.zk-min-hei {
  min-height: 64px;
  margin-bottom: 20px;
}

.kz-wid {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.kz-wid-14 {
  width: 1320px;
  margin: 0 auto;
}

.kz-head {
  background: white;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
  padding: 10px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.kz-head .kz-wid-14 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kz-head .menus {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 16px;
}

.kz-head-right {
  display: flex;
  align-items: center;
  gap: 80px;
}

.kz-head-right .contact {
  background-image: var(--theme-jb);
  width: 180px;
  height: 52px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.kz-home-banner {
  height: 760px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.kz-home-banner .bg {
  height: 100%;
  width: 100%;
}

.kz-home-banner .kz-wid-14 {
  position: relative;
  height: 100%;
}

.kz-left {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  left: 0;
}

.kz-left h3 {
  font-size: 32px;
}

.kz-left h2 {
  font-size: 53px;
  font-weight: bold;
}

.kz-left p {
  color: #4A5568;
  font-size: 16px;
  margin-top: 40px;
}

.kz-left .span1 {
  background: linear-gradient(225deg, #F76680 0%, #57007B 100%);
  color: transparent;
  text-overflow: clip;
  -webkit-background-clip: text;
}

.kz-left div {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.kz-left a {
  width: 170px;
  height: 50px;
  gap: 0px;
  border-radius: 9px;
  border: 1px solid #E7DAED;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A5568;
  font-size: 20px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}

.kz-theme {
  position: absolute;
  bottom: 5%;
  right: 0;
}

.kz-title {
  text-align: center;
  position: relative;
  padding: 30px 0 0;
  margin: 80px auto 40px;
}

.kz-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 5px;
  width: 70px;
  background: var(--theme-jb);
}

.kz-title h4 {
  font-size: 35px;
  color: #1A202C;
}

.kz-title h3 {
  color: #1A202C;
  font-size: 35px;
  font-weight: bold;
}

.kz-title a {
  width: 200px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: 0px 4px 49px 0px rgba(0, 0, 0, 0.15);
  margin: 40px auto;
}

.kz-one-sec {
  font-size: 18px;
  color: #718096;
}

.kz-one-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 80px;
  padding-bottom: 80px;
}

.kz-one-row {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kz-one-row .left {
  padding: 0 6%;
  flex: 1;
}

.kz-one-row .left h3 {
  font-size: 28px;
  font-weight: bold;
}

.kz-one-row .left h4 {
  margin-top: 30px;
  font-size: 18px;
  color: #2d3748;
}

.kz-one-row .left p {
  position: relative;
  padding-left: 16px;
  margin-top: 10px;
  color: transparent;
  background-image: var(--theme-jb);
  text-overflow: clip;
  -webkit-background-clip: text;
  font-size: 14px;
}

.kz-one-row .left p:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--theme-jb);
}

.kz-one-row .right {
  flex: 1;
  text-align: right;
}

.kz-one-row:nth-child(even) .left {
  order: 2;
}

.kz-one-row:nth-child(even) .right {
  text-align: left;
}

.kz-two-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  row-gap: 20px;
  margin-top: 80px;
  padding-bottom: 80px;
}

.kz-two-row {
  border: 1px solid #E7DAED;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  padding: 30px;
}

.kz-two-row .left {
  flex: none;
}

.kz-two-row .right {
  flex: 1;
}

.kz-two-row .right h3 {
  color: #1A202C;
  font-size: 20px;
}

.kz-two-row .right p {
  color: #718096;
  font-size: 14px;
  margin-top: 10px;
}

.kz-three-img {
  display: flex;
  align-items: center;
}

.kz-three-main {
  display: flex;
  align-items: center;
  padding: 50px 0 80px;
  gap: 10%;
}

.kz-three-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kz-three-row {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #E7DAED;
  background: white;
  padding: 0 30px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
  gap: 30px;
}

.kz-three-row .left {
  padding-left: 20px;
  position: relative;
}

.kz-three-row .left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-image: var(--theme-jb);
}

.kz-three-row .left h3 {
  font-size: 20px;
  color: #1A202C;
}

.kz-three-row .left p {
  color: #718096;
  font-size: 14px;
}

.kz-five {
  display: flex;
  align-items: center;
  padding: 60px 5%;
}

.kz-five .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.kz-five .left .kz-title {
  margin: 60px 0;
}

.kz-five .left .kz-title::before {
  left: 0;
  transform: translateX(0);
}

.kz-five .left .kz-one-sec {
  color: #718096;
  font-size: 18px;
  line-height: 36px;
  text-align: justify;
}

.kz-five .left .kz-h5-small {
  margin: 40px 0;
  background: var(--theme-jb);
  color: transparent;
  text-overflow: clip;
  -webkit-background-clip: text;
  font-size: 18px;
}

.kz-five .left .kz-h5-link {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.kz-five .left .kz-h5-link a {
  width: 200px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kz-five .right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.kz-six .right {
  justify-content: flex-start;
}

.kz-seven {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 0 120px;
}

.kz-seven .row {
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.kz-seven .row::before {
  content: '';
  position: absolute;
  top: 35px;
  height: 1px;
  background: #68DBF2;
  width: 50%;
  right: -50%;
  transform: translateX(-50%);
}

.kz-seven .row:last-child::before {
  display: none;
}

.kz-seven .row .number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  background: #68DBF2;
}

.kz-seven .row .name {
  font-size: 20px;
}

.kz-seven p {
  font-size: 12px;
  color: #718096;
  margin-top: 10px;
}

.kz-eigth {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 100px;
}

.kz-eigth dl {
  display: flex;
  flex-direction: column;
  border: 1px solid #E7DAED;
  background: #FAFAFA;
  overflow: hidden;
  border-radius: 10px;
}

.kz-eigth dd {
  background: linear-gradient(180deg, #F1F1F5 0%, #E4ECF7 100%);
  height: 76px;
  font-size: 24px;
  display: flex;
  align-items: center;
  padding: 0 2%;
  font-weight: bold;
  gap: 10px;
}

.kz-eigth dd .slot {
  background: var(--theme-jb);
  color: transparent;
  text-overflow: clip;
  -webkit-background-clip: text;
}

.kz-eigth dt {
  padding: 30px;
  color: #4A5568;
  line-height: 26px;
}

.kz-nice {
  color: #fff;
  text-align: center;
  padding: 80px 0;
  font-size: 35px;
}

.kz-nice h3 {
  font-weight: normal;
}

.kz-nice p {
  margin-top: 10px;
  font-weight: bold;
}

.kz-nice p span {
  color: #F76680;
}

.kz-ten {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 50px 0;
}

.kz-ten li img {
  width: 100%;
}

.kz-eleven {
  background: linear-gradient(225deg, #F1F1F5 0%, #E4ECF7 100%);
  height: 230px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.kz-eleven .left {
  color: #27272E;
  font-size: 28px;
  width: 60%;
  font-weight: bold;
}

.kz-eleven .right {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 80%;
}

.kz-eleven .right a {
  width: 200px;
  height: 52px;
  color: white;
  background: linear-gradient(180deg, #FFC656 0%, #F16063 100%);
  border-radius: 10px;
  border: 1px solid white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kz-news-list {
  width: 100%;
}

.kz-news-ul {
  width: 100%;
}

.kz-news-ul ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.kz-news-ul ul li {
  border-radius: 10px;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
}

.kz-news-ul ul li:hover {
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}

.kz-news-ul ul li img {
  width: 100%;
  border-radius: 10px;
}

.kz-news-ul ul li .time {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  color: #718096;
}

.kz-news-ul ul li .info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kz-news-ul ul li .info span {
  white-space: pre-wrap;
  word-break: break-all;
}

.kz-news-ul ul li .type {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kz-news-ul ul li .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kz-news-ul ul li .info-item a {
  background: #fafafa;
  color: #57007B;
  border-radius: 3px;
  padding: 3px 5px;
  font-size: 12px;
  border: 1px solid transparent;
}

.kz-news-ul ul li .info-item a:hover {
  border: 0.5px solid #E7DAED;
}

.kz-news-ul ul li h3 {
  font-size: 14px;
  font-weight: bold;
}

.kz-news-ul ul li .sec {
  margin-top: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 设置显示行数 */
  overflow: hidden;
  text-overflow: ellipsis;
}

.kz-news-ul .more {
  width: 100px;
  margin: 60px auto 0;
  padding-bottom: 150px;
  background: var(--theme-jb);
  color: transparent;
  text-overflow: clip;
  -webkit-background-clip: text;
  text-align: center;
  cursor: pointer;
}

.kz-news-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}

.kz-news-banner .kz-wid-14 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10% 0;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 30vh;
}

.kz-news-banner .kz-wid-14 h4 {
  font-size: 30px;
}

.kz-news-banner .kz-wid-14 h3 {
  color: transparent;
  background-image: var(--theme-jb);
  text-overflow: clip;
  -webkit-background-clip: text;
  font-size: 48px;
}

.kz-detail {
  display: flex;
  gap: 20px;
  margin-top: 30px !important;
}

.kz-detail .left {
  flex: 1;
}

.kz-detail .right {
  width: 300px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kz-detail-title {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 16px;
  font-size: 18px;
}

.kz-detail-title::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #2a2b2c;
}

.kz-detail-title h3 {
  font-weight: bold;
  font-size: 16px;
}

.kz-detail-row {
  background: #fafafa;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kz-zui {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kz-zui h3 {
  font-weight: bold;
  margin-top: 10px;
}

.kz-zui-main {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* 设置为3行 */
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  /* 设置行高 */
  max-height: 4.5em;
  margin-top: 6px;
}

.kz-zui .type {
  margin-top: 4px;
}

.kz-menu-show {
  width: 32px;
  height: 24px;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.kz-menu-show::before, .kz-menu-show::after,
.kz-menu-show span {
  content: '';
  height: 2px;
  background: #1A202C;
  width: 100%;
  display: block;
}

.kz-menu-show::before {
  top: 5px;
}

.kz-menu-show::after {
  bottom: 5px;
}

.kz-newfooter-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding-bottom: 80px;
}

.kz-newfooter-list li {
  display: flex;
  text-align: center;
  justify-content: center;
}

.kz-newfooter {
  margin-top: 50px;
}

.kz-newfooter .h1 {
  color: white;
  font-size: 36px;
  text-align: center;
  padding: 60px 0 30px;
  font-weight: bold;
}

.kz-news-logo {
  display: flex;
  align-items: flex-start;
  gap: 5%;
  padding: 40px 0 0;
}

.kz-news-logo .logo {
  width: 24%;
  flex: none;
}

.kz-news-logo .kz-contact {
  display: flex;
  align-items: center;
  flex: 1;
  align-items: flex-start;
  justify-content: space-between;
}

.kz-news-logo .kz-contact .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.kz-news-logo .kz-contact .row h3 {
  font-size: 16px;
  color: #2D3748;
  font-weight: bold;
}

.kz-news-logo .kz-contact .row p {
  color: #4A5568;
  font-size: 12px;
}

.kz-news-logo .kz-contact .row a {
  height: 34px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: white;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
  color: #1A202C;
  gap: 6px;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .kz-wid-14 {
    width: 100%;
    padding: 0 5%;
  }
  .kz-home-banner {
    height: auto;
  }
  .kz-home-banner .kz-wid-14 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20% 0;
  }
  .kz-home-banner .kz-wid-14 .kz-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 5%;
    top: auto;
    transform: none;
    left: auto;
  }
  .kz-home-banner .kz-wid-14 .kz-left h3 {
    font-size: 26px;
  }
  .kz-home-banner .kz-wid-14 .kz-left h2 {
    font-size: 42px;
    text-align: center;
    line-height: 1.25;
  }
  .kz-home-banner .kz-wid-14 .kz-left p,
  .kz-home-banner .kz-wid-14 .kz-left div {
    margin-top: 0;
  }
  .kz-home-banner .kz-wid-14 .kz-theme {
    position: relative;
    bottom: 0;
  }
  .kz-title {
    margin: 50x auto 30px;
    padding: 20px 0 0;
  }
  .kz-title h3 {
    font-size: 28px;
    line-height: 1.25;
  }
  .kz-title h4 {
    font-size: 22px;
  }
  .kz-one-list {
    gap: 20px;
    margin-top: 30px;
  }
  .kz-one-row {
    flex-direction: column;
    padding: 20px;
  }
  .kz-one-row .left {
    padding: 1rem 20px 2rem;
  }
  .kz-one-row .right {
    order: 2;
  }
  .kz-one-sec {
    font-size: 16px;
  }
  .kz-two-list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }
  .kz-two-list .kz-two-row {
    gap: 20px;
    flex-direction: column;
  }
  .kz-two-list .kz-two-row .left {
    flex: none;
    text-align: center;
  }
  .kz-news-ul {
    padding: 0 5%;
  }
  .kz-news-ul ul {
    display: flex;
    flex-direction: column;
  }
  .kz-three-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0 40px;
  }
  .kz-three-main .kz-three-img {
    order: 2;
  }
  .kz-three-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
    padding: 30px;
  }
  .kz-three-row .left {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .kz-three-row .left::before {
    display: none;
  }
  .kz-five {
    display: flex;
    flex-direction: column;
  }
  .kz-five .left .kz-title {
    margin: 60px 0 30px;
  }
  .kz-five .left .kz-one-sec {
    font-size: 16px;
    line-height: 1.75;
  }
  .kz-five .right {
    order: 2;
  }
  .kz-five .kz-h5-link {
    display: flex;
    gap: 10px;
  }
  .kz-five .kz-h5-link a {
    width: 100% !important;
  }
  .kz-five .kz-h5-link img {
    width: 100%;
  }
  .kz-seven {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 0 50px 0;
  }
  .kz-seven .row {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    padding-bottom: 30px;
  }
  .kz-seven .row::before {
    left: 18px;
    top: 36px;
    width: 1px;
    bottom: 0;
    height: auto;
  }
  .kz-seven .row .number {
    flex: none;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .kz-seven .row .main {
    flex: 1;
    text-align: left;
  }
  .kz-eigth dd {
    font-size: 18px;
    height: auto;
    padding: 10px;
  }
  .kz-nice {
    padding: 50px 5%;
  }
  .kz-nice h3 {
    font-size: 18px;
  }
  .kz-nice p {
    font-size: 30px;
    line-height: 1.5;
  }
  .kz-ten {
    grid-template-columns: repeat(1, 1fr);
  }
  .kz-eleven {
    flex-direction: column;
    height: auto;
    padding: 50px 5%;
  }
  .kz-eleven .left {
    width: 90%;
    font-size: 24px;
    text-align: center;
  }
  .kz-eleven .right {
    padding: 70px 0;
  }
  .kz-head-right {
    position: fixed;
    top: 77px;
    background: white;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  }
  .kz-head-right ul {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
  }
  .kz-head-right ul li {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .kz-menu-show {
    display: flex;
  }
  .kz-menu-show.active {
    justify-content: center;
    transition: transform 0.3s;
  }
  .kz-menu-show.active span {
    display: none;
  }
  .kz-menu-show.active::before, .kz-menu-show.active::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.3s;
    transform-origin: center center;
  }
  .kz-menu-show.active::after {
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center center;
  }
  .kz-detail {
    flex-direction: column;
  }
  .kz-flex-page {
    flex-direction: column;
    gap: 10px;
  }
  .kz-flex-page a {
    background: white;
    border: 1px solid #dcdcdc;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    line-height: 44px;
  }
  .kz-flex-page a .transition-all {
    display: none;
  }
  .kz-newfooter {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .kz-newfooter .kz-wid {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .kz-newfooter .h1 {
    font-size: 28px;
    padding: 0;
  }
  .kz-newfooter-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .kz-news-logo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 5% 0;
  }
  .kz-news-logo .logo {
    width: 100%;
    text-align: center;
  }
  .kz-contact {
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px;
  }
}
