.container {
    width: 100%;
    padding: 0 40px 40px;
    display: flex;
    flex-direction: column;
}

.header_banner {
    background-image: url(./assets/image/banner.png);
    background-repeat: no-repeat;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.card {
    width: 100%;
    height: 484px;
    background-color: #F2F2FF;
}

.switch {
    height: 740px;
    background-color: #fff;
}

.content {
    position: absolute;
    width: 100%;
    max-width: 1280px;
}

.footer {
    background-image: url(./assets/image/footer_bg.png);
    background-repeat: no-repeat;
    height: 367px;
    background-size: cover;
    background-position: center;
}

.flex_relative {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header_title {
    font-size: 36px;
    line-height: 60px;
    font-weight: bold;
    display: flex;
    align-items: center;

    span {
        display: inline-block;
        margin: 0 10px;
        width: 6px;
        height: 5px;
        background: #03092D;
        border-radius: 50%;
    }
}

.header_desc {
    max-width: 620px;
    line-height: 32px;
    color: #333;
    margin: 32px 0 60px 0;
}

.header_btn {
    display: flex;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #313133;
}

.footer_content_1 {
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.card_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.card_title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    line-height: 58px;
}

.card_item {
    width: 302px;
    height: 226px;
    box-sizing: border-box;
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 0px 4px 50px 0px rgba(23, 38, 90, 0.1);
    border-radius: 16px;
    color: #626266;
}

.card_item_title {
    margin: 24px 0 16px;
    color: #19191A;
    font-size: 20px;
    font-weight: bold;
}

.card_item_desc {
    line-height: 24px;
}

.switch_item {
    width: 250px;
    background: #F7F7F7;
    border-radius: 12px;
    border: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.switch_active {
    background-color: #4945FF;
    color: #fff;
}

.gifBox {
    height: 560px;
    width: 971px;
    padding: 4px;
    background-color: #E6E6E6;
    border-radius: 8px;
    box-sizing: border-box;
    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}