index.scss 901 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. > view {
  16. width: 100%;
  17. &:not(:last-child){
  18. margin-bottom: 20rpx;
  19. }
  20. }
  21. .apply-item-header {
  22. display: flex;
  23. align-items: center;
  24. justify-content: space-between;
  25. color: #212121;
  26. font-weight: bolder;
  27. }
  28. .apply-item-footer {
  29. display: flex;
  30. align-items: center;
  31. justify-content: space-between;
  32. color: #636363;
  33. font-size: 12px;
  34. }
  35. }
  36. }
  37. page{
  38. background-color: #767a8212;
  39. }