normal.scss 2.6 KB
.page{
	background-color: #F2F3F6;
}

.uv-list,.uv-list-item{
	background:transparent!important;
}
.uv-list .uv-list-item.uv-list-item--hover{
	background-color: #f5f5f5!important;
}

.uni-tabbar-bottom{
	z-index: 70;
}

	.filter {
    display: flex;
		flex-direction: row;
		align-items: center;

		.filter_text {
			font-size: 26rpx;
			color: #6D778F;
			margin-right: 12rpx;
		}
	}
  .filter-border{
    height: 44rpx;
    background-color: #F2F3F6;
    border-radius: 22rpx;
    padding: 0 0rpx 0 20rpx;
    .filter_text{
      color: #90949D;
      font-size: 24rpx;
      margin-right: 6rpx;
    }
  }
// 日期选取确定框
.uni-date-changed {
	padding: 0 10px;
	// line-height: 50px;
	text-align: center;
	color: #333;
	border-top-color: #dcdcdc;
	border-top-style: solid;
	border-top-width: 1px;
	flex: 1;
}
.uni-date-btn--ok {
	padding: 20px 15px;
}
.uni-datetime-picker--btn {
	border-radius: 100px;
	height: 40px;
	background-color: #007aff;
}
.confirm-btn{
	color: #fff;
	text-align: center;
	font-size: 16px;
	line-height: 40px;
}

	// pop标题样式
	.pop_header {
		width: 750rpx;
		height: 100rpx;
		padding: 0 22rpx;
		border-bottom: 1px solid #EEF0F3;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row;

		&__text {
			font-weight: bold;
			font-size: 32rpx;
			color: #202328;
			font-weight: 700;
			line-height: 100rpx;
			text-align: center;
			lines: 1;
		}
	}
	// 时间类型选择
	.l_type {
		&_item {
			height: 88rpx;
			display: flex;
			justify-content: center;
			align-items: center;

			&_text {
				font-size: 28rpx;
				color: #8A92A5;
			}
		}

		&_item_active {
			background-color: #EEF0F3;

			&_text {
				color: #387CF5;
			}
		}
	}

	.transparent-bg{
		background-color: transparent !important;
	}



.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.items-start {
    align-items: flex-start;
}
.items-end {
    align-items: flex-end;
}

.f-c-c {
    display: flex;
    justify-content: center;
    align-items: center;
}

.font-500 {
    font-weight: 500;
}

.font-bold {
    font-weight: bold;
}

.px-0{
    padding-left: 0;
    padding-right: 0;
}
.pl-0{
    padding-left: 0;
}
.pr-0{
    padding-right: 0;
}
.ml-0{
    margin-left: 0;
}
.mr-0{
    margin-right: 0;
}
.h-full{
    height: 100%;
}