table.scss 1.09 KB
	.table {
    display: flex;
    flex-direction: column;
		.table-head {
			display: flex;
			flex-direction: row;
			height: 68rpx;
			background-color: #F9F9FC;

			&-item {
				flex: 1;
				display: flex;
				justify-content: center;

				&-text {
					font-weight: bold;
					font-size: 26rpx;
					color: #1D2541;
					line-height: 68rpx;
					text-align: center;
				}
			}

			.last-table {
				min-width: 150rpx;
			}
		}

		.table-body {
			&-item {
				display: flex;
				flex-direction: row;
				height: 68rpx;
				border-bottom: 1px solid #F2F2F6;
				align-items: center;

				&-value {
					flex: 1;
					display: flex;
					flex-direction: row;
					justify-content: center;
					align-items: center;

					&-text {
						/* #ifndef APP-NVUE */
						max-width: 170rpx;
						/* #endif */
						/* #ifdef APP */
						lines:1;
						/* #endif */
						/* #ifdef H5 || MP-WEIXIN */
						white-space: nowrap;
						overflow: hidden;
						text-overflow: ellipsis;
						/*  #endif */
						font-weight: 400;
						font-size: 26rpx;
						color: #202328;
						text-align: center;
					}
				}
			}
		}
	}