| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- @import '../../../../themes/t.cell.scss';
- @import '../../../../themes/page.scss';
- /* module/user/pages/user-certification/user-certification.wxss */
- .page-scroll__container {
- flex: 0 1 auto;
- height: var(--page-container-safeHeight, 100vh);
- --td-loading-color: var(--primary-color);
- }
- .open-button {
- position: relative;
- font-size: 14px;
- &__inner {
- position: absolute;
- top: 0;
- bottom: 0;
- left: var(--td-cell-horizontal-padding, 32rpx);
- right: var(--td-cell-horizontal-padding, 32rpx);
- opacity: 0;
- }
- }
- .privacy-contract-wrapper {
- --td-radio-icon-checked-color: #1D6FF6;
- --td-radio-font-size: 12px;
- --td-radio-icon-size: 20px;
- .privacy-contract {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- padding: 6px var(--td-cell-horizontal-padding, 32rpx);
- font-size: 12px;
- .name {
- // color: var(--primary-color, #38FF6E);
- color: #1D6FF6;
- }
- .no-border {
- display: none;
- }
- }
- .phone-cell {
- color: black !important; // 使用 !important 确保优先级
- .note-class {
- color: black !important; // 确保 note 字体为黑色
- }
- }
|