top-title.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .top-title {
  12. display: -webkit-box;
  13. display: -webkit-flex;
  14. display: flex;
  15. -webkit-box-align: center;
  16. -webkit-align-items: center;
  17. align-items: center;
  18. }
  19. .top-title .title-before {
  20. display: inline-block;
  21. background-color: #FA7E67;
  22. width: 10rpx;
  23. height: 30rpx;
  24. margin-right: 16rpx;
  25. }
  26. .top-title .title {
  27. display: inline-block;
  28. font-size: 32rpx;
  29. font-family: PingFang SC;
  30. font-weight: bold;
  31. color: #333333;
  32. }
  33. .top-title .title-after {
  34. display: inline-block;
  35. }
  36. .top-title .title-after .a1 {
  37. width: 8rpx;
  38. height: 8rpx;
  39. background: #FD424B;
  40. border-radius: 50%;
  41. margin-bottom: 6rpx;
  42. margin-top: 16rpx;
  43. margin-left: 25rpx;
  44. }
  45. .top-title .title-after .a2 {
  46. width: 28rpx;
  47. height: 4rpx;
  48. background: #FD424B;
  49. opacity: 0.1;
  50. border-radius: 2rpx;
  51. margin-bottom: 6rpx;
  52. }
  53. .top-title .title-after .a3 {
  54. width: 28rpx;
  55. height: 4rpx;
  56. background: #FD424B;
  57. opacity: 0.45;
  58. border-radius: 2rpx;
  59. margin-left: 11rpx;
  60. }