movies.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. @import "movie-list/movie-list-template.wxss";
  2. @import "movie-grid/movie-grid-template.wxss";
  3. .masonry {
  4. background-color: #f2f2f2;
  5. display: flex;
  6. flex-direction: column;
  7. }
  8. .column {
  9. display: flex;
  10. flex-flow: column wrap;
  11. width: 50%;
  12. background-color: beige;
  13. }
  14. .item {
  15. height: 200rpx;
  16. width:100%;
  17. border-bottom:1px solid #F2F2F2;
  18. margin-bottom: 10rpx;
  19. display: flex;
  20. flex-direction: row;
  21. justify-content: flex-start;
  22. }
  23. .item .ImageBox{
  24. display: flex;
  25. flex-direction: column;
  26. justify-content: center;
  27. }
  28. .ImageBox image{
  29. width: 60rpx;
  30. height:60rpx;
  31. margin: 4rpx;
  32. }
  33. .item .content{
  34. display: flex;
  35. flex-direction: column;
  36. justify-content: center;
  37. align-items: left;
  38. width: 100%;
  39. height: 220rpx;
  40. font-size: 40rpx;
  41. color: #0D0630;
  42. }
  43. .item content::before{
  44. position: absolute;
  45. top: 0;
  46. left: 0;
  47. font-size: 13rpx;
  48. width: 2em;
  49. height: 2em;
  50. line-height: 2em;
  51. text-align: center;
  52. font-weight: bold;
  53. background-color:#18314F;
  54. content: counter(item-counter);
  55. }
  56. .item content::after{
  57. content: 'ಠ‿ಠ';
  58. }
  59. .item content small{
  60. height: 100rpx;
  61. }
  62. .item content small::before{
  63. background: #d1d1d1;
  64. }
  65. .item content small::after{
  66. content: '♥◡♥';
  67. }
  68. .item content medium{
  69. height: 175rpx;
  70. }
  71. .item content medium::before{
  72. background: #d1d1d1;
  73. }
  74. .item content medium::after{
  75. content: '◔ᴗ◔';
  76. }
  77. .item content large{
  78. height: 280rpx;
  79. }
  80. .item content large::before{
  81. background: #0D0630;
  82. }
  83. .item content large::after{
  84. content: 'ಠ_๏';
  85. }
  86. .search {
  87. background-color: #f2f2f2;
  88. height: 80rpx;
  89. width: 100%;
  90. display: flex;
  91. flex-direction: row;
  92. }
  93. .search-img {
  94. margin: auto 0 auto 20rpx;
  95. }
  96. .search input {
  97. height: 100%;
  98. width: 600rpx;
  99. margin-left: 20px;
  100. font-size: 28rpx;
  101. }
  102. .placeholder {
  103. font-size: 14px;
  104. color: #d1d1d1;
  105. margin-left: 20rpx;
  106. }
  107. .movies-template {
  108. margin-bottom: 30rpx;
  109. }
  110. .search-panel{
  111. position:absolute;
  112. top:80rpx;
  113. }
  114. .xx-img{
  115. height: 30rpx;
  116. width: 30rpx;
  117. margin:auto 0 auto 10rpx;
  118. }