12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- body {
- font-size: 3.7vw !important;
- background-color: rgb(251, 251, 251);
- margin: 0 !important;
- padding: 0 !important;
- background-color: rgb(251, 251, 251) !important;
- }
- .top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-right: 2vw;
- z-index: 1000;
- }
- .contract-detail{
- margin-top: 7vh;
- }
- .item-1, .item-3, .item-5, .item-7, .item-9{
- display: flex;
- flex-direction: column;
- margin: 4vw 0;
- padding: 0vw 4vw;
- }
- .item-2, .item-4, .item-6, .item-8, .item-10{
- background-color: #fff;
- margin: 0 4vw;
- box-shadow: 0 1px 3px 0 rgb(5 32 96 / 10%);
- padding: 2vw 2vw;
- }
- .item-1{
-
- }
- .title{
- margin-bottom: 1vw;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .item-inner{
- display: flex;
- margin-bottom: 0.5vw;
- }
- .content{
- width: 50%;
- }
- #filesBox li{
- width: 28vw;
- height: auto;
- }
- #filesBox{
- /*padding: 2vw;*/
- text-align: center;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- }
- #filesBox img{
- height: 15vw !important;
- }
- #filesBox p{
- width: 27vw;
- text-align: center;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- #filesBox layui-btn-group{
- display: none;
- }
|