my.scss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .my{
  2. background: url(https://www.icelook.cn/exhibition/images/page/bg2.png) no-repeat;
  3. background-size: cover;
  4. height: 100vh;
  5. }
  6. .title{
  7. width: 100%;
  8. padding-bottom: 20rpx;
  9. .titles{
  10. text-align: center;
  11. font-size: 36rpx;
  12. font-family: Georgia, 'Times New Roman', Times, serif;
  13. font-weight: bold;
  14. padding-top: 10rpx;
  15. }
  16. .back{
  17. position: absolute;
  18. left: 30rpx;
  19. width: 80rpx;
  20. height: 35rpx;
  21. image{
  22. width: 18rpx;
  23. height: 100%;
  24. }
  25. }
  26. }
  27. .login{
  28. display: flex;
  29. padding-top: 40rpx;
  30. padding-left: 40rpx;
  31. align-items: center;
  32. image{
  33. width: 108rpx;
  34. height: 108rpx;
  35. }
  36. span{
  37. font-size: 36rpx;
  38. color: #1A1A1A;
  39. font-family: monospace;
  40. font-weight: bold;
  41. padding-left: 30rpx;
  42. }
  43. }
  44. .my_list{
  45. position: fixed;
  46. bottom: 0;
  47. width: calc(100% - 60rpx);
  48. height: 70vh;
  49. background: #FDFAF3;
  50. border-top-left-radius: 30rpx;
  51. border-top-right-radius: 30rpx;
  52. padding:0 30rpx;
  53. padding-top: 50rpx;
  54. .item{
  55. border-bottom: 1px solid rgba(149, 64, 36, 0.3);
  56. height: 100rpx;
  57. line-height: 100rpx;
  58. position: relative;
  59. &:after{
  60. content: '';
  61. position: absolute;
  62. top:30rpx;
  63. right: 0;
  64. display: block;
  65. width: 40rpx;
  66. height: 40rpx;
  67. background: url(https://www.icelook.cn/exhibition/images/icon/mback.png) no-repeat;
  68. background-size: cover;
  69. }
  70. image{
  71. width: 48rpx;
  72. height: 48rpx;
  73. vertical-align:sub;
  74. }
  75. text{
  76. padding-left: 30rpx;
  77. }
  78. }
  79. }