.container{
    background-image: url("../img/background_image/open_bg1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: transform 1s ease;
    padding: 0 15rem 0 15rem;
    padding-top: 5rem;
    height: calc(70% - 5rem);
}
.tab{
    width: 100%;
    height: 1.875rem;
    line-height: 1.875rem;
    font-size: 1.125rem;
    display: flex;
    padding-top: 3rem;
    border-bottom: 0.125rem solid #E5E5E5;
    gap: 2.125rem;
    padding-bottom: 0.3rem;
}
.tab_item{
    cursor: pointer;
    height: 100%;
}
.tab_content_1{
    display: flex;
}
.tab_content_2{
    display: flex;
}
.left_box{
    width: 60%;
}
.right_box{
    width: 40%;
}
.title{
    margin-top: 5rem;
    font-size: 1.5rem;
    font-weight: bolder;
}
.title_label{
    margin-top: 0.6125rem;
    width: 3.5rem;
    height: 0.25rem;
    background: #3670F8;
}
.desc{
    color: #3D3D3D;
    font-size: 1.25rem;
    margin-top: 0.8125rem;
}
.list{
    margin-top: 5rem;
    display: flex;
    font-size: 0.875rem;
    width: 33.125rem;
    height: 6rem;
    justify-content: space-between;
}
.list_item{
    width: 5rem;
    height: 100%;
    text-align: center;
}
.list_item>img{
    width: 5rem;
    height: 5rem;
}
.serve_button{
    width: 7.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    align-items: center;
    background: #3670F8;
    color: #FFFFFF;
    font-size: 0.875rem;
    margin-top: auto;
    margin-top: 5rem;
    cursor: pointer;
    text-align: center;
}
.active{
    color: #3670F8;
    border-bottom: 0.125rem solid #3670F8;
    padding-bottom: 0.3rem;
}
.right_box>img{
    width: 100%;
    height: 100%;
}
.modal_box{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 23rem;
    height: 5.25rem;
    box-shadow: 0 0 0.625rem 0.625rem rgba(0, 0, 0, 0.08);
    padding:1.5rem;
    display: flex;
    font-size: 1rem;
    text-align: center;
    display: none;
    background-color: #FFFFFF;
    z-index: 999;
    border-radius: 0.5rem;
    background: linear-gradient(180deg, #F3F5F8 0%, #FFFFFF 100%); 
    border: 0.125rem solid #FFFFFF;
    box-shadow: 0.5rem 0.5rem 1.25rem 0 rgba(55, 99, 170, 0.1);
    align-items: center;
}

.modal_box_close{
    text-align: right;
}
.modal_box_close::before{
    content: '\00D7';
    font-size: 2rem;
    cursor: pointer;
}
.modal_box>img{
    width: 3.5rem;
    height: 3.5rem; 
}
.modal_content{
    text-align: left;
    width: 80%;
    margin-left: 1rem;
}
.modal_content>div:first-child{
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 0.625rem;
}
.modal_content>div>span{
    font-size: 1.25rem;
    font-weight: bold;
}