search.wxss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* pages/search/search.wxss */
  2. .search-container {
  3. height: 100%;
  4. padding: 0 26rpx;
  5. box-sizing: border-box;
  6. }
  7. .search-video {
  8. width: 100%;
  9. height: 95rpx;
  10. background: #fff;
  11. border-radius: 95rpx;
  12. display: flex;
  13. align-items: center;
  14. padding-left: 10rpx;
  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. }