/* 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; } } }