start.wxss 1.0 KB
/* pages/start/start.wxss */
.container {
  width: 100%;
  height: 100%;
  /* padding: 269rpx 0 176rpx 0; */
  position: fixed;
  top:0;
  left:0;
  bottom:0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  background:  #982e34;
}
.container image{
  width:100%;
  height: 100%;
  
}
.logo_box{
  position: absolute;
  top:10%;
  left:50%;
  transform: translateX(-50%);
}
.logo {
  font-size: 54rpx;
  color: #fff;
  width: 132rpx;
  height: 131rpx;
  background: #DD3b52;
  border-radius: 20rpx;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:  0 auto;
}

.title {
  font-size: 32rpx;
  color: #000;
  text-align: center;
  margin-top: 42rpx;
}

.bottom_btn button{
  position: absolute;
  bottom:10%;
  left:50%;
  transform: translateX(-50%);
  font-size: 32rpx;
  color: #fff;
  width: 520rpx;
  height: 80rpx;
  background: #DD3b52;
  border-radius: 40rpx;
  display: flex;
  align-items: center;
  justify-content: center;
  
}