...
|
...
|
@@ -25,6 +25,8 @@ $border-radius: 8px; |
|
|
font-size: 38px;
|
|
|
display: inline-block;
|
|
|
padding: 5px 20px;
|
|
|
margin-left: 20px;
|
|
|
margin-right: 20px;
|
|
|
}
|
|
|
|
|
|
.game-btn {
|
...
|
...
|
@@ -58,7 +60,14 @@ $border-radius: 8px; |
|
|
width: 162px;
|
|
|
height: 124px;
|
|
|
margin: 11px 25px 7px 15px;
|
|
|
background: url("/activity/vip_day/chit@2x.png");
|
|
|
}
|
|
|
|
|
|
&.game-luck .header-banner {
|
|
|
background: url("/activity/vip_day/chit.png");
|
|
|
}
|
|
|
|
|
|
&.game-wheel .header-banner {
|
|
|
background: url("/activity/vip_day/coin.png");
|
|
|
}
|
|
|
|
|
|
.game-notify {
|
...
|
...
|
@@ -71,15 +80,50 @@ $border-radius: 8px; |
|
|
line-height: calc(79 - 3 * 2px);
|
|
|
}
|
|
|
|
|
|
/* ---------------------------------------------------- *\
|
|
|
main area
|
|
|
\* ---------------------------------------------------- */
|
|
|
.game {
|
|
|
position: relative;
|
|
|
height: 536px;
|
|
|
background: resolve("activity/vip_day/stage@2x.png");
|
|
|
background-size: 750px 536px;
|
|
|
}
|
|
|
|
|
|
/* ---------------------------------------------------- *\
|
|
|
main area
|
|
|
\* ---------------------------------------------------- */
|
|
|
.game-stage {
|
|
|
position: absolute;
|
|
|
top: 60px;
|
|
|
right: 82px;
|
|
|
left: 82px;
|
|
|
width: 586px;
|
|
|
height: 406px;
|
|
|
background-size: contain;
|
|
|
}
|
|
|
|
|
|
.game-item {
|
|
|
float: left;
|
|
|
width: calc((586-4) / 3px);
|
|
|
height: calc((406-4) / 3px);
|
|
|
margin-right: 2px;
|
|
|
margin-bottom: 2px;
|
|
|
/* background-color:rgba(255,255,255,0.8); */
|
|
|
|
|
|
&:nth-child(3n) {
|
|
|
margin-right: 0;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.game-award.is-active {
|
|
|
background: url("/activity/vip_day/cursor.png");
|
|
|
}
|
|
|
|
|
|
&.game-luck .game-stage {
|
|
|
background-image: resolve("activity/vip_day/luck-stage.png");
|
|
|
}
|
|
|
|
|
|
&.game-wheel .game-stage {
|
|
|
background-image: resolve("activity/vip_day/chit-stage.png");
|
|
|
}
|
|
|
|
|
|
/* ---------------------------------------------------- *\
|
|
|
footer area
|
...
|
...
|
@@ -160,7 +204,19 @@ $border-radius: 8px; |
|
|
right: 0;
|
|
|
content: "";
|
|
|
height: 27px;
|
|
|
background: linear-gradient(to bottom, rgba(171,171,171, 0.8), transparent);
|
|
|
background: linear-gradient(to bottom, rgba(171, 171, 171, 0.8), transparent);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.explain-title {
|
|
|
font-size: 26px;
|
|
|
font-weight: bold;
|
|
|
margin-bottom: 10px;
|
|
|
}
|
|
|
|
|
|
.explain-rules {
|
|
|
li {
|
|
|
margin-bottom: 10px;
|
|
|
}
|
|
|
}
|
|
|
} |
...
|
...
|
|