|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /* components/pickerMultiSelect.wxss */
- page {
- height: 100%;
- width: 100%;
- }
-
- .showPicker {
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 30rpx;
- background-color: paleturquoise;
- text-align: center;
- }
-
- .shade-container {
- position: fixed;
- height: 100%;
- width: 100%;
- top: 0;
- right: 0;
- display: flex;
- justify-content: space-around;
- background-color: rgba(0, 0, 0, 0.5);
- /* transform: translateX(-200%);
- transition: all 0.5s ease; */
- /* display: block; */
- z-index: 9999;
- }
-
- .hide-container {
- /* position: fixed;
- height: 100%;
- width: 100%;
- top: 0;
- right: -200%;
- z-index: 9999;
- display: flex;
- justify-content: space-between;
- transform: translateX(100%);
- transition: all 0.5s ease-in; */
- display: none
- }
-
- .left-shade {
- width: 30vw;
- height: 100%;
- }
-
- .right-choose {
- width: 70vw;
- height: 100%;
- background-color: #fff;
- padding: 40rpx;
- z-index: 12313;
- }
-
- .picker-container {
- height: calc(100% - 200rpx);
- overflow-x: hidden;
- overflow-y: scroll;
- margin-top: 40rpx;
- }
-
- .picker-container::-webkit-scrollbar {
- display: none;
- }
-
- .picker-item {
- width: calc(100% - 8rpx);
- height: 50rpx;
- line-height: 50rpx;
- font-size: 24rpx;
- text-align: center;
- margin-top: 20rpx;
- border: 2rpx solid #eaeaea;
- border-radius: 8rpx;
- }
-
- .picker-item-choose {
- border: 2rpx solid rgb(110, 216, 84);
- }
-
- .picker-item:nth-of-type(1) {
- margin: 0;
- }
-
- .button-container {
- width: 100%;
- height: 80rpx;
- display: flex;
- justify-content: space-between;
- font-size: 24rpx;
- text-align: center;
- border-bottom: 2rpx solid #eaeaea;
- }
-
- .cancal {
- width: 100rpx;
- height: 40rpx;
- line-height: 40rpx;
- border: 2rpx solid #ddd;
- border-radius: 8rpx;
- }
-
- .sure {
- width: 100rpx;
- height: 40rpx;
- line-height: 40rpx;
- border: 2rpx solid rgb(132, 235, 132);
- border-radius: 8rpx;
- }
-
- .list{
- width: 100%;
- padding: 25rpx 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid #EAF1FF;
- box-sizing: border-box
-
- }
- .listName{
- font-size:28rpx;
- color:rgba(87,99,117,1);
- max-width: 500rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .listName2{
- font-size:28rpx;
- color:#BCC0C8;
- max-width: 500rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-right: -360rpx;
- }
- .listImg{
- width: 14rpx;
- height: 26rpx
- }
|