@charset "UTF-8";

.detail {
    position: relative;
    display: block;
    width: calc(100% - 120px);
    max-width: 1200px;
    margin: 100px auto 200px auto;
}

/****主文案****/
.detail__main {
    display: block;
    width: 100%;
}

/**基本資訊**/
.detail__main__head {
    display: block;
    width: 100%;
    margin: 0 0 50px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #dbdbdb;
}

.detail__main__head__title {
    display: block;
    width: 100%;
    font-size: 1.8em;
    line-height: 1.2;
    color: #000;
    font-family: inherit;
    font-weight: 700;
    text-align: left;
}

.detail__main__head__info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 5px 0 0 0;
}

/**詳細內容**/
.detail__main__body {
    display: block;
    width: 100%;
}

.detail__main__body__edit {
    display: block;
    width: 100%;
    text-align: left;
}

/****推薦消息****/
.detail__recommend {
    display: block;
    width: 100%;
    margin: 50px auto 0 auto;
    padding: 70px 0 0 0;
    border-top: 1px solid #dbdbdb;
}

.detail__recommend__head {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 20px 0;
    overflow: hidden;
}

.detail__recommend__head__title {
    display: block;
    width: 100%;
    font-size: 1.2em;
    line-height: 1.2;
    color: #000;
    font-family: inherit;
    font-weight: 400;
    text-align: left;
    flex: 0 1 auto;
}

.detail__recommend__head__link {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    max-width: 80px;
    margin: 0 0 0 20px;
    padding: 14px 5px;
    font-size: .7em;
    line-height: 1;
    color: #fff;
    font-family: inherit;
    background: #778492;
    transition: opacity .4s ease-in-out;
    flex: 0 0 auto;
}

.detail__recommend__head__link:hover {
    opacity: .7;
}

.detail__recommend__head__link span {
    display: block;
    width: auto;
    max-width: 100%;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
    flex: 0 0 auto;
}

.detail__recommend__head__link::after {
    content: '';
    position: relative;
    display: block;
    width: 5px;
    height: 5px;
    margin: 0 0 0 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform-origin: center;
    transform: rotate(45deg);
}

.detail__recommend__box {
    left: -2.5px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: stretch;
    justify-items: flex-start;
    justify-content: flex-start;
    width: calc(100% + 5px);
}

.detail__recommend__box__item {
    width: calc(25% - 5px);
    margin: 0 2.5px 5px 2.5px;
}

@media screen and (max-width: 1300px) {

    /****推薦消息****/
    .detail__recommend__box__item {
        width: calc(50% - 5px);
    }
}

@media screen and (max-width: 991px) {
    .detail {
        width: 95%;
        margin: 50px auto;
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 575px) {
    .detail {
        margin: 0 auto 50px auto;
    }
}

/****觸控螢幕****/
@media (any-hover: none) {}

/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}