* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    vertical-align: baseline;
    list-style: none;
}
html, body {
    font-family:'Windows-95','Noto Sans SC',sans-serif;
    font-size: 14px;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    color:var(--green);
    width:100%;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    line-height: 1;
    min-height: 100vh;
    background: black;
}
.is-cn{
    font-family:'IBM Plex Mono','Noto Sans SC',sans-serif;
}
body.is-cn, .is-cn h1, .is-cn h2, .is-cn h3, .is-cn h4, .is-cn h5, .is-cn h6, .is-cn .h1, .is-cn .h2, .is-cn .h3, .is-cn .h4, .is-cn .h5, .is-cn .h6{
    font-family:'IBM Plex Mono','Noto Sans SC',sans-serif;
}

:root {
    --green:#00ff00;
    --gray:#C0C0C0;
    --px: 1px;
    --grayLight: #e5e5e5;
    --white: #fff;
    --grayDark: #929292;
    --black: #000;
    --highlightBackground: #008;
    --highlightBackground2: #1084d0;
    --highlightForeground: #fff;
    --background-color: #088;
}

a{
    color:var(--green);
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}
button, select {
    text-transform: none;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

.btn.active{
    border-color: var(--black) var(--white) var(--white) var(--black) !important;
    border-width: 1px !important;
}
.btn.active:before {
    border-color: var(--grayDark) var(--grayLight) var(--grayLight) var(--grayDark);
}

.big{
    font-weight: 500 !important;
}


.bg{
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .1;
    background: var(--green);
}
.bg video{
    width: 100%;
    height: 100%;
    mix-blend-mode: hard-light;
    object-fit: cover;
}
.bg-color{
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.color-mask{
    position: relative;
}
.color-mask:before{
    background: var(--green);
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    mix-blend-mode: overlay;
    z-index: 1;
}
.color-mask img{
    filter: grayscale(100%);
}


.bg-mask{
   background: url('img/mask.png') repeat;
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
.mask{
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    bottom:0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 70%,rgba(0,0,0,0.8) 100%);
    z-index: 1;
}
.mask:before{
    content: '';
    position: absolute;
    top:-1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    pointer-events: none;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0) 95%,rgba(0,0,0,0.8) 100%);
}

.logo{
    position: fixed;
    left: 1rem;
    bottom: 4rem;
    opacity: .5;
}
.is-en .cn-line,
.is-en .cn{
    display: none;
}

.is-en .en{
    display: block;
}
.is-en .en-line{
    display: inline-block;
}

.is-cn .cn{
    display: block;
}
.is-cn .cn-line{
    display: inline-block;
}
.is-cn .en-line,
.is-cn .en{
    display: none;
}

sup span{
    font-size: 12px !important;
    font-family: Arial;
    vertical-align: super;
}


#desk{
    position: relative;
    z-index: 2;

}

#footer{
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index:99;
}

.bottom-nav{
    display: flex;
    background: var(--gray);
    background: linear-gradient(180deg,var(--gray) 0,var(--gray) 1px,#fff 0,#fff 2px,var(--gray) 0);
    box-shadow: 0 calc(-1*var(--px)) 0 var(--grayLight);
    height: 2.7rem;
    align-items: center;
    justify-content: space-between;
    color: black;
}

.bottom-tool{
    display: flex;
    padding: 4px 5px;
    align-items: center;
    white-space: nowrap;
    margin-right: 4px;
    border-left: var(--px) solid var(--black);
    border-bottom: var(--px) solid var(--white);
    border-right: var(--px) solid var(--white);
    border-top: var(--px) solid var(--black);
    border-color: var(--grayDark) var(--grayLight) var(--grayLight) var(--grayDark);
    position: relative;
}
.time{
    font-size: 12px;
    width: 4rem;
    text-align: right;
}

.grid{
    display: flex;
    flex-wrap: wrap;
    padding:1.5rem 1rem;
    align-items: flex-start;
}
.desk-left{
    width: 85%;
    margin-bottom: 10rem;
}

.start{
    width: 120px;
    flex: 0 0 120px;
}

.start-bar{
    position: absolute;
    bottom:calc(2.7rem + 1px);
    left:0;
    display: none;
}


.start-bar-warp{
    background: var(--gray);
    border-color: #000;
    border-left: var(--px) solid var(--grayLight);
    border-bottom: var(--px) solid var(--black);
    border-right: var(--px) solid var(--black);
    border-top: var(--px) solid var(--grayLight);
    position: relative;
    display: flex;
}
.start-nav ul li ul:before,
.start-bar-warp:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-color: #000;
    border-left: var(--px) solid var(--white);
    border-bottom: var(--px) solid var(--grayDark);
    border-right: var(--px) solid var(--grayDark);
    border-top: var(--px) solid var(--white);
    pointer-events: none;
}

.star-bar-side{
    background: var(--highlightBackground);
    background-image: linear-gradient(0deg,var(--highlightBackground),var(--highlightBackground2));
    color: var(--highlightForeground);
    background-repeat: no-repeat;
    background-position: bottom;
    writing-mode:vertical-rl;
    font-size: 12px;
    padding:.5rem;
    text-align: right;
    display: block;
    white-space: nowrap;

}

