index.scss 824 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. page{
  2. background-color: $page-bg;
  3. color: $uni-text-color;
  4. }
  5. /* 基本信息样式 */
  6. .nav{
  7. .nav-content{
  8. padding: 30rpx 0;
  9. background-color: $uni-bg-color;
  10. display: flex;
  11. flex-direction: row;
  12. flex-wrap: wrap;
  13. .nav-item{
  14. position: relative;
  15. display: flex;
  16. flex-direction: column;
  17. align-items: center;
  18. width: 33.3%;
  19. height: 150rpx;
  20. margin: 40rpx 0;
  21. span{
  22. //display: block;
  23. font-size: 72rpx;
  24. color:$j-primary-border-green ;
  25. padding-bottom: 15rpx;
  26. }
  27. label{
  28. //color:$uni-text-color-grey ;
  29. font-size: $uni-font-size-base;
  30. }
  31. .badge {
  32. position: absolute;
  33. top: -8rpx;
  34. left: 140rpx;
  35. font-size: 24rpx;
  36. padding: 0rpx 10rpx;
  37. border-radius: 38rpx;
  38. background-color: #ff4949;
  39. color: #fff;
  40. font-style: normal;
  41. }
  42. }
  43. }
  44. }