| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- .A1home {
- width: 100%;
- height: 100%;
- position: relative;
- z-index: 1;
- :global {
- // 背景图
- .homeImg {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 3;
- pointer-events: none;
- object-fit: cover !important;
- }
- .loadingP {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 100%;
- height: 100%;
- // background-image: url('../../assets/sgImg/homeBg.jpg');
- // background-size: 100% 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- color: rgba(166, 118, 67, 1);
- z-index: 10;
- //----------新加的初始视频
- .A1baseVideo {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 4;
- }
- .progress {
- width: 200px;
- height: 30px;
- line-height: 30px;
- text-align: center;
- transform: translate(70px, 155px);
- position: relative;
- z-index: 10;
- }
- .btn {
- width: 60px;
- height: 60px;
- background: url(../../assets/img/btn_home.png) no-repeat center center;
- background-size: 100% 100%;
- transform: translate(66px, 155px);
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- z-index: 10;
- &>img {
- width: 60%;
- height: 60%;
- object-fit: contain;
- animation: yunShan 3s infinite linear;
- }
- .txt {
- width: 35px;
- height: 30px;
- color: rgba(255, 233, 182, 1);
- font-size: 15px;
- line-height: 15px;
- text-align: center;
- animation: zhiti 2s infinite linear;
- }
- }
- }
- .A1videoBox {
- width: 100%;
- height: 100%;
- position: relative;
- .A1video {
- width: 100%;
- height: 100%;
- }
- .A1videoBtn {
- position: absolute;
- bottom: 15px;
- right: 15px;
- color: #fff;
- font-size: 18px;
- letter-spacing: 4px;
- &>img{
- position: relative;
- top: -3px;
- width: 30px;
- height: 30px;
- }
- }
- }
- }
- }
- // --------------移动端
- .A1homeMo {
- :global {
- .loadingP {
- .btn {
- transform: translate(90px, 155px);
- }
- .progress {
- transform: translate(100px, 155px);
- font-weight: 700;
- }
- }
- }
- }
|