1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /* pages/demo/demo.wxss */
- /* 弹窗 */
- .pop_root {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- background: rgb(0, 0, 0, 0.6);
- z-index: 1000;
- }
- .pop_content {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- background: white;
- display: flex;
- flex-direction: column;
- align-items: center;
- border-radius: 30rpx 30rpx 0 0;
- }
- .pot_tip {
- font-size: 48rpx;
- margin-top: 30rpx;
- }
- .pop_avatar {
- width: 200rpx;
- height: 200rpx;
- border-radius: 50%;
- background: gainsboro;
- font-size: 35rpx;
- display: flex;
- flex-direction: center;
- align-items: center;
- margin: 30rpx;
- padding: 0;
- }
- .pop_img {
- width: 100%;
- height: 100%;
- }
- .pop_name {
- width: 400rpx;
- bottom: 1px solid gray;
- border-radius: 25rpx;
- padding-left: 160rpx;
- margin-bottom: 50rpx;
- }
- .pop_bot {
- display: flex;
- margin-bottom: 50rpx;
- }
- .btn {
- width: 150rpx;
- border: 1px solid gray;
- border-radius: 20rpx;
- text-align: center;
- background: red;
- color: white;
- }
- .btn1 {
- width: 150rpx;
- border: 1px solid gray;
- border-radius: 20rpx;
- text-align: center;
- background: green;
- color: white;
- margin-left: 90rpx;
- }
|