123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /* comps/toast/toast.wxss */
- .toast_content_box {
- display: flex;
- width: 100%;
- justify-content: center;
- align-items: center;
- position: fixed;
- z-index: 999;
- top: 0;
- left: 0;
- }
- .toast_content {
- width: 80%;
- padding: 30rpx;
- border-radius: 10rpx;
- height: 88rpx;
- box-sizing: border-box;
- overflow: hidden;
- box-shadow: 0 8rpx 16rpx #BABABA;
- background-color: #fff;
- }
- .toast_content_border {
- width: 0px;
- height: 80rpx;
- border: 4rpx solid #CE3918;
- position: relative;
- left: -30rpx;
- top: -30rpx;
- }
- .toast_success {
- border: 4rpx solid #179F52;
- }
- .toast_content_icon {
- width: 30rpx;
- height: 30rpx;
- position: relative;
- top: -96rpx;
- }
- .toast_icon_img {
- width: 30rpx;
- height: 30rpx;
- }
- .toast_content_text {
- height: 100%;
- width: 100%;
- color: #000;
- font-size: 28rpx;
- text-align: center;
- /* display: ; */
- float: right;
- position: absolute;
- top: 0;
- line-height: 88rpx;
- text-align: left;
- padding-left: 50rpx;
- }
- .alert_content {
- width: 80%;
- border-radius: 10rpx;
- height: 200rpx;
- box-sizing: border-box;
- overflow: hidden;
- box-shadow: 0 8rpx 16rpx #BABABA;
- background-color: #fff;
- position: relative;
- overflow: hidden;
- }
- .alert_text {
- padding: 20rpx;
- font-size: 16px;
- }
- .alert_btn_container {
- width: 100%;
- height: 80rpx;
- display: flex;
- position: absolute;
- bottom: 0;
- }
- .alert_btn {
- flex: 1;
- border-radius: 0;
- color: #fff;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 16px;
- }
- .agree {
- border: 1px solid #13b32e;
- background: #13b32e;
- }
- .refuse {
- border: 1px solid #ec4646;
- background: #ec4646;
- }
|