123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /* pages/knowledge/knowledge.wxss */
- .search{
- width: 70%;
- display: inline-block;
- }
- picker{
- width: 28%;
- background: #fff;
- display: inline-block;
- line-height: 64rpx;
- border-radius: 18rpx;
- margin-left: 2%;
- vertical-align: top;
- text-align: center;
- }
- .picker{
- color: #999;
- font-size: 26rpx;
- }
- .tab{
- display: flex;
- /* justify-content: space-between; */
- margin-bottom: 20rpx;
- }
- .tab text{
- font-size: 30rpx;
- color: #666;
- margin-right: 40rpx;
- }
- .tab .active{
- color: #3780CD;
- }
- .list{
- /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
- border-radius: 20rpx;
- display: flex;
- /* padding: 20rpx; */
- /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
- /* margin: 0 20rpx 40rpx; */
- border-bottom: 1px solid #F0F0F0;
- padding: 28rpx 0;
-
- }
- .list image{
- width: 20%;
- max-height: 100px;
- }
- .list>view{
- width: 80%;
- padding-left: 20rpx;
- vertical-align: middle;
- }
- .list .title{
- margin-bottom: 20rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- .list text{
- color: #999;
- display: block;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-size: 26rpx;
- }
- .ly{
- margin-bottom: 28rpx;
- }
- .ly text{
- display: block;
- color: #666;
- font-size: 22rpx;
- }
- .ly view{
- float: right;
- text-align: right;
- }
- .ly view text{
- font-size: 18rpx;
- }
- scroll-view{
- background: #fff;
- padding: 0 20rpx;
- border-radius: 18rpx;
- height: 100%;
- }
|