| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- body {
- background: #eeeeee;
- height: 100%;
- }
-
- .root {
- /* width: 100%;
- height: calc(100%-40rpx); */
- height: 100%;
- }
-
- .search {
- background: #fff;
- width: 100%;
- padding: 20rpx;
- position: fixed;
- top: 0;
- z-index: 10;
- }
-
- .search-button {
- color: #c8c8c8 !important;
- border-radius: 10rpx !important;
- width: 96%;
- height: 60rpx;
- }
-
- .search-button>.van-button__text {
- font-size: 15px;
- }
-
- .search-wait {
- height: 100rpx;
- width: 100%;
- line-height: 100rpx;
- text-align: center;
- color: #c8c8c8;
- background: #fff;
- }
-
- .pop-search-view {
- display: flex;
- justify-content: space-between;
- background-color: #d9001b;
- height: 60rpx;
- padding: 0 3% 0 3%;
- color: #000;
- }
-
- .panellist {
- width: 100%;
- background-color: #fff;
- /* overflow: hidden; */
- display: flex;
- flex-direction: row;
- }
-
- .left {
- margin-left: 15rpx;
- width: 50rpx;
- background-color: #fff;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
-
- .right {
- width: calc(100%-50rpx);
- /* width: 100%; */
- /* float: left; */
- background-color: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- }
-
- .content {
- padding: var(--cell-vertical-padding, 10rpx) var(--cell-horizontal-padding, 10rpx);
- /* border-top: 2px #dcdcdc dashed; */
- /* border-bottom: 1px #ededed solid; */
- font-size: small;
- }
-
-
- .content-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
-
- }
-
- .content-item-1 {
- padding: 10rpx;
- text-align: left;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
-
- .footer {
- color: red;
- }
-
- .footer-info {
- width: 100%;
- text-align: right;
- padding-right: 20rpx;
- font-size: 20rpx;
- }
-
- .footer-margin {
- margin-bottom: 10rpx;
- width: 100%;
- background-color: #eeeeee
- }
-
- .foot {
- height: 100rpx;
- width: 100%;
- display: flex;
- position: fixed;
- left: 0;
- bottom: 0;
- z-index: 100;
- padding-left: 20rpx;
- background-color: #eeeeee;
- align-items: center;
- }
-
- .switch {
- vertical-align: middle;
- margin-left: 2rpx;
- }
- .van-search__content {
- background: #F8F9FD;
- border: 1px solid #D6E4FF;
- border-radius: 15rpx !important;
- }
- .van-button--round {
- border-radius: 15rpx !important;
- }
-
- .bottom-class-1{
- background:#fff;
- position:fixed;
- bottom:0;
- width:100%;
- height: 182rpx;
- border-top:1px solid #efefef;
- z-index: 7;
- box-shadow: 0px -8rpx 24rpx rgba(0, 16, 39, 0.1);
- border-radius: 30rpx 30rpx 0rpx 0rpx;
- }
|