
.uee-vr-section,
.uee-vr-section *{box-sizing:border-box}

.uee-vr-section{
  width:100%;
  padding:60px 0;
  background:#F7F7F7;
  font-family:Arial,Helvetica,sans-serif;
}

.uee-vr-inner{
  display:flex;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  gap:50px;
}

/* 左侧 VR 放大 */
.uee-vr-media{
  position:relative;
  flex:0 0 52%;
  background:#000;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.uee-vr-ratio-box{
  position:relative;
  width:100%;
  padding-top:75%;
}

.uee-vr-ratio-box iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* 右上角全屏按钮 */
.uee-vr-fullscreen{
  position:absolute;
  top:14px;
  right:14px;
  z-index:10;
  width:38px;
  height:38px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(128,128,128,.85);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.25s;
  -webkit-appearance:none;
  appearance:none;
}

.uee-vr-fullscreen:hover{
  background:rgba(90,90,90,.95);
  transform:scale(1.06);
}

.uee-vr-fullscreen svg{
  width:19px;
  height:19px;
  fill:none;
  stroke:#fff;
  stroke-width:2;
  stroke-linecap:round;
}

/* 全屏状态 */
.uee-vr-media:fullscreen{
  width:100vw;
  height:100vh;
  max-width:none;
  border-radius:0;
  box-shadow:none;
  background:#000;
}

.uee-vr-media:fullscreen .uee-vr-ratio-box{
  width:100%;
  height:100%;
  padding-top:0;
}

.uee-vr-media:fullscreen iframe{
  width:100%;
  height:100%;
}

.uee-vr-media:-webkit-full-screen{
  width:100vw;
  height:100vh;
  max-width:none;
  border-radius:0;
  box-shadow:none;
  background:#000;
}

.uee-vr-media:-webkit-full-screen .uee-vr-ratio-box{
  width:100%;
  height:100%;
  padding-top:0;
}

.uee-vr-media:-webkit-full-screen iframe{
  width:100%;
  height:100%;
}

.uee-vr-label{
  position:absolute;
  left:20px;
  bottom:20px;
  z-index:2;
  padding:8px 14px;
  background:rgba(255,255,255,.9);
  color:#111;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  border-radius:4px;
  pointer-events:none;
}

.uee-vr-content{
  flex:1;
  min-width:0;
}

.uee-vr-eyebrow{
  margin:0 0 15px;
  color:#004297;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

.uee-vr-title{
  margin:0 0 20px;
  color:#111;
  font-size:40px;
  line-height:1.1;
}

.uee-vr-desc{
  margin:0 0 30px;
  color:#444;
  font-size:17px;
  line-height:1.6;
}

.uee-vr-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-top:1px solid #dadada;
}

.uee-vr-item{
  padding:20px 10px;
  border-bottom:1px solid #dadada;
}

.uee-vr-item:nth-child(odd){
  padding-left:0;
  border-right:1px solid #dadada;
}

.uee-vr-item-h{
  display:flex;
  align-items:center;
  margin-bottom:6px;
  color:#111;
  font-size:16px;
  font-weight:700;
}

.uee-vr-item-h:before{
  content:"";
  width:6px;
  height:6px;
  margin-right:12px;
  background:#004297;
  border-radius:50%;
  flex:none;
}

.uee-vr-item-p{
  margin:0;
  padding-left:18px;
  color:#666;
  font-size:14px;
  line-height:1.5;
}

.uee-vr-btn-wrap{
  margin-top:35px;
}

.uee-vr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 45px;
  background:#004297;
  color:#fff!important;
  text-decoration:none!important;
  border-radius:30px;
  font-size:16px;
  font-weight:700;
  transition:.3s;
}

.uee-vr-btn:hover{
  background:#003574;
  transform:translateY(-2px);
}

@media(max-width:1100px){
  .uee-vr-inner{
    gap:35px;
  }

  .uee-vr-media{
    flex:0 0 50%;
  }

  .uee-vr-title{
    font-size:32px;
  }
}

@media(max-width:767px){
  .uee-vr-section{
    padding:40px 0;
  }

  .uee-vr-inner{
    flex-direction:column;
    align-items:stretch;
    gap:30px;
  }

  .uee-vr-media{
    width:100%;
    flex:none;
    border-radius:10px;
  }

  .uee-vr-content{
    width:100%;
  }

  .uee-vr-grid{
    grid-template-columns:1fr;
  }

  .uee-vr-item:nth-child(odd){
    border-right:0;
  }

  .uee-vr-title{
    font-size:28px;
  }

  .uee-vr-eyebrow{
    font-size:12px;
  }

  .uee-vr-fullscreen{
    top:10px;
    right:10px;
    width:36px;
    height:36px;
  }
}
