style.scss 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. .expreeNum{
  2. text-align: right;
  3. display: block;
  4. padding: 10px 24px;
  5. border-top: 1px solid #e9e9e9;
  6. }
  7. .huifu{
  8. position: absolute;
  9. bottom: 10px;
  10. right: 10px;
  11. color: #1fe4dc;
  12. display: inline-block;
  13. border-bottom: 1px solid #1fe4dc;
  14. padding-bottom: 2px;
  15. cursor: pointer;
  16. }
  17. .scene-nothing{
  18. text-align: center;
  19. padding-bottom:30px;
  20. img{
  21. padding-bottom: 22px;
  22. }
  23. div{
  24. font-size: 16px;
  25. color: #969696;
  26. }
  27. }
  28. .scene-layout{
  29. margin-top: 20px;
  30. .items{
  31. display: flex;
  32. background-color: #fff;
  33. border-bottom: 1px solid rgba(204, 204, 204, 0.4);
  34. &:last-of-type{
  35. border-bottom: none;
  36. }
  37. .card-img{
  38. width: 195px;
  39. min-width: 195px;
  40. height: 110px;
  41. cursor: pointer;
  42. background-repeat: no-repeat;
  43. background-position: center;
  44. background-size: auto 100%;
  45. position: relative;
  46. img{
  47. background: rgba(0, 0, 0,0.3);
  48. border-radius: 50%;
  49. width: 30px;
  50. height: 30px;
  51. position: absolute;
  52. right: 10px;
  53. top: 10px;
  54. }
  55. .cooperation{
  56. background:rgba(0,0,0,0.5);
  57. position: absolute;
  58. bottom: 0;
  59. width: 100%;
  60. height: 26px;
  61. text-align: center;
  62. line-height: 26px;
  63. color: #FFFFFF;
  64. >span{
  65. display: inline-block;
  66. margin-left: 6px;
  67. }
  68. }
  69. }
  70. .item-txt{
  71. display: flex;
  72. flex-direction: column;
  73. color: #101010;
  74. justify-content: center;
  75. width: 100%;
  76. padding: 0 10px 0 15px;
  77. .btm-opr{
  78. display: flex;
  79. justify-content: space-between;
  80. align-items: center;
  81. margin-top: 6px;
  82. position: relative;
  83. .spot{
  84. width: 4px;
  85. height: 4px;
  86. display: inline-block;
  87. background-color: #202020;
  88. border-radius: 50%;
  89. position: relative;
  90. margin-left: 10px;
  91. &::after,&::before{
  92. content: '';
  93. position: absolute;
  94. width: 4px;
  95. height: 4px;
  96. display: inline-block;
  97. background-color: #202020;
  98. border-radius: 50%;
  99. left: -8px;
  100. top: 50%;
  101. transform: translateY(-50%);
  102. }
  103. &::before{
  104. right: -8px;
  105. left: unset;
  106. }
  107. }
  108. >ul{
  109. position: absolute;
  110. z-index: 9;
  111. left: -32px;
  112. top: 22px;
  113. background: #F7F7F7;
  114. min-width: 90px;
  115. box-shadow:0px 1px 6px rgba(0,0,0,0.16);
  116. >li{
  117. text-align: left;
  118. width: 100%;
  119. line-height: 2.5;
  120. padding: 0 10px;
  121. color: #202020;
  122. &:hover{
  123. background-color: #EBEBEB;
  124. }
  125. }
  126. }
  127. .btmr-con{
  128. .btm-right{
  129. display: inline-block;
  130. background: #fff;
  131. border: 1px solid #777777;
  132. border-radius: 2px;
  133. font-size: 12px;
  134. width: 52px;
  135. height: 26px;
  136. line-height: 26px;
  137. text-align: center;
  138. margin-right: 4px;
  139. position: relative;
  140. span{
  141. position: absolute;
  142. top: 50%;
  143. left: 50%;
  144. transform: translate(-50%,-50%);
  145. }
  146. }
  147. .primary{
  148. background: #1fe4dc;
  149. border: 1px solid #1fe4dc;
  150. }
  151. }
  152. }
  153. p{
  154. line-height: 1.5;
  155. font-weight: normal;
  156. font-size: 12px;
  157. color: #777777;
  158. overflow:hidden;//隐藏文字
  159. text-overflow:ellipsis;//显示 ...
  160. white-space:nowrap;//不换行
  161. &:first-child{
  162. font-size: 16px;
  163. color: #2d2d2d;
  164. font-weight: normal;
  165. font-weight: bold;
  166. width: 92%;
  167. }
  168. }
  169. }
  170. }
  171. .paging {
  172. // border-left: #e5e5e5 1px solid;
  173. height: 100%;
  174. padding-bottom: 20px;
  175. & /deep/ .layout {
  176. text-align: center;
  177. margin-top: 20px;
  178. }
  179. & /deep/ .layout a:not(:last-child) {
  180. margin: 10px 8px;
  181. font-size: 16px;
  182. display: inline-block;
  183. font-weight: 500;
  184. cursor: pointer;
  185. user-select: none;
  186. color: #999;
  187. position: relative;
  188. transition: color 0.3s;
  189. }
  190. & /deep/ .layout a:not(:last-child).active::after,
  191. & /deep/ .layout a:not(:last-child).active,
  192. & /deep/ .layout a:not(:last-child):hover,
  193. & /deep/ .layout a:not(:last-child):hover::after {
  194. color: #111111;
  195. transform: scaleX(1);
  196. }
  197. & /deep/ .layout a:not(:last-child)::after {
  198. content: "";
  199. height: 3px;
  200. width: 140%;
  201. background-color: #111;
  202. display: block;
  203. margin-left: -20%;
  204. margin-top: 3px;
  205. transform-origin: 50% 50%;
  206. transform: scaleX(0);
  207. will-change: transform;
  208. transition: transform 0.3s;
  209. }
  210. }
  211. .share-hover {
  212. position: fixed;
  213. top: 0;
  214. left: 0;
  215. width: 100%;
  216. height: 100%;
  217. margin: 0;
  218. z-index: 88888888;
  219. transition: all 0.2s linear;
  220. background: rgba(0, 0, 0, 0.3);
  221. .share-con {
  222. position: absolute;
  223. top: 50%;
  224. left: 50%;
  225. width: 86%;
  226. transform: translate(-50%, -50%);
  227. background: #fff;
  228. border-radius: 6px;
  229. box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  230. overflow: hidden;
  231. line-height: 1;
  232. .t-header {
  233. text-align: center;
  234. color: #2d2d2d;
  235. height: 54px;
  236. line-height: 54px;
  237. padding: 0 30px;
  238. font-size: 16px;
  239. position: relative;
  240. .iconfont{
  241. cursor: pointer;
  242. position: absolute;
  243. right: 15px;
  244. top: 0;
  245. font-size: 20px;
  246. }
  247. }
  248. .t-con{
  249. padding: 20px 20px 0 20px;
  250. background: #e7e7e7;
  251. .t-label{
  252. font-size: 12px;
  253. color: #2d2d2d;
  254. font-weight: bold;
  255. }
  256. .share-logo{
  257. margin: 15px 20px 15px 0;
  258. width: 50px;
  259. height: 50px;
  260. cursor: pointer;
  261. }
  262. input{
  263. width: 100%;
  264. border: 0;
  265. line-height: 38px;
  266. height: 38px;
  267. font-size: 12px;
  268. padding: 0 20px;
  269. margin: 15px 0 10px;
  270. }
  271. .btn-copy{
  272. text-align: center;
  273. background: #ddd;
  274. font-size: 12px;
  275. color: #2d2d2d;
  276. line-height: 30px;
  277. height: 30px;
  278. margin-bottom: 20px;
  279. cursor: pointer;
  280. }
  281. }
  282. }
  283. }
  284. }
  285. @media screen and (max-width: 380px) {
  286. .scene-layout {
  287. .items {
  288. .card-img{
  289. width: 170px;
  290. min-width: 170px;
  291. }
  292. }
  293. }
  294. }
  295. @media screen and (max-width: 330px) {
  296. .scene-layout {
  297. .items {
  298. .card-img{
  299. width: 164px;
  300. min-width: 164px;
  301. height: 100px;
  302. img{
  303. width: 25px;
  304. height: 25px;
  305. right: 5px;
  306. top: 5px;
  307. }
  308. }
  309. .item-txt{
  310. padding: 0 5px;
  311. p{
  312. white-space:nowrap;
  313. font-size: 10px;
  314. &:first-child{
  315. width: 78%;
  316. font-size: 14px;
  317. }
  318. }
  319. .btm-opr{
  320. .btmr-con {
  321. .btm-right{
  322. font-size: 10px;
  323. }
  324. }
  325. }
  326. }
  327. }
  328. }
  329. }