index.css 910 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. ***HotApp云笔记,基于HotApp小程序统计云后台
  3. ***免费云后台申请地址 https://weixin.hotapp.cn/cloud
  4. ***API 文档地址:https://weixin.hotapp.cn/api
  5. ***小程序技术讨论QQ群:173063969
  6. */
  7. page {
  8. height: 100%;
  9. }
  10. .container {
  11. height: 100%;
  12. flex-flow: column nowrap;
  13. align-items: center;
  14. justify-content: center;
  15. }
  16. .container .row {
  17. width: 100%;
  18. }
  19. .text {
  20. width: 90%;
  21. height: 400rpx;
  22. flex-shrink: 1;
  23. margin: 0 auto;
  24. border-radius: 10rpx;
  25. color: #999;
  26. font-size: 14px;
  27. padding: 10px;
  28. background: #ffffff;
  29. box-sizing: border-box;
  30. }
  31. .btn_box {
  32. margin-top: 100rpx;
  33. }
  34. .submit {
  35. width: 180px;
  36. background: #fc8e5d;
  37. border: none;
  38. color: #fff;
  39. font-size: 16px;
  40. margin-top: 20px;
  41. }
  42. .version {
  43. margin-top: 100rpx;
  44. }
  45. .version .txt {
  46. text-align: center;
  47. font-size: 14px;
  48. color: #999;
  49. }