12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- @import "../../public/page/purchase-imformation.wxss";
- @import "../../../../public/pages/public-view.wxss";
- Page {
- background-color: white;
- }
- /* line-view */
- .line-view {
- background-color: white;
- width: 100%;
- height: 0.7px;
- display: flex;
- }
- .line-view view {
- background-color: #eeeeee;
- width: 304rpx;
- height: 0.7px;
- }
- .line-view>view:first-child {
- margin-left: 30rpx;
- margin-right: auto;
- }
- .line-view>view:last-child {
- margin-right: 30rpx;
- }
- /* list-view */
- .list-view {
- background-color: white;
- width: 100%;
- display: flex;
- }
- .list-view>text {
- font-size: 28rpx;
- line-height: 52rpx;
- margin: 30rpx 30rpx;
- }
- .list-view>text:first-child {
- color: #999999;
- }
- .list-view>text:last-child {
- color: #666666;
- margin-left: auto;
- text-align: right;
- }
|