| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /* mCircle/pages/comparison/comparison.wxss */
- .dia-top {
- display: flex;
- justify-content: space-between;
- margin: 10px 15px;
- .dia-top-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- align-content: center;
- }
- .dia-top-item-text {
- font-size: 13px;
- color: #333;
- }
- }
- .dia-comparison {
- display: flex;
- flex-direction: column;
- margin: 0px 10px;
- view:nth-child(1) {
- border-top: 1px solid #f0f0f0;
- }
- .dia-comparison-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- align-content: center;
- border-bottom: 1px solid #f0f0f0;
- height: 44px;
- text {
- font-size: 14px;
- color: #333;
- text-align: center;
- }
- }
- }
|