/* 智慧农业加载动画 */
.smart-agriculture-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #059669 30%, #10b981 70%, #34d399 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease-out;
    overflow: hidden;
}

.smart-agriculture-loader::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, rgba(16, 185, 129, 0.1) 50%, transparent 70%);
    animation: backgroundPulse 4s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

/* 科技线条背景 */
.smart-agriculture-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(52, 211, 153, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(52, 211, 153, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* 动态光束效果 */
.loader-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: lightBeam 3s linear infinite;
    opacity: 0.6;
}

.loader-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #34d399, transparent);
    transform: translate(-50%, -50%) rotate(90deg);
    animation: lightBeam 3s linear infinite 1.5s;
    opacity: 0.6;
}

@keyframes lightBeam {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(0.5); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); opacity: 0; }
}

.smart-agriculture-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: containerFadeIn 0.8s ease-out;
}

@keyframes containerFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 公司Logo */
.loader-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    opacity: 0;
    animation: logoFadeIn 1s ease-out 0.5s forwards;
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
    }
}

/* 中心AI大脑 */
.ai-brain-center {
    position: relative;
    width: 80px;
    height: 80px;
    border: 3px solid #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: brainPulse 2s ease-in-out infinite;
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.brain-core {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00d4ff, #34d399);
    border-radius: 50%;
    position: relative;
    animation: coreGlow 1.5s ease-in-out infinite alternate;
}

.brain-core::before {
    content: '🧠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

@keyframes brainPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(52, 211, 153, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.7), 0 0 100px rgba(52, 211, 153, 0.4);
    }
}

@keyframes coreGlow {
    0% {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.6), 0 0 30px rgba(52, 211, 153, 0.3);
    }
    100% {
        box-shadow: 0 0 35px rgba(0, 212, 255, 0.9), 0 0 60px rgba(52, 211, 153, 0.5);
    }
}

html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  cursor: pointer;
}
/* 围绕大脑的农业元素 */
.agriculture-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ag-element {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(0, 212, 255, 0.4);
    animation: elementOrbit 8s linear infinite;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3), 0 2px 10px rgba(52, 211, 153, 0.2);
}

.ag-element:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5), 0 3px 15px rgba(52, 211, 153, 0.4);
}

.ag-element:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.ag-element:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: -2s;
}

.ag-element:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -4s;
}

.ag-element:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: -6s;
}

@keyframes elementOrbit {
    0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

/* 数据流动效果 */
.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #00d4ff, #34d399, transparent);
    animation: streamFlow 2s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(0, 212, 255, 0.6);
}

.data-stream:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.data-stream:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 0.5s;
}

.data-stream:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation-delay: 1s;
}

.data-stream:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes streamFlow {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* 加载进度条 */
.loading-progress {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #34d399, #10b981);
    border-radius: 2px;
    width: 0%;
    animation: progressFill 3s ease-out forwards;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* 加载文字 */
.loading-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    opacity: 0;
    animation: textFadeIn 1s ease-out 1s forwards;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes textFadeIn {
    to { opacity: 1; }
}

/* 粒子效果 */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00d4ff;
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.8);
}

.particle:nth-child(odd) {
    animation-direction: reverse;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .loader-container {
        width: 250px;
        height: 250px;
    }

    .loader-logo {
        font-size: 20px;
    }

    .ai-brain-center {
        width: 60px;
        height: 60px;
    }

    .brain-core {
        width: 30px;
        height: 30px;
    }

    .brain-core::before {
        font-size: 16px;
    }

    .ag-element {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    @keyframes elementOrbit {
        0% { transform: rotate(0deg) translateX(90px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(90px) rotate(-360deg); }
    }

    .loading-progress {
        width: 150px;
    }

    .loading-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .loader-container {
        width: 200px;
        height: 200px;
    }

    .loader-logo {
        font-size: 18px;
        top: 10px;
    }

    .ai-brain-center {
        width: 50px;
        height: 50px;
    }

    .brain-core {
        width: 25px;
        height: 25px;
    }

    .brain-core::before {
        font-size: 14px;
    }

    .ag-element {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    @keyframes elementOrbit {
        0% { transform: rotate(0deg) translateX(70px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
    }

    .loading-progress {
        width: 120px;
        bottom: 40px;
    }

    .loading-text {
        font-size: 12px;
        bottom: 15px;
    }
}

/* ::-webkit-scrollbar {
  display: none;
} */
.container {
  width: 60%;
  margin: 0 auto;
}
.container-full {
  width: 100%;
}
.bannner {
  height: 70vh;
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.research-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.research {
  padding: 40px 0;
}
.research-name {
  font-weight: 600;
  font-size: 24px;
  color: #333333;
}

.research-l {
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}

.research-line {
  width: 40px;
  height: 2px;
  background-color: #cbcaca;
}
.research-en {
  font-size: 12px;
  color: #0076d1;
  margin: 0 5px;
}
.research-container {
  justify-content: space-around;
}
.research-item-animate {
  width: 25%;
}
.research-item {
  padding: 20px 0;
  margin: 40px 10px 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(178, 178, 178, 0.3);
  /* transition: box-shadow 0.5s; */
  transition: all 0.5s;
}
.research-item:hover {
  transform: scale(1.1);
  box-shadow: 0px 10px 14px 0px rgba(178, 178, 178, 0.3);
}
.research-item img {
  width: 60px;
}
.research-item-name {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
  color: #333333;
}
.research-item-en {
  font-size: 12px;
  color: #333333;
}
.introduce {
  min-height: 280px;
  padding: 40px 0 50px;
  background: linear-gradient(135deg, #0f4c75 0%, #3282b8 50%, #0f4c75 100%);
  position: relative;
  overflow: hidden;
}

.introduce-name {
  color: #fff;
}

/* 背景装饰元素 */
.introduce-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: floatCircle 6s ease-in-out infinite;
}

.bg-circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bg-circle-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.bg-circle-3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 30%;
  animation-delay: 4s;
}

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: patternMove 20s linear infinite;
}

/* 内容包装器 */
.introduce-content-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 25px;
}

/* 卡片样式 */
.introduce-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.introduce-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.main-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.95));
  border-left: 4px solid #0076d1;
}

