index.scss 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .setclient-list-item {
  2. width: 100vw;
  3. padding-left: 30rpx;
  4. background-color: #fff;
  5. box-sizing: border-box;
  6. .con {
  7. display: flex;
  8. width: 100%;
  9. min-height: 136rpx;
  10. border-bottom: 1px solid #EFEFEF;
  11. box-sizing: border-box;
  12. padding-top: 20rpx;
  13. .portrait {
  14. width: 96rpx;
  15. height: 96rpx;
  16. background: #E7EEFF;
  17. border-radius: 16rpx;
  18. font-size: 24rpx;
  19. font-family: PingFang SC-Regular, PingFang SC;
  20. color: #3874F6;
  21. padding: 16rpx 24rpx;
  22. box-sizing: border-box;
  23. margin-right: 20rpx;
  24. flex-shrink: 0;
  25. }
  26. .min-portrait {
  27. display: flex;
  28. align-items: center;
  29. padding: 0 !important;
  30. justify-content: center;
  31. }
  32. .mian {
  33. flex: 1;
  34. width: 0;
  35. padding-right: 20rpx;
  36. box-sizing: border-box;
  37. .label {
  38. font-size: 28rpx;
  39. font-family: PingFang SC-Bold, PingFang SC;
  40. font-weight: bold;
  41. color: #333333;
  42. height: 40rpx;
  43. line-height: 40rpx;
  44. }
  45. .tag-box {
  46. margin-top: 10rpx;
  47. .tag {
  48. height: 40rpx;
  49. font-size: 20rpx;
  50. font-family: PingFang SC-Regular, PingFang SC;
  51. padding: 0 12rpx;
  52. }
  53. }
  54. }
  55. .icon {
  56. display: flex;
  57. height: 136rpx;
  58. align-items: center;
  59. margin-top: -20rpx;
  60. color: #CFCFCF;
  61. width: 28rpx;
  62. margin-right: 30rpx;
  63. flex-shrink: 0;
  64. }
  65. .extend {
  66. display: flex;
  67. height: 116rpx;
  68. width: 48rpx;
  69. margin-right: 30rpx;
  70. flex-shrink: 0;
  71. }
  72. }
  73. }
  74. .line-1 {
  75. overflow: hidden;
  76. white-space: nowrap;
  77. text-overflow: ellipsis;
  78. }