* {
    margin: 0;
    padding: 0;
}

body {
    background: url(../image/bg.jpg) no-repeat center center fixed;
    background-size: cover;
}
a {
    text-decoration: none;
}
#header {
    height: 132px;
    background: url(../image/header_bg.png) no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

#header .title {
    font-size: 32px;
    font-weight: bolder;

}

#header .en {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);

}

/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
    font-family: 'iconfont';  /* Project id 5054482 */
    src: url('https://at.alicdn.com/t/c/font_5054482_zh3v77xk8ds.woff2?t=1762010131624') format('woff2'),
         url('https://at.alicdn.com/t/c/font_5054482_zh3v77xk8ds.woff?t=1762010131624') format('woff'),
         url('https://at.alicdn.com/t/c/font_5054482_zh3v77xk8ds.ttf?t=1762010131624') format('truetype');
  }

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

iframe{
    width: 100vw;
    height: 100vh;
}
#content {
    width: calc(100vw - 100px);
    padding: 0 50px;
    height: calc(100vh - 320px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

#content .border {
    border: 1px solid #66F2FF;
    /* inset | offset-x | offset-y | blur-radius | spread-radius | color */
    box-shadow: inset 0px 0px 3px 2px rgba(102, 242, 255, 0.8);
}

#content .item {
    width: 300px;
    height: 400px;
    position: relative;
    border-radius: 20px;
    user-select: none;
    backdrop-filter: blur(2px);
    background-color: rgba(102, 242, 255, 0.05);
}

#content .item:hover {
    background-color: rgba(102, 242, 255, 0.1);
    transform: scale(1.2);
    transition: transform 0.3s ease-in-out;
}

#content .item:hover .btn {
    background-color: rgba(102, 242, 255, 0.2);
    transition: transform 0.3s ease-in-out;
}
#content .item:hover .iconfont {
    transform: scale(1.2);
}
#content .iconfont {
    width: 180px;
    height: 180px;
    text-align: center;
    font-size: 120px;
    line-height: 180px;
    color: #00DAFB;
    margin: 45px 60px 0 60px;
}

#content .title {
    text-align: center;
    padding: 20px 0;
}

#content .name {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #ffffff;
    user-select: none;
    line-height: 32px;
}

#content .en-name {
    font-size: 14px;
    user-select: none;
    color: rgba(255, 255, 255, .5);
    line-height: 32px;
}

#content .btn {
    width: 140px;
    height: 35px;
    display: block;
    border-radius: 70px;
    text-align: center;
    color: #66F2FF;
    line-height: 35px;
    margin: 0 auto;
    font-size: 14px;
    cursor: pointer;
}

#content .item span {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
}

#content .item span:nth-child(1) {
    transform: rotate(0deg);
}

#content .item span:nth-child(2) {
    transform: rotate(90deg);
}

#content .item span:nth-child(3) {
    transform: rotate(180deg);
}

#content .item span:nth-child(4) {
    transform: rotate(270deg);
}

/* #content .item span:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 2px;
    background: #50dfdb;
    animation: animate 4s linear infinite;
  } */
#content .item:hover span:before {
    animation-play-state: paused;
}

#content .item span:nth-child(1):before,
#content .item span:nth-child(3):before {
    content: "";
    position: absolute;
    left: 30px;
    width: 240px;
    height: 4px;
    background: #50dfdb;
    animation: animate 4s linear infinite;
}

#content .item span:nth-child(2):before,
#content .item span:nth-child(4):before {
    content: "";
    position: absolute;
    top: 50px;
    left: -20px;
    width: 350px;
    height: 4px;
    background: #50dfdb;
    animation: animate 4s linear infinite;
}

@keyframes animate {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
    }

    50.1% {
        transform: scaleX(1);
        transform-origin: right;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

#footer {
    height: 100px;
    display: flex;
    width:600px;
    margin: 0 auto;
    padding-top: 50px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#footer .footer-item:hover{
   transform: scale(1.1);
   transition: transform 0.3s ease-in-out;
}
#footer .footer-item:hover .iconfont{
    background-color: rgba(102, 242, 255, 0.2);
}
#footer .iconfont{
    width: 60px;
    height: 60px;
    text-align: center;
    font-size:32px;
    line-height: 60px;
    color: #ffffff;
    border-radius:50%;
    background-color: rgba(102, 242, 255, 0.05);
    border: 3px solid  rgba(102, 242, 255, 0.2);
}
#footer .text{
   text-align: center;
    font-size: 16px;
    line-height:40px;
    color: rgba(255, 255, 255, 0.5);
}
.cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.cover .unlock{
    width: 450px;
    height: 480px;
    background-color: rgba(60, 220, 210, 0.3);
    border: 1px solid #66F2FF;
    padding: 40px 50px;
}