.introduce-cards-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.vision-card, .goal-card {
  flex: 1;
}

.vision-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 255, 240, 0.95));
  border-left: 4px solid #4CAF50;
}

.goal-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.95));
  border-left: 4px solid #FF9800;
}

/* 卡片图标 */
.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 大脑图标 */
.icon-brain {
  position: relative;
  width: 40px;
  height: 40px;
}

.brain-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #0076d1;
  border-radius: 50%;
  animation: brainPulse 2s ease-in-out infinite;
}

.brain-dot:nth-child(1) {
  top: 10px;
  left: 10px;
  animation-delay: 0s;
}

.brain-dot:nth-child(2) {
  top: 10px;
  right: 10px;
  animation-delay: 0.5s;
}

.brain-dot:nth-child(3) {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.brain-connection {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #0076d1, transparent);
  animation: connectionFlow 2s ease-in-out infinite;
}

/* 目标图标 */
.icon-target {
  position: relative;
  width: 40px;
  height: 40px;
}

.target-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 2px solid #4CAF50;
  border-radius: 50%;
  animation: targetPulse 2s ease-in-out infinite;
}

.target-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: centerGlow 2s ease-in-out infinite;
}

/* 火箭图标 */
.icon-rocket {
  position: relative;
  width: 40px;
  height: 40px;
}

.rocket-body {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 20px;
  background: #FF9800;
  border-radius: 6px 6px 0 0;
  animation: rocketFloat 3s ease-in-out infinite;
}

.rocket-flame {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 8px;
  background: linear-gradient(to bottom, #FF5722, #FFC107);
  border-radius: 0 0 3px 3px;
  animation: flameFlicker 0.5s ease-in-out infinite alternate;
}

.rocket-trail {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 15px;
  background: linear-gradient(to bottom, rgba(255, 152, 0, 0.6), transparent);
  animation: trailFade 2s ease-in-out infinite;
}

/* 卡片内容 */
.card-content {
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
  position: relative;
}

.card-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #0076d1, #4CAF50);
  border-radius: 1px;
}

.vision-card .card-title::after {
  background: linear-gradient(90deg, #4CAF50, #8BC34A);
}

.goal-card .card-title::after {
  background: linear-gradient(90deg, #FF9800, #FFC107);
}

.card-text {
  font-size: 14px;
  line-height: 22px;
  color: #555;
  margin: 0;
  font-weight: 400;
}

/* 卡片装饰 */
.card-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 118, 209, 0.1), transparent);
  border-radius: 50%;
  animation: decorationRotate 10s linear infinite;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.introduce-card:hover .card-glow {
  opacity: 1;
}

/* 动画关键帧 */
@keyframes floatCircle {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0.6;
  }
}

@keyframes patternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

@keyframes brainPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 118, 209, 0.5);
  }
}

@keyframes connectionFlow {
  0% {
    background-position: -20px 0;
  }
  100% {
    background-position: 20px 0;
  }
}

@keyframes targetPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

@keyframes centerGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(76, 175, 80, 0);
  }
  50% {
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.8);
  }
}

@keyframes rocketFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-3px);
  }
}

@keyframes flameFlicker {
  0% {
    transform: translateX(-50%) scaleY(1);
  }
  100% {
    transform: translateX(-50%) scaleY(0.8);
  }
}

