client-item.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. page{
  2. --border: 1px solid rgba(0, 0, 0, 0.1);
  3. --textColor: #111;
  4. --subColor: #A3A4A5;
  5. --statusColor: #F9A718;
  6. --tbH: 76rpx;
  7. }
  8. @import "/common/font/iconfont.wxss";
  9. .client-item{
  10. height: 320rpx;
  11. box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.2);
  12. margin-top: 40rpx;
  13. padding: 0 20rpx;
  14. display: flex;
  15. flex-direction: column;
  16. color: var(--textColor);
  17. }
  18. .c-top{
  19. display: flex;
  20. justify-content: space-between;
  21. align-items: center;
  22. border-bottom: var(--border);
  23. padding: 16rpx 0;
  24. line-height: 1;
  25. height: var(--tbH);
  26. }
  27. .c-top > view{
  28. display: flex;
  29. align-items: center;
  30. }
  31. .c-top > view > text:first-of-type{
  32. margin-right: 20rpx;
  33. font-size: 30rpx;
  34. font-weight: bold;
  35. }
  36. .c-top .star{
  37. margin-left: 4rpx;
  38. font-size: 28rpx;
  39. color: #F56C6C;
  40. }
  41. .c-top .iconcus_msg{
  42. color: #04b3ed;
  43. font-size: 40rpx!important;
  44. }
  45. .c-top .iconcus_call{
  46. color: #1FE4DC;
  47. font-size: 40rpx!important;
  48. }
  49. .c-top image{
  50. width: 40rpx;
  51. display: inline-block;
  52. height: 40rpx;
  53. margin-left: 40rpx;
  54. }
  55. .c-con{
  56. padding: 20rpx 0;
  57. font-size: 22rpx;
  58. border-bottom: var(--border);
  59. height: calc(100% - var(--tbH) - var(--tbH));
  60. }
  61. .c-bottom{
  62. display: flex;
  63. height: var(--tbH);
  64. font-size: 22rpx;
  65. color: var(--subColor);
  66. padding: 20rpx 0;
  67. justify-content: space-between;
  68. align-items: center;
  69. }
  70. .c-bottom .c-status{
  71. color: var(--statusColor);
  72. }