123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- .image {
- display: flex;
- width: 64px;
- height: 64px;
- margin-top: 20px;
- }
- .container {
- background: #F4F5F9;
- background-repeat: no-repeat;
- background-size: cover;
- width: 100vw;
- height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- box-sizing: border-box;
- }
- .container .title {
- position: relative;
- width: 100vw;
- font-size: 18px;
- color: #000000;
- letter-spacing: 0;
- text-align: center;
- line-height: 28px;
- font-weight: 600;
- background: #FFFFFF;
- margin-top: 3.8vh;
- padding: 1.2vh 0;
- }
- .btn-goback {
- position: absolute;
- left: 2vw;
- top: 1.2vh;
- width: 8vw;
- height: 8vw;
- z-index: 9;
- }
- .container .main {
- padding: 30px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .container .main text {
- text-align: left;
- font-family: PingFangSC-Regular;
- font-size: 14px;
- color: #999999;
- letter-spacing: 0;
- }
- .container .main .account {
- padding: 20px 0;
- color: #999999;
- }
- .container .main button {
- width: 100%;
- background: #006eff;
- }
- .mask {
- position: fixed;
- top: 0;
- /* #ifdef H5 */
- top: calc(88rpx + constant(safe-area-inset-top));
- top: calc(88rpx + env(safe-area-inset-top));
- /* #endif */
- left: 0;
- z-index: 10;
- width: 100vw;
- height: 100vh;
- display: flex;
- justify-content: center;
- align-items: flex-end;
- background: rgba(0, 0, 0, 0.3);
- }
- .popup {
- background: #ffffff;
- width: 100%;
- overflow: hidden;
- }
- .popup-main {
- height: 56px;
- padding: 60rpx 0;
- text-align: center;
- font-family: PingFangSC-Regular;
- font-size: 14px;
- color: #999999;
- letter-spacing: 0;
- text-align: center;
- line-height: 18px;
- }
- .popup-footer {
- display: flex;
- }
- .popup-footer button {
- flex: 1;
- }
- .popup-footer .cancel {
- font-family: PingFangSC-Regular;
- font-size: 16px;
- color: #000000;
- letter-spacing: 0;
- text-align: center;
- line-height: 22px;
- }
- .popup-footer .submit {
- font-family: PingFangSC-Regular;
- font-size: 16px;
- color: #E85454;
- letter-spacing: 0;
- text-align: center;
- line-height: 22px;
- height: 56px;
- }
- .cancellation {
- margin-top: 68px;
- margin-left: 20px;
- margin-right: 20px;
- background-color: white;
- width: 280px;
- height: 46px;
- border: 1px solid #E85454;
- border-radius: 24px;
- border-radius: 24px;
- }
- .confirm-cancellation {
- margin-left: 110px;
- margin-top: 13px;
- font-family: PingFangSC-Regular;
- font-size: 16px;
- color: #E85454;
- letter-spacing: 0;
- }
|