Merge branch 'main' of ssh://18.167.251.121:10002/aidlab/FiDA_Front

This commit is contained in:
X1627315083@163.com
2026-02-13 13:04:07 +08:00
25 changed files with 1082 additions and 110 deletions

View File

@@ -29,8 +29,44 @@ body,
transform: rotate(360deg);
}
}
.background-pink {
background-color: #f8f7f5;
background-image: url('@/assets/images/home-bg.png');
background-size: 100% 100%;
@keyframes opacity-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes z-index-10to-1 {
0% {
z-index: 10;
}
100% {
z-index: -1;
}
}
.flex {
display: flex;
}
.flex-center {
justify-content: center;
align-items: center;
}
.flex-1 {
flex: 1;
}
.flex-col {
flex-direction: column;
}
.align-center {
align-items: center;
}
.space-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}
.relative {
position: relative;
}

View File

@@ -34,41 +34,55 @@ body,
}
}
.background-pink {
background-color: rgba(248, 247, 245, 1);
background-image: url('@/assets/images/home-bg.png');
background-size: 100% 100%;
@keyframes opacity-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.flex{
@keyframes z-index-10to-1 {
0% {
z-index: 10;
}
100% {
z-index: -1;
}
}
.flex {
display: flex;
}
.flex-center{
.flex-center {
justify-content: center;
align-items: center;
}
.flex-1{
.flex-1 {
flex: 1;
}
.flex-col{
.flex-col {
flex-direction: column;
}
.align-center{
.align-center {
align-items: center;
}
.space-between{
.space-between {
justify-content: space-between;
}
.justify-center{
.justify-center {
justify-content: center;
}
.relative{
.relative {
position: relative;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 697 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 581 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB