12345678910111213141516171819202122232425262728293031323334 |
- /* pages/home/index.wxss */
- .page {
- position: relative;
- background-size: 100% 100%;
- background-repeat: no-repeat;
- background-image: url(https://cxzx.smcic.net/topic/tool/img/miniprogram/bg.jpg);
- padding-top: 86rpx;
- box-sizing: border-box;
- .title {
- width: 626rpx;
- height: 354rpx;
- margin: 0 auto;
- display: block;
- }
- .buttom {
- background-size: 100% 100%;
- background-repeat: no-repeat;
- background-image: url(https://cxzx.smcic.net/topic/tool/img/miniprogram/input.png);
- position: absolute;
- bottom: 180rpx;
- left: 50%;
- transform: translateX(-50%);
- color: #FFFFFF;
- text-align: center;
- font-size: 28rpx;
- font-weight: 500;
- width: 340rpx;
- height: 80rpx;
- line-height: 80rpx;
- box-sizing: border-box;
- }
- }
|