1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .content-info-container {
- width: 90%;
- margin: 20rpx auto;
- padding: 0 0 100rpx 0;
- .title-container {
- width: 100%;
- .title-content-text {
- font-size: 22px;
- line-height: 1.4;
- margin-bottom: 14px;
- color: #000;
- }
- .title-content-date{
- display: inline-block;
- vertical-align: middle;
- margin: 0 10px 10px 0;
- font-size: 15px;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
- }
- }
- /deep/ .ql-align-center {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .content-like-col{
- width: 100%;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- background-color: #fefefe;
- position: fixed;
- bottom: 0;
- left: 0;
- box-sizing: border-box;
- padding: 10rpx 50rpx 10rpx 0;
- .icon-wrap{
- display: flex;
- align-items: center;
- justify-content: center;
- min-width: 30rpx;
- margin-right: 20rpx;
- .icon-base text{
- font-size: 25px !important;
- line-height:25px !important;
- &[class*='fill']{
- color: #548cf7 !important;
- }
- }
- .icon-base{
- margin-right: 10rpx;
- }
- }
- }
- }
|