/* DE页面横幅样式，参考SN页面 */
.de-banner {
  width: 100%;
  height: 470px;
  margin-top: 86px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.de-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.de-banner-title {
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-40%, -50%);
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.1;
  z-index: 2;
  white-space: nowrap;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  text-align: center;
}
@media (max-width: 1366px) {
  .de-banner-title {
    font-size: 42px;
  }
}
@media (max-width: 900px) {
  .de-banner {
    height: 320px;
    margin-top: 60px;
  }
  .de-banner-title {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .de-banner {
    height: 200px;
    margin-top: 40px;
  }
  .de-banner-title {
    font-size: 24px;
  }
}
.de-content {
  width: 100%;
  padding: 40px 0 20px 0;
}
.de-content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.de-content-title {
  font-size: 30px;
  font-weight: 400;
  color: #222;
  margin-bottom: 48px;
  letter-spacing: 1px;
  line-height: 1.2;
}
.de-content-text {
  font-size: 22px;
  font-weight: 250;
  color: #333;
  line-height: 1.8;
  text-align: left;
  max-width: 1400px;
  margin: 0 auto;
}

/* 卡片网格样式 */
.de-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 700px);
  gap: 40px;
  margin: 40px auto 0 auto;
  max-width: 1440px;
  justify-content: center;
}

.de-card-block {
  border-radius: 30px !important;
  width: 700px;
  height: 220px;
  background: #fff;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 32px 0 32px;
}

.de-card-title {
  font-size: 28px;
  font-weight: 450;
  color: #4d8fff;
  text-align: left;
  padding-left: 0;
  margin-bottom: 18px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.de-card-divider {
  width: 100%;
  height: 2px;
  background: #4d8fff;
  margin-bottom: 18px;
  border-radius: 2px;
}

.de-card-desc {
  font-size: 20px;
  font-weight: 250;
  color: #222;
  text-align: left;
  line-height: 1.8;
  flex: 1 1 auto;
  width: 100%;
  margin: 0;
  word-break: break-all;
}
@media screen and (max-width: 1366px) {
  .de-content-title {
    font-size: 24px;
  }
  .de-content-text {
    font-size: 22px;
  }
  
  .de-card-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 30px;
  }
  
  .de-card-block {
    border-radius: 30px !important;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .de-content {
    padding: 80px 0 20px 0;
  }
  .de-content-container {
    padding: 0 30px;
  }
  .de-content-title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .de-content-text {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .de-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .de-card-block {
    width: 100%;
    height: auto;
    padding: 20px 16px 16px 16px;
  }
  
  .de-card-title {
    font-size: 24px;
  }
  
  .de-card-desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 520px) {
  .de-content {
    padding: 60px 0 40px 0;
  }
  .de-content-container {
    padding: 0 20px;
  }
  .de-content-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .de-content-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* 新区块：参考SN 43-69行布局 */
.de-section {
  width: 100%;
  padding: 50px 0 0 0;
}
.de-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.de-section-title {
  font-size: 30px;
  font-weight: 400;
  color: #222;
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.2;
}
.de-section-items {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.de-section-item {
  display: flex;
  width: 520px;
  min-height: 260px;
  border-radius: 16px;
  overflow: hidden;
}
.de-section-img {
  width: 200px;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.de-section-img img {
  max-width: 180px;
  max-height: 180px;
  width: auto;
  height: auto;
  display: block;
  border-radius: 8px;
}
.de-section-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px 24px 24px;
  box-sizing: border-box;
}
.de-section-info-title {
  font-size: 20px;
  font-weight: 350;
  color: #222;
  margin-bottom: 18px;
  text-align: left;
}
.de-section-info-desc {
  font-size: 16px;
  font-weight: 250;
  color: #222;
  text-align: left;
  line-height: 1.7;
  max-width: 11em;
  word-break: break-all;
  white-space: normal;
}

/* Section卡片网格样式 */
.de-section-card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 700px);
  gap: 40px;
  margin: 40px auto 0 auto;
  max-width: 1440px;
  justify-content: center;
}

.de-section-card-block {
  width: 700px;
  height: 220px;
  background: #fff;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 32px 24px 32px;
}

.de-section-card-title {
  font-size: 28px;
  font-weight: 450;
  color: #4d8fff;
  text-align: left;
  padding-left: 0;
  margin-bottom: 18px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.de-section-card-divider {
  width: 100%;
  height: 2px;
  background: #4d8fff;
  margin-bottom: 18px;
  border-radius: 2px;
}

.de-section-card-desc {
  font-size: 20px;
  font-weight: 250;
  color: #222;
  text-align: left;
  line-height: 1.8;
  flex: 1 1 auto;
  width: 100%;
  margin: 0;
  word-break: break-all;
}
@media screen and (max-width: 1100px) {
  .de-section-items {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .de-section-item {
    width: 100%;
    min-width: 0;
  }
  
  .de-section-card-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 30px;
  }
  
  .de-section-card-block {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .de-section-container {
    padding: 0 20px;
  }
  .de-section-title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .de-section-info-title {
    font-size: 18px;
  }
  .de-section-info-desc {
    font-size: 15px;
  }
  
  .de-section-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .de-section-card-block {
    width: 100%;
    height: auto;
    padding: 20px 16px 16px 16px;
  }
  
  .de-section-card-title {
    font-size: 24px;
  }
  
  .de-section-card-desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 520px) {
  .de-section-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .de-section-info-title {
    font-size: 16px;
  }
  .de-section-info-desc {
    font-size: 14px;
  }
} 

/* 应用场景区块样式 参考sn.css */
.de-scene-block {
  width: 100%;
  margin: 80px auto 0 auto;
  max-width: 1440px;
}

.de-scene-title {
  font-size: 30px;
  font-weight: 400;
  color: #222;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.de-scene-grid {
  display: grid;
  grid-template-columns: repeat(2, 700px);
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 0;
}

.de-scene-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.de-scene-img {
  width: 700px;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.de-scene-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.de-scene-name-bg {
  width: 700px;
  height: 50px;
  background: #0455da;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  top: 0;
}

.de-scene-name {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 删除不再需要的描述样式 */
.de-scene-desc {
  display: none;
}
@media screen and (max-width: 1500px) {
  .de-scene-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 30px;
  }
  .de-scene-item,
  .de-scene-img,
  .de-scene-name-bg {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .de-scene-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .de-scene-img {
    height: 200px;
  }
  .de-scene-name-bg {
    height: 40px;
  }
  .de-scene-name {
    font-size: 18px;
  }
} 

.de-banner-swiper {
  width: 100%;
  height: 470px;
  position: relative;
}
.de-banner-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.de-banner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.de-banner-swiper .swiper-pagination,
.de-banner-swiper .swiper-button-prev,
.de-banner-swiper .swiper-button-next {
  position: absolute;
  z-index: 10;
}
.de-banner-swiper .swiper-pagination {
  left: 0;
  right: 0;
  bottom: 10px;
  margin: 0 auto;
  text-align: center;
}
.de-banner-swiper .swiper-button-prev,
.de-banner-swiper .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
}
.de-banner-swiper .swiper-button-prev { left: 30px; }
.de-banner-swiper .swiper-button-next { right: 30px; }

@media (max-width: 900px) {
  .de-banner-swiper { height: 320px; }
  .de-banner-swiper .swiper-pagination { bottom: 8px; }
}
@media (max-width: 600px) {
  .de-banner-swiper { height: 200px; }
  .de-banner-swiper .swiper-pagination { bottom: 4px; }
} 