member.scss 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552
  1. .page-height {
  2. height: 100%;
  3. }
  4. .common-wrap {
  5. display: flex;
  6. }
  7. .left-wrap {
  8. position: relative;
  9. width: 5rem;
  10. border: 0.01rem solid #e6e6e6;
  11. .left-wrap-head {
  12. height: 0.6rem;
  13. box-sizing: border-box;
  14. line-height: 0.6rem;
  15. display: flex;
  16. position: relative;
  17. text-align: center;
  18. justify-content: center;
  19. border-bottom: 0.01rem solid #e6e6e6;
  20. .head-icon {
  21. position: absolute;
  22. right: 0.15rem;
  23. font-size: 0.26rem;
  24. cursor: pointer;
  25. }
  26. .head-text {
  27. font-size: 0.18rem;
  28. font-weight: 500;
  29. }
  30. }
  31. .left-wrap-content {
  32. height: calc(100% - 0.6rem);
  33. .wrap-search-box {
  34. height: 0.35rem;
  35. padding: 0.1rem 0.15rem;
  36. border-bottom: 0.01rem solid #e6e6e6;
  37. .wrap-search {
  38. background: #f5f5f5;
  39. display: flex;
  40. position: relative;
  41. padding: 0.05rem 0.15rem 0.05rem 0.4rem;
  42. input {
  43. width: 100%;
  44. }
  45. .iconfont {
  46. position: absolute;
  47. left: 0.15rem;
  48. top: 0.08rem;
  49. cursor: pointer;
  50. }
  51. }
  52. }
  53. .content-list {
  54. height: calc(100% - 1.23rem);
  55. .content-item {
  56. padding: 0.15rem;
  57. display: flex;
  58. align-items: center;
  59. cursor: pointer;
  60. border-bottom: 0.01rem solid #e6e6e6;
  61. &.active {
  62. background: #f3eeff;
  63. }
  64. .item-img {
  65. width: 0.45rem;
  66. height: 0.45rem;
  67. border-radius: 50%;
  68. image {
  69. width: 100%;
  70. height: 100%;
  71. border-radius: 50%;
  72. }
  73. }
  74. .item-content {
  75. padding-left: 0.15rem;
  76. width: calc(100% - 0.45rem);
  77. box-sizing: border-box;
  78. .item-title {
  79. width: 100%;
  80. font-size: 0.16rem;
  81. align-items: center;
  82. display: flex;
  83. justify-content: space-between;
  84. .item-label {
  85. border: 0.01rem solid $primary-color;
  86. color: $primary-color;
  87. background-color: #fff;
  88. border-radius: 0.02rem;
  89. width: fit-content;
  90. padding: 0.01rem 0.05rem;
  91. margin-left: 0.15rem;
  92. }
  93. .item-title-text {
  94. overflow: hidden;
  95. text-overflow: ellipsis;
  96. white-space: nowrap;
  97. max-width: 50%;
  98. font-size: 0.15rem;
  99. }
  100. }
  101. .item-desc {
  102. margin-top: 0.15rem;
  103. font-size: 0.14rem;
  104. display: flex;
  105. justify-content: space-between;
  106. text{
  107. color: #fe2278;
  108. font-size: 0.18rem;
  109. }
  110. }
  111. }
  112. }
  113. }
  114. .add-member{
  115. position: absolute;
  116. bottom: 0;
  117. left: 0;
  118. right: 0;
  119. padding: 0.15rem;
  120. border-top: 0.01rem solid #e6e6e6;
  121. background: #fff;
  122. }
  123. }
  124. }
  125. .right-wrap {
  126. width: calc(100% - 5rem);
  127. border: 0.01rem solid #e6e6e6;
  128. border-left: 0;
  129. .right-wrap-head {
  130. height: 0.6rem;
  131. box-sizing: border-box;
  132. line-height: 0.6rem;
  133. display: flex;
  134. position: relative;
  135. text-align: center;
  136. justify-content: center;
  137. border-bottom: 0.01rem solid #e6e6e6;
  138. .head-text {
  139. font-size: 0.18rem;
  140. font-weight: 500;
  141. }
  142. }
  143. .right-content {
  144. background: #f8f8f8;
  145. padding: 0.15rem;
  146. width: 100%;
  147. box-sizing: border-box;
  148. height: calc(100% - 0.5rem);
  149. .content-block {
  150. width: 100%;
  151. box-sizing: border-box;
  152. display: flex;
  153. align-items: center;
  154. .item-img {
  155. width: 0.7rem;
  156. height: 0.7rem;
  157. border-radius: 50%;
  158. box-sizing: border-box;
  159. image {
  160. width: 100%;
  161. height: 100%;
  162. border-radius: 50%;
  163. }
  164. }
  165. .item-content {
  166. padding-left: 0.15rem;
  167. width: calc(100% - 0.7rem);
  168. box-sizing: border-box;
  169. .item-title {
  170. width: 100%;
  171. font-size: 0.16rem;
  172. align-items: center;
  173. display: flex;
  174. .item-label {
  175. border: 0.01rem solid $primary-color;
  176. color: $primary-color;
  177. background-color: #fff;
  178. border-radius: 0.02rem;
  179. width: fit-content;
  180. padding: 0.01rem 0.05rem;
  181. margin-left: 0.15rem;
  182. }
  183. .item-title-text {
  184. overflow: hidden;
  185. text-overflow: ellipsis;
  186. white-space: nowrap;
  187. max-width: 50%;
  188. font-size: 0.16rem;
  189. }
  190. }
  191. .info-list {
  192. margin-top: 0.15rem;
  193. display: flex;
  194. justify-content: space-between;
  195. .info-item {
  196. font-size: 0.14rem;
  197. margin-right: 0.2rem;
  198. }
  199. }
  200. }
  201. }
  202. .content-block.account {
  203. background-color: #ffffff;
  204. padding: 0.25rem 0;
  205. display: flex;
  206. justify-content: space-around;
  207. margin-top: 0.2rem;
  208. border-radius: 0.03rem;
  209. align-items: baseline;
  210. .content-data-item {
  211. .data-item-title {
  212. }
  213. .data-item-value {
  214. font-size: 0.26rem;
  215. margin-top: 0.1rem;
  216. }
  217. .data-item-action {
  218. margin-top: 0.1rem;
  219. color: $primary-color;
  220. cursor: pointer;
  221. float: left;
  222. &:nth-child(2n) {
  223. margin-left: 0.1rem;
  224. }
  225. }
  226. }
  227. }
  228. .content-block.assets {
  229. display: flex;
  230. justify-content: space-around;
  231. margin-top: 0.2rem;
  232. .content-data-left {
  233. background-color: #ffffff;
  234. padding: 0.25rem 0;
  235. border-radius: 0.03rem;
  236. width: calc(50% - 0.075rem);
  237. margin-right: 0.15rem;
  238. display: flex;
  239. justify-content: space-around;
  240. height: 1rem;
  241. .content-data-item {
  242. .data-item-title {
  243. }
  244. .data-item-value {
  245. font-size: 0.26rem;
  246. margin-top: 0.1rem;
  247. }
  248. .data-item-action {
  249. margin-top: 0.15rem;
  250. color: $primary-color;
  251. cursor: pointer;
  252. }
  253. }
  254. }
  255. .content-data-right {
  256. background-color: #ffffff;
  257. padding: 0.25rem 0;
  258. border-radius: 0.03rem;
  259. width: calc(50% - 0.075rem);
  260. display: flex;
  261. justify-content: space-around;
  262. height: 1rem;
  263. .content-data-item {
  264. .data-item-title {
  265. }
  266. .data-item-value {
  267. font-size: 0.26rem;
  268. margin-top: 0.1rem;
  269. }
  270. .data-item-action {
  271. margin-top: 0.15rem;
  272. color: $primary-color;
  273. }
  274. }
  275. }
  276. }
  277. .content-block.action {
  278. display: flex;
  279. justify-content: flex-start;
  280. margin-top: 0.2rem;
  281. .content-data-item {
  282. width: calc(100% / 6);
  283. background-color: #ffffff;
  284. display: flex;
  285. padding: 0.15rem 0;
  286. border-radius: 0.03rem;
  287. align-items: center;
  288. text-align: center;
  289. flex-direction: column;
  290. margin-right: 0.15rem;
  291. cursor: pointer;
  292. .data-item-icon {
  293. width: 0.55rem;
  294. height: 0.55rem;
  295. image {
  296. width: 100%;
  297. height: 100%;
  298. }
  299. }
  300. .data-item-value {
  301. margin-top: 0.1rem;
  302. }
  303. &:last-child {
  304. margin-right: 0;
  305. }
  306. }
  307. }
  308. }
  309. }
  310. .empty {
  311. text-align: center;
  312. padding-top: 1.2rem;
  313. image {
  314. width: 2rem;
  315. }
  316. .tips {
  317. color: #999;
  318. margin-top: 0.15rem;
  319. }
  320. }
  321. /deep/ .uni-scroll-view {
  322. &::-webkit-scrollbar {
  323. width: 0.06rem;
  324. height: 0.06rem;
  325. background-color: rgba($color: #000000, $alpha: 0);
  326. }
  327. &::-webkit-scrollbar-button {
  328. display: none;
  329. }
  330. &::-webkit-scrollbar-thumb {
  331. border-radius: 0.06rem;
  332. box-shadow: inset 0 0 0.06rem rgba(45, 43, 43, 0.45);
  333. background-color: #ddd;
  334. display: none;
  335. }
  336. &:hover::-webkit-scrollbar-thumb {
  337. display: block;
  338. }
  339. &::-webkit-scrollbar-track {
  340. background-color: transparent;
  341. }
  342. }
  343. // pop弹框
  344. .pop-box {
  345. background: #ffffff;
  346. width: 8rem;
  347. height: 7rem;
  348. .pop-header {
  349. padding: 0 0.15rem 0 0.2rem;
  350. height: 0.5rem;
  351. line-height: 0.5rem;
  352. border-bottom: 0.01rem solid #f0f0f0;
  353. font-size: 0.14rem;
  354. color: #333;
  355. overflow: hidden;
  356. border-radius: 0.02rem 0.2rem 0 0;
  357. box-sizing: border-box;
  358. display: flex;
  359. justify-content: space-between;
  360. .pop-header-text {
  361. }
  362. .pop-header-close {
  363. cursor: pointer;
  364. i {
  365. font-size: 0.18rem;
  366. }
  367. }
  368. }
  369. .pop-content {
  370. height: calc(100% - 1.05rem);
  371. overflow-y: scroll;
  372. padding: 0.2rem;
  373. box-sizing: border-box;
  374. }
  375. .pop-bottom {
  376. padding: 0.1rem;
  377. height: 0.65rem;
  378. border-top: 0.01rem solid #eee;
  379. button {
  380. width: 1rem;
  381. }
  382. }
  383. }
  384. //表单
  385. .form-content {
  386. .form-item {
  387. margin-bottom: 0.1rem;
  388. display: flex;
  389. .form-label {
  390. width: 1.3rem;
  391. text-align: right;
  392. padding-right: 0.1rem;
  393. box-sizing: border-box;
  394. height: 0.32rem;
  395. line-height: 0.32rem;
  396. .required {
  397. color: red;
  398. margin-right: 0.03rem;
  399. }
  400. }
  401. .form-inline {
  402. width: 2.4rem;
  403. line-height: 0.32rem;
  404. margin-right: 0.1rem;
  405. box-sizing: border-box;
  406. .form-input {
  407. border-width: 0.01rem;
  408. border-style: solid;
  409. background-color: #fff;
  410. color: rgba(0, 0, 0, 0.85);
  411. border-radius: 0.02rem;
  412. padding-left: 0.1rem;
  413. height: 0.32rem;
  414. line-height: 0.32rem;
  415. font-size: 0.14rem;
  416. border-color: #e6e6e6;
  417. border-radius: 0.02rem;
  418. }
  419. .form-textarea {
  420. border-width: 0.01rem;
  421. border-style: solid;
  422. background-color: #fff;
  423. color: rgba(0, 0, 0, 0.85);
  424. border-radius: 0.02rem;
  425. padding-left: 0.1rem;
  426. line-height: 0.32rem;
  427. font-size: 0.14rem;
  428. border-color: #e6e6e6;
  429. width: 100%;
  430. }
  431. .word-aux {
  432. color: #999;
  433. font-size: 0.12rem;
  434. }
  435. }
  436. .search-wrap {
  437. position: relative;
  438. i {
  439. position: absolute;
  440. top: 50%;
  441. right: 0.1rem;
  442. transform: translateY(-50%);
  443. border-left: 0.01rem solid #e6e6e6;
  444. line-height: 0.3rem;
  445. padding-left: 0.1rem;
  446. cursor: pointer;
  447. }
  448. }
  449. }
  450. }
  451. .addmemberPop-box {
  452. width: 6rem;
  453. height: 3.38rem;
  454. .pop-content{
  455. overflow-y: inherit;
  456. }
  457. .form-content{
  458. display: flex;
  459. flex-direction: column;
  460. align-items: center;
  461. .form-label{
  462. width: .9rem;
  463. }
  464. }
  465. .pop-bottom{
  466. height: auto;
  467. button{
  468. width: 95%;
  469. }
  470. }
  471. }
  472. .refund-balance-box {
  473. width: 5rem;
  474. height: auto;
  475. .pop-content {
  476. overflow: hidden;
  477. height: auto;
  478. .info-item {
  479. display: flex;
  480. line-height: 0.3rem;
  481. padding-bottom: 0.1rem;
  482. .title {
  483. width: 1.3rem;
  484. text-align: right;
  485. }
  486. .data {
  487. flex: 1;
  488. width: 0;
  489. input {
  490. height: 0.3rem;
  491. line-height: 0.3rem;
  492. border: 0.01rem solid #e6e6e6;
  493. padding: 0 0.1rem;
  494. width: 0.8rem;
  495. font-size: 0.14rem;
  496. }
  497. }
  498. }
  499. .value-item {
  500. display: inline-block;
  501. height: 0.3rem;
  502. line-height: 0.3rem;
  503. background-color: #fff;
  504. color: #333;
  505. border: 0.01rem solid #e6e6e6;
  506. margin: 0 0.1rem 0 0;
  507. padding: 0 0.1rem;
  508. cursor: pointer;
  509. transition: all 0.3s;
  510. border-radius: 0.04rem;
  511. &:hover,
  512. &.active {
  513. background: rgba($color: $primary-color, $alpha: 0.1);
  514. border-color: $primary-color;
  515. color: $primary-color;
  516. }
  517. }
  518. }
  519. .pop-bottom {
  520. display: flex;
  521. justify-content: flex-end;
  522. height: auto;
  523. button {
  524. width: 0.8rem;
  525. margin: 0 0 0 0.1rem;
  526. }
  527. }
  528. }