viplist.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* pages/kabaw/viplist.wxss */
  2. page{
  3. background: #e3e3e3;
  4. }
  5. .main{
  6. width: 80vw;
  7. height: auto;
  8. margin: 5vw 10vw;
  9. }
  10. .main .cardlist{
  11. width:80vw;
  12. height: auto;
  13. }
  14. .cardlist .cardbox{
  15. width: 100%;
  16. height: 165px;
  17. margin-top: 20px;
  18. border-bottom: 1px solid #eee;
  19. }
  20. .cardbox .name{
  21. width: 100%;
  22. height: 50px;
  23. line-height: 50px;
  24. font-size: 20px;
  25. font-weight: 500;
  26. }
  27. .cardbox .cardimg{
  28. width: 100%;
  29. height: 100px;
  30. position: relative;
  31. }
  32. .cardimg .bg{
  33. width: 100%;
  34. height: 100px;
  35. background: #bbb;
  36. border-radius: 5px;
  37. }
  38. .cardimg .title{
  39. width: 100%;
  40. height: 40px;
  41. line-height: 40px;
  42. text-indent: 20px;
  43. position: absolute;
  44. font-size: 22px;
  45. font-weight: 500;
  46. top: 20px;
  47. left: 0;
  48. color: #fff;
  49. }
  50. .cardimg .txt{
  51. width: 100%;
  52. height: 20px;
  53. line-height: 20px;
  54. text-indent: 20px;
  55. position: absolute;
  56. bottom: 20px;
  57. font-size: 16px;
  58. left: 0;
  59. color: #fff;
  60. }
  61. .main .more{
  62. width: 80vw;
  63. height: 40px;
  64. display: flex;
  65. justify-content: center;
  66. background: #fff;
  67. /* border: 1px solid #bbb; */
  68. margin-top: 20px;
  69. background:rgba(15,40,98,1);
  70. border-radius: 40px;
  71. }
  72. .more .moreimg{
  73. width: 20px;
  74. height: 20px;
  75. margin: 10px 15px;
  76. }
  77. .more view{
  78. width: auto;
  79. height: 40px;
  80. line-height: 40px;
  81. /* font-weight: 550; */
  82. color: #fff;
  83. }
  84. .main .nolist{
  85. width: 100%;
  86. height: 50px;
  87. line-height: 50px;
  88. text-align: center;
  89. }