/* 产品列表 */
.header {
  background: #fff;
}

/* 公共模块 */
.section {
  padding: 40px 0;
  position: relative;
}

.section-light {
  background: linear-gradient(180deg, #e4eefb 0%, #f5f9fe 100%);
  position: relative;
}

.section-light::after {
  position: absolute;
  right: 0;
  top: 150px;
  width: 290px;
  height: 420px;
  opacity: 0.55;
  background-image: radial-gradient(circle, rgba(75, 147, 233, 0.2) 2px, transparent 3px);
  background-size: 18px 18px;
  content: "";
}

.section-light::before {
  position: absolute;
  left: 0;
  top: -80px;
  width: 290px;
  height: 420px;
  opacity: 0.55;
  background-image: radial-gradient(circle, rgba(75, 147, 233, 0.2) 2px, transparent 3px);
  background-size: 18px 18px;
  content: "";
}

.section-lights {
  background: linear-gradient(180deg, #e4eefb 0%, #f5f9fe 100%);
}

.section-title {
  margin-bottom: 36px;
}

.section-title .num {
  font-size: 54px;
  line-height: 1;
  font-weight: 700;
  color: rgba(16, 88, 213, 0.06);
  letter-spacing: 1px;
}

.section-title h2 {
  margin-top: -18px;
  font-size: 32px;
  color: var(--blue);
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-weight: 500;
}

.section-title h2 span {
  font-size: 22px;
  color: rgba(16, 88, 213, 0.06);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.section-desc {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 10px;
}

.card {
  background: #fff;
  border:1px solid #d9e8ff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* 公司简介 */
.profile-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 15px;
  align-items: start;
  background: #f5f9fe;
  border-radius: var(--radius);
  border: 0;
  padding: 15px;
}

.profile-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}

.profile-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.profile-content {
  padding:0 10px;
}

.profile-content p {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 20px;
}

.profile-content p font {
  color: var(--blue);
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  padding: 30px 24px;
  text-align: center;
  border: 1px solid #d9e8ff;
  background: linear-gradient(135deg, #fff 0%, #f5f9fe 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(16, 88, 213, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item .icon {
  color: var(--blue);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.stat-item h3 {
  color: var(--blue);
  font-weight: 500;
  font-size: 20px;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(16, 88, 213, 0.15);
}

.stat-number {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue) 0%, #0d66e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-number .unit {
  font-size: 22px;
  font-weight: 700;
}

.stat-label {
  font-size: 14px;
  color: #6c7b8d;
  font-weight: 500;
}

/* 企业文化 */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.culture-item {
  padding: 20px;
  text-align: center;
  background: transparent;
  transition: all 0.3s ease;
  border-left: 1px solid #d9e8ff;
}

.culture-item:first-child {
  border-left: none;
}


.culture-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 1px solid #d9e8ff;
  background: #fff;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(20, 75, 150, 0.08);
}


.culture-item h3 {
  font-size: 24px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 12px;
}

.culture-item p {
  font-size: 15px;
  color: #718095;
  text-align: left;
}

/* 企业实力 */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.strength-item {
  overflow: hidden;
  padding: 22px;
}
.strength-item:hover{
     box-shadow: 0 10px 22px rgba(20, 75, 150, 0.2);
}

.strength-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.strength-top .mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #edf4ff;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.strength-top h3 {
  font-size: 20px;
  color: #1f4faa;
}

.strength-item p {
  font-size: 14px;
  color: #708095;
  min-height: 70px;
  margin-bottom: 16px;
}

.strength-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

/* 资质荣誉 */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.honor-item {
  padding: 0;
  text-align: center;
}

.honor-item .thumb {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}

.honor-item .thumb img {
  max-height: 100%;
  object-fit: contain;
}

.honor-item p {
  font-size: 14px;
  color: #617187;
}

.section-btn {
  margin-top: 32px;
  text-align: center;
}

/* 联系我们 */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  padding: 0;
  background: #fff;
  position: relative;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(to right, #f0f6ff 0%, #f5f9fe 40%, #fcfcfd 70%, #fff 100%);
}
.contact-infos{
    padding: 20px 30px;
}
.contact-box>* {
  position: relative;
  z-index: 1;
}

.contact-infos h3 {
  font-size: 30px;
  color: #102856;
  margin-bottom: 24px;
  font-weight: 500;
}

.contact-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #5d6c81;
  font-size: 16px;
}

.contact-list .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(18, 78, 150, 0.08);
}

.contact-actions {
  margin-top: 58px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-actions .btn-primary,
.contact-actions .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-actions .btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #0d66e8 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(16, 88, 213, 0.3);
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(16, 88, 213, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(16, 88, 213, 0.5), 0 0 0 6px rgba(16, 88, 213, 0.1);
  }
}

.contact-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 88, 213, 0.4);
  animation: none;
}

.contact-actions .btn-primary i {
  font-size: 16px;
}

