/* 弹出框样式 */
.popArea{
  height: 100%;
  width: 100%;
  position: absolute;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items:center;
  z-index: 999;
}
.popBox{
  min-height: 8.898rem;
  min-width: 24.109rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items:center;
  box-shadow:0px 1rem 5rem rgba(8,31,36,1);
  border-radius:1rem;
  background-color: rgba(255,255,255,1);
  z-index: 0;
}
.popBoxForFlex{
  min-height: 8.898rem;
  min-width: 24.109rem;
  /* background-color: cyan; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items:center;
}
.popBG_LT{
  height: 3rem;
  width: 6rem;
  position: absolute;
  top:0;
  left:0;
  z-index: 2;
  /* background-color: crimson; */
  background: url("../images/backgroundImage/decorateLT.png") no-repeat center;
  background-size: cover; 
}
.popBG_RB{
  height: 4rem;
  width: 9rem;
  position: absolute;
  bottom:0;
  right:0;
  z-index: 2;
  /* background-color: crimson; */
  background: url("../images/backgroundImage/decorateRB.png") no-repeat center;
  background-size: cover; 
}
.popTitle{
  color:#184E5A;
  font-size:1.2rem;
  font-weight:600;
  margin:1.1rem 0 1rem 0;
}
.popDes{
  color:#184E5A;
  font-size:0.9rem;
  letter-spacing: 0.1rem;
  font-weight:400;
  margin:0 0 1.4rem 0;
}
.popBtn{
  height:1.645rem;
  width:5.476rem;
  font-size: 0.8rem;
  margin:0 0 0.8rem 0;
  background-color: #50BCB0;
  border: none;
  border-radius:0.4rem;
}

