body{
    padding: 0px 20px 0px 20px;
}

.top-bar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* background-color: red; */
    /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3); */
    /* box-shadow: inset 10px 10px 5px rgba(0, 0, 0, 0.5); */
    margin-bottom: 10px;
}

.top-bar-menu{
    width: 80%;
    justify-content: space-around;
    display: flex;
}

.top-bar-menu>span{
    padding: 10px;
    margin-left: 30px;
}

.logo{
    width: 80px;
}


.main-body{
    /* height: 200px; */
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* background-color: black; */
    border: #eeeeee 1px solid;
    gap: 10px;
}

.main-body>div{
    flex: 1 1 500px;
}

.main-body>:nth-child(2)>img{
    /* height: 200px; */
}

.main-body>:nth-child(1){
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
}

.main-body>:nth-child(1)>:nth-child(1){
    color: #004b84;
    font-size: 36px;
    margin: 20px;
    font-weight: bold;
}

.main-body>:nth-child(1)>:nth-child(2){
    color: #004b84;
    font-size: 24px;
    /* margin-top: 10px; */
}

.main-body-button-container>button{
    border: 1px solid #6366f1;
    border-radius: 5px;
    padding: 10px;
    margin-top: 20px;
}

.main-body-button-container>:nth-child(1){
    background-color: #6366f1;
    color: white;
}

.main-body-button-container>:nth-child(2){
    background-color: white;
    color: #6366f1;
    margin-left: 10px;
}

.section-title{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.section-title>span{
    font-size: 36px;
}

.glass-effect1 {
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    /* 半透明背景 */
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    /* 阴影模拟玻璃效果 */
    /* backdrop-filter: blur(10px); */
    /* 背景模糊 */
    /* -webkit-backdrop-filter: blur(10px); */
    /* Safari 支持 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* 边框增加光滑感 */
    color: white;
    text-align: center;
    margin-bottom: 20px;
}