start.wxss 1.1 KB
/* pages/start/start.wxss */
/* pages/start/start.wxss */
.container {
  width: 100%;
  height: 100%;
  padding: 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;
  
}
.container image{
 width:100%;
 height: 100%;

}

.logo_box{
  position: absolute;
  top:30%;
  left:50%;
  transform: translateX(-50%);
}
.logo {
  font-size: 54rpx;
  color: greenyellow;
  width: 158rpx;
  height: 213rpx;  
  border-radius: 20rpx;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:  0 auto;
}
.logo image{
 width: 100%;
 height: 100%;
}
.title {
  font-size: 40rpx;
  color: #FF9FC1;
  font-weight: bold;
  text-align: center;
  margin-top: 42rpx;
}

.bottom_btn button{
  position: absolute;
  bottom:40%;
  left:50%;
  transform: translateX(-50%);
  font-size: 32rpx;
  color: #54B431;
  font-weight: bold;
  width: 250rpx;
  height: 80rpx;
  border:1rpx solid #54B431;
  box-shadow:0rpx 8rpx 16rpx 0rpx rgba(60,148,27,0.16);
  border-radius: 40rpx;
  display: flex;
  align-items: center;
  justify-content: center;
  
}