12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* pages/actDetail/actDetail.wxss */
- page{
- background: #fff;
- padding: 40rpx 30rpx;
- }
- .title{
- font-size: 38rpx;
- text-align: center;
- margin-bottom: 30rpx;
- font-weight: 500;
- }
- .baseinfo{
- display: flex;
- margin-bottom: 20rpx;
- }
- .faceimg{
- width: 25%;
- height: 220rpx;
- /* padding-right: 20rpx; */
- }
- .faceimg image{
- width: 100%;
- height: 220rpx;
- }
- .tweo{
- width: 75%;
- }
- .tweo view{
- color: #999;
- font-size: 28rpx;
- padding-left: 35rpx;
- margin-bottom: 14rpx;
- }
- .intro text{
- color: #666;
- display: block;
- margin-bottom: 10rpx;
- line-height: 56rpx;
- letter-spacing: 3rpx;
- font-size: 32rpx;
- }
- .intro view{
- color: #444;
- margin-bottom: 20rpx;
- font-weight: bolder;
- font-size: 36rpx;
- letter-spacing: 2rpx;
- }
- .content{
- line-height: 50rpx;
- }
- .collect{
- float: right;
- background: #F2F2F2;
- font-size: 24rpx;
- padding:10rpx 20rpx;
- border-radius: 8rpx;
- }
- rich-text{
- font-size: 32rpx;
- line-height: 56rpx;
- letter-spacing: 3rpx;
- color: #666;
- }
|