start.wxss 1.1 KB
/* pages/start/start.wxss */
.start{
 position: fixed;
 top:0;
 left:0;
 bottom:0;
 width:100%;
 height: 100%;
 z-index:10;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
}
.start image{
 width:100%;
 height: 100%;
 display: block;
}
.start_main{
 position: absolute;
 width:100%;
 top:12%;
 left:50%;
 transform: translateX(-50%);
}
.start_bigtxt{
 margin: 50rpx 0 12rpx 0;
 color:rgba(33,174,89,1);
 font-weight: bold;
 font-size:44rpx;
 text-align: center;
}
.start_minitxt{
 color:rgba(33,174,89,0.5);
 font-size:30rpx;
 text-align: center;
 font-weight: bold;
}
.start_mainimg{
 margin: 0 auto;
 display: flex;
 align-items: center;
 justify-content: center;
 width:256rpx;
 height: 360rpx;
}
.start_mainimg image{
 width:100%;
 height: 100%;
 display: block;
}
.start_btn{
 position: absolute;
 bottom:28%;
 left:50%;
 transform: translateX(-50%);
 width:300rpx;
 height: 80rpx;
 border-radius: 40rpx;
 color:#21AE59;
 font-size:34rpx;
 font-weight: bold;
 border:1rpx solid rgba(33,174,89,0.9);
 z-index:20rpx;
 display: flex;
 align-items: center;
 justify-content: center;
}
.start_btn:active{
 opacity: 0.7;
}