person.wxss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. @charset "UTF-8";
  2. /* 需要放到文件最上面 */
  3. /* 水平间距 */
  4. /* 水平间距 */
  5. /*
  6. 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
  7. */
  8. /* 水平间距 */
  9. .my-box {
  10. height: 100vh;
  11. background: #fff;
  12. overflow-y: auto;
  13. }
  14. .my-box .my-content {
  15. display: flex;
  16. flex-direction: column;
  17. align-items: center;
  18. padding-bottom: 80rpx;
  19. }
  20. .my-box .my-top {
  21. height: 260rpx;
  22. background-image: url("https://images.unsplash.com/photo-1558591710-4b4a1ae0f04d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwyMDUzMDJ8MHwxfHNlYXJjaHw1fHxhYnN0cmFjdHxlbnwxfHx8fDE2NTI4OTYzNTU&ixlib=rb-1.2.1&q=80&w=1080");
  23. background-position: center center;
  24. background-size: cover;
  25. background-repeat: no-repeat;
  26. width: 100%;
  27. }
  28. .my-box .my-avatar {
  29. width: 200rpx;
  30. height: 200rpx;
  31. border-radius: 50%;
  32. margin-top: -100rpx;
  33. border: 6rpx solid #fff;
  34. }
  35. .my-box .name {
  36. font-size: 20px;
  37. font-weight: 700;
  38. margin: 10rpx 0;
  39. }
  40. .my-box .organization {
  41. color: #8c8c8c;
  42. font-weight: 300;
  43. }
  44. .my-box .btn-box {
  45. box-sizing: border-box;
  46. padding: 30rpx;
  47. width: 100%;
  48. }
  49. .my-box .my-button {
  50. width: 100%;
  51. height: 68rpx;
  52. line-height: 68rpx;
  53. border-radius: 68rpx;
  54. border: 1px solid #08979c;
  55. background: #08979c;
  56. text-align: center;
  57. color: #fff;
  58. }
  59. .my-box .my-button.my-button-cancel {
  60. border-color: #8c8c8c;
  61. color: #8c8c8c;
  62. background: #fff;
  63. }
  64. .my-box .my-house {
  65. width: 100%;
  66. padding: 0 30rpx;
  67. box-sizing: border-box;
  68. }
  69. .my-box .my-house .item {
  70. position: absolute;
  71. bottom: 0;
  72. width: 100%;
  73. height: 56rpx;
  74. background-color: rgba(0, 0, 0, 0.6);
  75. line-height: 56rpx;
  76. font-size: 24rpx;
  77. font-weight: 300;
  78. padding: 0 20rpx;
  79. overflow: hidden;
  80. color: #fff;
  81. }
  82. .my-box .my-house .my-house-title {
  83. font-weight: 500;
  84. margin-bottom: 20rpx;
  85. }