parentinfo.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .flex_cloumn {
  2. display: flex;
  3. flex-direction: column;
  4. height: 80rpx;
  5. justify-content: space-between;
  6. }
  7. .page_view {
  8. display: flex;
  9. flex-direction: column;
  10. width: 100vw;
  11. height: 100vh;
  12. overflow: hidden;
  13. }
  14. .detail_image {
  15. position: fixed;
  16. width: 100%;
  17. height: 800rpx;
  18. }
  19. .top_info {
  20. display: flex;
  21. align-items: center;
  22. margin-top: 180rpx;
  23. }
  24. .top_info .top_avatar {
  25. margin-left: 50rpx;
  26. width: 140rpx;
  27. height: 140rpx;
  28. border-radius: 100%;
  29. border: 6rpx solid #FFF;
  30. box-shadow: 0 10rpx 20rpx rgba(0, 0, 0, 0.2);
  31. z-index: 55;
  32. }
  33. .top_info .top_name {
  34. margin-left: 50rpx;
  35. height: 130rpx;
  36. display: flex;
  37. flex-direction: column;
  38. justify-content: space-around;
  39. font-weight: bold;
  40. }
  41. .top_info .top_name .name {
  42. color: #303133;
  43. font-size: 45rpx;
  44. font-weight: bold;
  45. z-index: 55;
  46. }
  47. .main_card {
  48. display: flex;
  49. flex-direction: column;
  50. padding: 80rpx 80rpx 200rpx 80rpx;
  51. position: relative;
  52. background-color: #FFF;
  53. top: 80rpx;
  54. left: 50rpx;
  55. border-radius: 50rpx;
  56. height: 1200rpx;
  57. z-index: 55;
  58. }
  59. .main_card .title {
  60. line-height: 32rpx;
  61. font-size: 32rpx;
  62. font-weight: 400;
  63. color: #303133;
  64. }
  65. .main_card .subtitle {
  66. line-height: 28rpx;
  67. font-size: 28rpx;
  68. color: #909399;
  69. font-weight: 400;
  70. }
  71. .main_card .t-icon {
  72. margin-right: 30rpx;
  73. width: 80rpx;
  74. height: 80rpx;
  75. }
  76. .box_title {
  77. line-height: 35rpx;
  78. font-size: 35rpx;
  79. font-weight: bold;
  80. color: #303133;
  81. }
  82. .flex_cloumn_box {
  83. display: flex;
  84. flex-direction: column;
  85. }
  86. .flex_cloumn_box .cloumn_title {
  87. line-height: 35rpx;
  88. font-size: 32rpx;
  89. font-weight: bold;
  90. color: #303133;
  91. }
  92. .card_box {
  93. display: flex;
  94. align-items: center;
  95. flex-wrap: wrap;
  96. }
  97. .card_box .card {
  98. width: 100%;
  99. margin: 10rpx 0 10rpx 0;
  100. padding: 20rpx;
  101. display: flex;
  102. align-items: center;
  103. border: 2rpx solid #f3f4f9;
  104. background-color: #FFFFFF;
  105. border-radius: 12rpx;
  106. z-index: 99;
  107. }
  108. .card_box .card .card_title {
  109. line-height: 34rpx;
  110. font-size: 34rpx;
  111. color: #303133;
  112. }
  113. .card_box .card .card_subtitle {
  114. line-height: 26rpx;
  115. font-size: 26rpx;
  116. color: #909399;
  117. }
  118. .card_box .card .avatar {
  119. width: 100rpx;
  120. height: 100rpx;
  121. }