123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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-top: 5px;
- margin-right: 2px;
- }
- .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: 16rem;
- justify-content: space-between;
- }
|