| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- .news_nav {
- height: 88rpx;
- display: flex;
- position: relative;
- border-bottom: 1px solid #f8f8f8;
- z-index: 1;
- background-color: #ffffff;
- justify-content: space-between;
- }
- .news_nav_item {
- width: 50%;
- flex: auto;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .news_nav_item view {
- display: inline-block;
- flex: none;
- position: relative;
- font-size: 30rpx;
- color: #999999;
- line-height: 88rpx;
- }
- .news_nav_item text {
- display: inline-block;
- font-size: 18rpx;
- color: #ffffff;
- background-color: #D0021B;
- border-radius: 100rpx;
- min-width: 24rpx;
- line-height: 24rpx;
- text-align: center;
- margin-left: 10rpx;
- }
- .news_nav_item.sec view {
- color: var(--color);
- }
- .news_nav_item.sec view::before {
- content: "";
- position: absolute;
- bottom: 0;
- left: 50%;
- width: 100rpx;
- display: block;
- height: 4rpx;
- margin: 0 -50rpx;
- background-color: var(--color);
- border-radius: 4rpx;
- }
- .list_item{
- margin-top: 20rpx;
- background: #fff;
- padding: 0 20rpx;
- }
- .worningList_item_txt{
- display: flex;
- word-break: break-all;
- align-items: center;
- padding: 20rpx 0;
- border-bottom: 2.5rpx solid #f5f5f5;
- }
- .worningList_item_info{
- display: flex;
- justify-content: space-around;
- line-height: 70rpx;
- width: 100%;
- text-align: center;
- }
- .worningList_item_info > view{
- width: 50%;
- }
- .worningList_item_info > view:nth-child(1){
- color: #999999;
- border-right: 2.5rpx solid #f5f5f5;
- }
- .worningList_item_info > view:nth-child(2){
- color: #F22828;
- }
- .worningList{
- padding: 0rpx 30rpx;
- }
- .worningList_item_txt > view{
- width: 13%;
- }
- .worningList_item_txt >text{
- width: 87%;
- }
- .news_empty {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #ffffff;
- }
- .news_empty_mid {
- text-align: center;
- width: 442rpx;
- }
- .news_empty_mid image {
- width: 442rpx;
- height: 194rpx;
- }
- .news_empty_mid view {
- font-size: 26rpx;
- color: #999999;
- }
|