1234567891011121314151617181920212223242526272829303132333435363738 |
- /**index.wxss**/
- .container{
- position: relative;
- .bg{
- width: 100%;
- height: 100%;
- }
- .btn_con{
- position: absolute;
- bottom: 12%;
- left: 50%;
- transform: translateX(-50%);
- width: 300rpx;
- > image{
- width: 100%;
- margin-bottom: 40rpx;
- &:last-of-type{
- margin-bottom: 0;
- }
- }
- }
- .tips_con{
- position: absolute;
- bottom: 36rpx;
- right: 10rpx;
- width: 80rpx;
- > image{
- width: 100%;
- margin-bottom: 10rpx;
- &:last-of-type{
- margin-bottom: 0;
- }
- }
- }
- }
|