childinfo.wxss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .flex-column {
  2. height: 80rpx;
  3. justify-content: space-between;
  4. }
  5. .detail-image {
  6. position: fixed;
  7. width: 100%;
  8. height: 800rpx;
  9. }
  10. .top-info {
  11. display: flex;
  12. align-items: center;
  13. margin-top: 180rpx;
  14. }
  15. .top-info .avatar {
  16. margin-left: 50rpx;
  17. width: 140rpx;
  18. height: 140rpx;
  19. border-radius: 100%;
  20. border: 6rpx solid #FFF;
  21. box-shadow: 0 10rpx 20rpx rgba(0, 0, 0, 0.2);
  22. z-index: 55;
  23. }
  24. .top-info .top-name {
  25. margin-left: 50rpx;
  26. height: 130rpx;
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: space-around;
  30. font-weight: bold;
  31. }
  32. .top-info .top-name .name {
  33. color: #303133;
  34. font-size: 45rpx;
  35. font-weight: bold;
  36. z-index: 55;
  37. }
  38. .top-info .top-name .t-icon {
  39. width: 32rpx;
  40. height: 32rpx;
  41. margin-right: 5rpx;
  42. }
  43. .main-card {
  44. display: flex;
  45. flex-direction: column;
  46. padding: 80rpx 80rpx 0 80rpx;
  47. position: relative;
  48. background-color: #FFF;
  49. height: 100%;
  50. top: 80rpx;
  51. left: 50rpx;
  52. border-radius: 50rpx;
  53. border-bottom-left-radius: 0;
  54. z-index: 55;
  55. }
  56. .main-card .title {
  57. line-height: 32rpx;
  58. font-size: 32rpx;
  59. font-weight: 400;
  60. color: #303133;
  61. }
  62. .main-card .subtitle {
  63. line-height: 28rpx;
  64. font-size: 28rpx;
  65. color: #909399;
  66. font-weight: 400;
  67. }
  68. .main-card .t-icon {
  69. margin-right: 30rpx;
  70. width: 80rpx;
  71. height: 80rpx;
  72. }
  73. .box_title {
  74. line-height: 35rpx;
  75. font-size: 35rpx;
  76. font-weight: bold;
  77. color: #303133;
  78. }
  79. .flex-column-box {
  80. display: flex;
  81. flex-direction: column;
  82. }
  83. .flex-column-box .column-title {
  84. line-height: 35rpx;
  85. font-size: 32rpx;
  86. font-weight: bold;
  87. color: #303133;
  88. }
  89. .tag-fill {
  90. background-color: #d8deff;
  91. width: -webkit-fit-content;
  92. width: fit-content;
  93. z-index: 99;
  94. }