security.scss 693 B

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