| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .main_box {
- width: 100%;
- height: 100%;
- padding: 30rpx;
- box-sizing: border-box;
- padding-bottom: 210rpx;
- overflow: auto;
- }
- .make_msg_box {
- width: 100%;
- padding: 30rpx 0rpx 40rpx 0rpx;
- box-sizing: border-box;
- background: white;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- border-radius: 24rpx;
- }
- .make_msg_box .success_icon {
- width: 120rpx;
- height: 120rpx;
- margin-bottom: 30rpx;
- }
- .make_msg_box .title {
- text-align: center;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333;
- text-align: left;
- }
- .tips {
- padding: 40rpx 30rpx;
- box-shadow: 0px 0px 40rpx 0px rgba(0, 0, 0, 0.06);
- border-radius: 24rpx;
- margin-top: 30rpx;
- background-color: #fff;
- }
- .tips_name{
- font-size: 30rpx;
- color: rgba(85, 85, 85, 1);
- line-height: 44rpx;
- text-align: justify;
- }
- .btn_list {
- height: 100rpx;
- display: flex;
- position: fixed;
- width: 100%;
- left: 0;
- bottom: 0;
- }
- .btn_item {
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 36rpx;
- font-weight: 500;
- color: rgba(166, 166, 166, 1);
- background-color: #fff;
- width: 50%;
- }
- .btn_item_width100{
- width: 100%;
- }
|