@charset "UTF-8";

.c-share {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.c-share__title {
    display: block;
    width: auto;
    max-width: 100%;
    font-size: 14px;
    line-height: 1;
    color: var(--titleColor);
    flex: 0 0 auto;
}

.c-share__list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    flex: 0 1 auto;
}

.c-share__list__item {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin: 5px;
}

.c-share__list__item img {
    object-fit: contain;
    object-position: center;
    height: 100%;
}

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

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

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

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

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