| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /* mHome/pages/bond/detail/detail.wxss */
- .top-view {
- position: sticky;
- top: 0px;
- z-index: 999;
- .title-view {
- margin: 10px;
- background-color: #f0f0f0;
- height: 100px;
- border-radius: 10px;
- display: flex;
- align-items: center;
- align-content: center;
- flex-direction: column;
- padding: 5px 10px;
-
- .title-view-up, .title-view-down {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- height: 50%;
- width: 100%;
- align-content: center;
-
- text {
- color: #666;
- font-size: 13px;
- }
- }
-
- .title-view-up {
- border-bottom: 1px solid #ddd;
- }
- }
- }
|