security.scss 727 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. page {
  2. background-color: #F2F6F2;
  3. }
  4. .page {
  5. padding: 20rpx;
  6. }
  7. .red{
  8. color: #FF0000 !important;
  9. }
  10. .group {
  11. background-color: #ffffff;
  12. border-radius: 16rpx;
  13. margin-bottom: 20rpx;
  14. padding: 0 30rpx;
  15. .item {
  16. height: 88rpx;
  17. display: flex;
  18. flex-direction: row;
  19. justify-content: space-between;
  20. align-items: center;
  21. border-bottom: 1rpx solid #f5f5f5;
  22. &:last-child {
  23. border-bottom: none;
  24. }
  25. .title {
  26. font-size: 28rpx;
  27. color: #333;
  28. }
  29. .right {
  30. display: flex;
  31. align-items: center;
  32. .value, .action {
  33. font-size: 28rpx;
  34. color: #999;
  35. margin-right: 10rpx;
  36. }
  37. .action {
  38. color: #FF2A95;
  39. }
  40. .arrow {
  41. width: 36rpx;
  42. height: 36rpx;
  43. }
  44. }
  45. }
  46. }