popup-user-auth.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* components/popup-user-auth/popup-user-auth.wxss */
  2. @import "../../themes/t.scss";
  3. @import "../../themes/button.scss";
  4. .popup {
  5. &__header {
  6. padding: 12px;
  7. font-size: 18px;
  8. text-align: center;
  9. }
  10. &__content {
  11. padding: 0 12px;
  12. }
  13. }
  14. .user-auth-form {
  15. .open-button {
  16. position: relative;
  17. font-size: 14px;
  18. &__inner {
  19. position: absolute;
  20. top: 0;
  21. bottom: 0;
  22. left: var(--td-cell-horizontal-padding, 32rpx);
  23. right: var(--td-cell-horizontal-padding, 32rpx);
  24. opacity: 0;
  25. }
  26. }
  27. .privacy-contract-wrapper {
  28. --td-radio-icon-checked-color: #1D6FF6;
  29. --td-radio-font-size: 12px;
  30. --td-radio-icon-size: 20px;
  31. .privacy-contract {
  32. display: flex;
  33. flex-direction: row;
  34. align-items: center;
  35. }
  36. padding: 6px var(--td-cell-horizontal-padding, 32rpx);
  37. font-size: 12px;
  38. .name {
  39. // color: var(--primary-color, #38FF6E);
  40. color: #1D6FF6;
  41. }
  42. .no-border {
  43. display: none;
  44. }
  45. }
  46. }
  47. .phone-cell {
  48. color: black !important; // 使用 !important 确保优先级
  49. .note-class {
  50. color: black !important; // 确保 note 字体为黑色
  51. }
  52. }