飞天AI数字人展会页面
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
2.1 KiB

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
  1. /* Thumbnail Effects Style */
  2. .tj_container{
  3. position: relative;
  4. }
  5. .page-list-btn {
  6. width: .5rem;
  7. height: 2.5rem;
  8. position: absolute;
  9. top: 50%;
  10. transform: translateY(-50%);
  11. cursor: pointer;
  12. z-index: 9999;
  13. }
  14. .tj_prev {
  15. left: 1rem;
  16. background: url("../../images/left.png") no-repeat top left;
  17. background-size: cover;
  18. }
  19. .tj_next {
  20. right: 1rem;
  21. background: url("../../images/right.png") no-repeat top left;
  22. background-size: cover;
  23. }
  24. .tj_wrapper {
  25. position: relative;
  26. width: 100%;
  27. height: 100%;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. }
  32. .tj_wrapper ul {
  33. width: 18.25rem;
  34. height: 9rem;
  35. display: flex;
  36. flex-wrap: wrap;
  37. justify-content: flex-start;
  38. }
  39. .tj_wrapper ul li {
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. width: 6rem;
  44. height: 4.5rem;
  45. }
  46. .tj_wrapper ul li a {
  47. display: block;
  48. width: 5rem;
  49. height: 3.5rem;
  50. background: url("../../images/page-box2.png") no-repeat left top;
  51. background-size: cover;
  52. backdrop-filter: blur(10px);
  53. }
  54. .tj-list-img {
  55. position: relative;
  56. width: 4.6rem;
  57. height: 2.725rem;
  58. margin: .2rem auto .125rem auto;
  59. border-radius: .1rem;
  60. overflow: hidden;
  61. }
  62. .tj-list-img.mask-active::before {
  63. content: "";
  64. position: absolute;
  65. left: 0;
  66. top: 0;
  67. width: 100%;
  68. height: 100%;
  69. }
  70. .tj-list-img.mask-active:hover::before {
  71. /* background-color: transparent; */
  72. background-color: rgba(0,0,0,.3);
  73. }
  74. .tj-list-img img {
  75. display: block;
  76. width: 4.6rem;
  77. height: 2.725rem;
  78. }
  79. .tj-list-img span{
  80. position: absolute;
  81. top: 50%;
  82. left: 50%;
  83. display: block;
  84. width: .8rem;
  85. height: .8rem;
  86. background: url("../../images/icon_play_o_full.png") no-repeat left top;
  87. background-size: cover;
  88. transform: translateX(-50%) translateY(-50%);
  89. }
  90. .tj_wrapper ul li a p {
  91. font-size: .25rem;
  92. height: .375rem;
  93. line-height: .375rem;
  94. color: #fff;
  95. text-align: center;
  96. display: -webkit-box;
  97. -webkit-box-orient: vertical;
  98. -webkit-line-clamp: 1;
  99. overflow: hidden;
  100. text-overflow: ellipsis;
  101. }