1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .notSubmit {
- /* height: 100vh; */
- width: 100%;
- display: flex;
- justify-content: flex-start;
- height: 100%;
- }
- .notSubmit van-tabs {
- width: 100%;
- }
- .title {
- font-size: 28rpx;
- display: flex;
- justify-content: flex-start;
- }
- .title > .t-left {
- height: 100%;
- width: 100px;
- padding-right: 15rpx;
- margin-right: 15rpx;
- border-right: 1px solid #000;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .title > .t-right {
- width: 50%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .item-style {
- border-left: 2px solid #248af7 !important;
- }
- /* :root {
- --collapse-item-content-padding: 5px 10px;
- } */
- .van-collapse-item__content {
- padding: 5px 10px !important;
- }
|