运维小程序
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

app.wxss 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .container {
  2. position: absolute;
  3. top: 0;
  4. /* bottom: 0; */
  5. left: 0;
  6. right: 0;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. /* justify-content: space-between; */
  11. box-sizing: border-box;
  12. background-color: #f0f5f5;
  13. }
  14. page {
  15. /* font-family:"PingFangSC-Thin"; */
  16. font-size:28rpx;
  17. /* 页面底部内边距 = TabBar基础高度 + 安全区域高度 */
  18. /* padding-bottom: calc(100rpx + env(safe-area-inset-bottom)); */
  19. background-color: #f5f5f5;
  20. box-sizing: border-box;
  21. }
  22. .card {
  23. width: 100%;
  24. box-sizing: border-box;
  25. padding: 20rpx;
  26. overflow-x: hidden;
  27. background-color:#ffffff;
  28. border: 1px solid #ffffff;
  29. border-radius: 6px;
  30. box-shadow: 0 0 12px rgb(0 0 0 / 5%);
  31. margin-top: 20rpx;
  32. }
  33. /* */
  34. @font-face {
  35. font-family: 'iconfont';
  36. /* Project id 4935042 */
  37. src: url('http://at.alicdn.com/t/c/font_4935042_gsrxcrmdcz.woff2?t=1748497918806') format('woff2'),
  38. url('http://at.alicdn.com/t/c/font_4935042_gsrxcrmdcz.woff?t=1748497918806') format('woff'),
  39. url('http://at.alicdn.com/t/c/font_4935042_gsrxcrmdcz.ttf?t=1748497918806') format('truetype');
  40. /* src: url('@/font/iconfont.woff2?t=1748497918806') format('woff2'),
  41. url('@/font/iconfont.woff?t=1748497918806') format('woff'),
  42. url('@/font/iconfont.ttf?t=1748497918806') format('truetype'); */
  43. }
  44. .test {
  45. font-family: iconfont;
  46. margin-left: 20rpx;
  47. }
  48. .testbox {
  49. font-family: iconfont;
  50. margin-left: 32rpx;
  51. margin-right: 10rpx;
  52. }