index.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* miniprogram/pages/home/index.wxss */
  2. .home {
  3. padding: 10rpx;
  4. }
  5. .br {
  6. height: 1em;
  7. }
  8. .home .title {
  9. font-size: 16px;
  10. text-indent: 2em;
  11. }
  12. .home .subTitle {
  13. font-size: 12px;
  14. margin: 10rpx 0;
  15. color: #999;
  16. }
  17. .icon_container {
  18. width: 750rpx;
  19. margin-left: -10rpx;
  20. font-size: 12px;
  21. color: #666;
  22. }
  23. .icon_container .icon_item_cell {
  24. box-sizing: border-box;
  25. display: inline-block;
  26. width: 250rpx;
  27. padding: 5rpx;
  28. }
  29. .icon_container .icon_content {
  30. text-align: center;
  31. border-radius: 10rpx;
  32. padding: 46rpx 0 20rpx 0;
  33. box-shadow: 3rpx 3rpx 20rpx rgba(0, 0, 0, .1);
  34. }
  35. .icon_container .icon_title {
  36. padding: 15rpx 0;
  37. }
  38. .icon_container .img {
  39. width: 4em;
  40. height: 4em;
  41. }
  42. .videoList {
  43. margin-bottom: 20rpx;
  44. }
  45. .videoList .title {
  46. overflow: hidden;
  47. text-overflow: ellipsis;
  48. white-space: nowrap;
  49. }
  50. .newList {
  51. width: 100%;
  52. font-size: 0;
  53. height: 240rpx;
  54. overflow: hidden;
  55. margin-bottom: 20rpx;
  56. border-radius: 22.5rpx;
  57. box-shadow: 3rpx 3rpx 20rpx rgba(0, 0, 0, .1);
  58. }
  59. .newList .newsImg {
  60. width: 240rpx;
  61. height: 240rpx;
  62. }
  63. .newList .newsTitle {
  64. width: 100%;
  65. height: 240rpx;
  66. font-size: 14px;
  67. margin-top: -240rpx;
  68. padding: 20rpx 10rpx 20rpx 250rpx;
  69. box-sizing: border-box;
  70. }
  71. .newList .top {
  72. display: -webkit-box;
  73. -webkit-box-orient: vertical;
  74. -webkit-line-clamp: 3;
  75. overflow: hidden;
  76. }