control.wxss 873 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @charset "UTF-8";
  2. /* 需要放到文件最上面 */
  3. /* 水平间距 */
  4. /* 水平间距 */
  5. /*
  6. 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
  7. */
  8. /* 水平间距 */
  9. .control-index {
  10. padding: 30rpx;
  11. }
  12. .control-index .control-off {
  13. background: #fff;
  14. padding: 30rpx;
  15. border-radius: 16rpx;
  16. box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
  17. display: flex;
  18. align-items: center;
  19. }
  20. .control-index .control-off-icon {
  21. width: 80rpx;
  22. height: 80rpx;
  23. background: #08979c;
  24. border-radius: 12rpx;
  25. text-align: center;
  26. line-height: 80rpx;
  27. }
  28. .control-index .control-off-label {
  29. flex: 1;
  30. font-size: 32rpx;
  31. font-weight: 500;
  32. margin-left: 20rpx;
  33. }
  34. .control-index .control-off-btn {
  35. width: 120rpx;
  36. height: 60rpx;
  37. border-radius: 60rpx;
  38. color: #fff;
  39. background: #08979c;
  40. text-align: center;
  41. line-height: 60rpx;
  42. }