1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /* pages/actDetail/actDetail.wxss */
- page{
- background: #fff;
- padding: 40rpx 30rpx;
- }
- .title{
- font-size: 32rpx;
- text-align: center;
- margin-bottom: 30rpx;
- }
- .baseinfo{
- display: flex;
- margin-bottom: 20rpx;
- }
- .faceimg{
- width: 20%;
- }
- .faceimg image{
- width: 100%;
- }
- .tweo{
- width: 80%;
- }
- .tweo view{
- color: #999;
- font-size: 26rpx;
- padding-left: 20rpx;
- margin-bottom: 10rpx;
- }
- .intro text{
- color: #333;
- display: block;
- margin-bottom: 10rpx;
- }
- .content{
- line-height: 50rpx;
- }
- .collect{
- float: right;
- background: #F2F2F2;
- font-size: 24rpx;
- padding:10rpx 20rpx;
- border-radius: 8rpx;
- }
|