InputIsbn.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @charset "UTF-8";
  2. /**
  3. * 主题色配置
  4. * 默认在 uni.scss 全局引入:@import '@/theme.scss';
  5. * <script> 下使用主题变量:import x from '@/theme.scss';
  6. */
  7. .page {
  8. background-color: #f8f8f8;
  9. font-family: PingFangSC;
  10. }
  11. .safeAreaPad {
  12. padding-bottom: constant(safe-area-inset-bottom);
  13. padding-bottom: env(safe-area-inset-bottom);
  14. box-sizing: content-box;
  15. }
  16. .popup-content {
  17. text-align: center;
  18. padding: 40rpx;
  19. }
  20. .popup-content .desc-text {
  21. font-family: PingFang SC;
  22. font-weight: 400;
  23. font-size: 26rpx;
  24. color: #333333;
  25. margin: 20rpx 0;
  26. }
  27. .popup-content .popup-title {
  28. font-family: PingFang SC;
  29. font-weight: bold;
  30. font-size: 32rpx;
  31. color: #38C148;
  32. }
  33. .popup-content .buttons {
  34. display: flex;
  35. justify-content: space-between;
  36. margin-top: 20px;
  37. gap: 30rpx;
  38. }
  39. .popup-content .buttons button {
  40. flex: 1;
  41. height: 80rpx;
  42. line-height: 80rpx;
  43. font-size: 32rpx;
  44. border-radius: 10rpx;
  45. border: none;
  46. }
  47. .popup-content .buttons button:first-child {
  48. background-color: #F5F5F5;
  49. color: #333333;
  50. }
  51. .popup-content .buttons button:last-child {
  52. background-color: #38C148;
  53. color: #FFFFFF;
  54. }