.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-right {
    justify-content: right;
}

.align-items-center {
    align-items: center;
}

.my-components h2 {
    font-size: 35px;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 40px;
}

.my-components h3 {
    font-size: 20px;
    color: #6a6a6a;
    font-weight: bold;
    margin-bottom: 16px;
}

.sc-components {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.item_list {
    margin-bottom: 32px;
    box-sizing: border-box;
}

.item_list_100w {
    width: 100%;
}

/* .item_list:nth-child(2) {
    min-width: 50%;
} */

/* .item_list:nth-child(3) {
    min-width: 100%;
} */

.item_list ul {
    display: flex;
    flex-wrap: wrap;
}

.item_list ul li {
    width: 150px;
    height: 150px;
    margin-right: 24px;
    margin-bottom: 24px;
}

/* 按鈕下有文字備註 item_comment */
.item_list.item_comment ul li {
    margin-bottom: 36px;
    text-align: center;
}

.item_list.item_comment ul li>p {
    margin-top: 8px;
    font-size: 18px;
    color: var(--main-primary-color);
}

.sc_item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 0;
    border: 2px solid var(--main-primary-color);
    box-sizing: border-box;
}

.sc_item.sc_item_warning {
    border: 2px solid #e4b849;

}

.sc_item span.item_sr_title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 16px;
}

.sc_item span.item_multi_title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.1;
}

.sc-components li .sc_item img {
    width: 100%;
    height: 95px;
}

.sc-components li:hover .sc_item img,
.sc-components li.active .sc_item img {
    filter: brightness(0) invert(100%);
}

.item_list>.item_ul_group {
    display: inline-flex;
    margin-bottom: 16px;
    position: relative;
}

.item_list>.item_ul_group .group {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    align-items: start;
}

.div_remark {
    color: #285ee4;
    font-size: 18px;
    margin-top: -12px;
}


.component_dividing_line {
    position: relative;
    padding-right: 32px;
}

.component_dividing_line::after {
    content: "";
    position: absolute;
    bottom: 40px;
    right: 28px;
    width: 2px;
    height: 110px;
    background: #ccc;
    /* margin-right: 28px; */
}

.item_list>.item_ul_group .dividing_line {
    padding-right: 24px;
}

.item_list>.item_ul_group .dividing_line::after {
    bottom: 48px;
    right: 20px;
}

@media screen and (max-width:1277px) {
    .dividing_line::after{
        display: none;
        padding-right: 0;
    }
    
}

@media screen and (max-width:600px) {
    .item_list ul li{
        margin: 8px;
    }

    .item_list .div_remark {
        margin: 8px;
    }

    .item_list>.item_ul_group .dividing_line {
        padding-right: 0;
    }

}