.contact-actions .btn-outline {
  background: #fff;
  color: var(--blue);
  border: 1px solid rgba(16, 88, 213, 0.3);
}

.contact-actions .btn-outline:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.contact-actions .btn-outline i {
  font-size: 15px;
}

.map-box {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f7ff;
  border: 1px solid #eaf0fb;
  position: relative;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 在线留言背景样式 */
.message-section {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.message-section>.container {
  position: relative;
  z-index: 1;
}

/* ==========================================
   在线留言表单样式
   ========================================== */
/*表单*/
.jks {
  width: 100%;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
  padding: 20px 20px 20px 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #d9e8ff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.jks .cont {
  grid-column: 2;
}

.jks .jks_a {
  grid-column: 1;
}

.jks_a font {
  width: 100%;
  font-size: 16px;
  color: #666;
  line-height: 40px;
}

.cont {
  width: 100%;
  padding-top: 20px;
}

.jks_a span {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  font-size: 24px;
  line-height: 50px;
  text-align: left;
  color: #333;
}

.jks_a span p {
  font-size: 14px;
}

.jks_a span b {
  width: 100%;
  float: left;
  font-size: 40px;
  color: #102856;
  font-weight: 500;
  margin-top: 40px;
}

.inp {
  width: 45%;
  margin-right: 5%;
  height: 50px;
  float: left;
  background-color: #fff;
  font-size: 16px;
  color: #888888 !important;
  padding: 0 25px;
  border: solid 1px #d9e8ff;
  font-size: 15px;
  color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(16, 88, 213, 0.18);
}

.cont .form-list textarea {
  width: 95%;
  height: 85px;
  background-color: #ffffff;
  font-size: 16px;
  color: #888888 !important;
  padding: 12px 25px;
  margin-top: 20px;
  border: solid 1px #d9e8ff;
  font-size: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(16, 88, 213, 0.18);
}

.cont .form-list .sub {
  width: 200px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue) 0%, #0d66e8 100%);
  color: #fff;
  margin-top: 20px;
  font-size: 16px;
  cursor: pointer;
  border: 0;
  border-radius: 50px;
  font-size: 15px;
  color: #f9f9f9;
}

/* ==========================================
   移动端响应式样式
   ========================================== */
@media (max-width: 1024px) {
  .profile-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .profile-image img {
    height: 250px;
  }

  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .honor-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-box {
    min-height: 280px;
  }

  .jks {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .jks .cont,
  .jks .jks_a {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .section-title h2 span {
    font-size: 16px;
    display: inline;
    margin-top: 0;
  }

  .section-title .num {
    width: 36px;
    height: 36px;
    font-size: 30px;
  }

  /* 公司简介 */
  .profile-wrap {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .profile-content p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
  }

  .profile-content p font {
    color: var(--blue);
  }

  .profile-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
  }

  .stat-item {
    padding: 20px 15px;
    text-align: center;
  }

  .stat-item .icon {
    width: 45px;
    height: 45px;
    font-size: 28px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-item h3 {
    font-size: 22px;
  }

  .stat-item p {
    font-size: 13px;
  }

  /* 企业文化 */
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .culture-item {
    padding: 25px 15px;
    border-left: none;
    border: 0;
    background: #fff;
    border-radius: 12px;
  }

  .culture-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
    margin-bottom: 12px;
  }

  .culture-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .culture-item p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* section-light 移动端去掉装饰 */
  .section-light::before,
  .section-light::after {
    display: none;
  }

  /* 企业实力 */
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .strength-item {
    padding: 0;
  }

  .strength-item img {
    height: 120px;
  }
  /* 资质荣誉 */
  .honor-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .honor-item .thumb {
    height: 200px;
  }

  .honor-item .thumb img {
    border-radius: 8px;
    height: 200px;
  }

  /* 联系我们 */
  .contact-box {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .contact-info h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .contact-list li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .contact-list .dot {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .contact-actions {
    flex-wrap: wrap;
  }

  .contact-actions .btn-primary,
  .contact-actions .btn-outline {
    padding: 10px 18px;
    font-size: 14px;
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }

  .map-box {
    min-height: 220px;
  }

  /* 在线留言 */
  .message-section {
    padding: 50px 0;
  }

  .jks {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 25px;
  }

  .jks .cont,
  .jks .jks_a {
    grid-column: auto;
  }

  .jks_a span {
    font-size: 18px;
    line-height: 35px;
  }

  .jks_a span b {
    font-size: 28px;
  }

  .jks_a font {
    font-size: 14px;
    line-height: 28px;
  }

  .inp {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
    height: 45px;
  }

  .cont .form-list textarea {
    width: 100%;
    height: 100px;
  }

  .cont .form-list .sub {
    width: 100%;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .profile-stats {
    grid-template-columns: 1fr 1fr;
  }

  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .honor-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-actions .btn-primary,
  .contact-actions .btn-outline {
    width: 100%;
    flex: none;
  }
}