index.scss 807 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. }
  26. .apply-item-footer {
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-between;
  30. }
  31. }
  32. }
  33. page{
  34. background-color: #767a8212;
  35. }