search.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* pages/search/search.wxss */
  2. .search-container {
  3. height: 100%;
  4. }
  5. .search-video {
  6. width: 96%;
  7. height: 95rpx;
  8. background: #fff;
  9. border-radius: 95rpx;
  10. display: flex;
  11. align-items: center;
  12. padding-left: 10rpx;
  13. box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 6px 0 rgba(0, 0, 0, .2);
  14. margin: 0 auto;
  15. }
  16. .search-video image {
  17. width: 85rpx;
  18. height: 85rpx;
  19. margin-right: 20rpx;
  20. }
  21. .search-video input {
  22. padding-left: 20rpx;
  23. width:70%;
  24. }
  25. .title {
  26. text-align: center;
  27. color: #959595;
  28. margin: 36rpx 0 26rpx 0;
  29. }
  30. .hot-video {
  31. padding: 0 16rpx;
  32. box-sizing: border-box;
  33. }
  34. .hot-item {
  35. width: 100%;
  36. height: 266rpx;
  37. margin-bottom: 27rpx;
  38. border-radius: 20rpx;
  39. box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 6px 0 rgba(0, 0, 0, .2);
  40. }
  41. .hot-item image {
  42. width: 100%;
  43. height: 100%;
  44. border-radius: 20rpx;
  45. }
  46. .no-find {
  47. display: flex;
  48. flex-direction: column;
  49. align-items: center;
  50. justify-content: center;
  51. position:absolute;
  52. width:100%;
  53. top:30%;
  54. color: #6a6a6a;
  55. }