|
@@ -1,61 +1,79 @@
|
|
|
#TerminalScene {
|
|
|
position: absolute;
|
|
|
width: 100%;
|
|
|
- height: 100%;
|
|
|
- padding: 0 3.76rem;
|
|
|
- background-size: cover;
|
|
|
-
|
|
|
- .terminal-bg {
|
|
|
+ height: 10.9rem ;
|
|
|
+ background-image: url('assets/img/IndexScene/index_bg.png');
|
|
|
+ background-size: cover;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ .content {
|
|
|
position: absolute;
|
|
|
- top: 0;
|
|
|
- left: 0;
|
|
|
- z-index: -1;
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- img {
|
|
|
- position: absolute;
|
|
|
- top: 0;
|
|
|
- left: 0;
|
|
|
+ width: 13rem;
|
|
|
+ left: 50%;
|
|
|
+ margin-left: -6.5rem;
|
|
|
+ padding-top: 1.78rem;
|
|
|
+ padding-bottom: 1.78rem;
|
|
|
+ font-size: .46rem;
|
|
|
+ .terminal-wrapper {
|
|
|
width: 100%;
|
|
|
- height: 100%;
|
|
|
+ height: 7rem;
|
|
|
+ border-radius: 1rem;
|
|
|
+ padding: .2rem .7rem 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+ background-color: #FFFAEA;
|
|
|
+ .info-item {
|
|
|
+ width: 100%;
|
|
|
+ height: 1.2rem;
|
|
|
+ padding-left: .2rem;
|
|
|
+ line-height: 1.7rem;
|
|
|
+ font-size: .46rem;
|
|
|
+ border-bottom: .05rem dashed #fcca98;
|
|
|
+ span {
|
|
|
+ display: inline-block;
|
|
|
+ width: 2rem;
|
|
|
+ height: 100%;
|
|
|
+ text-align:justify;
|
|
|
+ text-justify:distribute-all-lines;
|
|
|
+ text-align-last:justify;
|
|
|
+ -moz-text-align-last:justify;
|
|
|
+ -webkit-text-align-last:justify;
|
|
|
+ }
|
|
|
+ &:nth-last-child(1) {
|
|
|
+ border-bottom: none;
|
|
|
+ line-height: 1.6rem;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- .terminal-wrapper {
|
|
|
- margin-top: 2.78rem;
|
|
|
-
|
|
|
- .info-item {
|
|
|
- width: 100%;
|
|
|
- height: .7rem;
|
|
|
- margin-bottom: .5rem;
|
|
|
- overflow: hidden;
|
|
|
- font-size: .46rem;
|
|
|
- color: #051841;
|
|
|
- div {
|
|
|
- display: inline-block;
|
|
|
- width: 2rem;
|
|
|
- height: 100%;
|
|
|
- text-align:justify;
|
|
|
- text-justify:distribute-all-lines;
|
|
|
- text-align-last:justify;
|
|
|
- -moz-text-align-last:justify;
|
|
|
- -webkit-text-align-last:justify;
|
|
|
+ .terminal-quit {
|
|
|
+ position: absolute;
|
|
|
+ right: .8rem;
|
|
|
+ top: 2.4rem;
|
|
|
+ width: 2rem;
|
|
|
+ height: .65rem;
|
|
|
+ background-color: #1b79ca;
|
|
|
+ border-radius: .5rem;
|
|
|
+ text-align: center;
|
|
|
+ line-height: .55rem;
|
|
|
+ color: #FFF;
|
|
|
+ font-size: .38rem;
|
|
|
+ &.fe-focus {
|
|
|
+ .after-focus(@borderSize; #ffe100);
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- .terminal-quit {
|
|
|
- position: absolute;
|
|
|
- top: 2.7rem;
|
|
|
- right: 3.5rem;
|
|
|
- width: 2rem;
|
|
|
- height: .65rem;
|
|
|
- background: url('assets/img/TerminalScene/quit.png') no-repeat center;
|
|
|
- background-size: 100%;
|
|
|
- border-radius: .3rem;
|
|
|
-
|
|
|
- &.fe-focus {
|
|
|
-
|
|
|
+ .terminal-remind {
|
|
|
+ margin-top: .5rem;
|
|
|
+ text-align: center;
|
|
|
+ font-size: .35rem;
|
|
|
+ color: #fff;
|
|
|
+ span {
|
|
|
+ display: inline-block;
|
|
|
+ width: 1.3rem;
|
|
|
+ background-color: #fff;
|
|
|
+ border-radius: 1rem;
|
|
|
+ color: #224371;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|