123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- page {
- background-color: #fff !important;
- }
- .msg-box {
- border-bottom: 2rpx solid rgba(151, 151, 151, .1);
- }
- .msg-box navigator:first-child .borTop::after {
- content: ' ';
- height: 0;
- }
- /* pages/tabbar-pages/message/index.wxss */
- .nav-class {
- box-shadow: 0px 10rpx 10rpx 0px rgba(170, 170, 170, 0.15);
- width: 100vw;
- height: 1rpx;
- margin-top: -1rpx;
- }
- /* tabs标签默认态 */
- .tab-class {
- font-size: 28rpx !important;
- font-family: PingFangSC-Regular, PingFang SC !important;
- }
- /* tabs选中 */
- .tab-active-class {
- font-size: 32rpx !important;
- font-family: PingFangSC-Medium, PingFang SC !important;
- font-weight: 550 !important;
- }
- navigator {
- display: flex;
- align-items: center;
- width: 100vw;
- height: 160rpx;
- border-radius: 10rpx;
- overflow: hidden;
- }
- navigator>view {
- display: flex;
- justify-content: space-between;
- }
- .borTop {
- position: relative;
- margin-left: 30rpx;
- }
- .borTop::after {
- content: '';
- display: block;
- position: absolute;
- top: -30rpx;
- right: 0;
- height: 2rpx;
- width: 100%;
- background-color: rgba(151, 151, 151, .1);
- }
- .msgImg {
- position: relative;
- width: 100rpx;
- height: 100rpx;
- margin-left: 30rpx;
- border-radius: 8rpx;
- }
- .msgImg image {
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- .red-dot {
- position: absolute;
- width: 24rpx;
- height: 24rpx;
- background: #FF0000;
- border-radius: 50%;
- top: 0;
- right: 0;
- transform: translate(25%, -25%);
- }
- .msgText {
- height: 100rpx;
- width: 450rpx;
- }
- .msgText .title {
- height: 44rpx;
- line-height: 44rpx;
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- color: #000000;
- margin-top: 4rpx;
- }
- .msgText .msg {
- height: 40rpx;
- line-height: 40rpx;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- color: rgba(0, 0, 0, .4);
- margin-top: 8rpx;
- }
- .msgTime {
- display: flex;
- align-items: center;
- margin-right: 22rpx;
- font-size: 24rpx;
- height: 44rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- color: rgba(0, 0, 0, .4);
- line-height: 34rpx;
- margin-top: 4rpx;
- }
|