base.css 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773
  1. /* 重置样式 */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7. /* 防止Vue模板闪烁 */
  8. [v-cloak] {
  9. display: none !important;
  10. }
  11. table {
  12. width: calc(100% - 16px);
  13. margin: 0 auto;
  14. border-left: 2px solid #f2f2f2;
  15. border-top: 2px solid #f2f2f2;
  16. border-collapse: separate;
  17. border-spacing: 0;
  18. }
  19. tr {
  20. height: 46px;
  21. display: flex;
  22. align-items: center;
  23. box-sizing: border-box;
  24. }
  25. th {
  26. height: 100%;
  27. padding-right: 16px;
  28. background-color: #fafafa;
  29. align-items: center;
  30. justify-content: flex-end;
  31. box-sizing: border-box;
  32. max-width: 30%;
  33. min-width: 30%;
  34. border-bottom: 2px solid #f2f2f2;
  35. border-right: 2px solid #f2f2f2;
  36. color: #333333;
  37. font-size: 16px;
  38. font-weight: normal;
  39. display: flex;
  40. }
  41. td {
  42. height: 100%;
  43. padding-left: 16px;
  44. padding-right: 16px;
  45. align-items: flex-start;
  46. justify-content: flex-start;
  47. box-sizing: border-box;
  48. border-bottom: 2px solid #f2f2f2;
  49. border-right: 2px solid #f2f2f2;
  50. background: #fff;
  51. color: #333333;
  52. font-size: 16px;
  53. flex: 1;
  54. min-width: 0;
  55. width: 100%;
  56. display: flex;
  57. align-items: center;
  58. position: relative; /* 为伪元素定位 */
  59. }
  60. i{
  61. font-style: normal;
  62. }
  63. /* ss-input 智能输入组件样式 */
  64. .ss-input {
  65. width: 100%;
  66. position: relative;
  67. }
  68. .ss-input__container {
  69. position: relative;
  70. width: 100%;
  71. }
  72. .ss-input__field {
  73. width: 100%;
  74. height: 34px;
  75. /* padding: 0 16px; */
  76. font-size: 16px;
  77. line-height: 35px;
  78. color: #333;
  79. background-color: transparent;
  80. border: none;
  81. border-radius: 4px;
  82. outline: none;
  83. box-sizing: border-box;
  84. transition: border-color 0.2s ease;
  85. }
  86. .ss-input__field::placeholder {
  87. color: #999;
  88. font-size: 16px;
  89. }
  90. .ss-input__field:invalid,
  91. .ss-input__field.error {
  92. border-color: #ff3b30;
  93. }
  94. /* 错误提示 */
  95. .ss-input__error {
  96. color: #ff3b30;
  97. font-size: 12px;
  98. line-height: 18px;
  99. margin-top: 4px;
  100. text-align: right;
  101. position: absolute;
  102. bottom: 0;
  103. right: 0;
  104. }
  105. /* 校验状态样式 - 作用在td上 */
  106. td.td-required::before {
  107. content: '';
  108. position: absolute;
  109. left: 0;
  110. top: 0;
  111. bottom: 0;
  112. width: 2px;
  113. background: #ff3b30;
  114. z-index: 1;
  115. }
  116. td.td-error::after {
  117. content: '';
  118. position: absolute;
  119. left: 0;
  120. right: 0;
  121. bottom: 0;
  122. height: 2px;
  123. background: #ff3b30;
  124. z-index: 1;
  125. }
  126. td.td-error::before {
  127. content: '';
  128. position: absolute;
  129. left: 0;
  130. top: 0;
  131. bottom: 0;
  132. width: 2px;
  133. background: #ff3b30;
  134. z-index: 1;
  135. }
  136. /* ss-bottom 底部按钮组件样式 */
  137. .ss-bottom {
  138. position: fixed;
  139. bottom: 0;
  140. left: 0;
  141. width: 100%;
  142. z-index: 99;
  143. }
  144. /* 审核意见区域 */
  145. .ss-bottom__opinion {
  146. background-color: #fff;
  147. }
  148. .ss-bottom__opinion-table {
  149. width: 100%;
  150. margin: 0;
  151. border-left: 2px solid #f2f2f2;
  152. border-top: 2px solid #f2f2f2;
  153. border-collapse: separate;
  154. border-spacing: 0;
  155. height: 50px;
  156. }
  157. .ss-bottom__opinion-table tr {
  158. height: 50px;
  159. display: flex;
  160. align-items: center;
  161. box-sizing: border-box;
  162. }
  163. .ss-bottom__opinion-label {
  164. height: 100%;
  165. padding-right: 16px;
  166. background-color: #e6e6e6;
  167. color: #333333;
  168. align-items: center;
  169. justify-content: flex-end;
  170. box-sizing: border-box;
  171. max-width: 30%;
  172. min-width: 30%;
  173. border-bottom: 2px solid #f2f2f2;
  174. border-right: 2px solid #f2f2f2;
  175. font-size: 16px;
  176. font-weight: normal;
  177. display: flex;
  178. border: none;
  179. }
  180. .ss-bottom__opinion-input {
  181. height: 100%;
  182. padding-left: 16px;
  183. padding-right: 16px;
  184. align-items: flex-start;
  185. justify-content: flex-start;
  186. box-sizing: border-box;
  187. border-bottom: 2px solid #f2f2f2;
  188. border-right: 2px solid #f2f2f2;
  189. }
  190. /* 按钮区域 */
  191. .ss-bottom__buttons {
  192. display: flex;
  193. justify-content: space-between;
  194. align-items: center;
  195. background-color: #fff;
  196. height: 50px;
  197. }
  198. .ss-bottom__buttons--with-border {
  199. border-top: 1px solid #e6e6e6;
  200. }
  201. .ss-bottom__button {
  202. flex: 1;
  203. height: 100%;
  204. line-height: 50px;
  205. text-align: center;
  206. font-size: 16px;
  207. color: #333;
  208. background-color: #fafafb;
  209. cursor: pointer;
  210. transition: background-color 0.2s ease;
  211. }
  212. .ss-bottom__button:active {
  213. background-color: #585e6e;
  214. color: #fff;
  215. }
  216. .ss-bottom__divider {
  217. width: 1px;
  218. height: 80%;
  219. background-color: #e0e0e0;
  220. }
  221. /* ========== SsOnoffButton 开关按钮(照抄小程序版本) ========== */
  222. .ss-onoff-button {
  223. position: relative;
  224. display: inline-flex;
  225. align-items: center;
  226. justify-content: center;
  227. padding: 4px 12px;
  228. border: 1px solid #BFC1C6;
  229. border-radius: 2px;
  230. background-color: #fff;
  231. color: #C3C6CA;
  232. font-size: 16px;
  233. cursor: pointer;
  234. transition: all 0.3s ease;
  235. margin-right: 4px;
  236. }
  237. .ss-onoff-button.checked {
  238. color: #393D51;
  239. border-color: #393D51;
  240. }
  241. /* 禁用状态 */
  242. .ss-onoff-button.disabled {
  243. opacity: 0.6;
  244. cursor: not-allowed;
  245. pointer-events: none;
  246. }
  247. .ss-onoff-button .button-label {
  248. flex: 1;
  249. text-align: center;
  250. line-height: 1.2;
  251. }
  252. .ss-onoff-button .button-mark {
  253. position: absolute;
  254. bottom: 0px;
  255. right: 0px;
  256. width: 18px;
  257. height: 18px;
  258. display: flex;
  259. align-items: center;
  260. justify-content: center;
  261. color: inherit;
  262. }
  263. /* 表单组件icon样式 - 完全按照小程序版本实现 */
  264. .form-icon {
  265. font-size: 18px;
  266. font-family: "iconfont";
  267. }
  268. .form-icon-onoffbutton-checked::before {
  269. content: "\e62d";
  270. }
  271. .form-icon-onoffbutton-unchecked::before {
  272. content: "\e62b";
  273. }
  274. /* ========== SsDatetimePicker 日期时间选择器(使用 Vant) ========== */
  275. .ss-datetime-picker {
  276. position: relative;
  277. width: 100%;
  278. }
  279. /* 禁用状态 */
  280. .ss-datetime-picker.disabled {
  281. opacity: 0.6;
  282. cursor: not-allowed;
  283. }
  284. .ss-datetime-picker.disabled .datetime-picker-display {
  285. cursor: not-allowed;
  286. pointer-events: none;
  287. }
  288. .datetime-picker-display {
  289. display: flex;
  290. align-items: center;
  291. justify-content: space-between;
  292. height: 36px;
  293. /* border: 1px solid #e0e0e0; */
  294. border-radius: 6px;
  295. background: #fff;
  296. min-height: 36px;
  297. transition: border-color 0.2s;
  298. cursor: pointer;
  299. }
  300. .datetime-picker-value {
  301. flex: 1;
  302. font-size: 16px;
  303. color: #333;
  304. text-align: left;
  305. }
  306. .datetime-picker-value.placeholder {
  307. color: #999;
  308. }
  309. .datetime-picker-icon {
  310. margin-left: 8px;
  311. font-size: 16px;
  312. color: #666;
  313. }
  314. /* ========== SsConfirm 确认弹窗(照抄小程序版本) ========== */
  315. .ss-confirm {
  316. position: fixed;
  317. top: 0;
  318. left: 0;
  319. right: 0;
  320. bottom: 0;
  321. z-index: 9999;
  322. display: flex;
  323. flex-direction: column;
  324. overflow: hidden; /* 阻止弹窗内滚动 */
  325. }
  326. /* 弹窗显示时阻止 body 滚动 */
  327. body.modal-open {
  328. overflow: hidden;
  329. position: fixed;
  330. width: 100%;
  331. }
  332. /* 遮罩层 */
  333. .confirm-mask {
  334. position: absolute;
  335. top: 0;
  336. left: 0;
  337. right: 0;
  338. bottom: 0;
  339. backdrop-filter: blur(2px);
  340. -webkit-backdrop-filter: blur(2px);
  341. }
  342. /* 弹窗内容 */
  343. .confirm-content {
  344. position: absolute;
  345. top: 50%;
  346. left: 50%;
  347. transform: translate(-50%, -50%);
  348. background: #f2f3f4;
  349. border-radius: 5px;
  350. overflow: hidden;
  351. display: flex;
  352. flex-direction: column;
  353. box-shadow: 6px 5px 3px rgba(0, 0, 0, 0.3);
  354. width: 90%;
  355. max-width: 400px;
  356. }
  357. /* 头部信息 */
  358. .confirm-header {
  359. padding-top: 20px;
  360. padding-bottom: 10px;
  361. border-bottom: 1px solid #f2f3f4;
  362. }
  363. .confirm-header .header-title {
  364. font-size: 21px;
  365. color: #333;
  366. text-align: center;
  367. }
  368. .header-line {
  369. width: calc(100% - 52px);
  370. height: 1px;
  371. background: #e6e6e6;
  372. margin: 0 auto;
  373. }
  374. /* 主要内容区域 */
  375. .confirm-body {
  376. flex: 1;
  377. overflow: hidden;
  378. display: flex;
  379. flex-direction: column;
  380. padding: 16px;
  381. }
  382. .confirm-content-text {
  383. font-size: 15px;
  384. color: #666;
  385. line-height: 1.6;
  386. text-align: center;
  387. margin-bottom: 8px;
  388. }
  389. /* 底部按钮 */
  390. .confirm-bottom {
  391. position: relative;
  392. border-top: 1px solid #eee;
  393. display: flex;
  394. }
  395. .confirm-btn {
  396. flex: 1;
  397. height: 50px;
  398. border: none;
  399. font-size: 16px;
  400. cursor: pointer;
  401. transition: all 0.2s;
  402. background: #f2f3f4;
  403. color: #333;
  404. }
  405. .confirm-btn:first-child {
  406. border-right: 1px solid #eee;
  407. }
  408. .confirm-btn:hover {
  409. background: #e8e9ea;
  410. }
  411. /* ========== SsCard 卡片组件样式 ========== */
  412. .ss-card {
  413. background: #FFFFFF;
  414. border-radius: 4px;
  415. overflow: visible;
  416. padding: 12.5px;
  417. border: 1px solid #d9d9d9;
  418. margin-bottom: 15px;
  419. box-shadow: 1px 3px 3px rgba(4, 0, 0, 0.15);
  420. box-sizing: border-box;
  421. position: relative;
  422. z-index: 1;
  423. cursor: pointer;
  424. }
  425. /* 右上角设置按钮区域 */
  426. .card-setting-header {
  427. position: absolute;
  428. top: 0;
  429. right: 0;
  430. width: 40px;
  431. height: 40px;
  432. display: flex;
  433. align-items: center;
  434. justify-content: center;
  435. z-index: 1001;
  436. }
  437. .setting-icon {
  438. width: 40px;
  439. height: 40px;
  440. display: flex;
  441. align-items: center;
  442. justify-content: center;
  443. border-radius: 0 4px 0 4px;
  444. transition: all 0.3s ease;
  445. }
  446. .setting-icon:active {
  447. background: rgba(0, 0, 0, 0.1);
  448. }
  449. /* ========== SsSearchButton 搜索按钮组件样式 ========== */
  450. .ss-search-button-container {
  451. position: relative;
  452. display: inline-block;
  453. margin: 0 4px 4px 0;
  454. font-size: 16px;
  455. }
  456. .ss-search-button {
  457. height: 34px;
  458. padding: 0 16px;
  459. border: 1px solid #eceded;
  460. outline: none;
  461. background-color: #fff;
  462. text-align: center;
  463. font-size: 16px;
  464. color: #585d6e;
  465. letter-spacing: 2px;
  466. border-radius: 4px;
  467. display: flex;
  468. align-items: center;
  469. justify-content: center;
  470. -webkit-appearance: none;
  471. appearance: none;
  472. box-sizing: border-box;
  473. transition: all 0.2s ease;
  474. cursor: pointer;
  475. }
  476. .ss-search-button:active {
  477. background-color: #eceded;
  478. color: #fff;
  479. border-color: #eceded;
  480. transform: scale(0.98);
  481. transition: all 0.1s ease;
  482. }
  483. .ss-search-button:active .ss-search-button__pre-icon .iconfont,
  484. .ss-search-button:active .ss-search-button__suffix-icon .iconfont {
  485. color: #fff !important;
  486. }
  487. .ss-search-button:disabled {
  488. opacity: 0.6;
  489. cursor: not-allowed;
  490. }
  491. .ss-search-button__pre-icon {
  492. margin-right: 5px;
  493. display: flex;
  494. align-items: center;
  495. }
  496. .ss-search-button__suffix-icon {
  497. margin-left: 5px;
  498. display: flex;
  499. align-items: center;
  500. }
  501. .ss-search-button__text {
  502. font-size: 16px;
  503. color: inherit;
  504. }
  505. /* 选项弹窗菜单 - 参考小程序ss-select样式 */
  506. .options-menu {
  507. position: absolute;
  508. top: 100%;
  509. left: 0;
  510. width: 100%;
  511. background-color: #393D51;
  512. z-index: 1003;
  513. color: #fff;
  514. border: 2px solid #393D51;
  515. box-sizing: border-box;
  516. border-radius: 10px;
  517. overflow: hidden;
  518. max-height: 300px;
  519. overflow-y: auto;
  520. min-width: 200px;
  521. }
  522. .option-item {
  523. padding: 10px 10px 10px 16px;
  524. cursor: pointer;
  525. position: relative;
  526. display: flex;
  527. align-items: center;
  528. }
  529. .option-item::after {
  530. content: "";
  531. position: absolute;
  532. bottom: 0%;
  533. left: 50%;
  534. transform: translateX(-50%);
  535. width: 80%;
  536. height: 1px;
  537. background-color: #303445;
  538. }
  539. .option-item:last-child::after {
  540. display: none;
  541. }
  542. .option-item:active {
  543. background-color: #fff;
  544. color: #393D51;
  545. }
  546. .option-item:active::after {
  547. display: none;
  548. }
  549. /* Icon组件在菜单中的样式 */
  550. .option-item .iconfont,
  551. .menu-item .iconfont {
  552. margin-right: 8px;
  553. display: inline-flex;
  554. align-items: center;
  555. }
  556. .option-text {
  557. font-size: 14px;
  558. color: inherit;
  559. flex: 1;
  560. }
  561. /* ========== SsCard 卡片组件样式 ========== */
  562. .ss-card {
  563. background: #FFFFFF;
  564. border-radius: 4px;
  565. overflow: visible;
  566. padding: 12.5px;
  567. border: 1px solid #d9d9d9;
  568. margin-bottom: 15px;
  569. box-shadow: 1px 3px 3px rgba(4, 0, 0, 0.15);
  570. box-sizing: border-box;
  571. position: relative;
  572. z-index: 1;
  573. cursor: pointer;
  574. }
  575. /* .card-content 内容区域不需要额外padding,因为卡片本身已有padding */
  576. .field-row {
  577. display: flex;
  578. margin-bottom: 8px;
  579. align-items: flex-start;
  580. }
  581. .field-row:last-child {
  582. margin-bottom: 0;
  583. }
  584. .field-label {
  585. color: #666;
  586. font-size: 14px;
  587. min-width: 80px;
  588. margin-right: 12px;
  589. flex-shrink: 0;
  590. }
  591. .field-value {
  592. color: #333;
  593. font-size: 14px;
  594. flex: 1;
  595. word-break: break-all;
  596. }
  597. /* 右上角设置按钮区域 */
  598. .card-setting-header {
  599. position: absolute;
  600. top: 0;
  601. right: 0;
  602. width: 40px;
  603. height: 40px;
  604. display: flex;
  605. align-items: center;
  606. justify-content: center;
  607. z-index: 1001;
  608. }
  609. .setting-icon {
  610. width: 40px;
  611. height: 40px;
  612. display: flex;
  613. align-items: center;
  614. justify-content: center;
  615. border-radius: 0 4px 0 4px;
  616. transition: all 0.3s ease;
  617. }
  618. .setting-icon:active {
  619. background: rgba(0, 0, 0, 0.1);
  620. }
  621. /* 按钮弹窗菜单 - 参考小程序ss-select样式 */
  622. .button-menu {
  623. position: absolute;
  624. top: 100%;
  625. right: 0;
  626. background-color: #393D51;
  627. z-index: 10000;
  628. color: #fff;
  629. border: 2px solid #393D51;
  630. box-sizing: border-box;
  631. border-radius: 10px;
  632. overflow: hidden;
  633. max-height: 300px;
  634. overflow-y: auto;
  635. min-width: 200px;
  636. }
  637. .menu-item {
  638. padding: 10px 10px 10px 16px;
  639. cursor: pointer;
  640. position: relative;
  641. display: flex;
  642. align-items: center;
  643. }
  644. .menu-item::after {
  645. content: "";
  646. position: absolute;
  647. bottom: 0%;
  648. left: 50%;
  649. transform: translateX(-50%);
  650. width: 80%;
  651. height: 1px;
  652. background-color: #303445;
  653. }
  654. .menu-item:last-child::after {
  655. display: none;
  656. }
  657. .menu-item:active {
  658. background-color: #fff;
  659. color: #393D51;
  660. }
  661. .menu-item:active::after {
  662. display: none;
  663. }
  664. .menu-text {
  665. font-size: 14px;
  666. color: inherit;
  667. flex: 1;
  668. }
  669. .card-actions {
  670. border-top: 1px solid #f0f0f0;
  671. padding: 12px 0 0 0;
  672. display: flex;
  673. gap: 8px;
  674. justify-content: flex-end;
  675. margin-top: 12px;
  676. }
  677. .action-btn {
  678. background: #40ac6d;
  679. color: white;
  680. border: none;
  681. border-radius: 4px;
  682. padding: 6px 12px;
  683. font-size: 12px;
  684. cursor: pointer;
  685. transition: background-color 0.2s;
  686. }
  687. .action-btn:hover {
  688. background: #369c5e;
  689. }
  690. .action-btn:active {
  691. background: #2d8a4f;
  692. }
  693. /* ========== SsSelect 下拉选择组件样式 ========== */
  694. .ss-select-container {
  695. position: relative;
  696. display: inline-block;
  697. font-size: 16px;
  698. display: flex;
  699. align-items: center;
  700. cursor: pointer;
  701. }
  702. .ss-select {
  703. padding: 5px 0;
  704. border-radius: 5px;
  705. cursor: pointer;
  706. position: relative;
  707. display: flex;
  708. align-items: center;
  709. justify-content: space-between;
  710. /* min-height: 40px; */
  711. box-sizing: border-box;
  712. }
  713. .ss-select.disabled {
  714. opacity: 0.6;
  715. cursor: not-allowed;
  716. }
  717. .ss-select.disabled .select-text {
  718. color: #ccc;
  719. }
  720. .select-text {
  721. flex: 1;
  722. color: #333;
  723. font-size: 16px;
  724. }
  725. .select-text.placeholder {
  726. color: #999;
  727. }
  728. .select-arrow {
  729. display: flex;
  730. align-items: center;
  731. transition: transform 0.3s ease;
  732. margin-left: 10px;
  733. color: #999;
  734. font-size: 12px;
  735. }
  736. .select-arrow.rotate {
  737. transform: rotate(180deg);
  738. }
  739. .ss-options {
  740. display: none;
  741. position: absolute;
  742. top: 100%;
  743. left: 0;
  744. width: 100%;
  745. background-color: #393D51;
  746. z-index: 1000;
  747. color: #fff;
  748. border: 1px solid #393D51;
  749. box-sizing: border-box;
  750. border-radius: 10px;
  751. overflow: hidden;
  752. max-height: 300px;
  753. overflow-y: auto;
  754. }
  755. .ss-select-container.open .ss-options {
  756. display: block;
  757. }
  758. .option-item {
  759. padding: 10px 10px 10px 23px;
  760. cursor: pointer;
  761. position: relative;
  762. }
  763. .option-item::after {
  764. content: "";
  765. position: absolute;
  766. bottom: 0%;
  767. left: 50%;
  768. transform: translateX(-50%);
  769. width: 80%;
  770. height: 1px;
  771. background-color: #303445;
  772. }
  773. .option-item:last-child::after,
  774. .option-item:hover::after,
  775. .option-item.selected::after {
  776. display: none;
  777. }
  778. .option-item:hover {
  779. background-color: #fff;
  780. color: #393D51;
  781. }
  782. .option-item.selected {
  783. background-color: #fff;
  784. color: #393D51;
  785. }
  786. .option-item.selected::before {
  787. content: "✓";
  788. position: absolute;
  789. width: 15px;
  790. height: 100%;
  791. left: 5px;
  792. top: 0;
  793. color: #393D51;
  794. display: flex;
  795. align-items: center;
  796. }
  797. .option-item.no-options {
  798. text-align: center;
  799. color: #999;
  800. cursor: default;
  801. }
  802. .option-item.no-options:hover {
  803. background-color: #393D51;
  804. color: #999;
  805. }
  806. .option-item.loading-item {
  807. text-align: center;
  808. color: #999;
  809. cursor: default;
  810. }
  811. .option-item.loading-item:hover {
  812. background-color: #393D51;
  813. color: #999;
  814. }
  815. .loading-text {
  816. animation: loading-pulse 1.5s ease-in-out infinite;
  817. }
  818. @keyframes loading-pulse {
  819. 0%, 100% { opacity: 0.6; }
  820. 50% { opacity: 1; }
  821. }
  822. /* ========== SsUploadImage 图片上传裁剪组件样式 ========== */
  823. .ss-upload-image {
  824. display: inline-block;
  825. }
  826. .image-container {
  827. position: relative;
  828. overflow: hidden;
  829. border: 2px solid #e0e0e0;
  830. cursor: pointer;
  831. transition: all 0.3s ease;
  832. }
  833. .image-container:hover {
  834. border-color: #40ac6d;
  835. }
  836. .image-display {
  837. width: 100%;
  838. height: 100%;
  839. object-fit: cover;
  840. display: block;
  841. }
  842. .image-mask {
  843. position: absolute;
  844. top: 0;
  845. left: 0;
  846. right: 0;
  847. bottom: 0;
  848. background: rgba(0, 0, 0, 0.5);
  849. display: flex;
  850. align-items: center;
  851. justify-content: center;
  852. opacity: 0;
  853. transition: opacity 0.3s ease;
  854. }
  855. .image-container:hover .image-mask {
  856. opacity: 1;
  857. }
  858. /* 裁剪页面(全屏) */
  859. .ss-crop-container {
  860. position: fixed;
  861. top: 0;
  862. left: 0;
  863. right: 0;
  864. bottom: 0;
  865. background: #000;
  866. z-index: 9999;
  867. display: flex;
  868. flex-direction: column;
  869. }
  870. /* 左上角尺寸显示 */
  871. .crop-size-display {
  872. position: absolute;
  873. top: 15px;
  874. left: 15px;
  875. color: #000;
  876. font-size: 18px;
  877. line-height: 1.5;
  878. z-index: 10001;
  879. font-weight: 500;
  880. }
  881. .ss-crop-image-container {
  882. flex: 1;
  883. position: relative;
  884. overflow: hidden;
  885. display: flex;
  886. align-items: center;
  887. justify-content: center;
  888. }
  889. #ss-crop-image {
  890. max-width: 100%;
  891. max-height: 100%;
  892. display: block;
  893. }
  894. /* 自定义裁剪框样式 - 简洁版 */
  895. .cropper-view-box {
  896. outline: 2px solid #00923f;
  897. outline-color: rgba(64, 172, 109, 0.85);
  898. box-shadow: none;
  899. }
  900. /* 圆形裁剪框 - 只在circle模式下显示 */
  901. .crop-shape-circle .cropper-view-box,
  902. .crop-shape-circle .cropper-face {
  903. border-radius: 50%;
  904. }
  905. /* 方形裁剪框 - 默认样式,无圆角 */
  906. .crop-shape-square .cropper-view-box,
  907. .crop-shape-square .cropper-face {
  908. border-radius: 0;
  909. }
  910. /* 隐藏所有裁剪点 - 简化界面 */
  911. .cropper-point {
  912. display: none;
  913. }
  914. /* 隐藏所有线条 */
  915. .cropper-line {
  916. display: none;
  917. }
  918. /* 遮罩层颜色和模糊效果 */
  919. .cropper-modal {
  920. background-color: rgba(0, 0, 0, 0.6);
  921. backdrop-filter: blur(4px);
  922. -webkit-backdrop-filter: blur(4px);
  923. }
  924. /* 隐藏中心指示器 */
  925. .cropper-center {
  926. display: none;
  927. }
  928. /* ========== SsImageCropper 裁剪组件样式 ========== */
  929. .ss-image-cropper-container {
  930. position: fixed;
  931. top: 0;
  932. left: 0;
  933. right: 0;
  934. bottom: 0;
  935. background: #000;
  936. z-index: 9999;
  937. display: flex;
  938. flex-direction: column;
  939. }
  940. #ss-image-cropper-img {
  941. max-width: 100%;
  942. max-height: 100%;
  943. display: block;
  944. }
  945. /* ========== SsUploadImage 多图上传组件样式 ========== */
  946. .ss-upload-image-multi {
  947. display: flex;
  948. flex-wrap: wrap;
  949. gap: 10px;
  950. }
  951. .image-list {
  952. display: flex;
  953. flex-wrap: wrap;
  954. gap: 10px;
  955. }
  956. .image-item {
  957. position: relative;
  958. overflow: hidden;
  959. cursor: pointer;
  960. transition: all 0.3s ease;
  961. }
  962. /* 已上传的图片 */
  963. .image-item img.image-display {
  964. width: 100%;
  965. height: 100%;
  966. object-fit: cover;
  967. display: block;
  968. border: 2px solid #e0e0e0;
  969. border-radius: inherit;
  970. }
  971. .image-item:hover img.image-display {
  972. border-color: #40ac6d;
  973. }
  974. /* 删除按钮 */
  975. .image-delete {
  976. position: absolute;
  977. top: 5px;
  978. right: 5px;
  979. width: 24px;
  980. height: 24px;
  981. background: rgba(0, 0, 0, 0.6);
  982. border-radius: 50%;
  983. display: flex;
  984. align-items: center;
  985. justify-content: center;
  986. opacity: 0;
  987. transition: opacity 0.3s ease;
  988. z-index: 10;
  989. }
  990. .image-item:hover .image-delete {
  991. opacity: 1;
  992. }
  993. .image-delete:active {
  994. background: rgba(255, 0, 0, 0.8);
  995. }
  996. /* 添加按钮 */
  997. .image-add {
  998. border: 2px dashed #e0e0e0;
  999. background: #fafafa;
  1000. display: flex;
  1001. flex-direction: column;
  1002. align-items: center;
  1003. justify-content: center;
  1004. transition: all 0.3s ease;
  1005. }
  1006. .image-add:hover {
  1007. border-color: #40ac6d;
  1008. background: #f0f9f4;
  1009. }
  1010. .image-add .add-text {
  1011. margin-top: 8px;
  1012. font-size: 12px;
  1013. color: #999;
  1014. }
  1015. /* ========== SsUploadFile 文件上传组件样式 ========== */
  1016. .ss-upload-file {
  1017. width: 100%;
  1018. }
  1019. .file-list {
  1020. display: flex;
  1021. flex-direction: column;
  1022. gap: 10px;
  1023. margin-bottom: 10px;
  1024. }
  1025. .file-item {
  1026. display: flex;
  1027. align-items: center;
  1028. padding: 12px;
  1029. background: #f5f5f5;
  1030. border-radius: 8px;
  1031. border: 1px solid #e0e0e0;
  1032. transition: all 0.3s ease;
  1033. }
  1034. .file-item:hover {
  1035. border-color: #40ac6d;
  1036. background: #f0f9f4;
  1037. }
  1038. .file-icon {
  1039. width: 40px;
  1040. height: 40px;
  1041. display: flex;
  1042. align-items: center;
  1043. justify-content: center;
  1044. font-size: 24px;
  1045. margin-right: 12px;
  1046. flex-shrink: 0;
  1047. }
  1048. .file-info {
  1049. flex: 1;
  1050. min-width: 0;
  1051. }
  1052. .file-name {
  1053. font-size: 14px;
  1054. color: #333;
  1055. word-break: break-all;
  1056. line-height: 1.4;
  1057. }
  1058. .file-actions {
  1059. display: flex;
  1060. gap: 8px;
  1061. margin-left: 12px;
  1062. flex-shrink: 0;
  1063. }
  1064. .file-download,
  1065. .file-delete {
  1066. width: 32px;
  1067. height: 32px;
  1068. display: flex;
  1069. align-items: center;
  1070. justify-content: center;
  1071. background: rgba(255, 255, 255, 0.8);
  1072. border-radius: 50%;
  1073. cursor: pointer;
  1074. transition: all 0.3s ease;
  1075. font-size: 16px;
  1076. }
  1077. .file-download {
  1078. color: #40ac6d;
  1079. }
  1080. .file-download:active {
  1081. background: #40ac6d;
  1082. color: #fff;
  1083. }
  1084. .file-delete {
  1085. color: #ff3b30;
  1086. }
  1087. .file-delete:active {
  1088. background: #ff3b30;
  1089. color: #fff;
  1090. }
  1091. .file-add-button {
  1092. width: 100%;
  1093. padding: 16px;
  1094. border: 2px dashed #e0e0e0;
  1095. background: #fafafa;
  1096. border-radius: 8px;
  1097. display: flex;
  1098. flex-direction: column;
  1099. align-items: center;
  1100. justify-content: center;
  1101. cursor: pointer;
  1102. transition: all 0.3s ease;
  1103. }
  1104. .file-add-button:hover {
  1105. border-color: #40ac6d;
  1106. background: #f0f9f4;
  1107. }
  1108. .file-add-button .add-icon {
  1109. font-size: 32px;
  1110. color: #999;
  1111. margin-bottom: 8px;
  1112. }
  1113. .file-add-button .add-text {
  1114. font-size: 14px;
  1115. color: #666;
  1116. margin-bottom: 4px;
  1117. }
  1118. .file-add-button .file-tip {
  1119. font-size: 12px;
  1120. color: #999;
  1121. text-align: center;
  1122. line-height: 1.4;
  1123. }
  1124. /* ========== SsCarCard 车辆卡片组件样式 ========== */
  1125. .car-card {
  1126. background: #FFFFFF;
  1127. border-radius: 4px;
  1128. overflow: visible;
  1129. padding: 17px;
  1130. margin-bottom: 17px;
  1131. box-shadow: 1px 3px 3px rgba(4, 0, 0, 0.15);
  1132. box-sizing: border-box;
  1133. position: relative;
  1134. z-index: 1;
  1135. transition: all 0.3s ease;
  1136. cursor: pointer;
  1137. }
  1138. /* 可预约状态 - 绿色 */
  1139. .car-card.status-available {
  1140. background-color: #c7ffe0;
  1141. }
  1142. /* 已被预约状态 - 橙色 */
  1143. .car-card.status-reserved {
  1144. background-color: #ffb882;
  1145. }
  1146. /* 禁用状态 - 灰色 */
  1147. .car-card.status-disabled {
  1148. background-color: #f5f5f5;
  1149. opacity: 0.6;
  1150. cursor: not-allowed;
  1151. }
  1152. .car-title {
  1153. font-size: 17px;
  1154. font-weight: bold;
  1155. color: #000000;
  1156. margin-bottom: 8.5px;
  1157. text-align: left;
  1158. }
  1159. .car-info {
  1160. display: flex;
  1161. align-items: flex-start;
  1162. gap: 22.5px;
  1163. }
  1164. .car-image-container {
  1165. flex-shrink: 0;
  1166. width: 190px;
  1167. height: 106px;
  1168. border-radius: 4px;
  1169. overflow: hidden;
  1170. background-color: #f8f8f8;
  1171. }
  1172. .car-image {
  1173. width: 100%;
  1174. height: 100%;
  1175. object-fit: cover;
  1176. }
  1177. .car-details {
  1178. flex: 1;
  1179. display: flex;
  1180. flex-direction: column;
  1181. gap: 4px;
  1182. min-width: 0;
  1183. }
  1184. .detail-item {
  1185. font-size: 17px;
  1186. color: #333;
  1187. line-height: 24px;
  1188. }
  1189. /* 禁用状态下的文字颜色 */
  1190. .status-disabled .car-title,
  1191. .status-disabled .detail-item {
  1192. color: #999 !important;
  1193. }
  1194. .status-disabled .detail-item.seats {
  1195. color: #bbb !important;
  1196. }
  1197. /* ===== 审核节点链组件样式 - PC端完整复制 ===== */
  1198. .verify-nodes {
  1199. flex: 1;
  1200. overflow-y: auto;
  1201. /* padding: 20px 0; */
  1202. margin-right: 6px;
  1203. }
  1204. .verify-nodes .group-item {
  1205. /* margin-bottom: 12px; */
  1206. padding: 20px 0 8px 20px;
  1207. }
  1208. .verify-nodes .group-item {
  1209. position: relative;
  1210. }
  1211. .verify-nodes .group-item:not(:last-child)::after {
  1212. position: absolute;
  1213. content: "";
  1214. width: 0;
  1215. height: calc(100% - 30px);
  1216. border-left: 1px solid #a0a0a0;
  1217. top: 46px;
  1218. left: 30px;
  1219. }
  1220. .verify-nodes .group-item-last-open::after {
  1221. position: absolute;
  1222. content: "";
  1223. width: 0;
  1224. height: var(--group-line-height);
  1225. border-left: 1px solid #a0a0a0;
  1226. top: 46px;
  1227. left: 30px;
  1228. }
  1229. .verify-nodes .group-item-title {
  1230. cursor: pointer;
  1231. display: flex;
  1232. flex-direction: row;
  1233. justify-content: flex-start;
  1234. align-items: center;
  1235. gap: 10px;
  1236. font-size: 16px;
  1237. }
  1238. .verify-nodes .group-item .icon {
  1239. color: #666666;
  1240. position: relative;
  1241. }
  1242. .verify-nodes .group-item .num {
  1243. position: absolute;
  1244. top: 60%;
  1245. left: 50%;
  1246. transform: translate(-50%, -50%);
  1247. color: #999999;
  1248. font-size: 14px;
  1249. }
  1250. .verify-nodes .group-item-children {
  1251. padding-left: 15px;
  1252. }
  1253. .verify-node-container {
  1254. /* padding: 16px 0; */
  1255. }
  1256. .verify-node-container>.info {
  1257. padding: 0 10px;
  1258. display: flex;
  1259. flex-direction: row;
  1260. justify-content: space-between;
  1261. align-items: center;
  1262. height: 60px;
  1263. }
  1264. .verify-node-container>.info>.avatar {
  1265. width: 50px;
  1266. height: 50px;
  1267. display: flex;
  1268. flex-direction: row;
  1269. justify-content: center;
  1270. align-items: center;
  1271. }
  1272. .verify-node-container>.info>.desc {
  1273. width: calc(100% - 60px - 60px);
  1274. color: #333333;
  1275. font-size: 16px;
  1276. line-height: 1.6em;
  1277. padding: 0 10px;
  1278. display: flex;
  1279. flex-direction: column;
  1280. justify-content: flex-end;
  1281. }
  1282. .verify-node-container>.info>.desc>div {
  1283. overflow: hidden;
  1284. text-overflow: ellipsis;
  1285. white-space: nowrap;
  1286. }
  1287. .verify-node-container>.info>.link {
  1288. width: 60px;
  1289. }
  1290. .verify-node-container>.info>.link>div {
  1291. padding-top: 30px;
  1292. display: flex;
  1293. flex-direction: row;
  1294. justify-content: flex-end;
  1295. margin-right: 5px;
  1296. align-items: center;
  1297. gap: 10px;
  1298. color: #555c6b;
  1299. }
  1300. .verify-node-container .description {
  1301. margin-top: 5px;
  1302. padding: 10px;
  1303. }
  1304. .verify-node-container .description.link {
  1305. position: relative;
  1306. }
  1307. .verify-node-container .description.link::before {
  1308. position: absolute;
  1309. width: 20px;
  1310. content: "";
  1311. height: 0;
  1312. border-bottom: 1px solid #a0a0a0;
  1313. top: 30px;
  1314. left: -10px;
  1315. }
  1316. .verify-node-container .description.link::after {
  1317. position: absolute;
  1318. width: 16px;
  1319. content: attr(data-num);
  1320. height: 16px;
  1321. border-radius: 50%;
  1322. background: #edf1f5;
  1323. border: 1px solid #a0a0a0;
  1324. display: flex;
  1325. flex-direction: row;
  1326. justify-content: center;
  1327. align-items: center;
  1328. color: #666666;
  1329. font-size: 12px;
  1330. left: -13px;
  1331. top: 22px;
  1332. z-index: 1;
  1333. }
  1334. .verify-node-container .description>div {
  1335. width: 100%;
  1336. background: #fff;
  1337. border-radius: 3px;
  1338. position: relative;
  1339. padding: 8px 17px;
  1340. color: #333333;
  1341. font-size: 16px;
  1342. }
  1343. .verify-node-container .description>div::before {
  1344. content: "";
  1345. width: 10px;
  1346. height: 10px;
  1347. background: #fff;
  1348. position: absolute;
  1349. left: 26px;
  1350. top: -5px;
  1351. transform: rotate(45deg);
  1352. border-radius: 2px;
  1353. }
  1354. .verify-node-container .time {
  1355. display: flex;
  1356. flex-direction: row;
  1357. justify-content: flex-end;
  1358. align-items: center;
  1359. color: #666666;
  1360. font-size: 16px;
  1361. padding: 0 10px;
  1362. }
  1363. /* ===== PC端通用图标样式 - 完整搬运 ===== */
  1364. /* 图标相关开始 */
  1365. /* 通用icon */
  1366. .common-icon{
  1367. font-size: 22px;
  1368. font-family: "iconfont";
  1369. }
  1370. .common-icon-add::before{
  1371. content: "\e60d";
  1372. color: #999999;
  1373. }
  1374. .common-icon-setting::before{
  1375. content: "\e630";
  1376. /* color: #999999; */
  1377. }
  1378. /* 减少 */
  1379. .common-icon-reduce::before{
  1380. content: "\e6a2";
  1381. color: #EB6100;
  1382. }
  1383. /* 附件 */
  1384. .common-icon-paper-clip::before{
  1385. content: "\e676";
  1386. color: #999999;
  1387. }
  1388. .common-icon-change::before{
  1389. font-size: 16px;
  1390. content: "→";
  1391. color: red;
  1392. }
  1393. /* 表情 */
  1394. .common-icon-smile::before{
  1395. content: "\e616";
  1396. color: #999999;
  1397. }
  1398. /* 常用语 */
  1399. .common-icon-common-words::before{
  1400. content: "\e69d";
  1401. color: #999999;
  1402. }
  1403. /* 手写 */
  1404. .common-icon-handwriting::before{
  1405. content: "\e6ab";
  1406. color: #999999;
  1407. }
  1408. /* 视频播放 */
  1409. .common-icon-video::before{
  1410. content: "\e699";
  1411. color: #999999;
  1412. }
  1413. /* 文件夹-关闭 */
  1414. .common-icon-folder-close::before{
  1415. content: "\e60b";
  1416. color: #999999;
  1417. }
  1418. /* 文件夹-打开 */
  1419. .common-icon-folder-open::before{
  1420. content: "\e60c";
  1421. color: #999999;
  1422. }
  1423. /* 文件 */
  1424. .common-icon-file::before{
  1425. content: "\e69e";
  1426. color: #999999;
  1427. }
  1428. /* 刷新 */
  1429. .common-icon-refresh::before{
  1430. content: "\e635";
  1431. color: #999;
  1432. }
  1433. /* 待办 */
  1434. .common-icon-todo::before{
  1435. content: "\e65c";
  1436. color: #999;
  1437. }
  1438. /* 催办 */
  1439. .common-icon-urge::before{
  1440. content: "\e664";
  1441. color: #999;
  1442. }
  1443. /* 快捷发起 */
  1444. .common-icon-quick-start::before{
  1445. content: "\e6a6";
  1446. color: #999;
  1447. }
  1448. /* 公告 */
  1449. .common-icon-notice::before{
  1450. content: "\e6ac";
  1451. color: #999;
  1452. }
  1453. /* 统计图 */
  1454. .common-icon-chart::before{
  1455. content: "\e6a5";
  1456. color: #999;
  1457. }
  1458. /* 请假 */
  1459. .common-icon-leave-big::before{
  1460. font-size: 36px;
  1461. content: "\e6af";
  1462. color: #999999;
  1463. }
  1464. /* 收付款 */
  1465. .common-icon-receipt-big::before{
  1466. font-size: 36px;
  1467. content: "\e68e";
  1468. color: #999999;
  1469. }
  1470. /* 考勤 */
  1471. .common-icon-attendance-big::before{
  1472. font-size: 36px;
  1473. content: "\e694";
  1474. color: #999999;
  1475. }
  1476. /* 会议 */
  1477. .common-icon-meeting::before{
  1478. content: "\e692";
  1479. color: #999999;
  1480. }
  1481. /* 一卡通 */
  1482. .common-icon-card::before{
  1483. content: "\e6a0";
  1484. color: #999999;
  1485. }
  1486. /* 个人网站 */
  1487. .common-icon-site::before{
  1488. content: "\e6ae";
  1489. color: #999999;
  1490. }
  1491. .common-icon-arrow-right{
  1492. font-size: 14px;
  1493. }
  1494. .common-icon-arrow-right::before{
  1495. content: "\e640";
  1496. }
  1497. /* 通用icon结束 */
  1498. /* ==================== ss-sub-tab 组件样式 开始 ==================== */
  1499. .ss-sub-tab {
  1500. display: flex;
  1501. flex-direction: column;
  1502. height: 100vh;
  1503. }
  1504. .ss-sub-tab__bar {
  1505. width: 95%;
  1506. margin: 0 auto 10px;
  1507. background: #f5f5f5;
  1508. overflow-x: auto;
  1509. overflow-y: hidden;
  1510. padding-left: 12px;
  1511. -webkit-overflow-scrolling: touch;
  1512. display: flex;
  1513. flex-wrap: nowrap;
  1514. flex-shrink: 0;
  1515. }
  1516. .ss-sub-tab__bar::-webkit-scrollbar {
  1517. display: none;
  1518. }
  1519. .ss-sub-tab__item {
  1520. flex-shrink: 0;
  1521. margin-right: 25px;
  1522. height: 25px;
  1523. line-height: 15px;
  1524. font-size: 15px;
  1525. color: #999;
  1526. position: relative;
  1527. cursor: pointer;
  1528. transition: color 0.3s;
  1529. }
  1530. .ss-sub-tab__item.ss-sub-tab__item--active {
  1531. color: #000000;
  1532. }
  1533. .ss-sub-tab__item.ss-sub-tab__item--active::after {
  1534. content: '';
  1535. position: absolute;
  1536. bottom: 0;
  1537. left: -5px;
  1538. width: calc(100% + 10px);
  1539. height: 3px;
  1540. border-radius: 50px;
  1541. background: #000000;
  1542. }
  1543. .ss-sub-tab__content {
  1544. width: 100%;
  1545. margin: 0 auto;
  1546. flex: 1;
  1547. display: flex;
  1548. flex-direction: column;
  1549. }
  1550. .ss-sub-tab__content iframe {
  1551. width: 100%;
  1552. flex: 1;
  1553. border: none;
  1554. /* background: #fff; */
  1555. border-radius: 8px;
  1556. }
  1557. /* ==================== ss-sub-tab 组件样式 结束 ==================== */