/* 重置浏览器默认样式 */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}

/* 确保所有元素都使用 border-box 盒模型 */
*,
*:before,
*:after {
    box-sizing: inherit;
}


.main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main .images{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main .images a{
    display: flex;
    align-items: center;
    justify-content: center;
}