@import "product_detail.css";

/*IT背景*/
.IoT_main {
    background: url(/images/landing_page/IoT/bg_IoT.png) center top / contain no-repeat;
}

/*PDB背景*/
.pdb_main {
    background: url(/images/landing_page/pdb/bg_pdb.png) center top / contain no-repeat;
}

.IoT_summary {
    display: flex;
    flex-direction: row;
    gap: 3em;
    height: auto;
    padding-top: 4em;
}

.IoT_summary h1 {
    font-size: 50px;
    color: #46bbff;
    font-weight: bold;
    line-height: 1.5em;
}

.IoT_summary h2 {
    font-size: 22px;
    color: #FFF;
    margin: 1em 0;
}

.IoT_summary h3 {
    font-size: 20px;
    background: #004098;
    border-radius: 5px;
    padding: 0.2em 0.7em;
    color: #FFF;
    margin-bottom: 1em;
}

.IoT_summary p {
    color: #FFF;
    margin: 0 0 2em;
}

.IoT_summary_left {
    flex: 1 1 50%;
    padding-left: 0PX;
    font-size: 0.95rem;
}

.IoT_summary_left ul {
    margin: 3em 0 2em;
}

.IoT_summary_left ul li {
    color: #FFF;
    margin: 0 0 1em 1em;
    padding-inline-start: 0.3em;
    line-height: 1.5em;
}

.IoT_summary_left ul li:last-of-type {
    margin-bottom: 0;
}

.IoT_summary_left ul li::marker {
    content: "◼";
    color: #57bef3;
    margin-right: 0.5em;
}

.IoT_summary_right {
    flex: 1 1 50%;
}

/*.SALES_ul {
    display: flex;
    margin-top: 30PX;
}*/

.IoT_detail {
    background-color: #FFF;
    padding: 40px 30px;
}

.IoT_table {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    color: #282828;
    margin-bottom: 3em;
}

.IoT_table table {
    width: 100%;
}

.IoT_table>span {
    color: #666;
}

.IoT_table:last-child {
    margin-bottom: 0;
}

.IoT_table tr {
    border-bottom: 2px solid #fff;
}

.IoT_table tr:last-of-type {
    border-bottom: none;
}

.IoT_table th,
.IoT_table td {
    text-align: left;
    padding:0.3em 0.8em;
}

.IoT_table th {
    width: 30%;
    background-color: #ddd;
    font-weight: normal;
}

.IoT_table th:nth-of-type(even) {
    background-color: #c4c4c4;
}

.IoT_table td {
    background-color: #ededed;
}

.IoT_table td:nth-of-type(even) {
    background-color: #dddddd;
}

.IoT_table .align_center {
    text-align: center;
}

.IoT_table img {
    max-width: 200px;
}

.all_border th, .all_border td {
    border-right: 1px solid #fff;
}
.all_border th:last-child, .all_border td:last-child {
    border-right: none;
}

.IoT_table th.arrow-box {
    /*display: flex;
    align-items: center;*/
    width: 100%;
    /* 整體的寬度 */
    background-color: #c4c4c4;
    /* 深色背景 */
    position: relative;
    color: #004098;
    /* 文字顏色 */
    font-size: 18px;
    border-radius: 0 10px 0 0;
}

.arrow-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    /* 與父容器高度一致 */
    width: 80%;
    /* 左側箭頭的寬度 */
    background-color: #d9d9d9;
    /* 灰色背景 */
    clip-path: polygon(100% 50%, 98% 0%, 0% 0%, 0% 100%, 98% 100%);
    z-index: 1;
}

.arrow-box span {
    position: relative;
    z-index: 2;
    border-left: 5px solid;
    padding-left: 0.3em;
}

sup {
    vertical-align: super;
    /* 將文字設定為上標 */
    font-size: x-small;
    /* 通常上標字會較小 */
    top: 0.3em;
    color: #ff4181;
}


/* =========================== iPad =========================== */
@media screen and (min-width: 768px) and (max-width: 1050px) {

    .IoT_summary_left {
        flex: 50%;
    }

    .IoT_summary h1 {
        font-size: 40px;
    }

    .IoT_summary h2 {
        font-size: 22px;
        line-height: 2rem;
    }

    .IoT_summary_right {
        flex: 45%;
    }

    .SALES_ul {
        margin-top: 20PX;
    }

    .article_bg {
        max-width: 90%;
        margin: 50px auto 0;
    }

    .IoT_table {
        padding: 10px;
        font-size: 15px;
    }

    .IoT_table td {
        text-align: left;
        padding: 0.5rem;
    }
}


/* =========================== Mobile =========================== */
@media screen and (max-width: 767px) {

    .IoT_summary {
        flex-direction: column-reverse;
    }

    .IoT_summary h2 {
        font-size: 21px;
        line-height: 1.8rem;
    }

    .IoT_summary_left {
        padding-left: 0;
    }

    .IoT_summary_right {
        height: 100%;
        padding: 0;
        border-right: none;
    }

    .SALES_ul {
        list-style-type: none;
        overflow: hidden;
        margin-top: 20PX;
        margin-bottom: 0;
        padding: 0;
    }

    .IoT_detail {
        padding: 10px;
    }

    .IoT_table {
        margin-bottom: 2em;
    }

    .IoT_table td {
        vertical-align: middle;
        padding: 10px;
        font-size: 14px;
        line-height: 1.5;
    }

    .IoT_table img {
        max-width: 6em;
    }
}