1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /* pages/meeting/index/index.wxss */
- .search-box {
- background-color: #fff;
- height: 114rpx;
- width: 100vw;
- padding: 16rpx 32rpx;
- box-sizing: border-box;
- margin-bottom: 24rpx;
- }
- .search {
- background-color: #f3f4f6;
- padding: 14rpx 22rpx;
- }
- .pl-css {
- color: #909399;
- }
- input {
- width: 600rpx;
- display: inline-block;
- vertical-align: middle;
- }
- .contenr {
- padding: 0 24rpx;
- margin-bottom: 50rpx;
- }
- .item {
- width: 702rpx;
- height: 202rpx;
- padding: 24rpx;
- background-color: #fff;
- position: relative;
- color: rgba(58, 60, 101, 0.70);
- line-height: 45rpx;
- margin-bottom: 24rpx;
- box-sizing: border-box;
- }
- .item>image {
- position: absolute;
- top: 0;
- right: 0;
- width: 100%;
- height: 100%;
- }
- van-icon {
- margin-right: 10rpx;
- }
- .rooom-name {
- color: #3A3C65;
- font-size: 36rpx;
- font-weight: 700;
- margin-bottom: 20rpx;
- max-width: 484rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .go-subscribe {
- position: absolute;
- top: 22rpx;
- right: 32rpx;
- background-color: #d3fbf5;
- color: #317d9e;
- padding: 8rpx 17rpx 8rpx 32rpx;
- border-radius: 40rpx;
- /* margin-top: 25rpx; */
- display: inline-block;
- font-weight: 500;
- font-size: 26rpx;
- }
- .green {
- color: #6DA8C1;
- font-size: 28rpx;
- font-weight: 500;
- margin-top: 16rpx;
- }
- .m-l {
- margin-left: 28rpx;
- }
|