1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .A3selectDay {
- :global {
- .A3main {
- padding: 6% 0;
- height: calc(100% - 60px);
- .A3list {
- width: 100%;
- height: calc(100% - 80px);
- margin-bottom: 20px;
- & > div {
- height: 100%;
- overflow-y: auto;
- background-color: #fffaf3;
- .A3row {
- &:nth-of-type(2n) {
- background-color: #fff;
- }
- width: 100%;
- height: 150px;
- padding: 24px;
- .A3R1 {
- color: var(--themeColor);
- font-size: 18px;
- font-weight: 700;
- margin-bottom: 15px;
- }
- .A3R2 {
- display: flex;
- & > div {
- margin-right: 14px;
- width: 130px;
- height: 60px;
- border-radius: 4px;
- border: 1px solid #d9d9d9;
- color: #303030;
- font-size: 18px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .A3ac {
- background-color: var(--themeColor);
- color: #fff;
- }
- .A3no {
- background-color: #d9d9d9;
- pointer-events: none;
- color: #aeaeae;
- }
- }
- }
- }
- }
- }
- .A3mainNoBtn {
- #ZFlooBtn {
- background-color: #d9d9d9;
- pointer-events: none;
- color: #aeaeae;
- }
- }
- }
- }
|