collagecustomer.wxss 929 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. page{
  2. display: block;
  3. width: 100%;
  4. height: 100%;
  5. overflow: auto;
  6. background: #F6F6F6;
  7. padding-top:30rpx;
  8. box-sizing:border-box;
  9. }
  10. .everycustomerbox{
  11. display: block;
  12. width:690rpx;
  13. margin: 0 auto 30rpx;
  14. background: #FFFFFF;
  15. box-shadow: 0px 2rpx 9rpx rgba(0, 0, 0, 0.09);
  16. border-radius: 18rpx;
  17. padding:20rpx 28rpx;
  18. box-sizing:border-box;
  19. }
  20. .headimg{
  21. display: block;
  22. width: 118rpx;
  23. height:118rpx;
  24. border-radius: 50%;
  25. margin-right:30rpx;
  26. }
  27. .unsurebox{
  28. width: 118rpx;
  29. height:50rpx;
  30. border: 1rpx solid #28A1FF;
  31. border-radius: 10rpx;
  32. color:#28A1FF;
  33. line-height: 48rpx;
  34. position:relative;
  35. top:34rpx;
  36. }
  37. .customername{
  38. width: 360rpx;
  39. }
  40. .received{
  41. width: 118rpx;
  42. height:50rpx;
  43. border: 1rpx solid #cccccc;
  44. border-radius: 10rpx;
  45. color:#cccccc;
  46. line-height: 48rpx;
  47. position:relative;
  48. top:34rpx;
  49. }