| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /* 宫格 */
- .grid_box {
- width: 100vw;
- padding: 0 30rpx;
- box-sizing: border-box;
- background-color: #FFFFFF;
- }
- .grid-text-class {
- height: 40rpx;
- font-size: 28rpx;
- color: #333333;
- line-height: 40rpx;
- padding-top: 12rpx !important;
- }
- /* 展示区域title image */
- .display-title_image {
- width: 32rpx;
- height: 32rpx;
- margin: 0 6rpx;
- }
- .display-box-showList-button-box {
- position: relative;
- width: 96rpx;
- height: 30rpx;
- border-radius: 8rpx;
- margin-left: 12rpx;
- }
- /* 展示区盒子内部按钮 */
- .display-box-showList-button {
- width: 96rpx !important;
- height: 30rpx !important;
- border-radius: 8rpx !important;
- }
- .display-box-showList-button-text {
- position: absolute;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 100%;
- font-size: 18rpx;
- font-weight: 500;
- color: #FFFFFF;
- top: 0;
- left: 0;
- pointer-events: none;
- }
- /* 合作商家banner */
- .businessPartnerBanner {
- width: 100%;
- height: 320rpx;
- }
- .businessPartnerBanner>swiper-item {
- width: 100%;
- height: 300rpx;
- }
- /* 盒子 */
- .ann-box {
- display: flex;
- width: 662rpx;
- height: 162rpx;
- padding-bottom: 30rpx;
- border-bottom: 1px solid rgba(151, 151, 151, .1);
- margin-top: 28rpx;
- }
- .ann-img {
- width: 162rpx;
- height: 162rpx;
- border-radius: 10rpx;
- overflow: hidden;
- flex-shrink: 0;
- margin-right: 20rpx;
- }
- .ann-img>image {
- width: 100% !important;
- height: 100% !important;
- }
- .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: 27rpx;
- 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;
- }
- .userMsg {
- display: flex;
- align-items: center;
- height: 28rpx;
- line-height: 28rpx;
- }
- .userMsg>.img {
- width: 28rpx;
- height: 28rpx;
- margin-right: 8rpx;
- }
- .userMsg>.img image {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
|