| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /* contentList.css */
- page{background: #fff;}
- .top-fixed{
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- background-color: #fff;
- z-index: 101;
- }
- .search-box{
- padding: 30rpx;
- background-color: #fff;
- }
- .search-text{
- color: #999999;
- }
- .search-input{
- height: 76rpx;
- line-height: 76rpx;;
- background: #F5F5F5;
- border-radius: 60rpx;
- padding: 0 26rpx;
- font-size: 24rpx;
- }
- .search-input input{
- font-size: 24rpx;
- }
- .search-input image{
- width: 34rpx;
- height: 34rpx;
- margin-right: 26rpx;
- }
- .search-all{
- color: #2a82fd;
- font-size: 30rpx;
- margin-left: 46rpx;
- }
- .ban{height: 275rpx;position: relative;margin: 40rpx 32rpx 15rpx;}
- .swiper{width: 100%;height: 275rpx;border-radius: 10rpx;}
- .swiper image{width: 100%;height: 100%;border-radius: 10rpx;}
- .dots{position: absolute;left: 50%;transform: translateX(-50%);bottom: 20rpx;z-index: 3;justify-content: center;}
- .dot{width: 46rpx;height: 4rpx;background: rgba(255,255,255,.5);margin: 0 3rpx;}
- .dot.active{background: #fff;}
- .title{font-size: 36rpx;color: #333;font-weight: bold;align-items: center;}
- .title::before{content: '';display: block;width: 6rpx;height: 38rpx;background: #108FFF;margin-right: 14rpx;}
- .box{padding: 30rpx 32rpx 0;}
- .bobo{border-bottom: 20rpx solid #F8F8F8;}
- .rec .li{padding: 30rpx 0;border-bottom: 1rpx solid #EDEDED;align-items: center;}
- .rec-tit{font-size: 34rpx;color: #333;font-weight: bold;line-height: 47rpx;height: 141rpx;margin-bottom: 25rpx;}
- .author{font-size: 28rpx;color: #999;margin-right: 24rpx;}
- .author image{width: 32rpx;height: 32rpx;border-radius: 2rpx;margin-right: 10rpx;}
- .rec-time{font-size: 28rpx;color: #999;}
- .rec-img{width: 240rpx;height: 180rpx;margin-left: 55rpx;border-radius: 12rpx 12rpx 12rpx 12rpx;}
- /* 行业资讯 */
- .rec-association {
- padding: 0rpx 30rpx 0;
- opacity: 1;
- border-bottom: 1px solid #E8E8E8;
- position: fixed;
- width: 100%;
- box-sizing: border-box;
- height: 70rpx;
- z-index: 5;
- background: #fff;
- }
- .rec-association-nav{
- position: relative;
- }
- .rec-association-nav-m{
- position: absolute;
- right: 0;
- top: 0;
- bottom:0;
- width: 55rpx;
- background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #FFFFFF 100%);
- /* background: #000; */
- opacity: 1;
- }
- .rec-association-scroll {
- white-space: nowrap;
- overflow: hidden;
- height: 70rpx;
- }
- .rec-association-scroll ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- display: none;
- }
- .rec-association-scroll-item{
- /* max-width: 128rpx; */
- overflow: hidden;
- font-size: 32rpx;
- display: inline-block;
- margin-right:56rpx;
- color: #666;
- height: 100%;
- }
- .rec-association-scroll-item-active{
- color: var(--main);
- font-size: 32rpx;
- font-weight: 500;
- position: relative;
- }
- .rec-association-scroll-item-active::after{
- content: '';
- position: absolute;
- bottom: 0px;
- left: 50%;
- transform: translateX(-50%);
- width: 50%;
- height: 6rpx;
- background: var(--main);
- }
- .rec-association-nav-icon{
- width: 38rpx;
- height: 32rpx;
- margin-left: 40rpx;
- margin-top: 4rpx;
- }
|