feat: 提交

This commit is contained in:
owen 2025-02-16 20:42:04 +08:00
parent 891b9000c7
commit bdd05ce340
3 changed files with 10 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

BIN
src/assets/Rectangle 83.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

@ -101,7 +101,7 @@
</div> </div>
</div> </div>
<div class="w-full custom-bgc-introduce py-[100px]"> <div class="w-full custom-bgc-introduce py-[100px]">
<div class="max-w-screen-xl mx-auto"> <div class="max-w-screen-xl mx-auto introduce-content">
<div class="flex items-center mb-[82px]"> <div class="flex items-center mb-[82px]">
<div class="flex flex-col text-introduce-text mr-[100px]"> <div class="flex flex-col text-introduce-text mr-[100px]">
<h1 class="text-3xl font-bold">灵活自定义</h1> <h1 class="text-3xl font-bold">灵活自定义</h1>
@ -391,7 +391,12 @@ const btnList = ref([
} }
.custom-bgc-introduce { .custom-bgc-introduce {
background: linear-gradient(98.33deg, #003ea0 0%, #0aa9f8 100.12%); /* height: 568px; */
background-image: url("../assets/Rectangle 83.png");
background-size: calc(100% - 40px) 100%; /* 宽度是100%去掉左右各20px */
background-position: 20px center; /* 背景图片左右各20px垂直居中 */
background-repeat: no-repeat; /* 防止图片重复 */
margin: 0; /* 去除默认的边距 */
} }
.custom-btn-bg { .custom-btn-bg {
@ -524,4 +529,7 @@ const btnList = ref([
.text-content-spec { .text-content-spec {
color: rgba(255, 255, 255, 0.9); color: rgba(255, 255, 255, 0.9);
} }
.introduce-content {
min-height: 568px;
}
</style> </style>