uploadReceptPopop.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .uploadReceptPopup .topTitle {
  27. font-size: 36rpx;
  28. color: #1f1f39;
  29. height: 80rpx;
  30. text-align: center;
  31. margin-top: 26rpx;
  32. }
  33. .uploadReceptPopup .topTitle .tips {
  34. font-size: 20rpx;
  35. color: #bfc8db;
  36. }
  37. .uploadReceptPopup .receptBox {
  38. height: 390rpx;
  39. overflow-y: scroll;
  40. }
  41. .uploadReceptPopup .radioItem {
  42. display: flex;
  43. justify-content: space-between;
  44. align-items: center;
  45. padding: 0 60rpx;
  46. height: 80rpx;
  47. box-sizing: border-box;
  48. color: #333;
  49. font-size: 28rpx;
  50. }
  51. .uploadReceptPopup .radioItem .left {
  52. display: flex;
  53. align-items: center;
  54. }
  55. .uploadReceptPopup .radioItem .icon {
  56. width: 36rpx;
  57. height: 36rpx;
  58. margin-right: 20rpx;
  59. }
  60. .uploadReceptPopup .radioItem.active {
  61. background-color: #f7f8f9;
  62. }
  63. .uploadReceptPopup .radioItem.static {
  64. background-color: #fff;
  65. }
  66. .uploadReceptPopup .radioItem:focus {
  67. background-color: pink;
  68. }
  69. .uploadReceptPopup .btnBox {
  70. font-size: 36rpx;
  71. color: #555d6c;
  72. margin-top: 48rpx;
  73. }
  74. .uploadReceptPopup .btnBox > view {
  75. text-align: center;
  76. width: 100%;
  77. line-height: 108rpx;
  78. }
  79. .uploadReceptPopup .btnBox .play {
  80. background: #f7f8f9;
  81. }