﻿@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");

/*  創作者顯示Css
    版面參考下方網址
    https://freefrontend.com/css-cards/
    採用CSS CodePen Home #CodepenChallenge Fairly Colourful Profile Card,網址
    https://codepen.io/takaneichinose/pen/xvpqgo
*/


.publisherPartial .card {
    background-color: #fff;
  /*  max-width: 360px;*/
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
/*    box-shadow: 0px 1rem 1.5rem rgba(0,0,0,0.5);
*/    margin: 10px;
}

    .publisherPartial .card .banner {
        /* background-image: url("https://images.unsplash.com/photo-1545703549-7bdb1d01b734?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ");*/
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 11rem;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

        .publisherPartial .card .banner .headimg {
            /* background-color: #fff;
            width: 8rem;
            height: 8rem;*/
            width: 40%;
            /* height: 50%;*/
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
            border-radius: 50%;
            transform: translateY(50%);
            transition: transform 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
            z-index: 99;
        }

.publisherPartial .BigTitle {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    margin: 10px auto;
    align-content: center;
    align-items: center 
}

.publisherPartial .card .banner .headimg:hover {
    transform: translateY(50%) scale(1.3);
}

.publisherPartial .card .menu {
    width: 100%;
    height: 5.5rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    box-sizing: border-box;
}

    .publisherPartial .card .menu .opener {
        width: 2.5rem;
        height: 2.5rem;
        position: relative;
        border-radius: 50%;
        transition: background-color 100ms ease-in-out;
    }

        .publisherPartial .card .menu .opener:hover {
            background-color: #f2f2f2;
        }

        .publisherPartial .card .menu .opener span {
            background-color: #404040;
            width: 0.4rem;
            height: 0.4rem;
            position: absolute;
            top: 0;
            left: calc(50% - 0.2rem);
            border-radius: 50%;
        }

            .publisherPartial .card .menu .opener span:nth-child(1) {
                top: 0.45rem;
            }

            .publisherPartial .card .menu .opener span:nth-child(2) {
                top: 1.05rem;
            }

            .publisherPartial .card .menu .opener span:nth-child(3) {
                top: 1.65rem;
            }




.publisherPartial .card h2.name {
 
    padding:1rem;
    
}

.publisherPartial .card .title {
    color: #a0a0a0;
    font-size: 0.85rem;
    text-align: center;
    padding: 0 2rem 1.2rem;
}

.publisherPartial .card .actions {
    padding: 0 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    order: 99;
}

    .publisherPartial .card .actions .follow-info {
        padding: 0 0 1rem;
        display: flex;
        justify-content: center;
    }

        .publisherPartial .card .actions .follow-info h2 {
            text-align: center;
            /*                width: 30%;
*/ margin: 0;
            box-sizing: border-box;
        }

            .publisherPartial .card .actions .follow-info h2 a {
                text-decoration: none;
                padding: 0.8rem;
                display: flex;
                flex-direction: column;
                border-radius: 0.8rem;
                transition: background-color 100ms ease-in-out;
            }

                .publisherPartial .card .actions .follow-info h2 a span {
                    color: #1c9eff;
                    font-size: 0.8em;
                    font-weight: bold;
                    transform-origin: bottom;
                    transform: scaleY(1.3);
                    transition: color 100ms ease-in-out;
                }

                .publisherPartial .card .actions .follow-info h2 a small {
                    color: #afafaf;
                    font-size: 0.85rem;
                    font-weight: normal;
                }

                .publisherPartial .card .actions .follow-info h2 a:hover {
                    background-color: #f2f2f2;
                }

                    .publisherPartial .card .actions .follow-info h2 a:hover span {
                        color: #007ad6;
                    }

    .publisherPartial .card .actions .follow-btn a {
        color: inherit;
        font: inherit;
        font-weight: bold;
        background-color: #ffd01a;
        width: 100%;
        border: none;
        padding: 1rem;
        outline: none;
        box-sizing: border-box;
        border-radius: 1.5rem/50%;
        transition: background-color 100ms ease-in-out, transform 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
    }

        .publisherPartial .card .actions .follow-btn a:hover {
            background-color: #efb10a;
            transform: scale(1.1);
        }

        .publisherPartial .card .actions .follow-btn a:active {
            background-color: #e8a200;
            transform: scale(1);
        }

.publisherPartial .card .desc {
    text-align: justify;
    padding: 0 2rem 2.5rem;
    order: 100;
}

.publisherPartial .card .categroy {
    border: 1px solid #95b0e5;
    background-color: #ebf1ff;
    padding: 6px;
    margin: 4px;
    font-size: 0.8em;
}