123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /* 通告盒子 */
- .annunciatr_box {
- width: 710rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin: 20rpx auto 0;
- padding: 24rpx;
- padding-top: 40rpx;
- box-sizing: border-box;
- }
- /* 盒子 */
- .ann-box {
- display: flex;
- width: 662rpx;
- height: 162rpx;
- padding-bottom: 30rpx;
- border-bottom: 1px solid rgba(151, 151, 151, .1);
- margin: 28rpx auto 0;
- }
- .ann-img {
- width: 162rpx;
- height: 162rpx;
- border-radius: 10rpx;
- overflow: hidden;
- flex-shrink: 0;
- margin-right: 20rpx;
- }
- .ann-img>image {
- width: 100%;
- height: 100%;
- }
- .ann-text {
- flex: 1;
- height: 100%;
- }
- .ann-text>view {
- max-width: 480rpx;
- }
- .ann-text-title {
- font-family: PingFangSC-Medium, PingFang SC;
- height: 40rpx;
- font-size: 28rpx;
- font-weight: 550;
- color: #000000;
- line-height: 40rpx;
- }
- .ann-text-center {
- width: 480rpx;
- height: 54rpx;
- font-size: 24rpx;
- color: #333333;
- line-height: 30rpx;
- opacity: .7;
- margin-top: 10rpx;
- white-space: pre-line;
- }
- .ann-text-bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 28rpx;
- font-size: 20rpx;
- color: #333333;
- line-height: 28rpx;
- opacity: .7;
- margin-top: 16rpx;
- }
- /* 历史通告 */
- .ls .ann-text-bottom {
- height: 40rpx;
- }
- .ls .change {
- display: flex;
- justify-content: space-between;
- width: 240rpx;
- }
- .ls .custom-class {
- width: 112rpx;
- height: 40rpx;
- border-radius: 22rpx;
- }
- .ls .l {
- font-size: 20rpx;
- color: #8B8B8B;
- border: 2rpx solid #EFEFEF !important;
- }
- .ls .r {
- font-size: 20rpx !important;
- font-family: PingFangSC-Medium, PingFang SC !important;
- font-weight: 550 !important;
- color: #FFFFFF !important;
- background: linear-gradient(136deg, #53CDE0 0%, #84E3EC 100%) !important;
- }
- .userMsg {
- height: 28rpx;
- display: flex;
- align-items: center;
- }
- .userMsg>.img {
- width: 28rpx;
- height: 28rpx;
- margin-right: 8rpx;
- }
- .userMsg>.img image {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
|