1234567891011121314151617181920212223242526272829303132333435 |
- /* pages/searchRecords/searchRecords.wxss */
- .searchRecords{
- padding: 0 25rpx;
- /* height: 100vh; */
- }
- .head{
- background-color: var(--themeColor);
- text-align: center;
- line-height: 80rpx;
- color: #ffffff;
- font-weight: bolder;
- border-radius: 10rpx;
- }
- .head_left{
- display: flex;
- align-items: center;
-
- }
- .head_left_title{
- margin-left: 10rpx;
- }
- .main{
- flex: 1;
- overflow-y: hidden;
- margin-top: 15rpx;
- /* height: calc(100vh - 280rpx); */
- box-sizing: border-box;
- }
- .slide-image{
- height: 100%;
- width: 100%;
- }
|