2 Commits

3 changed files with 20 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 64 KiB

View File

@@ -30,7 +30,12 @@
}
.aui-image {
padding: 180px 80px;
/* 左侧蓝色区flex 垂直水平居中展示宣传图(替代大块 padding 顶在上方) */
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
padding: 32px 40px;
flex-basis: 60%;
-webkit-flex-basis: 60%;
background-color: #0198cd;
@@ -39,9 +44,21 @@
}
.aui-image-text {
top: 50%;
left: 50%;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
max-width: 100%;
padding: 0;
box-sizing: border-box;
}
/* 相对原图约 331×118 放大 30% → 430×153资源为 2× 导出,浏览器缩放回该尺寸更清晰 */
.aui-image-text img {
width: 430px;
max-width: min(430px, 100%);
height: auto;
display: block;
}
.aui-formBox {