|
@@ -1,4 +1,102 @@
|
|
|
.A7end {
|
|
|
+ position: relative;
|
|
|
+ background-size: 100% 100%;
|
|
|
:global {
|
|
|
+ .A7Vlogo {
|
|
|
+ position: absolute;
|
|
|
+ top: 40px;
|
|
|
+ width: 280px;
|
|
|
+ left: 51%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ }
|
|
|
+ .A7txt {
|
|
|
+ text-align: center;
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ bottom: 100px;
|
|
|
+ z-index: 10;
|
|
|
+ color: #fffddc;
|
|
|
+ & > div {
|
|
|
+ padding: 5px;
|
|
|
+ cursor: pointer;
|
|
|
+ font-size: 18px;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ transition: all 0.3s;
|
|
|
+ &:hover {
|
|
|
+ background-image: url('../../assets/img/endAc.png');
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .A7floor {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 10px;
|
|
|
+ font-size: 10px;
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ pointer-events: none;
|
|
|
+ text-align: center;
|
|
|
+ color: rgba(149, 149, 149, 0.9);
|
|
|
+ b {
|
|
|
+ font-family: 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB',
|
|
|
+ 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif !important;
|
|
|
+ }
|
|
|
+ p {
|
|
|
+ font-family: 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB',
|
|
|
+ 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif !important;
|
|
|
+ }
|
|
|
+ div {
|
|
|
+ font-family: 'Microsoft Yahei', 'PingFang SC', 'Avenir', 'Segoe UI', 'Hiragino Sans GB',
|
|
|
+ 'STHeiti', 'Microsoft Sans Serif', 'WenQuanYi Micro Hei', sans-serif !important;
|
|
|
+ // text-align: justify;
|
|
|
+ text-align-last: justify;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 蒙版
|
|
|
+ .A7model {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ opacity: 0;
|
|
|
+ pointer-events: none;
|
|
|
+ z-index: 10;
|
|
|
+ transition: all 0.3s;
|
|
|
+ background-color: rgba(0, 0, 0, 0.3);
|
|
|
+ backdrop-filter: blur(6px);
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ flex-direction: column;
|
|
|
+ font-size: 20px;
|
|
|
+ color: #fff;
|
|
|
+ .A7model1 {
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+ .A7model2 {
|
|
|
+ width: 180px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ transition: all 0.3s;
|
|
|
+ color: #eacf60;
|
|
|
+ & > div {
|
|
|
+ padding: 5px;
|
|
|
+ cursor: pointer;
|
|
|
+ font-size: 18px;
|
|
|
+ &:hover {
|
|
|
+ color: rgba(255, 255, 255, 0.8);
|
|
|
+ background-image: url('../../assets/img/endAc.png');
|
|
|
+ background-size: 100% 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .A7modelShow {
|
|
|
+ opacity: 1;
|
|
|
+ pointer-events: auto;
|
|
|
+ }
|
|
|
}
|
|
|
}
|