123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- .top-body{
- border-top: .0625rem solid #e6e6e6;
- line-height: 1.5;
- padding: 1.25rem 10%;
- align-items: center;
- box-sizing: border-box;
- background: #fff;
- margin: 1rem 0;
- }
- .table-interface{
- overflow-y: auto;
- overflow-x: hidden;
- height: calc(100% - 3rem);
- }
- .top-body .top-con{
- font-weight: bold;
- }
- .showImg{
- display: flex;
- justify-content: space-between;
- width: 100%;
- >div{
- flex: 1;
- >img{
- width: 100%;
- }
- }
- }
- .banshi{
- line-height: 1;
- font-size: 0;
- >div{
- display: flex;
- justify-content: space-between;
- margin-bottom: 10px;
- >div{
- flex: 1;
- border: 1px solid #ccc;
- min-height: 100px;
- width: calc(100% - 2px);
- margin-right: 2px;
- >img{
- cursor: pointer;
- width: 100%;
- }
- &:last-of-type{
- margin-right: 0;
- }
- }
- }
- }
|