#d-box-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 9998;
    display: none;
}

.d-box-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*	cursor: pointer;*/
    z-index: 9999;
    display: none;
    text-align: center;
}

.d-box-main:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.d-box-section {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    max-width: 760px;
    position: relative;
}

.articlebox .d-box-section {
    width: 90%;
    max-width: 1024px;
    background: white;
    cursor: auto;
}

.d-box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border: 0;
}

.d-box>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

html.fixed {
    overflow: hidden;
    margin-right: 17px;
}

.d-box-close {
    position: absolute;
    right: 0;
    top: -35px;
    width: 26px;
    height: 26px;
    opacity: 0.6;
    transition: 0.5s;
}

.d-box-close:hover {
    opacity: 1;
    transition: 0.5s;
}

.d-box-close:before,
.d-box-close:after {
    content: '';
    position: absolute;
    width: 100%;
    top: 13px;
    left: 0;
    border-top: solid 2px #fff;
}

.d-box-close:before {
    transform: rotate(45deg);
}

.d-box-close:after {
    transform: rotate(-45deg);
}

.articlebox .d-box {
    position: relative;
    padding: 0;
    text-align: left;
}

.articlebox .d-box div>* {
    display: inline-block;
    width: 50%;
    padding: 20px;
    margin: 0;
    text-align: left;
}

.articlebox .d-box div>article p {
    padding: 0;
}

.articlebox,
.articlebox a,
.articlebox h3 {
    font-family: sans-serif, 'Noto Sans TC';
}

.articlebox h3 {
    border-bottom: solid 1px;
    margin-bottom: 8px;
    display: -webkit-box;
    max-height: 52px;
    font-size: 20px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.articlebox p {
    display: -webkit-box;
    max-height: 93.6px;
    font-size: 18px;
    line-height: 1.3;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.articlebox .d-box div>ol {
    counter-reset: num;
    left: 50%;
    overflow: auto;
    position: absolute;
    height: 100%;
}

.articlebox .d-box div>ol li {
    position: relative;
    font-size: 18px;
    padding: 0.5em 0;
    margin-left: 1em;
    font-weight: bold;
    border-bottom: solid 1px;
    font-family: sans-serif, 'Noto Sans TC';
}

.articlebox .d-box div>ol li:last-child {
    border-bottom: none;
}

.articlebox .d-box div>ol li:before {
    counter-increment: num;
    content: counter(num) '. ';
    position: absolute;
    left: -1.5em;
}

.articlebox .d-box div>ol li a {
    color: black;
    font-weight: initial;
    font-size: 18px;
}

.pictureBox {
    position: relative;
    padding-bottom: 75%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-bottom: 1em;
}

a.readmore {
    color: white;
    padding: 0.5em 1em;
    border-radius: 5px;
    float: right;
}

.articlebox .d-box>.hidebox {
    display: none;
}

@media screen and (max-width:480px) {
    .articlebox .d-box {
        max-height: 80vh;
        overflow: auto;
    }
    .articlebox .d-box div>* {
        display: block;
        width: 100%;
    }
    .articlebox .d-box div>ol {
        position: relative;
        width: 100%;
        left: 0;
        overflow: unset;
        margin-top: 1.5em;
    }
    a.readmore {
        width: 100%;
        text-align: center;
    }
    #thematicnews .slick-prev {
        left: 0;
    }
    #thematicnews .slick-next {
        right: 0;
    }
}