/* 背景图片：设置为绝对定位，略大于容器增强视差感 */
.bg-image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url('https://picsum.photos/1920/1080') center/cover no-repeat;
    /* 过渡效果让偏移更丝滑 */
    transition: transform 0.15s ease-out;
    /* 初始位置居中 */
    transform: translate(0, 0);
}

.images0 {
    width: 100%;
    height: auto;
    display: block;
    /*margin: 0 auto;*/
    border: 2px solid #000000; /* 设置边框大小，颜色和样式 */
    border-radius: 10px; /* 设置边框圆角半径 */
    box-shadow: 2px 2px 5px #888;
    /* 设置边框阴影，包括水平、垂直、模糊程度和阴影颜色 */
    margin-top: 20px; /* 设置段前间距 */
    margin-bottom: 20px; /* 设置段后间距 */
}

.images3 {
    width: auto;
    height: 48px;
    display: inline;
    border: 1px solid #000000; /* 设置边框大小，颜色和样式 */
    border-radius: 5px; /* 设置边框圆角半径 */
    box-shadow: 2px 2px 5px #888;
    /* 设置边框阴影，包括水平、垂直、模糊程度和阴影颜色 */
    /*margin: 0 auto;*/
    margin-top: 0px; /* 设置段前间距 */
    margin-bottom: 5px; /* 设置段后间距 */
    margin-left: 10px; /* 设置段前间距 */
    margin-right: 10px; /* 设置段后间距 */
}


fieldset {
    border: 1px #000000 solid;
}

fieldset {
    display: block;
    margin-inline-start: 2px;
    margin-inline-end: 2px;
    padding-block-start: 0.35em;
    padding-inline-start: 0.75em;
    padding-inline-end: 0.75em;
    padding-block-end: 0.625em;
    min-inline-size: min-content;
    border-width: 2px;
    border-style: groove;
    border-color: rgb(192, 192, 192);
    border-image: initial;
    /* HTML文本界面英文无法自动换行的解决办法：https://blog.csdn.net/weixin_64103049/article/details/127960824 */
    word-break: break-all;
}

legend {
    display: block;
    padding-inline-start: 2px;
    padding-inline-end: 2px;
    unicode-bidi: isolate;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    font-weight: bold;
}
