vesselDetails.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. uni-view[data-v-2af81691], uni-scroll-view[data-v-2af81691], uni-swiper-item[data-v-2af81691] {
  27. display: flex;
  28. flex-direction: column;
  29. flex-shrink: 0;
  30. flex-grow: 0;
  31. flex-basis: auto;
  32. align-items: stretch;
  33. align-content: flex-start;
  34. }
  35. .u-loading-icon[data-v-2af81691] {
  36. flex-direction: row;
  37. align-items: center;
  38. justify-content: center;
  39. color: #c8c9cc;
  40. }
  41. .u-loading-icon__text[data-v-2af81691] {
  42. margin-left: 4px;
  43. color: #606266;
  44. font-size: 14px;
  45. line-height: 20px;
  46. }
  47. .u-loading-icon__spinner[data-v-2af81691] {
  48. width: 30px;
  49. height: 30px;
  50. position: relative;
  51. box-sizing: border-box;
  52. max-width: 100%;
  53. max-height: 100%;
  54. animation: u-rotate-2af81691 1s linear infinite;
  55. }
  56. .u-loading-icon__spinner--semicircle[data-v-2af81691] {
  57. border-width: 2px;
  58. border-color: transparent;
  59. border-top-right-radius: 100px;
  60. border-top-left-radius: 100px;
  61. border-bottom-left-radius: 100px;
  62. border-bottom-right-radius: 100px;
  63. border-style: solid;
  64. }
  65. .u-loading-icon__spinner--circle[data-v-2af81691] {
  66. border-top-right-radius: 100px;
  67. border-top-left-radius: 100px;
  68. border-bottom-left-radius: 100px;
  69. border-bottom-right-radius: 100px;
  70. border-width: 2px;
  71. border-top-color: #e5e5e5;
  72. border-right-color: #e5e5e5;
  73. border-bottom-color: #e5e5e5;
  74. border-left-color: #e5e5e5;
  75. border-style: solid;
  76. }
  77. .u-loading-icon--vertical[data-v-2af81691] {
  78. flex-direction: column;
  79. }
  80. [data-v-2af81691]:host {
  81. font-size: 0px;
  82. line-height: 1;
  83. }
  84. .u-loading-icon__spinner--spinner[data-v-2af81691] {
  85. animation-timing-function: steps(12);
  86. }
  87. .u-loading-icon__text[data-v-2af81691]:empty {
  88. display: none;
  89. }
  90. .u-loading-icon--vertical .u-loading-icon__text[data-v-2af81691] {
  91. margin: 6px 0 0;
  92. color: #606266;
  93. }
  94. .u-loading-icon__dot[data-v-2af81691] {
  95. position: absolute;
  96. top: 0;
  97. left: 0;
  98. width: 100%;
  99. height: 100%;
  100. }
  101. .u-loading-icon__dot[data-v-2af81691]:before {
  102. display: block;
  103. width: 2px;
  104. height: 25%;
  105. margin: 0 auto;
  106. background-color: currentColor;
  107. border-radius: 40%;
  108. content: " ";
  109. }
  110. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(1) {
  111. transform: rotate(30deg);
  112. opacity: 1;
  113. }
  114. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(2) {
  115. transform: rotate(60deg);
  116. opacity: 0.9375;
  117. }
  118. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(3) {
  119. transform: rotate(90deg);
  120. opacity: 0.875;
  121. }
  122. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(4) {
  123. transform: rotate(120deg);
  124. opacity: 0.8125;
  125. }
  126. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(5) {
  127. transform: rotate(150deg);
  128. opacity: 0.75;
  129. }
  130. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(6) {
  131. transform: rotate(180deg);
  132. opacity: 0.6875;
  133. }
  134. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(7) {
  135. transform: rotate(210deg);
  136. opacity: 0.625;
  137. }
  138. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(8) {
  139. transform: rotate(240deg);
  140. opacity: 0.5625;
  141. }
  142. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(9) {
  143. transform: rotate(270deg);
  144. opacity: 0.5;
  145. }
  146. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(10) {
  147. transform: rotate(300deg);
  148. opacity: 0.4375;
  149. }
  150. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(11) {
  151. transform: rotate(330deg);
  152. opacity: 0.375;
  153. }
  154. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(12) {
  155. transform: rotate(360deg);
  156. opacity: 0.3125;
  157. }
  158. @keyframes u-rotate-2af81691 {
  159. 0% {
  160. transform: rotate(0deg);
  161. }
  162. to {
  163. transform: rotate(1turn);
  164. }
  165. }
  166. /**
  167. * 这里是uni-app内置的常用样式变量
  168. *
  169. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  170. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  171. *
  172. */
  173. /**
  174. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  175. *
  176. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  177. */
  178. /* 颜色变量 */
  179. /* 行为相关颜色 */
  180. /* 文字基本颜色 */
  181. /* 背景颜色 */
  182. /* 边框颜色 */
  183. /* 尺寸变量 */
  184. /* 文字尺寸 */
  185. /* 图片尺寸 */
  186. /* Border Radius */
  187. /* 水平间距 */
  188. /* 垂直间距 */
  189. /* 透明度 */
  190. /* 文章场景相关 */
  191. uni-view[data-v-7b7c7ea6], uni-scroll-view[data-v-7b7c7ea6], uni-swiper-item[data-v-7b7c7ea6] {
  192. display: flex;
  193. flex-direction: column;
  194. flex-shrink: 0;
  195. flex-grow: 0;
  196. flex-basis: auto;
  197. align-items: stretch;
  198. align-content: flex-start;
  199. }
  200. .u-swiper-indicator__wrapper[data-v-7b7c7ea6] {
  201. display: flex;
  202. flex-direction: row;
  203. }
  204. .u-swiper-indicator__wrapper--line[data-v-7b7c7ea6] {
  205. border-radius: 100px;
  206. height: 4px;
  207. }
  208. .u-swiper-indicator__wrapper--line__bar[data-v-7b7c7ea6] {
  209. width: 22px;
  210. height: 4px;
  211. border-radius: 100px;
  212. background-color: #FFFFFF;
  213. transition: transform 0.3s;
  214. }
  215. .u-swiper-indicator__wrapper__dot[data-v-7b7c7ea6] {
  216. width: 5px;
  217. height: 5px;
  218. border-radius: 100px;
  219. margin: 0 4px;
  220. }
  221. .u-swiper-indicator__wrapper__dot--active[data-v-7b7c7ea6] {
  222. width: 12px;
  223. }
  224. /**
  225. * 这里是uni-app内置的常用样式变量
  226. *
  227. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  228. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  229. *
  230. */
  231. /**
  232. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  233. *
  234. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  235. */
  236. /* 颜色变量 */
  237. /* 行为相关颜色 */
  238. /* 文字基本颜色 */
  239. /* 背景颜色 */
  240. /* 边框颜色 */
  241. /* 尺寸变量 */
  242. /* 文字尺寸 */
  243. /* 图片尺寸 */
  244. /* Border Radius */
  245. /* 水平间距 */
  246. /* 垂直间距 */
  247. /* 透明度 */
  248. /* 文章场景相关 */
  249. uni-view[data-v-4e7d0c90], uni-scroll-view[data-v-4e7d0c90], uni-swiper-item[data-v-4e7d0c90] {
  250. display: flex;
  251. flex-direction: column;
  252. flex-shrink: 0;
  253. flex-grow: 0;
  254. flex-basis: auto;
  255. align-items: stretch;
  256. align-content: flex-start;
  257. }
  258. .u-swiper[data-v-4e7d0c90] {
  259. display: flex;
  260. flex-direction: row;
  261. justify-content: center;
  262. align-items: center;
  263. position: relative;
  264. overflow: hidden;
  265. }
  266. .u-swiper__wrapper[data-v-4e7d0c90] {
  267. flex: 1;
  268. }
  269. .u-swiper__wrapper__item[data-v-4e7d0c90] {
  270. flex: 1;
  271. }
  272. .u-swiper__wrapper__item__wrapper[data-v-4e7d0c90] {
  273. display: flex;
  274. flex-direction: row;
  275. position: relative;
  276. overflow: hidden;
  277. transition: transform 0.3s;
  278. flex: 1;
  279. }
  280. .u-swiper__wrapper__item__wrapper__image[data-v-4e7d0c90] {
  281. flex: 1;
  282. }
  283. .u-swiper__wrapper__item__wrapper__video[data-v-4e7d0c90] {
  284. flex: 1;
  285. }
  286. .u-swiper__wrapper__item__wrapper__title[data-v-4e7d0c90] {
  287. position: absolute;
  288. background-color: rgba(0, 0, 0, 0.3);
  289. bottom: 0;
  290. left: 0;
  291. right: 0;
  292. font-size: 0.875rem;
  293. padding: 0.375rem 0.75rem;
  294. color: #FFFFFF;
  295. flex: 1;
  296. }
  297. .u-swiper__indicator[data-v-4e7d0c90] {
  298. position: absolute;
  299. bottom: 10px;
  300. }
  301. /**
  302. * 这里是uni-app内置的常用样式变量
  303. *
  304. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  305. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  306. *
  307. */
  308. /**
  309. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  310. *
  311. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  312. */
  313. /* 颜色变量 */
  314. /* 行为相关颜色 */
  315. /* 文字基本颜色 */
  316. /* 背景颜色 */
  317. /* 边框颜色 */
  318. /* 尺寸变量 */
  319. /* 文字尺寸 */
  320. /* 图片尺寸 */
  321. /* Border Radius */
  322. /* 水平间距 */
  323. /* 垂直间距 */
  324. /* 透明度 */
  325. /* 文章场景相关 */
  326. body {
  327. height: 100%;
  328. }
  329. .content {
  330. height: 100%;
  331. }
  332. .content uni-image {
  333. height: 14.0625rem;
  334. width: 100%;
  335. }
  336. .content .detail-cont {
  337. flex: 1;
  338. padding: 0.625rem;
  339. overflow-y: auto;
  340. }
  341. .content .detail-cont .title-box {
  342. width: 100%;
  343. display: flex;
  344. justify-content: flex-start;
  345. align-items: center;
  346. }
  347. .content .detail-cont .title-box .line {
  348. border-radius: 0.15625rem;
  349. width: 0.25rem;
  350. height: 0.9375rem;
  351. background-color: #C39A58;
  352. }
  353. .content .detail-cont .title-box .title {
  354. margin-left: 0.46875rem;
  355. font-size: 1.25rem;
  356. font-family: PingFang SC;
  357. font-weight: bold;
  358. color: #333;
  359. }
  360. .content .detail-cont .title-box .title-py {
  361. margin-left: 0.46875rem;
  362. font-size: 1rem;
  363. font-family: PingFang SC;
  364. color: #333;
  365. }
  366. .content .detail-cont .desc {
  367. margin-top: 0.625rem;
  368. font-size: 1rem;
  369. font-family: PingFang SC;
  370. color: #333;
  371. }
  372. .content .detail-cont .line-h {
  373. margin: 0.46875rem 0;
  374. border-bottom: 0.03125rem dashed #d4d4d4;
  375. }
  376. .content .detail-cont .tabs {
  377. width: 100%;
  378. margin: 0.625rem 0;
  379. display: flex;
  380. justify-content: space-between;
  381. align-items: center;
  382. border-radius: 0.9375rem;
  383. line-height: 1.875rem;
  384. }
  385. .content .detail-cont .tabs .tab1 {
  386. border-radius: 0.9375rem 0 0 0.9375rem;
  387. width: 25%;
  388. display: flex;
  389. justify-content: center;
  390. align-items: center;
  391. background-color: #fff;
  392. color: #4F575A;
  393. font-size: 0.875rem;
  394. font-weight: bold;
  395. font-family: PingFang SC;
  396. }
  397. .content .detail-cont .tabs .tab2 {
  398. width: 25%;
  399. display: flex;
  400. justify-content: center;
  401. align-items: center;
  402. background-color: #fff;
  403. color: #4F575A;
  404. font-size: 0.875rem;
  405. font-weight: bold;
  406. font-family: PingFang SC;
  407. }
  408. .content .detail-cont .tabs .tab3 {
  409. width: 25%;
  410. display: flex;
  411. justify-content: center;
  412. align-items: center;
  413. background-color: #fff;
  414. color: #4F575A;
  415. font-size: 0.875rem;
  416. font-weight: bold;
  417. font-family: PingFang SC;
  418. }
  419. .content .detail-cont .tabs .tab4 {
  420. border-radius: 0 0.9375rem 0.9375rem 0;
  421. width: 25%;
  422. display: flex;
  423. justify-content: center;
  424. align-items: center;
  425. background-color: #fff;
  426. color: #4F575A;
  427. font-size: 0.875rem;
  428. font-weight: bold;
  429. font-family: PingFang SC;
  430. }
  431. .content .detail-cont .tabs .active {
  432. background-color: #C39A58;
  433. color: #fff;
  434. }
  435. .content .ad {
  436. margin-bottom: 1.5625rem;
  437. width: 100%;
  438. padding: 0.46875rem;
  439. }