/*************************
 insight & slide 共用樣式  
 *************************/
/* .slide, */
.insight {
    background: url(../img/info.jpg) no-repeat 100% fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* slide */

.slide h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.slide-img {
    overflow: hidden;
    border: 2px solid #c8cac9;
    padding: 10px;
}

.slide-img img {
    width: 100%;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.slide-box{
    position: relative;
}
.slide-box a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.slide-box:hover .slide-img img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.slide-box h5 {
    margin: 10px 0 20px;
    color: #212121;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    /* -webkit-line-clamp: 2; */
    /* -webkit-box-orient: vertical; */
    white-space: normal;
    min-height: 48px;
    transition: all .3s ease-in-out;
}

.slide-box:hover h5 {
    color: var(--main-color);
}


/* insight-inner */
.insight-inner {
    background-color: #ffffff;
    background-image: radial-gradient(#99ddb9 0.9px, #ffffff 0.9px);
    background-size: 20px 20px;
}

.insight-inner p {
    font-size: 18px;
}

.inner-img {
    width: 100%;
    margin-bottom: 2rem;
}

.inner-txt {
    background-color: #ffffff;
}
.inner-txt h3{
    margin-bottom: 20px;
}

/* report */
.report{
    background-color: #f6fffa;
}
.report .slide-img{
    border: none;
    max-height: 200px;
}
.report .slide-img::after{
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
}
.report .box-area{
    position: relative;
    background-color: #ccf3de;
    border: 1px solid #76c098;
    margin-bottom: 20px;
    box-shadow: 0 5px 5px #90939920;
}
.report .slide-box h5{
    margin: 0;
    font-size: 18px;
    padding: 10px;
    text-overflow: clip;
    -webkit-line-clamp: none;
    -webkit-box-orient: vertical;
    white-space: normal;
    min-height: 48px;
    min-height: 48px;
}
.report .slide-box h5::after{
    content: '';
    background-image: url(../img/arrow.png);
    width: 16px;
    height: 16px;
    margin-left: 3px;
    position: absolute;
}
@media (max-width:768px) {
    .report .slide-img{
        max-height: 360px;
    }
    .report .slide-box h5{
        font-size: 22px;
    }
}