123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- .container{
- padding: 0;
- }
- .c_bg{
- position: fixed;
- left: 0;
- top: 0;
- height: 100%;
- z-index: -1;
- width: 100%;
- }
- .btn_con{
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- color: #fff;
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- font-size: 34rpx;
- }
- .btn_con .use{
- width: 220rpx;
- height: 220rpx;
- border-radius: 50%;
- background: #ff8512;
- overflow: hidden;
- display: flex;
- justify-content: center;
- align-items: center;
- box-shadow: 0 0 12rpx rgba(0, 0, 0, 0.5);
- margin: 40rpx 0;
- }
- .body{
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- position: fixed;
- z-index: 9999;
- display: flex;
- left: 0;
- top: 0;
- }
- .modalDlg{
- width: 80%;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%,-50%);
- z-index: 9999;
- background-color: #fff;
- border-radius: 4rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 28rpx 28rpx 40rpx;
- }
- .windowRow{
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- height: 100rpx;
- width: 100%;
- box-sizing: border-box;
- }
- .back{
- text-align: center;
- color: rgba(0, 0, 0, 0.5);
- font-size: 28rpx;
- }
- .userTitle{
- font-size: 32rpx;
- }
- .wishName{
- width: 100%;
- justify-content: center;
- flex-direction: row;
- display: flex;
- margin-bottom: 20rpx;
- }
- .wish_put{
- width: 80%;
- border: 1px solid rgba(0, 0, 0, 0.1);
- padding-left: 10rpx;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 28rpx;
- margin-bottom: 28rpx;
- }
- .wishbnt{
- width: 100%;
- font-size: 30rpx;
- }
- .wishbnt .wishbnt_bt{
- background-color: #ff8512;
- color: #fbf1e8;
- font-size: 30rpx;
- border: 0;
- line-height: 40rpx;
- width: 40%!important;
- }
|