common.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .u-page-title{
  2. width: 100%;
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. .line {
  7. width: 34px;
  8. height: 1px;
  9. border: 1px solid #548cf7;
  10. background-color: #ffffff;
  11. box-sizing: border-box;
  12. margin: 0 10rpx;
  13. }
  14. .title-content{
  15. height: 24px;
  16. margin: 0 14px;
  17. box-sizing: border-box;
  18. font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  19. font-weight: 650;
  20. color: #fefefe;
  21. line-height: 58rpx;
  22. text-align: center;
  23. width: 321rpx;
  24. height: 58rpx;
  25. background: linear-gradient( 180deg, #6FAAFF 0%, #4E92FE 100%);
  26. border-radius: 0px 0px 16rpx 16rpx;
  27. }
  28. .rectangle {
  29. width: 4px;
  30. height: 14px;
  31. transform: rotate(28deg);
  32. border-radius: 4px;
  33. background-color: #548cf7;
  34. box-sizing: border-box;
  35. &:nth-child(3) {
  36. margin: 0 5px;
  37. background-color: rgba(84, 140, 247, 0.79);
  38. }
  39. &:nth-child(5) {
  40. margin:0 5px;
  41. background-color: rgba(84, 140, 247, 0.79);
  42. }
  43. }
  44. }
  45. .search-content{
  46. width: 100%;
  47. height: 80rpx;
  48. display: flex;
  49. align-items: center;
  50. justify-content: center;
  51. background-color: #f2f2f2;
  52. .u-search__action{
  53. color: #3c9cff !important;
  54. }
  55. .u-search{
  56. flex: 0.95 !important;
  57. border: 1px solid #3c9cff !important;
  58. border-radius: 100px !important;
  59. background-color: #fefefe!important;
  60. }
  61. /deep/ .u-search__content{
  62. border: none !important;
  63. background-color: #fefefe!important;
  64. }
  65. /deep/ .u-search__content .u-search__content__input{
  66. background-color: #fefefe!important;
  67. }
  68. }
  69. .u-grid {
  70. /deep/ .u-grid-item {
  71. width: 33.3333%;
  72. margin-top: 30rpx !important;
  73. }
  74. /deep/ .u-grid-item .grid-item-icon {
  75. width: 100rpx;
  76. height: 100rpx;
  77. background-color: red;
  78. display: flex;
  79. align-items: center;
  80. justify-content: center;
  81. border-radius: 10rpx;
  82. }
  83. /deep/ .u-grid-item .grid-item-icon image{
  84. width: 60rpx;
  85. height: 60rpx;
  86. }
  87. /deep/ .u-grid-item .grid-text{
  88. font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
  89. color: #333333;
  90. margin-top: 10rpx;
  91. font-size: 28rpx;
  92. }
  93. /deep/ .u-swiper__wrapper__item__wrapper__image {
  94. border-radius: 0 !important;
  95. }
  96. }
  97. .register-form-container {
  98. .u-form {
  99. .u-form-item {
  100. /deep/ .u-form-item__body__left {
  101. &::before {
  102. content: "";
  103. width: 4rpx;
  104. margin-right: 10rpx;
  105. display: inline-block;
  106. }
  107. }
  108. &.require {
  109. /deep/ .u-form-item__body__left {
  110. &::before {
  111. content: "*";
  112. color: red;
  113. margin-right: 10rpx;
  114. display: inline-block;
  115. }
  116. }
  117. }
  118. }
  119. }
  120. }
  121. .overflow-hidden{
  122. display: -webkit-box;
  123. -webkit-line-clamp: 2; /* 控制显示的行数 */
  124. -webkit-box-orient: vertical;
  125. overflow: hidden;
  126. text-overflow: ellipsis;
  127. }