1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .content {
- width: 100%;
- border-bottom: 1px solid #E8EBF0;
- margin-top: 10px;
- .item {
- display: flex;
- justify-content: space-between;
- font-size: 14px;
- align-items: center;
- border-bottom: 0;
- .title {
- width: 120px;
- border: 1px solid #E8EBF0;
- line-height: 36px;
- text-align: center;
- background-color: #F9F9F9;
- border-bottom: 0;
- border-right: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- align-self: stretch;
- }
- .val {
- width: calc(100% - 135px);
- height: 100%;
- display: block;
- color: #585F70;
- text-align: left;
- line-height: 36px;
- padding-left: 15px;
- border: 1px solid #E8EBF0;
- border-bottom: 0;
- min-height: 36px;
- }
- }
- }
|