| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- .login-agreement {
- position: fixed;
- bottom: 80rpx;
- left: 110rpx;
- }
- .popover {
- position: relative;
- left: -20rpx;
- top: -32rpx;
- width: 344rpx;
- background: rgba(50, 50, 51, 0.9);
- border-radius: 8rpx;
- text-align: center;
- line-height: 68rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #fff;
- }
- .popover::after {
- position: absolute;
- bottom: -12rpx;
- left: 20rpx;
- content: '';
- width: 0;
- height: 0;
- border-left: 12rpx solid transparent;
- border-right: 12rpx solid transparent;
- border-top: 12rpx solid rgba(50, 50, 51, 0.9);
- }
- .label {
- line-height: 28rpx;
- font-size: 24rpx;
- color: #999;
- }
- .agreement {
- color: #060606;
- }
|