123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- /* pages/journalDetail/journalDetail.wxss */
- .container{
- /* margin:30rpx; */
- background: #fff;
- border-radius: 10rpx;
- padding:20rpx;
- }
- .baseinfo{
- display: flex;
- margin-bottom:30rpx;
- position: relative;
- }
- .baseinfo .faceimg{
- margin-right: 20rpx;
- }
- .baseinfo .faceimg image{
- width:170rpx;
- height: 236rpx;
- box-shadow: 2px 2px 10rpx 1px rgba(0, 0, 0, 0.2);
- }
- .baseinfo .tweo view{
- margin-bottom:16rpx;
- font-size: 28rpx;
- color: #999999;
- }
- .baseinfo .tweo .title{
- font-size: 36rpx;
- color:#333333;
- margin-bottom:40rpx;
- padding-right: 136rpx;
- }
- .baseinfo .gzgzh{
- position: absolute;
- width: 136rpx;
- height: 48rpx;
- background: #298EF9;
- border-radius: 8rpx;
- font-size:20rpx;
- color:#ffffff;
- right: 0;
- padding:0px;
- line-height: 48rpx;
- }
- .intro text{
- font-size: 32rpx;
- color: #333333;
- font-weight: 500;
- }
- .intro .desc{
- margin-top:30rpx;
- color: #777;
- line-height: 60rpx;
- font-size: 32rpx;
- letter-spacing: 3rpx;
- }
- .content{
- margin-top:48rpx;
- }
- .content view{
- margin-bottom:28rpx;
- color: #333333;
- }
- .more{
- color: #298EF9;
- display: block;
- text-align: center;
- margin-top: 50rpx;
- }
- .part{
- background: #fff;
- border-radius: 10rpx;
- margin-top: 30rpx;
- padding: 24rpx;
- }
- .title{
- font-size: 32rpx;
- color: #333;
- margin-bottom: 28rpx;
- }
- .title navigator{
- float: right;
- color: #3780CD;
- font-size: 26rpx;
- }
- .list{
- display: flex;
- border-bottom: 1px solid #F0F0F0;
- padding: 28rpx 0;
-
- }
- .list image{
- width: 20%;
- height: 160rpx;
- }
- .hd .list image{
- width: 30%;
- height: 160rpx;
- }
- .list>view{
- width: 80%;
- vertical-align: middle;
- padding-left: 20rpx;
- }
- .hd .list>view{
- width: 70%;
- }
- .list .tt{
- /* margin-bottom: 10rpx; */
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-size: 26rpx;
- }
- .list text{
- color: #999;
- display: block;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- font-size: 24rpx;
- }
- .list .ly{
- font-size: 24rpx;
- color: #666;
- margin-bottom: 40rpx;
- }
- .hd .list .ly{
- color: #666;
- font-size: 24rpx;
- margin-bottom: 30rpx;
- }
- .hd .tt{
- /* margin-bottom: 16rpx; */
- }
- .ewm{
- position: fixed;
- width: 100%;
- height: 100vh;
- top: 0;
- left: 0;
- }
- .bg{
- position: fixed;
- width: 100%;
- height: 100vh;
- top: 0;
- left: 0;
- z-index: 9;
- background: rgba(0,0,0,.5);
- }
- .ewm>.ww{
- background: #fff;
- border-radius: 18rpx;
- padding: 100rpx;
- display: block;
- position: absolute;
- width: 90%;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- height: 80vh;
- z-index: 99;
- }
- .t image{
- width: 100rpx;
- height: 100rpx;
- border-radius: 8rpx;
- }
- .t>view{
- display: inline-block;
- vertical-align: top;
- margin-left: 20rpx;
- }
- .m{
- display: block;
- width: 100%;
- margin: 50rpx auto;
- }
- .b text{
- display: block;
- text-align: center;
- color: #999;
- }
- .list .desc{
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- white-space: normal;
- }
|