myWork.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* pages/myWork/myWork.wxss */
  2. .myWork{
  3. padding: 0 25rpx;
  4. /* height: 100vh; */
  5. }
  6. .head{
  7. background-color: var(--themeColor);
  8. text-align: center;
  9. line-height: 80rpx;
  10. color: #ffffff;
  11. font-weight: bolder;
  12. border-radius: 10rpx;
  13. }
  14. .main{
  15. flex: 1;
  16. overflow-y: hidden;
  17. /* height: calc(100vh - 300rpx); */
  18. box-sizing: border-box;
  19. }
  20. .head_left{
  21. color: var(--themeColor);
  22. font-weight: bold;
  23. }
  24. .content_item{
  25. margin: 5px 0;
  26. color: var(--themeColor);
  27. }
  28. .card_body{
  29. position: relative;
  30. }
  31. .price{
  32. position: absolute;
  33. bottom: 0px;
  34. right: 10px;
  35. color: red;
  36. }
  37. .img_item{
  38. width: 100px;
  39. height: 100px;
  40. }
  41. .workData{
  42. border-radius: 10px;
  43. border: 1px solid var(--themeColor);
  44. padding: 0 10px;
  45. margin: 5px 0;
  46. color: var(--themeColor);
  47. }
  48. .workData_head{
  49. display: flex;
  50. align-items: center;
  51. justify-content: space-between;
  52. padding: 10px 0;
  53. }
  54. .workData_head_left{
  55. display: flex;
  56. align-items: center;
  57. font-weight: bold;
  58. font-size: 16px;
  59. }
  60. .workData_head_right{
  61. font-size: 14px;
  62. color: #767676;
  63. }
  64. .workData_content{
  65. display: flex;
  66. align-items: center;
  67. justify-content: space-between;
  68. padding: 0 0 10px 0;
  69. font-size: 14px;
  70. }
  71. .workData_foot{
  72. display: flex;
  73. flex-direction: row-reverse;
  74. padding: 0 0 10px 0;
  75. }
  76. .btns{
  77. display: flex;
  78. align-items: center;
  79. }
  80. .btn_item{
  81. margin-left: 10px;
  82. }