index.scss 925 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @import "../../../common/common.scss";
  2. .usr-regist-info-container {
  3. .apply-item {
  4. background-color: #fefefe;
  5. border-radius: 10rpx;
  6. width: 100%;
  7. display: flex;
  8. flex-direction: column;
  9. justify-content: flex-start;
  10. align-items: center;
  11. margin-bottom: 20rpx;
  12. box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(0, 0, 0, 0.1);
  13. box-sizing: border-box;
  14. padding: 20rpx;
  15. position: relative;
  16. > view {
  17. width: 100%;
  18. &:not(:last-child){
  19. margin-bottom: 20rpx;
  20. }
  21. }
  22. .apply-item-header {
  23. display: flex;
  24. align-items: center;
  25. justify-content: space-between;
  26. color: #212121;
  27. font-weight: bolder;
  28. }
  29. .apply-item-footer {
  30. display: flex;
  31. align-items: center;
  32. justify-content: space-between;
  33. color: #636363;
  34. font-size: 12px;
  35. }
  36. }
  37. }
  38. page{
  39. background-color: #767a8212;
  40. }