| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .container {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-content: center;
- align-items: center;
- .top-view {
- position: sticky;
- top: 0;
- z-index: 999;
- width: 100%;
- }
- &__content {
- width: 100%;
- }
- &__notify {
- width: 95%;
- height: 30px;
- color: #666;
- font-size: 14px;
- margin-top: 10px;
- }
- &__button-view {
- border-radius: 10px;
- width: 95%;
- padding-top: 15px;
- display: flex;
- flex-direction: row;
- align-content: center;
- align-items: center;
- justify-content: space-between;
- van-button {
- width: 45%;
- }
- }
- }
|