infopage.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. .container {
  2. height: 600rpx;
  3. background: linear-gradient($color-pink, $page-background-color);
  4. .top-info {
  5. display: flex;
  6. align-items: center;
  7. margin-top: 10rpx;
  8. .top-avatar {
  9. margin-left: 50rpx;
  10. width: 140rpx;
  11. height: 140rpx;
  12. border-radius: 100%;
  13. border: 6rpx solid #FFF;
  14. box-shadow: 0 10rpx 20rpx rgba(0, 0, 0, 0.2);
  15. }
  16. .top-name {
  17. margin-left: 50rpx;
  18. display: flex;
  19. flex-direction: column;
  20. font-weight: bold;
  21. .name {
  22. color: $color-title;
  23. font-size: 45rpx;
  24. font-weight: bold;
  25. }
  26. .detail {
  27. color: #FFF;
  28. font-size: 32rpx;
  29. font-weight: bold;
  30. }
  31. }
  32. }
  33. //背景大卡片
  34. .card-box {
  35. position: relative;
  36. background-color: #FFF;
  37. top: 50rpx;
  38. left: 50rpx;
  39. border-radius: 50rpx;
  40. width: 750rpx;
  41. height: 100vh;
  42. .i-item {
  43. display: flex;
  44. align-items: center;
  45. margin-left: 35rpx;
  46. }
  47. }
  48. .title-box-name{
  49. margin: 10rpx 0 0 60rpx;
  50. font-size: 35rpx;
  51. font-weight: bold;
  52. color: $color-title;
  53. }
  54. .data-box-item {
  55. display: flex;
  56. flex-direction: column;
  57. margin: 20rpx;
  58. background-color: #FFF;
  59. border-radius: $card-border-radius;
  60. width: 280rpx;
  61. height: 280rpx;
  62. box-shadow: 0 6rpx 10rpx rgba(0, 0, 0, 0.1);
  63. .item-text {
  64. font-weight: bold;
  65. font-size: 30rpx;
  66. line-height: 30rpx;
  67. color: $color-title;
  68. margin-left: 15rpx;
  69. }
  70. .t-icon {
  71. width: 130rpx;
  72. height: 130rpx;
  73. }
  74. .item-number {
  75. font-size: 60rpx;
  76. margin: 20rpx 0 10rpx 30rpx;
  77. color: #FFF;
  78. font-weight: bold;
  79. }
  80. }
  81. .index{
  82. height: 30rpx;
  83. width: 10rpx;
  84. border-radius: 100rpx;
  85. }
  86. .flex{
  87. display: flex;
  88. align-items: center;
  89. margin: 20rpx;
  90. }
  91. }