1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .image-container {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 100%;
- padding: 20px 0;
-
- .photo-section {
- width: 100%;
- text-align: center;
- margin-bottom: 20px;
- position: relative;
-
- .time-display {
- position: relative;
- font-size: 16px;
- color: #fff;
- background-color: rgba(0, 0, 0, 0.5);
- padding: 5px 10px;
- border-radius: 5px;
- margin-bottom: 10px;
- }
-
- ion-card {
- width: 100%; /* 每张照片占据整行 */
- max-width: 300px; /* 最大宽度 */
- margin: 0 auto; /* 居中显示 */
- }
-
- ion-card ion-img {
- width: 100%;
- height: auto;
- object-fit: cover;
- }
- }
-
- .top-image {
- width: 100%;
- height: auto;
- object-fit: cover;
- margin-bottom: 10px;
- }
- }
-
|