123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /* component/popup.wxss */
- .wx-popup {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.5);
- }
- .popup-container {
- position: absolute;
- left: 52%;
- /* top: 80%; */
- bottom: 232rpx;
- width: 163%;
- max-width: 600rpx;
- border: 2rpx solid #ccc;
- border-radius: 10rpx;
- box-sizing: bordre-box;
- transform: translate(-50%, -50%);
- overflow: hidden;
- background: #fff;
- }
- .wx-popup-title {
- width: 100%;
- font-size: 33rpx;
- padding-top: 10rpx;
- padding-bottom: 10rpx;
- padding-left: 19rpx;
- background: #f5f5f5;
- color: #272727;
- }
- .wx-popup-con {
- text-align: center;
- font-size: 27rpx;
- width: 80%;
- margin: auto auto 40rpx auto;
- }
- .wx-popup-conone {
- /* margin: 27rpx 10rpx; */
- text-align: center;
- margin-top: 33rpx;
- }
- .wx-popup-btn {
- display: flex;
- justify-content: space-around;
- margin-bottom: 40rpx;
- }
- .wx-popup-btn text:first-child {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 30%;
- height: 55rpx;
- border-radius: 48rpx;
- background: #F0F0F0;
- color: #323232;
- font-size: 28rpx;
- }
- .wx-popup-btn text:last-child {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 30%;
- height: 55rpx;
- border-radius: 48rpx;
- background: #33BCB2;
- color: white;
- font-size: 28rpx;
- }
- .img {
- width: 150rpx;
- height: 120rpx;
- }
|