uni.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. @import "@/uni_modules/uni-scss/variables.scss";
  2. @import "animate.css/animate.css";
  3. // 字体图标
  4. @import "@/static/fonts/iconfont.css";
  5. // 主题色(绿色)
  6. $defaultColor: #49b856;
  7. // 红色
  8. $textColorRed: #ff3b53;
  9. // 黄色
  10. $textColorYellow: #F5A623;
  11. //数字字母不换行
  12. @mixin numbersAndLettersNoWrap {
  13. word-break: break-all;
  14. }
  15. //flex布局
  16. // $justifyContent 主轴对齐方式
  17. // $alignItem 交叉轴对齐方式
  18. // $flexDirection 方向
  19. @mixin flex(
  20. $justifyContent: flex-start,
  21. $alignItem: stretch,
  22. $flexDirection: row
  23. ) {
  24. display: flex;
  25. justify-content: $justifyContent;
  26. align-items: $alignItem;
  27. flex-direction: $flexDirection;
  28. }
  29. // 按钮背景色
  30. @mixin btn_background {
  31. background-image: linear-gradient(90deg,#72c172,#3bb197);
  32. }
  33. //底部凹弧形边
  34. @mixin arc_edge($height:200rpx) {
  35. height: $height;
  36. position: relative;
  37. background: $defaultColor;
  38. &::after {
  39. content: '';
  40. width: 110%;
  41. height: $height / 2;
  42. position: absolute;
  43. left: -5%;
  44. bottom: 0;
  45. border-radius: 50% 50% 0 0;
  46. background: #fff;
  47. }
  48. }
  49. //边框两边半圆装饰
  50. @mixin semicircle($backgroundColor:#f9fafb,$top:50%) {
  51. &::before {
  52. content: '';
  53. position: absolute;
  54. width: 16rpx;
  55. height: 32rpx;
  56. border-radius: 0 16rpx 16rpx 0;
  57. background-color: $backgroundColor;
  58. left: -1px;
  59. top: $top;
  60. transform: translateY(-50%);
  61. border: 1px solid #E5E9ED;
  62. border-left: none;
  63. }
  64. &::after {
  65. content: '';
  66. position: absolute;
  67. width: 16rpx;
  68. height: 32rpx;
  69. border-radius: 16rpx 0 0 16rpx;
  70. background-color: $backgroundColor;
  71. right: -1px;
  72. top: $top;
  73. transform: translateY(-50%);
  74. border: 1px solid #E5E9ED;
  75. border-right: none;
  76. }
  77. }
  78. // 省略
  79. @mixin clamp($clamp:1) {
  80. display: -webkit-box;
  81. -webkit-box-orient: vertical;
  82. -webkit-line-clamp: $clamp;
  83. overflow: hidden;
  84. text-overflow: ellipsis;
  85. word-break: break-all;
  86. }
  87. // --------------------------华丽的分割线---------------------------------------
  88. // 全局样式
  89. .w100{
  90. width: 100%;
  91. }
  92. .red {
  93. color: $textColorRed;
  94. }
  95. .yellow {
  96. color: $textColorYellow;
  97. }
  98. .green {
  99. color: $defaultColor;
  100. }
  101. // 内置复选框 start
  102. .uni-label-pointer{
  103. @include flex;
  104. }
  105. uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  106. border-color: $defaultColor;
  107. }
  108. .uni-checkbox-input-checked{
  109. color: $defaultColor !important;
  110. }
  111. // 内置复选框 end