ispBusiness.wxss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* pages/ispBusiness/ispBusiness.wxss */
  2. .header {
  3. position: fixed;
  4. top: 132rpx;
  5. left: 0;
  6. right: 0;
  7. padding: 0 30rpx;
  8. height: 68rpx;
  9. background: #eff0f2;
  10. display: flex;
  11. align-items: center;
  12. justify-content: space-between;
  13. }
  14. .header .item {
  15. height: 68rpx;
  16. line-height: 68rpx;
  17. font-weight: 450;
  18. font-size: 28rpx;
  19. color: #999;
  20. }
  21. .list {
  22. margin-top: 200rpx;
  23. background: #fff;
  24. box-shadow: 6rpx 6rpx 35rpx rgba(178, 221, 250, .2);
  25. }
  26. .busItem {
  27. padding: 0 30rpx;
  28. height: 98rpx;
  29. display: flex;
  30. align-items: center;
  31. justify-content: space-between;
  32. }
  33. .busItem .name {
  34. flex: 1;
  35. width: 0;
  36. height: 98rpx;
  37. line-height: 98rpx;
  38. font-size: 28rpx;
  39. font-weight: 450;
  40. color: #424a61;
  41. overflow: hidden;
  42. text-overflow: ellipsis;
  43. white-space: nowrap;
  44. }
  45. .busItem .status {
  46. margin-left: 30rpx;
  47. max-width: 400rpx;
  48. height: 98rpx;
  49. line-height: 98rpx;
  50. font-size: 28rpx;
  51. font-weight: 450;
  52. color: #424a61;
  53. overflow: hidden;
  54. text-overflow: ellipsis;
  55. white-space: nowrap;
  56. }