.get-latest-information-container:not(.active),.subscribe:not(.active){
    display: none;
}

.subscribe{
    display: flex;
    font-family:OpenSansRegular;
    min-height: 100vh;
}
.subscribe-bg,.subscribe-text{
    width: 100%;
    /* display: none; */
}
.subscribe-bg{
    object-fit: cover;
}
.subscribe-text{
    margin-left: -100%;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0;
    
}
.subscribe-text > div{
    width: 80%;
    max-width: 640px;
    margin-left: 7%;
}
.subscribe-text .title{
    font-family: AtAeroMedium;
    font-size: 30px;
}
.subscribe-text  .des{
    font-size: 20px;
    margin-top:20px ;
    margin-bottom:40px ;
}
.subscribe-text .input{
    background-color: #fff;
    height: 50px;
    border-radius: 999px;
    display: flex;
    overflow: hidden;
    margin-bottom: 20px;
    padding-left: 30px;
    box-sizing: border-box;
}
.subscribe-text .input input{
    background: transparent;
    border: none;
    width: 0;
    flex-grow: 1;
    height: 100%;
    outline: 0;
}

.subscribe-text button{
    width: 200px;
    border: 0;
    background: linear-gradient(90deg, #E2EB00 0%, #37C900 100%);
    border-radius: 0 999px 999px 0;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.subscribe-text  .agreement{
    display: flex;
    align-items: center;    
    font-family: 'Medium';

}

.subscribe-text  .agreement a{
    text-decoration: underline;
}
.subscribe-text  .agreement input[type="checkbox"]{
    margin-right: 10px;
    margin-left: 10px;
}
@media screen and (max-width: 768px){
    
    .subscribe{
        /* flex-direction: column; */
        
    }
    .subscribe-text .title{
        font-size: 24px;
    }
    .subscribe-text .des{
        font-size: 16px;
        
        margin-top:10px ;
        margin-bottom:20px ;
    }
    .subscribe-text  .agreement{
        font-size: 14px;
    }
    .subscribe-text{
        /* margin: auto; */
        background: #000;
    }
    .subscribe-text >div{
        margin: auto;
        width: 90%;
    }
    .subscribe-text button{
        width: 150px;
    }
}


/* 获取最新信息 */
.get-latest-information-container{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.get-latest-information{
    display: grid;
    padding: 60px 0;
    gap:40px;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    font-family:OpenSansRegular;
    max-width: 1200px;
    margin: auto;
    width: 90%;
}
.get-latest-information .box{
    border-radius: 10px;
    /* box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1); */
    display: flex;
    flex-direction: column;
    padding: 60px 43px;
    
}
.get-latest-information .box div{
    flex-grow: 1;
    margin-bottom: 35px;
    font-size: 18px;
    text-align: center;
}
.get-latest-information .box a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(90deg, #E2EB00 0%, #37C900 100%);
    border: 0;
    padding: 16px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 768px){
    .get-latest-information{
        grid-template-columns: repeat(1,1fr);
    }
}