云链智安app
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.

index.css 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  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. @property --l-loading-start {
  27. syntax: "<length-percentage>";
  28. initial-value: 1%;
  29. inherits: false;
  30. }
  31. @property --l-loading-end {
  32. syntax: "<length-percentage>";
  33. initial-value: 1%;
  34. inherits: false;
  35. }
  36. @property --l-left {
  37. syntax: "<length-percentage>";
  38. initial-value: 1%;
  39. inherits: false;
  40. }
  41. @property --l-loadding-ball-size {
  42. syntax: "<length> | <length-percentage>";
  43. inherits: false;
  44. }
  45. [data-v-e1d73892]:host {
  46. display: inline-flex;
  47. }
  48. .l-loading[data-v-e1d73892] {
  49. position: relative;
  50. color: var(--l-loading-color, #3283ff);
  51. font-size: 0;
  52. vertical-align: middle;
  53. }
  54. .l-loading--ball[data-v-e1d73892] {
  55. display: inline-flex;
  56. align-items: center;
  57. }
  58. .l-loading--ball .l-loading__ball[data-v-e1d73892] {
  59. position: relative;
  60. perspective: calc(var(--l-loadding-ball-size) * 4);
  61. transform-style: preserve-3d;
  62. }
  63. .l-loading--ball .l-loading__ball[data-v-e1d73892]:before {
  64. background-color: #3283ff;
  65. left: 0%;
  66. animation-name: l-ball-before-e1d73892;
  67. }
  68. .l-loading--ball .l-loading__ball[data-v-e1d73892]:after {
  69. right: 0;
  70. background-color: red;
  71. animation-name: l-ball-after-e1d73892;
  72. }
  73. .l-loading--ball .l-loading__ball[data-v-e1d73892]:before, .l-loading--ball .l-loading__ball[data-v-e1d73892]:after {
  74. top: 0;
  75. content: "";
  76. position: absolute;
  77. height: 100%;
  78. aspect-ratio: 1/1;
  79. border-radius: 50%;
  80. animation-iteration-count: infinite;
  81. animation-delay: -100ms;
  82. animation-duration: 900ms;
  83. mix-blend-mode: darken;
  84. }
  85. .l-loading--circular .l-loading__circular[data-v-e1d73892] {
  86. display: inline-block;
  87. position: relative;
  88. animation: l-rotate-e1d73892 var(--l-loading-duration, 1s) linear infinite;
  89. vertical-align: middle;
  90. }
  91. .l-loading--circular .l-loading__circular[data-v-e1d73892]:before {
  92. content: "";
  93. display: block;
  94. width: 100%;
  95. height: 100%;
  96. border-radius: 50%;
  97. background-image: conic-gradient(var(--l-loading-color-1, transparent) 0%, var(--l-loading-color-2, currentColor) 100%);
  98. mask: radial-gradient(closest-side, transparent calc(80% - 1px), #fff 80%);
  99. -webkit-mask: radial-gradient(closest-side, transparent calc(80% - 1px), #fff 80%);
  100. animation: l-circular-e1d73892 2.5s ease-in-out infinite;
  101. transform: rotate(90deg);
  102. }
  103. .l-loading--spinner .l-loading__spinner[data-v-e1d73892] {
  104. position: relative;
  105. box-sizing: border-box;
  106. width: 100%;
  107. height: 100%;
  108. max-width: 100%;
  109. max-height: 100%;
  110. animation-timing-function: steps(12);
  111. animation: l-rotate-e1d73892 0.8s linear infinite;
  112. }
  113. .l-loading--spinner .l-loading__dot[data-v-e1d73892] {
  114. position: absolute;
  115. top: 0;
  116. left: 0;
  117. width: 100%;
  118. height: 100%;
  119. transform: rotate(calc(var(--l-loading-dot, 1) * 30deg));
  120. opacity: calc(var(--l-loading-dot, 1) / 12);
  121. }
  122. .l-loading--spinner .l-loading__dot[data-v-e1d73892]::before {
  123. display: block;
  124. width: 0.15625rem;
  125. height: 25%;
  126. margin: 0 auto;
  127. background-color: currentColor;
  128. border-radius: 40%;
  129. content: " ";
  130. }
  131. .l-loading__text[data-v-e1d73892] {
  132. display: inline-block;
  133. margin-left: var(--l-spacer-xs, 8px);
  134. color: var(--l-loading-text-color, var(--l-text-color-3, rgba(0, 0, 0, 0.45)));
  135. font-size: var(--l-loading-font-size, var(--l-font-size, 14px));
  136. vertical-align: middle;
  137. }
  138. .l-loading.is-vertical[data-v-e1d73892] {
  139. display: inline-flex;
  140. flex-direction: column;
  141. align-items: center;
  142. }
  143. .l-loading.is-vertical .l-loading__text[data-v-e1d73892] {
  144. margin: var(--l-spacer-tn, 4px) 0 0;
  145. }
  146. .l-loading__ball[data-v-e1d73892], .l-loading__circular[data-v-e1d73892], .l-loading__spinner[data-v-e1d73892] {
  147. width: var(--l-loading-size, 20px);
  148. height: var(--l-loading-size, 20px);
  149. }
  150. @keyframes l-circular-e1d73892 {
  151. 0% {
  152. --l-loading-start: 0%;
  153. --l-loading-end: 0%;
  154. }
  155. 50% {
  156. --l-loading-start: 0%;
  157. --l-loading-end: 100%;
  158. }
  159. 100% {
  160. --l-loading-start: 100%;
  161. --l-loading-end: 100%;
  162. }
  163. }
  164. @keyframes l-rotate-e1d73892 {
  165. to {
  166. transform: rotate(1turn);
  167. }
  168. }
  169. @keyframes l-ball-before-e1d73892 {
  170. 0% {
  171. animation-timing-function: ease-in;
  172. }
  173. 25% {
  174. animation-timing-function: ease-out;
  175. --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)) / 2);
  176. transform: translate3d(var(--l-left), 0, var(--l-loadding-ball-size));
  177. }
  178. 50% {
  179. --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)));
  180. animation-timing-function: ease-in;
  181. transform: translate3d(var(--l-left), 0, 0);
  182. }
  183. 75% {
  184. animation-timing-function: ease-out;
  185. --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)) / 2);
  186. transform: translate3d(var(--l-left), 0, calc(var(--l-loadding-ball-size) * -1));
  187. }
  188. }
  189. @keyframes l-ball-after-e1d73892 {
  190. 0% {
  191. animation-timing-function: ease-in;
  192. }
  193. 25% {
  194. animation-timing-function: ease-out;
  195. --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)) / 2 * -1);
  196. transform: translate3d(var(--l-left), 0, calc(var(--l-loadding-ball-size) * -1));
  197. }
  198. 50% {
  199. animation-timing-function: ease-in;
  200. --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)) * -1);
  201. transform: translate3d(var(--l-left), 0, 0);
  202. }
  203. 75% {
  204. animation-timing-function: ease-out;
  205. --l-left: calc((var(--l-loadding-ball-size,100%) * 2.1 - var(--l-loadding-ball-size,100%)) / 2 * -1);
  206. transform: translate3d(var(--l-left), 0, var(--l-loadding-ball-size));
  207. }
  208. }
  209. /**
  210. * 这里是uni-app内置的常用样式变量
  211. *
  212. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  213. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  214. *
  215. */
  216. /**
  217. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  218. *
  219. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  220. */
  221. /* 颜色变量 */
  222. /* 行为相关颜色 */
  223. /* 文字基本颜色 */
  224. /* 背景颜色 */
  225. /* 边框颜色 */
  226. /* 尺寸变量 */
  227. /* 文字尺寸 */
  228. /* 图片尺寸 */
  229. /* Border Radius */
  230. /* 水平间距 */
  231. /* 垂直间距 */
  232. /* 透明度 */
  233. /* 文章场景相关 */
  234. .l-switch[data-v-43179dfc] {
  235. display: inline-flex;
  236. flex-direction: row;
  237. align-items: center;
  238. }
  239. .l-switch__rail[data-v-43179dfc] {
  240. position: relative;
  241. height: var(--l-switch-height, 28px);
  242. min-width: var(--l-switch-width, 45px);
  243. transition-duration: 300ms;
  244. transition-property: background-color;
  245. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  246. }
  247. .l-switch--hover .l-switch__dot[data-v-43179dfc] {
  248. max-width: var(--l-switch-dot-size-pressed, calc(var(--l-switch-dot-size, 22px) * 1.25));
  249. }
  250. .l-switch--hover.l-switch--checked .l-switch__dot[data-v-43179dfc] {
  251. left: calc(100% - var(--l-switch-dot-size-pressed, calc(var(--l-switch-dot-size, 22px) * 1.25)) - var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2)));
  252. }
  253. .l-switch--hover.l-switch--checked .l-switch__placeholder--unchecked[data-v-43179dfc] {
  254. padding-left: calc(1.25 * var(--l-switch-dot-size-pressed, calc(var(--l-switch-dot-size, 22px) * 1.25)));
  255. }
  256. .l-switch--hover.l-switch--unchecked .l-switch__placeholder--checked[data-v-43179dfc] {
  257. padding-right: calc(1.25 * var(--l-switch-dot-size-pressed, calc(var(--l-switch-dot-size, 22px) * 1.25)));
  258. }
  259. .l-switch--checked[data-v-43179dfc] {
  260. background-color: var(--l-switch-checked-color, #3283ff);
  261. }
  262. .l-switch--checked .l-switch__dot[data-v-43179dfc] {
  263. left: calc(100% - var(--l-switch-dot-size, 22px) - var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2)));
  264. }
  265. .l-switch--checked.l-switch--disabled[data-v-43179dfc] {
  266. background-color: var(--l-switch-checked-disabled-color, var(--l-primary-color-3, #add6ff));
  267. }
  268. .l-switch--unchecked[data-v-43179dfc] {
  269. background-color: var(--l-switch-unchecked-color, var(--l-gray-4, #dcdcdc));
  270. }
  271. .l-switch--unchecked.l-switch--disabled[data-v-43179dfc] {
  272. background-color: var(--l-switch-unchecked-disabled-color, var(--l-gray-2, #eeeeee));
  273. }
  274. .l-switch--round[data-v-43179dfc] {
  275. border-radius: var(--l-switch-radius, 99px);
  276. }
  277. .l-switch--square[data-v-43179dfc] {
  278. border-radius: var(--l-switch-radius, 4px);
  279. }
  280. .l-switch__dot[data-v-43179dfc] {
  281. position: absolute;
  282. background-color: var(--l-switch-dot-bg-color, white);
  283. height: var(--l-switch-dot-size, 22px);
  284. pointer-events: none;
  285. justify-content: center;
  286. align-items: center;
  287. overflow: visible;
  288. transition-duration: 300ms;
  289. transition-property: background-color, opacity, left, max-width, width, box-shadow, transform;
  290. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  291. display: flex;
  292. width: var(--l-switch-dot-size-pressed, calc(var(--l-switch-dot-size, 22px) * 1.25));
  293. max-width: var(--l-switch-dot-size, 22px);
  294. left: var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2));
  295. top: var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2));
  296. --l-loading-size: calc(var(--l-switch-dot-size, 22px) * 0.7);
  297. --l-loading-color: var(--l-switch-checked-color, #3283ff);
  298. }
  299. .l-switch__dot--round[data-v-43179dfc] {
  300. border-radius: var(--l-switch-dot-radius, 99px);
  301. }
  302. .l-switch__dot--square[data-v-43179dfc] {
  303. border-radius: var(--l-switch-dot-radius, 2.5px);
  304. }
  305. .l-switch__placeholder[data-v-43179dfc] {
  306. overflow: visible;
  307. position: absolute;
  308. white-space: nowrap;
  309. pointer-events: none;
  310. top: 50%;
  311. transform: translateY(-53%);
  312. line-height: 1;
  313. font-size: var(--l-swtich-font-size, 14px);
  314. color: var(--l-swtich-text-color, white);
  315. box-sizing: content-box;
  316. }
  317. .l-switch__placeholder--checked[data-v-43179dfc] {
  318. right: 0;
  319. text-align: right;
  320. padding-right: calc(1.20 * var(--l-switch-height, 28px) - var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2)));
  321. }
  322. .l-switch__placeholder--unchecked[data-v-43179dfc] {
  323. left: 0;
  324. padding-left: calc(1.20 * var(--l-switch-height, 28px) - var(--l-switch-dot-offset, calc((var(--l-switch-height, 28px) - var(--l-switch-dot-size, 22px)) / 2)));
  325. }
  326. .l-switch__children-placeholder[data-v-43179dfc] {
  327. height: var(--l-switch-height, 28px);
  328. }
  329. .l-switch__rail-placeholder[data-v-43179dfc] {
  330. opacity: 0;
  331. padding-left: calc(1.75 * var(--l-switch-height, 28px));
  332. font-size: var(--l-swtich-font-size, 14px);
  333. }
  334. .uni-page[data-v-79e6a490]{
  335. width: 100%;
  336. height: 100%;
  337. }
  338. .container[data-v-79e6a490] {
  339. height: 92vh;
  340. background: linear-gradient(to bottom, #007545 -40%, #f0f5f5 40%, #f0f5f5 100%);
  341. box-sizing: border-box;
  342. }
  343. .account_number[data-v-79e6a490]{
  344. width: 100%;
  345. padding: 0.625rem;
  346. display: flex;
  347. justify-content: center;
  348. box-sizing: border-box;
  349. }
  350. .toptabbar[data-v-79e6a490] {
  351. width: 100%;
  352. padding: 0.3125rem 0.625rem;
  353. box-sizing: border-box;
  354. }
  355. .setup[data-v-79e6a490]{
  356. width: 100%;
  357. height: 100vh;
  358. background: linear-gradient(to bottom, #007544 -40%, #F0F5F5 40%,#F0F5F5 100%);
  359. padding: 0 0.9375rem;
  360. box-sizing: border-box;
  361. }
  362. .title[data-v-79e6a490]{
  363. font-weight: 500;
  364. font-size: 1.125rem;
  365. display: flex;
  366. align-items: center;
  367. margin-top: 0.625rem;
  368. justify-content: center;
  369. }
  370. .user[data-v-79e6a490]{
  371. display: flex;
  372. margin-top: 1.875rem;
  373. }
  374. .user_to[data-v-79e6a490]{
  375. width: 3.125rem;
  376. height: 3.125rem;
  377. border-radius: 100%;
  378. margin-right: 1.25rem;
  379. }
  380. .user_name[data-v-79e6a490]{
  381. display: flex;
  382. flex-direction: column;
  383. justify-content: space-around;
  384. }
  385. .user_name1[data-v-79e6a490]{
  386. font-size: 0.875rem;
  387. color: #ffffff;
  388. }
  389. .user_name2[data-v-79e6a490]{
  390. font-size: 0.75rem;
  391. color: #ffffff;
  392. }
  393. .equipment[data-v-79e6a490]{
  394. width: 100%;
  395. display: flex;
  396. justify-content: space-between;
  397. box-sizing: border-box;
  398. margin-top: 1.25rem;
  399. margin-bottom: 1.25rem;
  400. }
  401. .equipment_1[data-v-79e6a490]{
  402. width: 48%;
  403. background-color: #ffffff;
  404. border-radius: 0.5rem;
  405. display: flex;
  406. align-items: center;
  407. justify-content: space-between;
  408. padding: 0 0.625rem;
  409. box-sizing: border-box;
  410. }
  411. .user_left[data-v-79e6a490]{
  412. display: flex;
  413. flex-direction: column;
  414. justify-content:space-around;
  415. padding: 0.625rem 0;
  416. box-sizing: border-box;
  417. }
  418. .equipment_2[data-v-79e6a490]{
  419. width: 48%;
  420. background-color: #ffffff;
  421. border-radius: 0.3125rem;
  422. box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  423. }
  424. .equipment_rightdiv[data-v-79e6a490]{
  425. width: 2.4375rem;
  426. height:2.4375rem;
  427. display: flex;
  428. align-items: center;
  429. justify-content: center;
  430. background-color: #E3F6F8;
  431. border-radius: 100%;
  432. overflow: hidden;
  433. }
  434. .equipment_rightdiv1[data-v-79e6a490]{
  435. width: 2.4375rem;
  436. height:2.4375rem;
  437. display: flex;
  438. align-items: center;
  439. justify-content: center;
  440. background-color: #E2ECFF;
  441. border-radius: 100%;
  442. overflow: hidden;
  443. }
  444. .equipment_right1[data-v-79e6a490]{
  445. width: 1.5625rem;
  446. height: 1.5625rem;
  447. }
  448. .equipment_right[data-v-79e6a490]{
  449. width: 1.5625rem;
  450. height: 1.29094rem;
  451. }
  452. .user_leftname[data-v-79e6a490]{
  453. font-size: 0.875rem;
  454. }
  455. .user_lefteq[data-v-79e6a490]{
  456. width: 6.25rem;
  457. font-size: 0.8125rem;
  458. margin-top: 0.375rem;
  459. color: #999999;
  460. white-space: nowrap; /* 不换行 */
  461. overflow: hidden; /* 超出部分隐藏 */
  462. text-overflow: ellipsis; /* 显示省略号 */
  463. }
  464. .equipment_2[data-v-79e6a490]{
  465. width: 48%;
  466. background-color: #ffffff;
  467. border-radius: 0.5rem;
  468. display: flex;
  469. align-items: center;
  470. justify-content: space-between;
  471. padding: 0 0.625rem;
  472. box-sizing: border-box;
  473. }
  474. .allocation[data-v-79e6a490]{
  475. width: 100%;
  476. height: 2.5rem;
  477. display: flex;
  478. align-items: center;
  479. justify-content:space-between;
  480. padding: 0 0.625rem;
  481. overflow: hidden;
  482. box-sizing: border-box;
  483. }
  484. .allocation_1[data-v-79e6a490]{
  485. display: flex;
  486. font-size:13px;
  487. align-items: center;
  488. }
  489. .allocation_box[data-v-79e6a490]{
  490. border-radius: 0.5rem;
  491. background-color: #ffffff;
  492. padding: 0.3125rem 0;
  493. box-sizing: border-box;
  494. margin-top: 3.75rem;
  495. box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  496. }
  497. .allocation_2[data-v-79e6a490]{
  498. color: #999999;
  499. }
  500. .allocation_3[data-v-79e6a490]{
  501. font-size: 14px;
  502. }
  503. .content-container[data-v-79e6a490]{
  504. margin-top: 1.25rem;
  505. display: flex;
  506. flex-direction: column;
  507. justify-content: center;
  508. align-items: center;
  509. }
  510. .ticon[data-v-79e6a490]{
  511. width: 100%;
  512. display: flex;
  513. align-items: center;
  514. justify-content: space-between;
  515. }
  516. .ticonright[data-v-79e6a490]{
  517. margin-right: 0.3125rem;
  518. font-size: 0.875rem;
  519. font-weight: 500;
  520. }
  521. .contentadd[data-v-79e6a490]{
  522. width: 100%;
  523. height: 100%;
  524. margin-top: 1.25rem;
  525. padding: 0 0.03125rem;
  526. box-sizing: border-box;
  527. }
  528. .weui-input[data-v-79e6a490]{
  529. width: 99%;
  530. height: 2.5rem;
  531. border: 0.03125rem solid #cccccc;
  532. padding: 0 0.3125rem;
  533. border-radius: 0.3125rem;
  534. box-sizing: border-box;
  535. }
  536. .input-example[data-v-79e6a490] {
  537. width: 99%;
  538. --td-input-vertical-padding: 0.5rem;
  539. background-color: var(--bg-color-demo);
  540. border: 0.03125rem solid #cccccc;
  541. border-radius: 0.375rem;
  542. padding: 0.03125rem;
  543. margin-top: 1.25rem;
  544. box-sizing: border-box;
  545. }
  546. .inputbox[data-v-79e6a490]{
  547. width: 100%;
  548. margin-top: 0.625rem;
  549. font-size: 0.8125rem;
  550. color: #cccccc;
  551. }
  552. .t-dialog__footer--full[data-v-79e6a490]{
  553. padding: 1.375rem 0 0;
  554. }
  555. uni-button[data-v-79e6a490]{
  556. padding: 0;
  557. margin: 0;
  558. font-size: 0.875rem;
  559. background-color: #ffffff;
  560. border:0 solid #ffffff !important;
  561. border: none !important;
  562. }
  563. .allocation_31[data-v-79e6a490]{
  564. width: 100%;
  565. font-size: 14px;
  566. }
  567. .contact-button[data-v-79e6a490] {
  568. width: 100%;
  569. border: none !important;
  570. display: flex;
  571. }
  572. .avatar-edit-container[data-v-79e6a490] {
  573. display: inline-block;
  574. position: relative;
  575. }
  576. .avatar-wrapper[data-v-79e6a490] {
  577. position: relative;
  578. border-radius: 50%;
  579. overflow: hidden;
  580. cursor: pointer;
  581. transition: all 0.3s ease;
  582. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  583. }
  584. .avatar-img[data-v-79e6a490] {
  585. width: 100%;
  586. height: 100%;
  587. object-fit: cover;
  588. display: block;
  589. transition: transform 0.3s ease;
  590. }
  591. .avatar-wrapper:hover .avatar-img[data-v-79e6a490] {
  592. transform: scale(1.05);
  593. }
  594. .edit-overlay[data-v-79e6a490] {
  595. position: absolute;
  596. top: 0;
  597. left: 0;
  598. width: 100%;
  599. height: 100%;
  600. background-color: rgba(0, 0, 0, 0.6);
  601. display: flex;
  602. align-items: center;
  603. justify-content: center;
  604. color: white;
  605. border-radius: 50%;
  606. }
  607. .edit-content[data-v-79e6a490] {
  608. text-align: center;
  609. }
  610. .edit-icon[data-v-79e6a490] {
  611. font-size: 24px;
  612. margin-bottom: 8px;
  613. display: block;
  614. }
  615. .edit-text[data-v-79e6a490] {
  616. font-size: 14px;
  617. display: block;
  618. font-weight: 500;
  619. }
  620. .file-input[data-v-79e6a490] {
  621. display: none;
  622. }
  623. /* 过渡动画 */
  624. .fade-enter-active[data-v-79e6a490], .fade-leave-active[data-v-79e6a490] {
  625. transition: opacity 0.3s;
  626. }
  627. .fade-enter[data-v-79e6a490], .fade-leave-to[data-v-79e6a490] {
  628. opacity: 0;
  629. }