.start-nav ul{
    display: flex;
    flex-direction: column;
}
.start-nav ul li{
    position: relative;
    white-space: nowrap;
    font-size: 16px;
    cursor: pointer;
}
.start-nav>ul>li:hover h2{
    background: blue;
    color: white;
}
.start-nav ul li ul li{
    padding: 2px 5px;
}
.start-nav ul li ul li.active,
.start-nav>ul>li>ul>li:hover{
    background: blue;
    color: white;
}
.start-nav ul li h2{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 5px;
    text-transform: uppercase;
}
.start-nav ul li .small-logo{
    text-align: center;
    padding: 5px;
}
.start-nav ul li h2 span img{
    width: 16px;
    height: auto;
}

.start-nav ul li.line {
    display: block;
    border-top: var(--px) solid var(--grayDark);
    border-bottom: var(--px) solid var(--white);
    padding: 0;
    margin: 5px 0;
}

.start-nav ul li ul{
    position: absolute;
    background: var(--gray);
    border-color: #000;
    border-left: var(--px) solid var(--grayLight);
    border-bottom: var(--px) solid var(--black);
    border-right: var(--px) solid var(--black);
    border-top: var(--px) solid var(--grayLight);
    left: 100%;
    bottom: 0;
    max-height: 70vh;
    overflow: auto;
    display: none;
}
.start-nav ul li:hover ul{
    display: block;
}

.bottom-nav-right{
    display: flex;
}

.bottom-nav-left{
    display: flex;
    width: 80%;
    flex: 0 0 80%;
}


.logo-s{
    display: flex;
}
.logo-s img{
    height: 1rem;
    width: auto;
}

.bottom-file{
    width: 100%;
    padding-top: 1px;
    display: flex;
    white-space: nowrap;
}
.bottom-file .btn{
    overflow: hidden;
}


h2 i{
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 10px solid black;
    border-bottom: 5px solid transparent;
    display: block;
    margin-left: 10px;
}


.box{
    width: calc(100% / 9);
    padding: .5rem;
    text-align: center;
    cursor: pointer;
    min-width: 100px;
}
.box.active{
    background: blue url("img/mask.png") repeat;
}

.box:hover{
    background: blue;
}
.box .box-img{
    text-align: center;
    margin-bottom: .5rem;
}
.box .box-img img{
    width: 40%;
    height: auto;
    filter: drop-shadow(0 0 10px var(--green));
}
.box h2{
    font-weight: 400;
    text-shadow: 0 0 10px var(--green),0 0 10px var(--green);
    font-size: 1rem;
    line-height: 1.5;
}
.is-cn .box h2{
    font-weight: 500;
}

.desk-right{
    position: absolute;
    right: 1rem;
    top:0;
    width: 8%;
}
.desk-right .grid{
    display: block;
}

.desk-right .grid .box{
    width: 100%;
}


.language{
    position: fixed;
    right: 2rem;
    bottom: 5rem;
    font-size: 1.2rem;
}
.language span{
    display: inline-block;
    margin:0 5px;
}
.choose-cn,.choose-en{
    cursor: pointer;
}
.choose-cn:hover,.choose-en:hover{
    background: blue;
}
.choose-cn.active,.choose-en.active{
    background: blue;
}
.start-nav ul li ul li .choose-cn.active,.start-nav ul li ul li .choose-en.active{
    background: transparent;
}



.plane{
    position: fixed;
    pointer-events: none;
    z-index: 10;
    right: 0;
    top:0;
    left: 0;
    bottom: 2.7rem;
}

.plane-box{
    position: absolute;
    pointer-events: auto;
    display: flex;
    flex-direction: column;

}

.plane-box.bigger{
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top:0 !important;
    max-width: unset;
}

.plane .card{
    transform: scale(0);
    transition: transform .5s linear;
}

.plane.open-it .card{
    transform: scale(1);
}
.plane.open-it .card.card-works-img{
    transform: scale(0);
}

.plane.open-it.open-it-img .card.card-works-img{
    transform: scale(1);
}

.card-doc{
    width: 45%;
    left: 30%;
    top:20%;
    height: 70vh;
}

.card-info{
    width: 45%;
    left: 20%;
    top:10%;
    height: 70vh;
}

.card-tertiary .card-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: linear-gradient(90deg,var(--highlightBackground),var(--highlightBackground2));
    color: var(--white);
    align-items: center;
    height: 25px;
    cursor: move;

}
.card-header span{
    line-height: 1;
}

.toolbar-font{
    display: flex;
    align-items: center;
}
.toolbar-font>div{
    margin: 1px 5px;
    display: flex;
    align-items: center;
}


.read-page {
    width: 80%;
    max-width: 1280px;
    padding: 1.5rem 2.5rem;
    margin: 1.5rem auto;
    border: 1px solid #000;
    background: #fff;
    box-shadow: 2px 2px 0 #000;
    color: #000;

}