@keyframes trailFade {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes decorationRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .introduce {
    padding: 30px 0 40px;
  }

  .introduce-cards-row {
    flex-direction: column;
    gap: 15px;
  }

  .introduce-card {
    padding: 15px;
  }

  .card-title {
    font-size: 16px;
  }

  .card-text {
    font-size: 13px;
    line-height: 20px;
  }

  .bg-circle-1 {
    width: 60px;
    height: 60px;
  }

  .bg-circle-2 {
    width: 40px;
    height: 40px;
  }

  .bg-circle-3 {
    width: 30px;
    height: 30px;
  }
}
.technology {
  padding-top: 40px;
  background-color: #fff;
  padding-bottom: 40px;
}
.technology-container {
  margin-top: 20px;
  justify-content: space-around;
  align-items: stretch;
}
.technology-item {
  width: 25%;
  margin: 0 10px;
  padding-bottom: 10px;
  background-color: #f8f8f8;
  min-height: 280px;
  height: 280px;
  position: relative;
  cursor: pointer;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.technology-name {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  padding: 15px 10px 8px;
  flex-shrink: 0;
}
.technology-item p {
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: 300;
  color: #666666;
  line-height: 18px;
  margin: 0;
  padding: 0 10px 8px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.technology-item img {
  width: 100%;
  height: 100%;
  /* transition: all 0.5s; */
}
.technology-item img:hover {
  /* transform: scale(1.2); */
}
.technology-img {
  height: 267px;
  overflow: hidden;
  position: absolute;
}
.technology-text {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 20px 0;
  transition: all 0.5s;
  min-height: 260px;
}
.technology-text-animate {
  height: 280px;
  overflow-y: auto;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.technology-text-animate::-webkit-scrollbar {
  display: none;
}
.technology-text-animate .technology-name {
  margin-top: 10px;
}
.technology-text-animate p {
  display: block;
}
.number {
  justify-content: space-around;
  margin-top: 40px;
  margin-bottom: 40px;
}
.number-item {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333333;
  background: -webkit-radial-gradient(
    circle closest-side,
    #fff 90%,
    rgba(210, 210, 210, 0.8) 10%
  );
}
.number-inner {
  font-size: 36px;
  font-family: Microsoft YaHei;
  font-weight: bold;
}

.number-enterprise {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  margin-bottom: 5px;
}
.team {
  margin-top: 80px;
  margin-bottom: 80px;
}
.team-header {
  justify-content: space-between;
}
.team-name div,
.service-team-name div {
  margin-left: 10px;
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  line-height: 26px;
}
.team-en,
.team-en1 {
  margin-top: 10px;
  font-size: 14px;
  font-family: Arial;
  font-weight: normal;
  color: #666666;
  line-height: 15px;
}
.team-title {
  border-bottom: 1px solid #c9c9c9;
  position: relative;
}
.team-title div {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  padding: 5px 20px;
  cursor: pointer;
}
.team-title div:hover {
  color: #0076d1;
}
.team-title .no-left-padding {
  padding-left: 0;
}
.team-title .no-right-padding {
  padding-right: 0;
}
.team-title .team-active {
  color: #0076d1;
}
.team-title .team-line {
  width: 52px;
  padding: 0;
  height: 5px;
  background: #0076d1;
  border-radius: 2px;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.expert {
  margin-top: 40px;
  padding: 80px 20px 100px;
  width: 25%;
  color: #fff;
  text-align: center;
  background-color: rgba(35, 41, 46, 0.8);
}
.expert-name {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  line-height: 26px;
}
.expert-white {
  color: #333333;
  background-color: rgba(255, 255, 255, 0.8);
}
.expert img {
  width: 100px;
  transition: all 0.5s;
}
.expert img:hover {
  transform: scale(1.2);
}
.expert p {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 12px;
}
.expert-white p {
  color: #7c7a7a;
}
.enterprise {
  margin-top: 40px;
  justify-content: space-between;
}
.enterprise-img {
  overflow: hidden;
  margin: 0;
  width: 100%;
  height: 100%;
}
.enterprise-img .experiment-name {
  margin: 0;
  width: 160px;
  height: 55px;
}
.enterprise-item {
  background-color: #fff;
  width: 49%;
}
.enterprise-item img {
  width: 100%;
  transition: all 0.5s;
}
.enterprise-item img:hover {
  transform: scale(1.2);
}
.enterprise-item div {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  /* color: #333333; */
  text-align: center;
  /* margin: 20px 0; */
}
.enterprise-item p {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
  padding: 0 20px;
}
.experiment {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.experiment-item-one {
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.wenzi:nth-child(1) {
  margin-top: 60px;
}
.wenzi {
  margin-bottom: 10px;
}
.wenzi p {
  text-align: left;
  padding: 0 35px;
  margin: 0;
  /* padding: 0; */
  font-size: 16px;
}
.wenzi .yingwen {
  padding: 0 35px;
  text-align: left;
  font-size: 10px;
}
.wenzi .eng {
  font-size: 16px;
}
.experiment-item-one img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.experiment-item-one img:hover {
  transform: scale(1.1);
}
.experiment-name {
  position: absolute;
  top: 0;
  left: 0;
  width: 189px;
  height: 99px;
  background-image: url("../images/shiyan.png");
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #0076d1;
}
.enterprise-item .experiment-name1 {
  margin: 20px 35px;
  text-align: left;
  font-size: 22px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #0076d1;
}
.experiment-item {
  width: 32%;
  height: 250px;
  margin-right: 2%;
}
.experiment-item img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.experiment-item img:hover {
  transform: scale(1.1);
}
.experiment-item:nth-child(3n + 3) {
  margin-right: 0;
}
.experiment-item:nth-child(-n + 3) {
  margin-bottom: 20px;
}
.content {
  margin-top: 40px;
  flex-wrap: wrap;
}
.content-item .content-img {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.content-item {
  width: calc(50% - 10px);
  background-color: #fff;
}
.content-item:nth-child(odd) {
  margin-right: 20px;
}
.content-item img {
  width: 100%;
  transition: all 0.5s;
}
.content-item img:hover {
  transform: scale(1.2);
}
.content-item div {
  margin: 20px 20px 10px 40px;
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
}
.content-item p {
  margin: 0 20px 30px 40px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
}
.content-item:nth-child(-n + 2) {
  margin-bottom: 20px;
}
.service {
  margin-top: -220px;
}
.service-header {
  width: 110px;
  height: 450px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 100px;
  cursor: pointer;
  background-image: url("../images/common.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.service-header1 {
  background-image: url("../images/common1.png");
}
.service-header2 {
  background-image: url("../images/common2.png");
}
.service-icon {
  width: 30px;
  height: 10px;
  background: #0076d1;
}
.service-en {
  margin-top: 15px;
}
.service-name {
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #ffffff;
  writing-mode: vertical-lr;
  margin: 10px 0 20px;
}
.service-header p {
  writing-mode: vertical-lr;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #ffffff;
}
.active-flex {
  flex: 1;
}
.service-container {
  flex: 1;
  /* display: none; */
  background-color: #fff;
}
.service-container-header {
  margin-top: 40px;
  margin-left: 25px;
}
.ruanjiangu {
  margin: 80px 0 20px;
}
.ruanjiangu img {
  width: 100%;
}
.dongnandaxue img {
  width: calc(50% - 10px);
}
.dongnandaxue img:first-child {
  margin-right: 20px;
}
.other-logo {
  padding: 40px 10px 20px;
  flex-wrap: wrap;
}
.other-logo img {
  width: calc(25% - 7.5px);
  margin-right: 10px;
}
.other-logo img:nth-child(4n + 4) {
  margin-right: 0;
}
.service-item {
  overflow: hidden;
  background-color: #fff;
  transition: flex 0.5s;
}
.service-item .display {
  display: none;
}
.news-item {
  /* margin-top: 10px; */
  margin-left: 25px;
}
.news-item:nth-child(2) {
  /* margin-top: 20px; */
}
.news-img {
  width: 20%;
  /* height: 90px; */
}
.news-img img {
  width: 100%;
  height: 100%;
}
.news-text {
  flex: 1;
  margin-left: 20px;
  margin-right: 25px;
}
.news-text div {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
.news-text div a {
  color: #333333;
}
.news-text div:hover a {
  color: #0076d1;
}
.news-text div p {
  margin: 0;
  font-size: 12px;
}
.news-item-th {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 370px;
  padding-top: 40px;
}
.news-text p {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.zulogo {
  flex-wrap: wrap;
}
.zulogo img {
  width: 20%;
}
.zhongjiang {
  margin: 20px auto 40px;
}
.swiper-container1 {
  overflow: hidden;
}

.mt-number-animate {
  font-family: "微软雅黑";
  line-height: 40px;
  height: 40px;
  font-size: 36px;
  overflow: hidden;
  display: inline-block;
  position: relative;
}
.mt-number-animate .mt-number-animate-dot {
  width: 15px; /*设置分割符宽度*/
  line-height: 40px;
  /* float: left; */
  /* text-align: center; */
}
.mt-number-animate .mt-number-animate-dom {
  width: 22px; /*设置单个数字宽度*/
  text-align: center;
  float: left;
  position: relative;
  top: 0;
}
.mt-number-animate .mt-number-animate-dom .mt-number-animate-span {
  width: 100%;
  float: left;
}
