| 12345678910111213141516171819202122232425262728293031323334353637 |
- /* mHome/pages/goldPrice/goldPrice.wxss */
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .title {
- font-size: 20px;
- color: #333;
- margin: 20px;
- }
- .table_header {
- border-bottom: 1px solid #f0f0f0;
- }
- .scroll-view {
- width: 90%;
- border-radius: 20px;
- height: 700px;
- }
- .table_header, .table_content {
- height: 44px;
- display: flex;
- border-bottom: 1px solid #f0f0f0;
- align-items: center;
- }
- .scroll-view text {
- font-size: 26rpx;
- color: #333;
- width: 25%;
- text-align: center;
- }
|