businessoffice.wxss 2.3 KB
page {
  background: #f9f9f9;
}

.item {
  padding: 8rpx 0;
  box-sizing: border-box;
}

.itemleft {
  color: #bdc4ce;
  font-size: 28rpx;
  width: 160rpx;
}

.itemright {
  width: 547rpx;
  color: #3d444c;
  font-size: 28rpx;
  margin-left: 10rpx;
}

.bname {
  color: #06121f;
  font-size: 32rpx;
  font-weight: bold;
}

.reason {
  color: #3d444c;
  font-size: 28rpx;
  margin-top: 24rpx;
}

.itembox {
  margin-top: 24rpx;
}

.commonpadding {
  padding: 40rpx 32rpx;
  box-sizing: border-box;
  margin-bottom: 16rpx;
}

.nodatabox {
  width: 400rpx;
  height: 400rpx;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

image {
  width: 100%;
  height: 100%;
}

.noimg {
  width: 258rpx;
  height: 218rpx;
  font-size: 0;
}

.nodataword {
  color: #8c9198;
  font-size: 28rpx;
  margin-top: 48rpx;
}

.itemdate {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #bdc4ce;
  font-size: 24rpx;
}

/* 处理中 */

.stateing {
  width: 88rpx;
  height: 42rpx;
  background: rgba(255, 242, 238, 1);
  opacity: 1;
  border-radius: 8rpx;
  color: #f95828;
  font-size: 24rpx;
  text-align: center;
  line-height: 42rpx;
  font-weight: bold;
}

/* 登记完成 */

.statefinish {
  width: 112rpx;
  height: 42rpx;
  background: rgba(238, 238, 238, 1);
  opacity: 1;
  border-radius: 8rpx;
  color: #8c9198;
  font-size: 24rpx;
  text-align: center;
  line-height: 42rpx;
  font-weight: bold;
}

.statefail {
  width: 112rpx;
  height: 42rpx;
  background: rgba(255, 238, 238, 1);
  opacity: 1;
  border-radius: 8rpx;
  color: #ff1414;
  font-size: 24rpx;
  text-align: center;
  line-height: 42rpx;
  font-weight: bold;
}

/* 头部导航 */

.nav {
  padding: 22rpx 32rpx;
  box-sizing: border-box;
  background: #fff;
  margin-bottom: 16rpx;
  justify-content: space-around;
}

.navitem {
  color: #8c9198;
  font-size: 32rpx;
  margin-right: 76rpx;
}

.navitem:last-child {
  margin-right: 0;
}

.navactive {
  color: #000;
  font-size: 32rpx;
  font-weight: bold;
  position: relative;
}

.navactive:after {
  display:block;
  content:'';
  width: 32rpx;
  height: 8rpx;
  background: rgba(28, 143, 255, 1);
  opacity: 1;
  position: absolute;
  left:50%;
  bottom:-20rpx;
  transform: translateX(-50%)
}