.read-text{
    line-height: 1.8;
    font-size: 16px;
}
.read-text p{
    margin-bottom: 1rem;
}
.read-text a{
    color: blue;
    text-decoration: underline;
}
.read-text b{
    font-size: 1.5em;
    padding-bottom: 1rem;
}
.read-text-header{
   margin-bottom: 2rem;
}
.read-text-header h2{
    font-size: 2em;
    line-height: 1.2;

}
.read-text-header h3{
    font-size: 1.5em;
    line-height: 1;
}
hr{
    margin: 2rem 0;
}
.ui-resizable{
    position: absolute !important;
}
.card{
    z-index: 1;
}
.card a{
    color: blue;
}
.card:hover{
    z-index: 2;
}
.card-works{
    width: 37%;
    left: 20%;
    top:10%;
    height: 70vh;
}
.has-gallery .card-works{
    left: 30%;
    top:30%;
    height: 60vh;
}

.is-bigger.plane.open-it.open-it-img .card.card-works-img{
    z-index: 100 !important;
    transform:scale(1) translateX(90%);
    left: 68%;
    transition:transform .3s linear ;
}
.is-bigger.plane.open-it.open-it-img .card.card-works-img:hover{
    transform:scale(1) translateX(0);
}
.card-works-img{
    max-width: 35%;
    left: 60%;
    top:10%;
}

.card-works-gallery{
    width: 30%;
    left: 6%;
    top:5%;
}

.go-left{
    position: absolute;
    width: 50%;
    top:0;
    bottom: 0;
    left: 3px;
    z-index: 8;
    cursor: url("img/left.png"),w-resize;
}
.go-right{
    position: absolute;
    width: 50%;
    top:0;
    bottom: 0;
    right: 3px;
    z-index: 8;
    cursor: url("img/right.png"),e-resize;
}
.card-works-gallery img{
    width: 100%;
    height: auto;
}

.card-works-link{
    left: 70%;
    top:60%;
}

.is-bigger.plane.open-it .card.card-works-link{
    z-index: 100 !important;
    transform:scale(1) translateX(90%);
    transition:transform .3s linear ;
    left: 80%;
}
.is-bigger.plane.open-it .card.card-works-link:hover{
    transform:scale(1) translateX(0);
}
.is-bigger.plane.open-it .card.card-works-gallery{
    z-index: 100 !important;
    transform:scale(1) translateX(-90%);
    transition:transform .3s linear ;
    left: 0;
}
.is-bigger.plane.open-it .card.card-works-gallery:hover{
    transform:scale(1) translateX(0);
}

.card-link{
    padding: 1rem;
    text-align: center;
}
.card-link img{
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
}

.img-mac{
    position:relative;
    background: black;
    margin-top: 1px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.d-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    pointer-events: none;
}
.cv {
    display: none;
}
.ascii {
    font-size: 8px;
    text-align: center;
    text-shadow: 0 0 10px var(--green);
}

.d-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: var(--green);
}
.img-mac-img {
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    overflow: hidden;
}

.img-mac-img span {
    display: block;
}
.img-mac-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plane-works{
    display: none;
}
.o{
    opacity: 0.1;
}
.card-works-img.card{
    border-top: 1px solid var(--green);
    border-left: 1px solid var(--green);
    border-right: 1px solid var(--green);
    border-bottom: 1px solid var(--green);
    border-radius: 0;
    background: var(--green);
}

.card-works-img.card.card-tertiary .card-header {
  background:black;
    color: var(--green);
    border: none;
}

#screen{
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
    z-index: 999999;
    position: fixed;
    display: none;
}

#footer,#desk{
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity .5s linear;
}

.ok #desk{
    opacity: 1;
    pointer-events: auto;
    position:relative;
}

.ok #footer{
    opacity: 1;
    pointer-events: auto;
}

#loading{
    position: relative;
    padding: 1rem;
    font-weight: 800;
    font-size: 16px;
    text-shadow: 0 0 10px var(--green);
    filter: drop-shadow( 0 0 10px var(--green));
    opacity: 1;
    transition:opacity .5s linear;
}
#loading img{
    width:40%;
    max-width: 1024px;
}

.done #loading{
    opacity: 0;
}

.loading{
    font-size: 12px;
}

.loading-t{
    position: fixed;
    right: 2rem;
    top:2rem;
    font-size: 1.5rem;
}

.done .loading-t{
    display: none;
}

.g{
    font-size: 3em;
    animation: ko .3s linear infinite;
    height: 5px;
    width: 15px;
    background: var(--green);
    margin-top: 2rem;
}
.loding-text{
    text-transform: uppercase;
    font-size: 2rem;
}
@keyframes ko {
    from{
        opacity: 0;
    }to{
    opacity: 1;
         }
}

#logo3d{
    width: 35%;
    height: 38vh;
    position: fixed;
    left: 55%;
    top:20vh;
    z-index: 1;
}

.zs{
    font-style: italic;
}

.phone-bottom-nav-left{
    display: none;
}

#matrix{
    display: none;
}

iframe{
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    top:0;
    bottom: 0;
    border: none;
    z-index: 1111;
}
.for-phone-info{
    display: none;
}

.bottom{
    display: none;
}