/* 这里随便写自定义css样式 */


/* 登录页背景 */
.auth-container .left-img .warp {
  background-image: url('/theme/aurora/static/bt.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  box-shadow: 5px 5px 27px 0 rgba(0, 0, 0, .2);
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 40px);
}

/* 修改标题字体颜色 */
.auth-container .left-img .tit {
  font-weight: 700;
  font-size: 30px;
  color: rgb(252, 71, 107)!important;
  margin-bottom: 20px;
  margin-top: 20px;
}




/* 保持原有的内容图片样式 */
#app > div > div > div > div > div.img > div > svg {
  display: none !important;
}

/* 响应式支持 */
@media screen and (max-height: 800px) {
  #app > div > div > div > div > div.img > div {
    width: 140px;
    height: 268px;
  }
}

@media screen and (max-height: 600px) {
  #app > div > div > div > div > div.img > div {
    width: 100px;
    height: 191px;
  }
}