Newer
Older
smart_construction / miniprogram / pages / applog / applog.wxss
zhout on 11 Aug 2020 1 KB 第一次发布提交
/* miniprogram/pages/applog/applog.wxss */


.subtitle {
  font-size: 28rpx;
  color: #665D5D;
}

.point-image {
  width: 70rpx;
  height: 70rpx;
  margin-bottom: 10rpx;
}

.titleinfo {
  font-size: 30rpx;
  padding: 2px;
  font-weight: bold;
}

.searchVan {
  position: fixed;
  width: 100%;
  top: 0rpx;
  /* margin-bottom: 100rpx; */
}

.log-list {
  /* height: 100rpx; */
  /* display: flex; */

  padding: 2px;
  margin-top: 2px;
  border-bottom: 1px solid #e5e5e5;
}


.log-image {
  width: 70rpx;
  height: 75rpx;
  padding: 5rpx;
}

.list {
  display: flex;
  border-bottom: 1px solid #dfdfdf;
}

.total {
  font-size: 30rpx;
  font-weight: bold;
  position: relative;
  left: 35%;
  margin: 20rpx
}

.del {
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  -webkit-transform: translateX(90px);
  transform: translateX(90px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 35rpx;
}

.touch-move-active .content,
.touch-move-active .del {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}