index.wxss 673 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .login-agreement {
  2. position: fixed;
  3. bottom: 80rpx;
  4. left: 110rpx;
  5. }
  6. .popover {
  7. position: relative;
  8. left: -20rpx;
  9. top: -32rpx;
  10. width: 344rpx;
  11. background: rgba(50, 50, 51, 0.9);
  12. border-radius: 8rpx;
  13. text-align: center;
  14. line-height: 68rpx;
  15. font-family: PingFang SC-Regular, PingFang SC;
  16. color: #fff;
  17. }
  18. .popover::after {
  19. position: absolute;
  20. bottom: -12rpx;
  21. left: 20rpx;
  22. content: '';
  23. width: 0;
  24. height: 0;
  25. border-left: 12rpx solid transparent;
  26. border-right: 12rpx solid transparent;
  27. border-top: 12rpx solid rgba(50, 50, 51, 0.9);
  28. }
  29. .label {
  30. line-height: 28rpx;
  31. font-size: 24rpx;
  32. color: #999;
  33. }
  34. .agreement {
  35. color: #060606;
  36. }