app.wxss 615 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: space-between;
  8. padding: 200rpx 0;
  9. box-sizing: border-box;
  10. }
  11. page {
  12. padding: 20rpx;
  13. /* padding右边不起效果解决办法 */
  14. box-sizing:border-box;
  15. background-color: #f5f5f5;
  16. }
  17. /* text样式 */
  18. .text {
  19. font-size: 40rpx;
  20. font-weight: 600;
  21. }
  22. .text_small {
  23. font-size: 30rpx;
  24. font-weight: 400;
  25. }
  26. /* 文字下方黄色横线 */
  27. .color_block {
  28. width: 215rpx;
  29. height: 20rpx;
  30. background-color: #FFC300;
  31. opacity: 0.8;
  32. z-index: -1;
  33. }