123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- @charset "UTF-8";
- .popupContainer {
- display: flex;
- flex-direction: column;
- height: 100%;
- background: #f8f8f8;
- }
-
- .popupContainer_search {
- padding-bottom: 10rpx;
- }
-
- .popupHeader {
- font-weight: 500;
- font-size: 36rpx;
- color: #3d3d3d;
- line-height: 36rpx;
- padding: 32rpx 0rpx;
- text-align: center;
- flex: 0 0 auto;
- padding: 10px;
- /* 固定在顶部 */
- position: sticky;
- top: 0;
- z-index: 1;
- }
-
- .popupContent {
- flex: 1 1 auto;
- overflow-y: auto;
- padding: 10px;
- }
-
- .popupContent .active {
- border-radius: 10rpx;
- border: 2rpx solid #08ba81;
- position: relative;
- }
-
- .popupContent .active .icon {
- position: absolute;
- right: 0;
- bottom: 0;
- }
-
- .item-title {
- padding: 24rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- line-height: 52rpx;
- }
-
- .item-left {
- text-align: left;
- font-weight: 500;
- font-size: 32rpx;
- color: #333333;
- text-align: left;
- }
-
- .item-right {
- text-align: right;
- font-weight: 400;
- font-size: 28rpx;
- color: #999999;
- }
-
- .item {
- margin-bottom: 24rpx;
- background: #ffffff;
- }
-
- .item-label {
- padding: 0rpx 24rpx;
- }
-
- .vtag {
- padding: 12rpx 20rpx !important;
- background: rgba(0, 179, 139, 0.08) !important;
- border-radius: 4rpx !important;
- font-weight: 400;
- font-size: 26rpx !important;
- color: #00b38b !important;
- line-height: 26rpx !important;
- margin-right: 8rpx;
- }
-
- .popupContainer {
- display: flex;
- flex-direction: column;
- height: 100%;
- background: #f8f8f8;
- }
-
- .popupHeader {
- font-weight: 500;
- font-size: 36rpx;
- color: #3d3d3d;
- line-height: 36rpx;
- padding: 32rpx 0rpx;
- text-align: center;
- flex: 0 0 auto;
- padding: 10px;
- /* 固定在顶部 */
- position: sticky;
- top: 0;
- z-index: 1;
- }
-
- .popupButtton {
- flex: 0 0 auto;
- padding: 10px;
- /* 固定在底部 */
- position: sticky;
- bottom: 0;
- z-index: 1;
- background-color: #ffffff;
- text-align: center;
- z-index: 999;
- }
-
- .popupButtton .pButton {
- width: 640rpx;
- height: 100rpx;
- background: #00b38b;
- border-radius: 10rpx 10rpx 10rpx 10rpx;
- font-weight: 400;
- font-size: 32rpx;
- color: #ffffff;
- line-height: 44rpx;
- text-align: center;
- margin-top: 18rpx;
- }
|