12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /* pages/index/index.wxss */
- .box1{
- width: 100vw;
- height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .box1_title{
- width: 750rpx;
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- color: #131313;
- font-weight: 700;
- font-size: 72rpx;
- margin: 48rpx auto 30rpx;
- }
- .box1_msg{
- width: 750rpx;
- text-align: center;
- height: 96rpx;
- line-height: 66rpx;
- color: #E51C23;
- font-weight: 700;
- font-size: 48rpx;
- margin: 30rpx auto;
- }
- .box1_bg{
- width: 750rpx;
- height: 460rpx;
- display: flex;
- }
- .box1_bg image{
- margin: auto;
- width: 640rpx;
- height: 439rpx;
- }
- .box1_btnView{
- width: 750rpx;
- height: 150rpx;
- display: flex;
- }
- .box1_btn{
- width: 450rpx;
- height: 110rpx;
- border-radius: 60rpx;
- line-height: 110rpx;
- background-color: rgba(229, 28, 35);
- color: rgba(255, 255, 255);
- font-size: 56rpx;
- font-weight: 700;
- text-align: center;
- margin: auto;
- }
- .box1_plain{
- width: 750rpx;
- height: auto;
- display: flex;
- margin-bottom: 96rpx;
- padding-bottom: env(safe-area-inset-bottom);
- }
- .box1_plain text{
- margin: auto;
- text-align: center;
- font-size: 24rpx;
- color: #101010;
- text-decoration:underline;
- }
|