|
|
@@ -0,0 +1,194 @@
|
|
|
+@import "../../scssCommon.scss";
|
|
|
+
|
|
|
+.userCard {
|
|
|
+ width: 100vw;
|
|
|
+ height: 100vh;
|
|
|
+ overflow-x: hidden;
|
|
|
+ overflow-y: scroll;
|
|
|
+ background-color: #fff;
|
|
|
+ margin: 0;
|
|
|
+
|
|
|
+ position: relative;
|
|
|
+
|
|
|
+ .userList {
|
|
|
+ padding: 0 pxtovw(10);
|
|
|
+
|
|
|
+ .cell {
|
|
|
+ height: pxtovw(80);
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .userImg {
|
|
|
+ flex-shrink: 0;
|
|
|
+ width: pxtovw(50);
|
|
|
+ height: pxtovw(50);
|
|
|
+ font-size: 0;
|
|
|
+ img {
|
|
|
+ width: pxtovw(50);
|
|
|
+ height: pxtovw(50);
|
|
|
+ border-radius: 50%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ .right {
|
|
|
+ border-bottom: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .right {
|
|
|
+ margin-left: pxtovw(10);
|
|
|
+ width: pxtovw(295);
|
|
|
+ height: pxtovw(80);
|
|
|
+ border-bottom: 1px solid #f4f4f4;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .userInfo {
|
|
|
+ width: pxtovw(230);
|
|
|
+ .name {
|
|
|
+ height: pxtovw(22);
|
|
|
+ font-size: pxtovw(16);
|
|
|
+ font-weight: 500;
|
|
|
+ color: rgba(34, 34, 34, 1);
|
|
|
+ line-height: pxtovw(22);
|
|
|
+ }
|
|
|
+ .tips {
|
|
|
+ margin-top: pxtovw(px);
|
|
|
+ height: pxtovw(17);
|
|
|
+ font-size: pxtovw(12);
|
|
|
+ font-weight: 400;
|
|
|
+ color: rgba(153, 153, 153, 1);
|
|
|
+ line-height: pxtovw(17);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .addTime {
|
|
|
+ margin-top: 15px;
|
|
|
+ align-self: flex-start;
|
|
|
+
|
|
|
+ p {
|
|
|
+ height: pxtovw(17);
|
|
|
+ font-size: pxtovw(12);
|
|
|
+ font-weight: 400;
|
|
|
+ color: rgba(153, 153, 153, 1);
|
|
|
+ line-height: pxtovw(17);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .popUp {
|
|
|
+ position: absolute;
|
|
|
+ z-index: 100;
|
|
|
+ width: 100vw;
|
|
|
+ height: 100vh;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ background: rgba(0, 0, 0, 0.7);
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .toastBox {
|
|
|
+ width: pxtovw(300);
|
|
|
+ height: pxtovw(427);
|
|
|
+ border-radius: pxtovw(8);
|
|
|
+ background-color: #fff;
|
|
|
+ position: relative;
|
|
|
+
|
|
|
+ .content {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ padding: pxtovw(30) pxtovw(20);
|
|
|
+
|
|
|
+ .userImg {
|
|
|
+ margin: 0 auto;
|
|
|
+ width: pxtovw(75);
|
|
|
+ height: pxtovw(75);
|
|
|
+ img {
|
|
|
+ width: pxtovw(75);
|
|
|
+ height: pxtovw(75);
|
|
|
+ border-radius: 50%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .name {
|
|
|
+ margin-top: pxtovw(5);
|
|
|
+ height: pxtovw(21);
|
|
|
+ font-size: pxtovw(15);
|
|
|
+ font-weight: 600;
|
|
|
+ color: rgba(34, 34, 34, 1);
|
|
|
+ line-height: pxtovw(21);
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .userInfo {
|
|
|
+ margin-top: pxtovw(35);
|
|
|
+ width: 100%;
|
|
|
+ .cell {
|
|
|
+ width: 100%;
|
|
|
+ height: pxtovw(40);
|
|
|
+ display: flex;
|
|
|
+ align-self: center;
|
|
|
+
|
|
|
+ .cname {
|
|
|
+ width: pxtovw(50);
|
|
|
+ font-size: pxtovw(14);
|
|
|
+ font-weight: 400;
|
|
|
+ color: rgba(153, 153, 153, 1);
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+
|
|
|
+ .cvalue {
|
|
|
+ width: pxtovw(160);
|
|
|
+ font-size: pxtovw(14);
|
|
|
+ font-weight: 500;
|
|
|
+ color: rgba(34, 34, 34, 1);
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+ .cbutton {
|
|
|
+ width: pxtovw(50);
|
|
|
+ font-size: pxtovw(14);
|
|
|
+ font-weight: 400;
|
|
|
+ color: rgba(48, 142, 255, 1);
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .button {
|
|
|
+ margin-top: pxtovw(27);
|
|
|
+ height: pxtovw(43);
|
|
|
+ background: rgba(48, 142, 255, 1);
|
|
|
+ box-shadow: 0 pxtovw(4) pxtovw(9) 0 rgba(0, 147, 253, 0.29);
|
|
|
+ border-radius: pxtovw(24);
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ p {
|
|
|
+ font-size: pxtovw(15);
|
|
|
+ font-weight: 500;
|
|
|
+ color: rgba(255, 255, 255, 1);
|
|
|
+ line-height: pxtovw(21);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .closeIcon {
|
|
|
+ position: absolute;
|
|
|
+ bottom: pxtovw(-50);
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ width: pxtovw(30);
|
|
|
+ height: pxtovw(30);
|
|
|
+ background: url('~@/assets/img/other/closeIcon@2x.png') no-repeat;
|
|
|
+ background-size: cover;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|