@charset "UTF-8";

.detail {
    max-width: 1320px;
    margin: 210px auto 0 auto;
}

/****基本資訊****/
.detail__head {
    display: block;
    width: 100%;
    margin: 0 0 35px 0;
    padding: 0 0 65px 0;
}

.detail__head::before {
    content: '';
    position: absolute;
    bottom: 12.5px;
    left: 0;
    display: block;
    width: calc(100% - 55px);
    height: 1px;
    background: #bfbfbf;
}

.detail__head::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--mainColor);
    overflow: hidden;
}

.detail__head__sub {
    display: block;
    width: 100%;
    margin: 0 0 5px 0;
    font-size: 15px;
    line-height: 1;
    color: #929292;
}

.detail__head__sub__main {
    display: block;
    width: 100%;
    font-size: 60px;
    line-height: 1.2;
    color: var(--titleColor);
    font-family: "Italiana";
}

/****回列表****/
.detail__back {
    margin: 100px 0;
}

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

    /****基本資訊****/
    .detail__head {
        margin: 0 0 30px 0;
        padding: 0 0 60px 0;
    }

    .detail__head::before {
        width: calc(100% - 45px);
    }

    .detail__head__sub__main {
        font-size: 45px;
    }
}

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

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

    /****基本資訊****/
    .detail__head {
        margin: 0 0 20px 0;
        padding: 0 0 30px 0;
    }

    .detail__head::before {
        bottom: 7px;
        width: calc(100% - 30px);
    }

    .detail__head::after {
        width: 15px;
        height: 15px;
    }

    .detail__head__sub {
        margin: 0 0 10px 0;
        font-size: 14px;
    }

    .detail__head__sub__main {
        font-size: 30px;
    }

    /****回列表****/
    .detail__back {
        margin: 75px 0;
    }

}

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

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