* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    background-color: #f0f3f8
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url("../img/bg.png") center no-repeat;
    background-size: cover;
    background-image: linear-gradient(to right top, #6d327c, #485DA6, #00a1ba, #00BF98, #36C486);
}

.yltitle { 
    margin-top: 20px;
    width: 1024px;
    background: rgba(64, 64, 64, 0.15);
    background: rgba(0, 0, 0, 0.15);
    border: 0px solid rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(25px);
    color: white;
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
    transition: .5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#describe{
    font-size: 20px;
    font-weight: bold;
}

.jiage p{
    font-size: 22px;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

.yllogin h2{
    margin-bottom: 10px;
}
.yllogin h2 span{
    font-size:30px;
    color: rgb(249, 47, 96);
}
.yllogin h3{
    margin-bottom: 10px;
}
.guanwang-link{
    color: white;
    text-decoration: none;
}

.gw h1{ margin-top:10px;}
.gw p{ margin-top:10px;}
.logo{
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
}

.logo img{
    width: 90px;
    height: 90px;
}

.logo-title{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-title h1{
    font-size: 40px;
    margin-bottom: 10px;
}
.logo-title p{
    height: 16px;
    font-size: 16px;
    margin-bottom: 10px;
}

.line{
    display: flex;
    width: 95%;
    margin-top: 20px;
    justify-content: left;
    align-items: center;
}
.path{
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #9cdbff;
    box-shadow: 0px 0px 40px 4px #9cdbff;
    animation: fly 10s infinite;
}
@keyframes fly {
    0%{
        width: 0px;
    }
    100%{
        width: 100%;
    }
}
.rocket{
    -webkit-transform: translateY(2px) translateX(2px) rotate(45deg);
    transform: translateY(2px) translateX(2px) rotate(45deg);
}
.rocket i{
    font-size: 30px;
}

@keyframes move {
    0% {
        left: 0;
    }

    100% {
        left: 95%;
    }
}

.reg-box {
    width: 100%;
    margin-top: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reg-box p:hover {
    text-decoration: underline;
    cursor: pointer;
}


.left{
    width: 33%;
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
}

.left img{
    width: 100%;
}

.right{
    width: 33%;
    position: fixed;
    z-index: 1;
    bottom: 0;
    right: 0;
    transition: 2s;
}

.right img{
    width: 100%;
}


.login-btn {
    width: 50%;
    height: 70px;
    text-decoration: none;
    padding: 10px 0;
    background: #2f9cf4;
    border: none;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
   
}
.login-btn i{
    position:relative;
    top: 5px;
}

.login-btn:hover {
    background: #0b87ec;
}

.ylbottom{
    margin-bottom: 50px;
}
@media screen and (max-width:1024px) {
    .yltitle {
        width: 90%;
        transition: .5s;
    }
    .right{
        width: 60%;
        transition: 2s;
    }

    .login-btn {
        width: 50%;
    }
    /*.fade{opacity:1;transition: all 0.5s;}*/
}
@media screen and (max-width:740px) {
    .logo-title h1 {
        font-size: 35px;
    }
    .login-btn {
        width: 90%;
    }
}





