123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /* pages/search/search.wxss */
- .title {
- font-size: 20px;
- background-color: #fff;
- height: 222rpx;
- border-bottom: 1px solid #e6e6e6;
- padding-left: 32rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- border-top-right-radius: 8rpx;
-
- }
- .mainTitle {
- color: #151515;
- font-size: 48rpx;
- font-weight: 500;
- margin-bottom: 10rpx;
- }
- .secondTitle {
- font-size: 32rpx;
- color: #505050;
- margin-top: 10rpx;
- }
- .fullPage {
- height: 100vh;
- background-color: #f3f3f3;
- padding: 20rpx;
- overflow: hidden;
- box-sizing: border-box;
- }
- .onDevice {
- background-color: #fff;
- border-bottom: 1px solid #f3f3f3;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 32rpx;
- height: 155rpx;
- }
- .penName {
- color: #151515;
- font-size: 32rpx;
- font-weight: 500;
- margin-bottom: 10rpx;
- }
- .penAddress{
- color: #8492a6;
- margin-top: 10rpx;
- font-size: 28rpx;
- }
- .fullList {
- height: 80vh;
- }
|