deviceTransfer.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* pages/deviceTransfer/deviceTransfer.wxss */
  2. .btn-transfer {
  3. background-color: #2d8cf0;
  4. color: #fff;
  5. padding: 10rpx 26rpx;
  6. border-radius: 10rpx;
  7. white-space: nowrap;
  8. }
  9. .content-container {
  10. background-color: #fff;
  11. margin-top: 20rpx;
  12. }
  13. .shop-container {
  14. display: flex;
  15. flex-direction: row;
  16. justify-content: flex-between;
  17. align-items: center;
  18. padding: 20rpx;
  19. }
  20. .form-label {
  21. font-weight: bold;
  22. margin-right: 20rpx;
  23. white-space: nowrap;
  24. }
  25. .device-list-container {
  26. margin: 50rpx 0;
  27. }
  28. .block-head {
  29. font-weight: bold;
  30. padding: 20rpx;
  31. }
  32. .table {
  33. font-size: 24rpx;
  34. background-color: #fff;
  35. }
  36. .tb-head {
  37. font-weight: bold;
  38. }
  39. .tb-row {
  40. display: flex;
  41. flex-direction: row;
  42. justify-content: space-between;
  43. border-bottom: solid 1px #f8f8f8;
  44. padding: 0 20rpx;
  45. }
  46. .tb-column {
  47. width: 100%;
  48. padding: 10rpx 0;
  49. }
  50. .col-1 {
  51. }
  52. .col-2 {
  53. border-left: solid 1px #f8f8f8;
  54. border-right: solid 1px #f8f8f8;
  55. text-align: center;
  56. }
  57. .col-3 {
  58. /* width: 30%; */
  59. text-align: center;
  60. }
  61. .del-btn {
  62. color: #ed3f14;
  63. text-decoration-line: underline;
  64. }