| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .A0base {
- position: relative;
- width: 100%;
- height: 100%;
- /* 或你想要的高度 */
- overflow: hidden;
- }
- .slide {
- position: absolute;
- inset: 0;
- width: 100%;
- height: 100%;
- object-fit: cover;
- opacity: 0;
- transition: opacity 2s ease-in-out;
- /* 渐变时间和缓动函数 */
- pointer-events: none;
- }
- .slide.active {
- opacity: 1;
- }
- .homeLogo {
- position: absolute;
- top: 17%;
- left: 12%;
- width: 26%;
- height: 42%;
- object-fit: contain;
- :global {
- img {
- width: 100%;
- object-fit: contain;
- }
- .process {
- height: 30%;
- font-size: 1.2vw;
- line-height: 40px;
- color: rgba(141, 104, 64, 1);
- text-align: center;
- }
- }
- }
|