index.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. @import "../../../common/common.scss";
  2. .fui-wrap {
  3. width: 100%;
  4. height: 100%;
  5. display: flex;
  6. flex-direction: column;
  7. justify-content: top;
  8. background-color: #79797938;
  9. .user-info-bg {
  10. width: 100%;
  11. height: 100rpx;
  12. background-color: #005598;
  13. }
  14. .ctl-container {
  15. margin-top: -70rpx;
  16. z-index: 1;
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: flex-start;
  20. align-items: center;
  21. >view{
  22. width: 90%;
  23. padding: 20rpx 20rpx;
  24. background-color: #fefefe;
  25. box-sizing: border-box;
  26. border-radius: 20rpx;
  27. &:not(:first-child){
  28. margin-top: 40rpx;
  29. }
  30. }
  31. .user-info-content {
  32. height: 200rpx;
  33. display: flex;
  34. align-items: center;
  35. justify-content: flex-start;
  36. .user-info{
  37. height: 100%;
  38. display: flex;
  39. flex-direction: column;
  40. align-items: flex-start;
  41. justify-content: space-around;
  42. margin-left: 20rpx;
  43. }
  44. }
  45. .ctl-panel{
  46. height: auto;
  47. }
  48. }
  49. }
  50. page {
  51. height: 100%;
  52. }