123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* components/w-dialog/index.wxss */
- .dialog-section {
- width: 532rpx;
- // background: linear-gradient(180deg, #FFDEE7 0%, #FFFFFF 19%, #FFFFFF 100%);
- // border-radius: 20rpx;
- box-sizing: border-box;
- .dialog-title {
- text-align: center;
- font-weight: 600;
- font-size: 34rpx;
- color: #333;
- line-height: 1;
- padding-top: 36rpx;
- &.default {
- text-align: left;
- padding: 36rpx 36rpx 0;
- display: flex;
- align-items: center;
- &::before {
- content: '';
- display: inline-block;
- width: 8rpx;
- height: 28rpx;
- background: linear-gradient(to bottom, #259CFE, #44C9FF);
- border-radius: 8rpx;
- margin-right: 12rpx;
- }
- }
- }
-
- .dialog-content {
- padding: 36rpx 36rpx 40rpx;
- font-size: 30rpx;
- color: #777777;
- line-height: 42rpx;
- }
- .center {
- text-align: center;
- }
- .left {
- text-align: left;
- }
- .right {
- text-align: right;
- }
- .dialog-btn-group--theme {
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 0 24rpx 40rpx;
- .btn {
- flex: 1;
- text-align: center;
- line-height: 80rpx;
- background: #FFFFFF;
- border-radius: 40px;
- border: 2rpx solid #DBDBDB;
- font-size: 32rpx;
- color: #333333;
- font-weight: 500;
- box-sizing: content-box;
- max-width: 316rpx;
- & + .btn {
- margin-left: 24rpx;
- }
- }
- .del-btn {
- border: none;
- color: #FFFFFF;
- background: linear-gradient( 90deg, #44C9FF 0%, #259CFE 100%), #EFEFEF;
- }
- }
- .dialog-btn-group {
- display: flex;
- align-items: center;
- border-top: 2rpx solid #F2F2F2;
- .btn {
- flex: 1;
- text-align: center;
- line-height: 92rpx;
- font-size: 32rpx;
- color: #777777;
- font-weight: 500;
- }
- .del-btn {
- border-left: 2rpx solid #F2F2F2;
- color: #1CACF1;
- }
- }
- }
|