Newer
Older
smart_construction / miniprogram / pages / applog / applog.wxss
dutingting on 12 Dec 2022 1 KB first commit
/* 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;
  z-index: 9999;
  /* margin-bottom: 100rpx; */
}

.log-list {
  /* height: 100rpx; */
  display: flex;
  width: 100%;
  padding: 2px;
  margin-top: 2px;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden
}


.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 {
  /* display: flex; */
  width: 100rpx;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* -webkit-transform: translateX(100rpx); */
  transform: translateX(100rpx);
  /* -webkit-transition: all 0.4s; */
  transition: all 0.4s;
  color: #fff;
  background-color: #fe3e2f;
}
.logrow{
  width: 100%;
  transform: translateX(100rpx);
  /* -webkit-transform: translateX(100px); */
  margin-left: -100rpx;
}

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