123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- .select {
- position: relative;
- display: flex;
- box-sizing: border-box;
- width: 100%;
- padding: 10px 16px;
- color: #323233;
- font-size: 14px;
- line-height: 24px;
- background-color: #fff;
- border: 1px solid #f5f5f7;
- border-left: 0;
- border-right: 0;
- }
- /* .select:hover {
- border-color: #c8c9c8;
- } */
- .select .label-select {
- box-sizing: border-box;
- width: 6.2em;
- margin-right: 12px;
- color: #646566;
- text-align: left;
- word-wrap: break-word;
- }
- .select .container-select {
- flex: 1;
- position: relative;
- }
- .container-select .data-show {
- /* position: relative; */
- /* display: flex; */
- /* align-items: center; */
- }
- .container-select .data-icon {
- position: absolute;
- right: 0px;
- top: 50%;
- margin-top: -6px;
- z-index: 10;
- }
- .container-select .all-data-list {
- position: absolute;
- top: 42px;
- left: 0;
- width: 100%;
- background-color: #fff;
- z-index: 10;
- max-height: 100px;
- min-height: 30px;
- border-radius: 5px;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
- }
- .placeholder {
- color: #c8c9c8;
- }
- .all-data-list .item {
- width: calc(100% - 20px);
- margin-left: 10px;
- height: 30px;
- line-height: 30px;
- font-size: 12px;
- border: 1px solid #f5f5f7;
- border-left: 0;
- border-right: 0;
- border-radius: 2px;
- }
- .item:nth-child(1) {
- border-top: 0;
- }
- .item-option {
- display: flex;
- justify-content: space-between;
- }
- .onshow {
- animation: rota 200ms linear forwards;
- }
- .noShow {
- animation: noRota 200ms linear forwards;
- }
- @keyframes rota {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(90deg);
- }
- }
- @keyframes noRota {
- 0% {
- transform: rotate(90deg);
- }
- 100% {
- transform: rotate(0deg);
- }
- }
- .card-list {
- /* width: 90%; */
- /* flex: 1; */
- max-width: 320rpx;
- }
- .card-list-all {
- display: flex;
- }
- .card-cell-item {
- }
- .card-cell {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- height: 100%;
- border: 1px solid #c8c9c8;
- padding: 3px 5px;
- border-radius: 3px;
- background: #ededef;
- color: #b1c1c1;
- margin-right: 10px;
- font-size: 12px;
- height: 16px;
- }
- .close-card {
- padding: 2px;
- margin-left: 5px;
- background-color: #c8c9c8;
- border-radius: 50%;
- color: #fff;
- }
|