| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* 弹窗 */
- .p_mask_bottom {
- align-items: flex-end;
- }
- .p_dialog {
- background: #FFFFFF;
- border-radius: 24upx 24upx 0px 0px;
- width: 100%;
- }
- .p_dialog_center {
- width: 600upx;
- border-radius: 24upx;
- }
- .p_dialog_tit {
- position: relative;
- padding: 40upx 30upx 30upx;
- }
- .p_dialog_tit_val {
- font-size: 36upx;
- font-weight: 500;
- color: #000000;
- }
- .p_dialog_cha {
- width: 26upx;
- height: 26upx;
- position: absolute;
- top: 0;
- bottom: 0;
- right: 30upx;
- margin: auto 0;
- }
- .p_dialog_inner {
- max-height: 800upx;
- min-height: 100upx;
- }
- .p_dialog_center .p_dialog_inner {
- max-height: 500upx;
- }
- .p_dialog_btn_list {
- padding: 20upx 30upx 20upx;
- }
- .p_dialog_btn {
- width: 100%;
- height: 90upx;
- background: #FFFFFF;
- border-radius: 50px;
- font-size: 34upx;
- }
- .p_dialog_btn:last-child:not(:first-child) {
- margin-left: 20upx;
- }
- .p_dialog_btn::after,
- .p_dialog_btn::before {
- border-color: #ccc;
- border-radius: 12upx;
- }
- .p_dialog_longbtn {
- height: 90upx;
- font-size: 34upx;
- }
- .p_border::after,
- .p_border::before {
- border-radius: 50px;
- }
|