settledStore.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. .tui-line-cell {
  2. width: 100%;
  3. box-sizing: border-box;
  4. display: flex;
  5. align-items: center;
  6. height:48rpx;
  7. }
  8. .tui-title {
  9. font-size: 24rpx;
  10. line-height: 24rpx;
  11. flex-shrink: 0;
  12. }
  13. .tui-input {
  14. font-size: 24rpx;
  15. color: #333;
  16. padding-left: 20rpx;
  17. flex: 1;
  18. }
  19. .tui-label {
  20. font-size: 24rpx;
  21. color: #333;
  22. padding-left: 20rpx;
  23. flex: 1;
  24. }
  25. .tui-btn-box {
  26. background-color: #fff;
  27. padding: 40rpx 50rpx;
  28. box-sizing: border-box;
  29. }
  30. .phcolor{
  31. font-size: 24rpx;
  32. }
  33. .tui-goods-item {
  34. width: 100%;
  35. padding: 20rpx 30rpx;
  36. box-sizing: border-box;
  37. display: flex;
  38. justify-content: space-between;
  39. background-color: white;
  40. }
  41. .tui-goods-img {
  42. width: 180rpx;
  43. height: 180rpx;
  44. display: block;
  45. flex-shrink: 0;
  46. }
  47. .tui-goods-grid {
  48. width: 180rpx;
  49. height: 180rpx;
  50. display: flex;
  51. flex-shrink: 0;
  52. background-color: #999999;
  53. color: #fff;
  54. align-items: center;
  55. justify-content: center;
  56. }
  57. .tui-goods-center {
  58. flex: 1;
  59. box-sizing: border-box;
  60. }
  61. .tui-input {
  62. font-size: 24rpx;
  63. color: #333;
  64. padding-left: 20rpx;
  65. flex: 1;
  66. }
  67. /* 未选中的背景样式 */
  68. checkbox .wx-checkbox-input{
  69. width: 40rpx;
  70. height: 40rpx;
  71. border-radius: 50%;
  72. }
  73. /* 选中后的背景样式 */
  74. checkbox .wx-checkbox-input.wx-checkbox-input-checked{
  75. background: #37C674;
  76. }
  77. /* 选中后的勾子样式 */
  78. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
  79. width: 40rpx;
  80. height: 40rpx;
  81. line-height: 40rpx;
  82. border-radius: 50%;
  83. text-align: center;
  84. font-size:32rpx;
  85. color:#FFF;
  86. background: transparent;
  87. transform:translate(-50%, -50%) scale(1);
  88. -webkit-transform:translate(-50%, -50%) scale(1);
  89. }