123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- page{
- padding-bottom:90rpx;
- background: #f4f4f4;
- }
- .comm-list{
- background: #f4f4f4;
- }
- .comm-item{
- margin-bottom:5px;
- background: #fff;
- padding:20rpx 0;
- }
- .comm-item .item-top{
- display: flex;
- justify-content: flex-start;
- align-items: center;
- padding:10rpx 20rpx;
- border-bottom:2rpx solid #f4f4f4;
- }
- .comm-item .item-top .top-pic {
- display: inline-block;
- width: 90rpx;
- height: 90rpx;
- border-radius: 6rpx;
- }
- .comm-item .item-top .top-pic image{
- width: 100%;
- height: 100%;
- }
- .comm-item .item-top .top-tit{
- font-size:28rpx;
- font-weight: bold;
- white-space: nowrap;
- text-overflow:ellipsis;
- overflow: hidden;
- margin-left:20rpx;
- }
- .comm-item .item-con{
- padding:20rpx;
- font-size: 28rpx;
- }
- .comm-item .item-con textarea{
- width:100%;
- height:180rpx;
- }
- .comm-item .item-pics{
- display: flex;
- padding-bottom: 15rpx;
- border: 1prpx solid #f2f2f2;
- }
- .comm-item .item-pics image{
- width:130rpx;
- margin-left:20rpx;
- }
- /* 缩略图 */
- .question-images {
- display: flex;
- flex-wrap: wrap;
- }
- .q-image-wrap {
- margin-right: 10rpx;
- }
- .q-image {
- flex: 1;
- height: 130rpx;
- width: 100%;
- }
- .q-image-remover {
- text-align: center;
- font-size: 25rpx;
- }
- .img-tip {
- font-size: 24rpx;
- color: grey;
- padding: 15rpx 0;
- margin-left: 20rpx;
- }
- /* + */
- .comm-item .item-pics .add-pic{
- width:130rpx;
- height:130rpx;
- line-height: 130rpx;
- text-align: center;
- font-size: 80rpx;
- margin-left:20rpx;
- color:#ddd;
- border:2px dashed #f4f4f4;
- }
- .item-btm{
- padding:20rpx;
- font-size: 26rpx;
- }
- /*checkbox 选项框大小 */
- checkbox .wx-checkbox-input {
- border-radius: 50%;
- width: 35rpx;
- height: 35rpx;
- }
- /*checkbox选中后样式 */
- checkbox .wx-checkbox-input.wx-checkbox-input-checked {
- background: #e43130;
- border-color: #e43130;
- }
- /*checkbox选中后图标样式 */
- checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
- text-align: center;
- font-size: 22rpx;
- color: #fff;
- background: transparent;
- transform: translate(-50%, -50%) scale(1);
- -webkit-transform: translate(-50%, -50%) scale(1);
- }
- .item-star{
- padding:20rpx;
- display: flex;
- align-items: center;
- font-size: 28rpx;
- height:50rpx;
- line-height: 50rpx;
- background: #fcfcfc;
- }
- comm-star{
- margin-left:20rpx;
- }
- .comm-btn{
- position: fixed;
- bottom:0;
- width:100%;
- font-size: 32rpx;
- border-top:1px solid #f4f4f4;
- height:90rpx;
- line-height: 90rpx;
- color:#e43130;
- text-align: center;
- background: #fff;
- }
|