index.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* nova-werun/pages/activity/index.wxss */
  2. .all{
  3. width: 100vw;
  4. .cardbox{
  5. border-radius: 15rpx;
  6. margin: 20rpx;
  7. padding: 30rpx;
  8. box-shadow: 0rpx 0rpx 10rpx #b8b7b7;
  9. position: relative;
  10. .card{
  11. width: 100%;
  12. display: flex;
  13. image{
  14. width: 310rpx;
  15. height: 177rpx;
  16. border-radius: 20rpx;
  17. }
  18. .infobox{
  19. margin-left: 20rpx;
  20. width: 405rpx;
  21. .title{
  22. width: 100%;
  23. height: 160rpx;
  24. font-size: 28rpx;
  25. overflow: hidden;
  26. text-overflow: ellipsis;
  27. display: -webkit-box;
  28. -webkit-line-clamp: 4;
  29. -webkit-box-orient: vertical;
  30. }
  31. }
  32. }
  33. .time{
  34. width: 100%;
  35. font-size: 26rpx;
  36. color: gray;
  37. margin-top: 10rpx;
  38. }
  39. .submit{
  40. position: absolute;
  41. right: 0;
  42. bottom: 0;
  43. border-radius: 15rpx;
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. background-color: aqua;
  48. font-size: 25rpx;
  49. padding: 10rpx 20rpx;
  50. }
  51. }
  52. }