|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /* pages/scout/scout.wxss */
- .content{
- position: absolute;
- bottom: 0;
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: center;
- }
- .bg{
- width: 100%;
- height: 650rpx;
- }
- .reward{
- width: 602rpx;
- height: 548rpx;
- margin: 43rpx auto 0 auto;
- }
- .btn{
- text-align: center;
- width: 654rpx;
- height: 58rpx;
- line-height: 58rpx;
- font-size: 30rpx;
- color: #ffffff;
- border-radius: 15rpx;
- background-color: #2a558d;
- margin: 20rpx auto 40rpx auto;
- }
- .btn2{
- text-align: center;
- width: 100%;
- height: 100%;
- background-color: #2a558d;
- margin: -58rpx auto 0rpx auto;
- opacity:0;
- }
- .mask {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: rgba(0, 0, 0, 0.5);
- }
- .tipContent{
- position: relative;
- width: 560rpx;
- height: 403rpx;
- border-radius: 15rpx;
- background-color: #ffffff;
- }
- .tipContent>.title{
- width: 100%;
- height: 78rpx;
- line-height: 78rpx;
- color: #ffffff;
- font-size: 33rpx;
- font-weight: bold;
- text-align: center;
- border-top-left-radius: 15rpx;
- border-top-right-radius: 15rpx;
- background-color: #2a558d;
- }
- .tipContent>.txt{
- width: 400rpx;
- height: 181rpx;
- margin: 70rpx auto 0 auto;
- }
- .closeBtn {
- color: #ffffff;
- border-radius: 50%;
- text-align: center;
- height: 40rpx;
- line-height: 40rpx;
- width: 40rpx;
- font-size: 30rpx;
- padding: 2rpx;
- position: absolute;
- border: 2rpx solid #fff;
- }
-
- /* use cross as close button */
-
- .closeBtn::before {
- content: "\2716";
- }
|