

/* ===== 容器（1920适配版）===== */
.uee-banner-wrap {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 100px 40px;
  width: 100%;

  min-height: 780px;
  box-sizing: border-box;

  /* ✔ 纯白背景 */
  background: #ffffff;

  font-family: Montserrat, 'Montserrat-Regular', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ✔ 居中最大宽度控制 */
.uee-banner-inner {
  width: 100%;
  max-width: 1600px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

/* ===== 卡片 ===== */
.uee-card {
  width: 420px;
  height: 620px;
  border-radius: 32px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  background: #fff;
  cursor: pointer;

  transition: all .45s cubic-bezier(.2,.8,.2,1);

  box-shadow: 0 25px 60px rgba(0,0,0,.12);

  position: relative;
  flex-shrink: 0;
}

/* ===== 图片 ===== */
.uee-media {
  height: 60%;
  overflow: hidden;
}

.uee-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== 内容（永远2D）===== */
.uee-content {
  height: 40%;
  padding: 22px 28px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  border-top: 1px solid #eee;

  background: #fff;

  transform: none !important;
  backface-visibility: hidden;
}

/* 标题 */
.uee-content h2 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 800;
  color: #000;
  line-height: 1.25;
}

/* 文案 */
.uee-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #111;
  font-weight: 500;
  max-width: 92%;
}

/* ===== 左右卡片 ===== */
.uee-card.left {
  transform: scale(0.88) translateX(-20px);
  opacity: 0.65;
  box-shadow: 0 20px 45px rgba(0,0,0,.10);
}

.uee-card.right {
  transform: scale(0.88) translateX(20px);
  opacity: 0.65;
  box-shadow: 0 20px 45px rgba(0,0,0,.10);
}

/* ===== 中间卡片 ===== */
.uee-card.center {
  transform: scale(1.08) translateY(-10px);
  opacity: 1;
  z-index: 5;
  box-shadow: 0 45px 90px rgba(0,0,0,.18);
}

/* hover */
.uee-card:not(.center):hover {
  transform: scale(0.92) translateY(-6px);
  opacity: 0.85;
}

/* ===== 手机 ===== */
@media (max-width:768px){
  .uee-banner-wrap{
    padding: 20px;
    min-height: auto;
  }

  .uee-banner-inner{
    flex-direction: column;
    gap: 30px;
  }

  .uee-card{
    width: 95%;
    max-width: 400px;
    height: 380px;
  }

  .uee-content h2{
    font-size: 20px;
  }

  .uee-content p{
    font-size: 14px;
  }
}

