123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- .BaseImg {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 11;
- opacity: 1;
- transition: opacity 1s;
- &::after {
- content: '';
- position: absolute;
- pointer-events: none;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.4);
- }
- :global {
- .BIcon {
- position: absolute;
- top: -60px;
- left: 50%;
- transform: translateX(-50%);
- width: 30px;
- z-index: 10;
- cursor: pointer;
- display: none;
- }
- .BIlogo {
- z-index: 5;
- position: absolute;
- top: -60px;
- width: 650px;
- max-width: 90%;
- left: 50%;
- transform: translateX(-50%);
- }
- .BItxt {
- text-indent: 2em;
- position: absolute;
- top: 32%;
- left: 50%;
- transform: translateX(-50%);
- z-index: 10;
- width: 70%;
- max-height: 200px;
- background-size: 100% 100%;
- padding: 10px;
- background-color: rgba(242, 242, 215, 0.3);
- backdrop-filter: blur(4px);
- & > img {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- object-fit: fill !important;
- pointer-events: none;
- }
- .BItxtImg {
- top: auto;
- bottom: 0;
- }
- & > div {
- text-align: justify;
- width: 100%;
- max-height: 180px;
- color: #fffddc;
- font-size: 14px;
- letter-spacing: 3px;
- line-height: 22px;
- overflow-y: auto;
- &::-webkit-scrollbar {
- display: none;
- }
- }
- }
- .BIbaseBtn {
- position: absolute;
- bottom: 40px;
- left: 50%;
- transform: translateX(-50%);
- cursor: pointer;
- width: 120px;
- height: 36px;
- z-index: 10;
- background-size: 100% 100%;
- background-image: url('../../assets/img/btn.png');
- color: #fffddc;
- transition: all 0.3s;
- .BIBtxt {
- font-size: 18px;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-family: 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB',
- 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif !important;
- }
- .BIBtxtFont {
- font-family: 'qfk' !important;
- }
- &:hover {
- background-image: url('../../assets/img/btnAc.png');
- color: #b67150;
- }
- }
- // 进度条
- .BIBxian {
- position: absolute;
- bottom: 7%;
- left: 50%;
- transform: translateX(-50%);
- width: 120px;
- padding: 0 10px;
- height: 2px;
- z-index: 10;
- & > div {
- width: 100%;
- height: 100%;
- background-color: rgba(231, 214, 142, 0.6);
- & > div {
- width: 0%;
- height: 100%;
- background-color: #fffddc;
- }
- }
- }
- .birdBox {
- position: absolute;
- bottom: -122px;
- left: 70%;
- transform: translateX(-50%);
- z-index: 100;
- width: 250px;
- height: 260px;
- transition: all 0.5s;
- .bird1 {
- position: absolute;
- top: 0;
- left: 0;
- pointer-events: none;
- width: 250px;
- height: 260px;
- object-fit: fill !important;
- }
- .bird2 {
- position: absolute;
- bottom: 80px;
- left: 50%;
- transform: translateX(-50%);
- background-image: url('../../assets/img/bird/quan.png');
- background-size: 100% 100%;
- z-index: 2;
- cursor: pointer;
- width: 90px;
- height: 90px;
- color: #fffddc;
- text-align: center;
- font-size: 16px;
- padding-top: 18px;
- transition: all 0.3s;
- &:hover {
- color: #a55b41;
- background-image: url('../../assets/img/bird/quanAc.png');
- }
- }
- .bird3 {
- cursor: pointer;
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- top: -55px;
- width: 33px;
- height: 55px;
- background-image: url('../../assets/img/bird/ji.png');
- background-size: 100% 100%;
- transition: all 0.3s;
- &:hover {
- background-image: url('../../assets/img/bird/jiAc.png');
- }
- }
- }
- #HotOpCss {
- z-index: 1000;
- }
- // 屏幕>=1200
- @media screen and (min-width: 1200px) {
- .BItxt > div {
- font-size: 12px !important;
- }
- }
- }
- }
- .BaseImgHide {
- opacity: 0;
- pointer-events: none;
- }
|