main.scss 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. .user_plant_item{
  11. position: relative;
  12. display: flex;
  13. padding: 30rpx 20rpx;
  14. background-color: #fff;
  15. align-items: center;
  16. &::after{
  17. content: ' ';
  18. position: absolute;
  19. bottom: 0;
  20. left: 30rpx;
  21. right: 0;
  22. height: 1px;
  23. background: #f0f0f0;
  24. }
  25. image{
  26. width: 120rpx;
  27. height: 120rpx;
  28. border-radius: 50%;
  29. }
  30. .info{
  31. flex: 1;
  32. display: flex;
  33. flex-direction: column;
  34. justify-content: space-between;
  35. margin-left: 20rpx;
  36. position: relative;
  37. .name{
  38. width: 410rpx;
  39. font-size: 30rpx;
  40. color: #282828;
  41. }
  42. .plant-des{
  43. color: #999999;
  44. font-size: 24rpx;
  45. margin-top: 16rpx;
  46. .des{
  47. margin-right: 15rpx;
  48. +.des{
  49. margin-left: 15rpx;
  50. &::before{
  51. content: "";
  52. display: inline-block;
  53. width: 1rpx;
  54. height: 16rpx;
  55. background: #999999;
  56. position: relative;
  57. left: -15rpx;
  58. top: -2rpx;
  59. }
  60. }
  61. text{
  62. padding-left: 8rpx;
  63. &::before{
  64. content: ".";
  65. position: relative;
  66. top: -6rpx;
  67. left: -3rpx;
  68. }
  69. }
  70. }
  71. }
  72. .btn{
  73. display: flex;
  74. align-items: center;
  75. justify-content: center;
  76. position: absolute;
  77. right: 0;
  78. top: 50%;
  79. width: 126rpx;
  80. height: 50rpx;
  81. transform: translateY(-50%);
  82. border:1px solid #999999;
  83. color: #999999;
  84. border-radius: 33rpx;
  85. font-size: 26rpx;
  86. &.focusBtn{
  87. .iconfont{
  88. font-size: 20rpx;
  89. margin-right: 10rpx;
  90. }
  91. }
  92. }
  93. }
  94. }