123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /* component/popup.wxss */
- .wx-popup {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100vh;
- background: rgba(0, 0, 0, 0.5);
- z-index: 100000;
- display: flex;
- align-items: center;
- justify-content: center;
- /* margin-top: 50%;
- transform: translateY(-30%); */
- }
- .popup-wap {
- width: 163%;
- max-width: 600rpx;
- /* margin-top: 50%;
- margin-left: 50%;
- transform: translateX(-50%); */
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- }
- .popup-container {
- /* position: absolute;
- left: 50%;
- top: 50%; */
- width: 163%;
- max-width: 600rpx;
- border: 2rpx solid #ccc;
- border-radius: 20rpx;
- box-sizing: bordre-box;
- /* transform: translate(-50%, -50%); */
- overflow: hidden;
- background: #fff;
- margin-top: 50rpx;
- }
- .wx-popup-title {
- background: #eaf4ff;
- border-radius: 20rpx 20rpx 0px 0px;
- height: 91rpx;
- font-size: 30rpx;
- font-weight: 700;
- text-align: center;
- color: #398de8;
- line-height: 91rpx;
- }
- .wx-popup-con {
- text-align: center;
- font-size: 27rpx;
- width: 80%;
- margin: auto auto 40rpx auto;
- }
- .wx-popup-conone {
- display: flex;
- flex-flow: column-reverse;
- justify-content: center;
- align-items: center;
- font-size: 32rpx;
- font-weight: 400;
- text-align: center;
- color: #3f454e;
- }
- .wx-popup-btn {
- display: flex;
- justify-content: space-around;
- align-items: center;
- height: 155rpx;
- /* border-top: 1px solid #e6e6e6; */
- }
- .wx-popup-center-btn {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 155rpx;
- border-top: 1px solid #e6e6e6;
- }
- .wx-popup-center-btn text {
- width: 240rpx;
- height: 72rpx;
- background-color: #ffdc2f;
- line-height: 72rpx;
- border-radius: 35rpx;
- text-align: center;
- font-size: 32rpx;
- font-weight: 400;
- color: #333333;
- }
- .wx-popup-btn text:first-child {
- width: 185rpx;
- height: 72rpx;
- line-height: 72rpx;
- background-color: #c5dbff;
- border-radius: 35rpx;
- text-align: center;
- font-size: 32rpx;
- font-weight: 400;
- color: #2b58a5;
- border: 1rpx solid #2b58a5;
- }
- .wx-popup-btn text:last-child {
- width: 240rpx;
- height: 72rpx;
- line-height: 72rpx;
- border: 1px solid #2b58a5;
- border-radius: 37rpx;
- text-align: center;
- font-size: 32rpx;
- font-weight: 400;
- background: #2b58a5;
- color: #ffffff;
- }
- .img {
- width: 150rpx;
- height: 120rpx;
- }
- .popup-close {
- width: 54rpx;
- height: 54rpx;
- }
|