123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /* pages/activityList/activityList.wxss */
- Page {
- width: 100%;
- height: 100%;
- /* background-color: #F7F7F7; */
- }
- .list {
- width: 100%;
- /* padding:0 AUTO;
- padding-top: 25px; */
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .activity {
- width: 341px;
- height: 136px;
- background-color: #FFEFF1;
- border-radius: 5px;
- margin-bottom: 12px;
- }
- .top {
- width: 100%;
- height: 70px;
- margin-top: 16px;
- }
- .top-left {
- width: 82px;
- height: 69px;
- border-radius: 5px;
- margin-left: 27px;
- }
- .top-right {
- width: 200px;
- margin-left: 24px;
- }
- .top-right-top {
- width: 200px;
- height: 20px;
- line-height: 20px;
- font-size: 15px;
- font-weight: bold;
- color: #BF2637;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .top-right-bottom {
- width: 200px;
- height: 18px;
- margin-top: 13px;
- font-size: 9px;
- font-weight: 400;
- color: #BF2637;
- }
- .top-right-bottom-view {
- width: 84px;
- height: 18px;
- background-color: #fff;
- border-radius: 3px;
- margin-right: 11px;
- }
- .trbv-img {
- width: 12px;
- height: 12px;
- margin-left: 4px;
- }
- .trbv-name {
- width: 55px;
- height: 12px;
- margin-left: 8px;
- }
- .middle-line {
- width: 295px;
- height: 1px;
- border-bottom: 1px dashed #BF2637;
- }
- .middle {
- margin: 0 auto;
- margin-top: 9px;
- }
- .bottom {
- width: 100%;
- height: 20px;
- margin-top: 9px;
- justify-content: space-between !important;
- }
- .bottom-left {
- width: 218px;
- height: 20px;
- line-height: 20px;
- font-size: 9.5px;
- font-weight: 400;
- color: #BF2637;
- margin-left: 22px;
- }
- .bottom-right {
- width: 80px !important;
- height: 20px;
- background-color: #BF2637;
- color: #fff;
- font-size: 10px;
- text-align: center;
- line-height: 20px;
- border-radius: 10px;
- margin-right: 16px !important;
- padding: 0 0;
- }
|