index.scss 788 B

12345678910111213141516171819202122232425262728293031323334
  1. /* pages/home/index.wxss */
  2. .page {
  3. position: relative;
  4. background-size: 100% 100%;
  5. background-repeat: no-repeat;
  6. background-image: url(https://cxzx.smcic.net/topic/tool/img/miniprogram/bg.jpg);
  7. padding-top: 86rpx;
  8. box-sizing: border-box;
  9. .title {
  10. width: 626rpx;
  11. height: 354rpx;
  12. margin: 0 auto;
  13. display: block;
  14. }
  15. .buttom {
  16. background-size: 100% 100%;
  17. background-repeat: no-repeat;
  18. background-image: url(https://cxzx.smcic.net/topic/tool/img/miniprogram/input.png);
  19. position: absolute;
  20. bottom: 180rpx;
  21. left: 50%;
  22. transform: translateX(-50%);
  23. color: #FFFFFF;
  24. text-align: center;
  25. font-size: 28rpx;
  26. font-weight: 500;
  27. width: 340rpx;
  28. height: 80rpx;
  29. line-height: 80rpx;
  30. box-sizing: border-box;
  31. }
  32. }