123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- .main {
- height: var(--twoHeight);
- background-color: var(--mainColor);
- .one {
- display: flex;
- flex-direction: row;
- padding: 2vw;
- border-bottom: 1px solid var(--f1Color);
- .one_1 {
- flex-grow: 1;
- input {
- padding: 1vw 0 2vw 2vw;
- background-color: var(--f1Color);
- border-radius: 5px;
- }
- }
- .one_2 {
- width: 20vw;
- button {
- width: 100%;
- padding: 2vw;
- font-size: var(--font14Size);
- }
- }
- }
- .two {
- flex-grow: 1;
- position: relative;
- width: 96vw;
- margin: 2vw;
- background-color: var(--mainColor);
- .list {
- display: flex;
- flex-direction: column;
- border: 2px dashed #FFA500;
- padding: 2vw;
- margin: 0 0 2vw 0;
- border-radius: 10px;
- .list_1 {
- display: flex;
- justify-content: space-around;
- .image {
- width: 60px;
- height: 60px;
- border-radius: 90px;
- }
- .content {
- width: 62vw;
- .name {
- font-size: var(--font16Size);
- font-weight: bold;
- margin: 0 0 1vw 0;
- }
- .other {
- font-size: var(--font14Size);
- margin: 0 0 1vw 0;
- .other_1 {
- padding: 0 0 1vw 0;
- }
- .other_1 text:nth-child(1) {
- color: #666;
- }
- }
- }
- }
- .btn {
- margin: 2vw 0 0 0;
- text-align: center;
- button {
- margin: 0 0 0 2vw;
- background-color: #FFA500;
- border-radius: 25px;
- }
- button:last-child {
- background-color: #FF4500;
- }
- }
- }
- .list:nth-child(2n) {
- border: 2px dashed #FF4500;
- }
- }
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- }
- .dialog {
- .dialog_1 {
- .name {
- text-align: center;
- font-size: var(--font18Szie);
- font-weight: bold;
- margin: 3vw 0;
- }
- .image {
- text-align: center;
- height: 18vh;
- overflow: hidden;
- .qrcode {
- height: 22vh;
- position: absolute;
- left: 32vw;
- }
- }
- .remark {
- text-align: center;
- font-size: 15px;
- margin: 0 0 4vw 0;
- }
- }
- }
|