my.wxss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* pages/my/my.wxss */
  2. .my {
  3. display: flex;
  4. flex-direction: column;
  5. justify-content: center;
  6. align-items: center;
  7. }
  8. .my-header {
  9. width: 100%;
  10. }
  11. .my-header van-icon:nth-child(1) {
  12. background-color: #f8f8f8;
  13. padding: 15px;
  14. border-radius: 50%;
  15. margin-right: 10px;
  16. }
  17. .my-closeLogin {
  18. margin-top: 50px;
  19. width: 100%;
  20. text-align: center;
  21. color: #409eff;
  22. }
  23. .my .my-body {
  24. width: 640rpx;
  25. height: 170px;
  26. padding: 25rpx;
  27. /* border: 1px solid #cfcfcf; */
  28. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  29. margin-top: 20px;
  30. border-radius: 20px;
  31. }
  32. .my-body > text {
  33. font-size: 14px;
  34. font-weight: 600;
  35. }
  36. .teacher-detail {
  37. display: flex;
  38. flex-direction: column;
  39. justify-content: flex-start;
  40. align-items: flex-start;
  41. width: 240rpx;
  42. height: 110px;
  43. border: 1px solid #e4e4e4;
  44. /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04); */
  45. margin-top: 20rpx;
  46. margin-left: 20rpx;
  47. border-radius: 10px;
  48. padding: 10px;
  49. }
  50. .teacher-detail van-icon {
  51. background-color: #f8f8f8;
  52. padding: 10px;
  53. border-radius: 50%;
  54. margin-bottom: 10px;
  55. }
  56. .teacher-detail text {
  57. font-size: 12px;
  58. width: 240rpx;
  59. overflow: hidden;
  60. text-overflow: ellipsis;
  61. white-space: nowrap;
  62. }
  63. .attr-cell {
  64. width: 100%;
  65. margin-top: 20px;
  66. }
  67. .dialog-content {
  68. position: relative;
  69. display: flex;
  70. flex-direction: column;
  71. align-items: center;
  72. justify-content: flex-start;
  73. height: 100px;
  74. padding: 20px 0;
  75. padding-bottom: 40px;
  76. }
  77. .dialog-content text {
  78. margin: 20rpx 0;
  79. font-size: 14px;
  80. margin-top: 20px;
  81. }
  82. .dialog-content .btn-phone {
  83. border-radius: 5px;
  84. height: 30px;
  85. margin-top: 10px;
  86. }
  87. .dialog-content .close {
  88. position: absolute;
  89. right: 25px;
  90. top: 15px;
  91. }