12345678910111213141516171819202122232425262728293031323334353637 |
- page{
- background-color: #ebebeb;
- }
- .detail {
- border-radius: 0.5rem;
- background-color: #fff;
- margin: 0.2rem;
- }
- .detail-item {
- display: flex;
- padding: 0.4rem;
- }
- .detail-item label {
- width: 5rem;
- }
- .detail-item .imageList{
- display: flex;
- width: 100%;
- flex-wrap: wrap;
- }
- .detail-item .imageList .image-item{
- display: flex;
- flex-direction: column;
- }
- .detail-item image {
- height: 4rem;
- }
- .detail-btns {
- display: flex;
- justify-content: center;
- padding: 0.5rem;
- }
- .detail-btns view{
- display: flex;
- width: 8rem;
- justify-content: space-between;
- }
|