1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* pages/ucenter/notice/notice.wxss */
- page {
- background-color: #f4f4f4;
- height: 100%;
- overflow-y:hidden;
- }
- .context {
- height: 100%;
- }
- .context_block{
- width: 100%;
- height: 32rpx;
- }
- .map_text {
- position: relative;
- height: 112rpx;
- background: #fff;
- padding: 0 30rpx;
- margin: 0 20rpx 32rpx 20rpx;
- border-radius: 10rpx;
- box-shadow: 0rpx 4rpx 4rpx #d5d5d5;
- }
- text {
- margin: 0 0 20rpx 0;
- display: block;
- font-size: 24rpx;
- font-family: 'Lucida Sans',
- 'Lucida Sans Regular',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
- color: #545253;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- line-height: 24rpx;
- height: 24rpx;
- min-height: 24rpx;
- }
- .notice_text_title {
- height: 112rpx;
- width: 100%;
- display: flex;
- }
- .notice_text_title1 {
- width: 100%;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .notice {
- width: 49rpx;
- height: 61rpx;
- margin: 26rpx 30rpx 26rpx 0;
- flex-shrink: 0;
- overflow: hidden;
- }
- .notice image {
- width: 49rpx;
- height: 61rpx;
- }
- text.bold {
- font-weight: bold;
- line-height: 28rpx;
- height: 28rpx;
- min-height: 28rpx;
- margin-top: 26rpx;
- margin-bottom: 13rpx;
- display: block;
- }
- text.inline {
- display: inline-block;
- }
- .h1 {
- margin: 0rpx 0rpx 30rpx 0rpx;
- font-size: 20rpx;
- line-height: 20rpx;
- height: 20rpx;
- min-height: 20rpx;
- color: #959595;
- }
|