随手精灵小程序,单独为了获取WIFI信息加强围栏告警功能能力
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 line
1.1KB

  1. .privacy {
  2. position: fixed;
  3. top: 0;
  4. right: 0;
  5. bottom: 0;
  6. left: 0;
  7. background: rgba(0, 0, 0, .5);
  8. z-index: 9999999;
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .content {
  14. width: 632rpx;
  15. padding: 48rpx;
  16. box-sizing: border-box;
  17. background: #fff;
  18. border-radius: 16rpx;
  19. }
  20. .content .title {
  21. text-align: center;
  22. color: #333;
  23. font-weight: bold;
  24. font-size: 32rpx;
  25. }
  26. .content .des {
  27. font-size: 26rpx;
  28. color: #666;
  29. margin-top: 40rpx;
  30. text-align: justify;
  31. line-height: 1.6;
  32. }
  33. .content .des .link {
  34. color: #07c160;
  35. text-decoration: underline;
  36. }
  37. .btns {
  38. margin-top: 48rpx;
  39. display: flex;
  40. }
  41. .btns .item {
  42. justify-content: space-between;
  43. width: 244rpx;
  44. height: 80rpx;
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. border-radius: 15rpx;
  49. box-sizing: border-box;
  50. border: none;
  51. }
  52. .btns .reject {
  53. background: #f4f4f5;
  54. color: #909399;
  55. }
  56. .btns .agree {
  57. background: #07c160;
  58. color: #fff;
  59. margin-left: 20rpx;
  60. }