123456789101112131415161718192021222324252627282930 |
- /* 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;
- .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;
- padding: 18rpx 86rpx;
- font-size: 14px;
- font-weight: 500;
- }
- }
|