123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- /* pages/template/template.wxss */
- .article-box{
- width: 750rpx;
- height: auto;
- }
- .article-head{
- width: 750rpx;
- height: 120rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .article-head>image:nth-child(1){
- width: 64rpx;
- height: 64rpx;
- border-radius: 50%;
- margin: auto 16rpx auto 32rpx;
- }
- .article-head>text:nth-child(2){
- width: auto;
- height: 42rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 42rpx;
- margin-right: auto;
- }
- .article-head>image:nth-child(3){
- width: 48rpx;
- height: 48rpx;
- margin-right: 32rpx;
- }
- .img-box{
- width: 750rpx;
- height: 750rpx;
- position: relative;
- display: flex;
- }
- .swiper-num{
- position: absolute;
- top: 24rpx;
- right: 24rpx;
- width: 56rpx;
- height: 36rpx;
- background: rgba(0,0,0,0.6);
- border-radius: 12px;
- font-size: 22rpx;
- color: #FFFFFF;
- line-height: 36rpx;
- text-align: center;
- }
- .article-take{
- display: flex;
- flex-direction: row;
- width: 750rpx;
- height: 96rpx;
- }
- .take-dianzan{
- width: 48rpx;
- height: 48rpx;
- margin: 24rpx 0 24rpx 32rpx;
- }
- .take-dianzan-num{
- width: auto;
- height: 42rpx;
- font-size: 30rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: rgba(0,0,0,0.87);
- line-height: 42rpx;
- margin: auto 48rpx auto 8rpx;
- }
- .take-msg{
- width: 48rpx;
- height: 48rpx;
- margin: 24rpx 0;
- }
- .take-share-box{
- padding: 0;
- width: 48rpx !important;
- height: 48rpx !important;
- background: none !important;
- background-color: none !important;
- margin: 24rpx 32rpx 24rpx auto !important;
- }
- .take-share{
- width: 48rpx;
- height: 48rpx;
- }
- .article-content{
- margin: 0 32rpx;
- width: 686rpx;
- height: auto;
- font-size: 15px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: rgba(0,0,0,0.87);
- line-height: 48rpx;
- text-align: justify;
- white-space: pre-wrap;
- }
- .article-tag{
- width: 686rpx;
- height: auto;
- padding: 24rpx 32rpx 32rpx;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- }
- .tag-item{
- width: auto;
- height: 48rpx;
- border-radius: 13px;
- border: 1px solid rgba(0,0,0,0.87);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 16rpx;
- margin-bottom: 16rpx;
- }
- .tag-item>image{
- width: 28rpx;
- height: 28rpx;
- margin: 10rpx 8rpx 10rpx 16rpx;
- }
- .tag-item>text{
- width: auto;
- height: 32rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: rgba(0,0,0,0.87);
- line-height: 32rpx;
- margin-right: 16rpx;
- }
|