wechat_app_template/components/Table/index.wxss

32 lines
632 B
Plaintext

/* package_C/component/table/table.wxss */
.table_container {
width: 100%;
margin: 24rpx 0;
color: rgba(51, 51, 51, 1);
border: 1rpx solid #efefef;
}
.table_title{
width: 100%;
padding: 22rpx;
background-color: #F5F7F9;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 27rpx;
font-weight: 700;
}
.table_data {
width: 100%;
color: rgba(51, 51, 51, 1);
font-size: 26rpx;
}
.data_item {
width: 100%;
padding: 20rpx;
display: flex;
justify-content: space-between;
align-items: center;
}
.table_item {
text-align: center;
}