1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- page{
- background-color: #ebebeb;
- }
- .detail {
- border-radius: 0.5rem;
- background-color: #fff;
- margin: 0.2rem;
- }
- .detail-item {
- display: flex;
- padding: 0.4rem 1rem;
- }
- .detail-item label {
- width: 5rem;
- margin-right: 2rem;
- }
- .detail-item .imageList{
- display: flex;
- width: 100%;
- flex-wrap: wrap;
- align-items: center;
- }
- .detail-item .imageList .image-item{
- display: flex;
- flex-direction: column;
- }
- .detail-item .imageList image {
- height: 4rem;
- width: 4rem;
- margin-right: 5px;
- }
- .detail-item .imageList text {
- font-size: 14px;
- text-decoration: underline;
- color: green;
- margin-left: 1rem;
- }
- .detail-btns {
- display: flex;
- justify-content: center;
- padding: 0.5rem;
- }
- .detail-btns view{
- display: flex;
- width: 8rem;
- justify-content: space-between;
- }
|