12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .content {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- width: 100vw;
- height: 100vh;
- }
- .content {
- background-color: var(--rgb000);
- padding: 0 2vw;
- overflow-y: auto;
- }
- .content .one {
- margin: 10px 0;
- }
- .content .one .money_scroll_view {
- white-space: nowrap;
- }
- .content .one .money_scroll_view .list {
- display: inline-block;
- margin: 0 10px 0 0;
- background-color: var(--rgbfff);
- padding: 8px;
- border-radius: 5px;
- text-align: center;
- }
- .content .one .money_scroll_view .list .title {
- font-size: 14px;
- font-weight: bold;
- margin: 0 0 10px 0;
- }
- .content .one .money_scroll_view .list .money {
- font-size: 16px;
- font-weight: bold;
- color: var(--rgbffd);
- margin: 0 0 10px 0;
- }
- .content .one .money_scroll_view .list .money .fh {
- font-size: 12px;
- padding: 0 5px 0 0;
- }
- .content .one .money_scroll_view .list .other {
- font-size: 12px;
- font-weight: bold;
- }
- .content .one .money_scroll_view .list:last-child {
- margin: 0;
- }
- .content .one .money_scroll_view .active {
- background-color: var(--rgbfa4);
- }
- .content .two .two_1 {
- margin: 0 0 15px 0;
- }
- .content .two .two_1 button {
- border-radius: 25px;
- color: var(--rgbffd);
- font-family: monospace;
- font-weight: bold;
- }
- .content .agree {
- text-align: center;
- font-size: 12px;
- margin: 0 0 2vw 0;
- color: var(--rgbfff);
- }
|