detail.wxss 854B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. page {
  2. height: 100%;
  3. background-color: #f3f3f9;
  4. }
  5. .cnt_wrapper {
  6. margin: 0;
  7. padding: 0;
  8. }
  9. .p_title {
  10. width: 93vw;
  11. height: 140rpx;
  12. display: flex;
  13. align-items: center;
  14. margin: 20rpx auto;
  15. margin-top: 30rpx;
  16. border-radius: 10rpx;
  17. background: #fff;
  18. }
  19. .p_title .p_name {
  20. font-weight: bold;
  21. }
  22. .p_title .p_number {
  23. font-size: 24rpx;
  24. line-height: 50rpx;
  25. color: #999999;
  26. }
  27. .p_cnt {
  28. width: 93vw;
  29. margin: 20rpx auto;
  30. border-radius: 10rpx;
  31. background: #fff;
  32. }
  33. .p_cnt_list {
  34. height: 60rpx;
  35. padding: 10rpx 40rpx;
  36. display: flex;
  37. justify-content: space-between;
  38. align-items: center;
  39. font-size: 30rpx;
  40. font-weight: bold;
  41. }
  42. .delete_btn {
  43. width: 93vw;
  44. margin: 0 auto;
  45. }
  46. .delete_btn button {
  47. background: #fff;
  48. color: #ff3d71;
  49. box-shadow: 0px 2px 11px 0px rgba(211, 211, 234, 0.43);
  50. font-size: 30rpx;
  51. height: 88rpx;
  52. line-height: 88rpx;
  53. }