@font-face {
  font-family: 'OFL Sorts Mill Goudy TT';
  src: url('../Fonts/OFL Sorts Mill Goudy TT') format('woff2'),
       url('../Fonts/OFL Sorts Mill Goudy TT') format('woff'),
       url('../Fonts/OFL Sorts Mill Goudy TT') format('TrueType');
  font-weight: normal;
  font-style: italic;
}

.image-container {
        position: relative;
        width: 100%;
        height: 500px; /* 设置合适的高度 */
        overflow: hidden;
    }
.image-container img {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.image-container img.active {
    opacity: 1;
}
