.section{
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 150px;
}

.section_title {
    padding-top: 80px;
    padding-bottom: 70px;
    width: 100%;
    line-height: 100%;
    text-align: center;
    font-size: 10vmin;
    overflow: hidden;
}

.section_description{
    font-size: min(50px,3dvh,4vw);
    line-height: 100%;
    padding: 20px 60px;
    color:white;
}

@media screen and (max-width:400px) {
    .section_description{
        padding: 20px 5px;
    }
}

.section_content{
    padding-top: 50px;
}
.section_content .card{
    /* outline: solid 2px rgb(37, 37, 37) !important; 有問題*/
    isolation: isolate;  /* 新增 */
    border-radius: 25px !important;
    -webkit-border-radius:25px !important;
    margin-bottom: 50px;
    overflow: hidden;
    font-family: "Helvetica", "Arial","LiHei Pro","黑體-繁","微軟正黑體", sans-serif !important;
    background-color: #333;;
}
.card .card-title{
    text-align: center;
}
.section_content a{
    background-color: rgb(60, 60, 60);
    text-decoration: none;
    color:whitesmoke;
    width: 80%;
    text-align: center;
    padding: 10px 0px;
    font-size: 20px;
    isolation: isolate; /* 新增 */
    border-radius: 30px !important;
    -webkit-border-radius:30px !important;
    transition: all .35s;
    box-shadow:0  0  0  2px  black;
}
.section_content a:hover{
    background-color: rgb(229, 229, 229);
    color:black;
}


.easytag_red{
    border-color: red !important;
    color:red;
}
.easytag_red::after{
    background-color: red;
}

.easytag_yellow{
    border-color: rgb(212, 177, 0) !important;
    color:rgb(212, 177, 0);
}
.easytag_yellow::after{
    background-color: rgb(212, 177, 0);
}

.easytag_green{
    border-color: rgb(0, 86, 0) !important;
    color:rgb(0, 86, 0);
}
.easytag_green::after{
    background-color: rgb(0, 86, 0);
}

.easytag_blue{
    border-color: rgb(0, 89, 255) !important;
    color:rgb(0, 89, 255) ;
}
.easytag_blue::after{
    background-color: rgb(0, 89, 255);
}
.easytag_black{
    border-color: black !important;
    color:black;
}
.easytag_black::after{
    background-color: black;
}
