/**
 * Theme Name: Module Child
 * Theme URI: https://www.wpcom.cn/themes/module.html
 * Version: 1.0
 * Author: WPCOM
 * Author URI: https://www.wpcom.cn
 * Template: module
 */

@import url('../module/css/style.css');

.special-wrap {
    margin-bottom: 20px;
}

.special-list {
    font-size: 0;
    margin: 0 -10px;
}

.special-item-wrap {
    font-size: 14px;
}

.special-item {
    background: var(--theme-el-bg-color);
    border-radius: var(--theme-border-radius-l);
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 1px 8px hsla(var(--theme-color-hsl), 0.1);
    transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
    .special-item {
        box-shadow: 0 0 5px 0 hsla(var(--theme-color-hsl), 0.05);
        padding: 15px;
    }
}

.special-item:hover {
    box-shadow: 0 2px 16px hsla(var(--theme-color-hsl), 0.15);
    transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
    .special-item:hover {
        box-shadow: none;
    }
}

.special-item-top {
    display: flex;
}

.special-item-thumb {
    border-radius: var(--theme-border-radius-l);
    flex-shrink: 0;
    overflow: hidden;
    width: 220px;
}

@media (max-width: 520px) {
    .special-item-thumb {
        width: 140px;
    }
}

.special-item-thumb img {
    display: block;
    height: auto;
    transition: all 0.3s ease-out 0s;
    width: 100%;
}

.special-item-thumb:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease-out 0s;
}

.special-item-info {
    margin-left: 20px;
    max-width: calc(100% - 240px);
    width: 100%;
}

@media (max-width: 520px) {
    .special-item-info {
        margin-left: 12px;
        max-width: calc(100% - 152px);
    }
}

.special-item-title {
    display: flex;
    justify-content: space-between;
    line-height: 28px;
    margin: 0 0 15px;
}

@media (max-width: 520px) {
    .special-item-title {
        line-height: 24px;
        margin-bottom: 10px;
    }
}

.special-item-title h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: inherit;
    margin: 0 10px 0 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .special-item-title h2 {
        margin-right: 0;
    }
}

@media (max-width: 520px) {
    .special-item-title h2 {
        font-size: 18px;
    }
}

.special-item-title h2 a {
    color: var(--theme-black-color);
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

.special-item-title h2 a:hover {
    color: var(--theme-hover);
    transition: all 0.3s ease 0s;
}

.special-item-desc p {
    color: var(--theme-gray-color);
    height: 66px;
    line-height: 22px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

@media (max-width: 520px) {
    .special-item-desc p {
        height: 38px;
        line-height: 1.4;
    }
}

.special-item-more {
    color: var(--theme-gray-color);
    flex-shrink: 0;
    font-size: 12px;
    line-height: inherit;
}

.special-item-more .wi {
    font-size: 14px;
    line-height: inherit;
    margin-left: 2px;
    vertical-align: top;
}

.special-item-more:hover {
    color: var(--theme-hover);
}

.special-item-more:focus,
.special-item-more:hover {
    text-decoration: none;
}

@media (max-width: 767px) {
    .special-item-more {
        display: none;
    }
}

.special-item-meta {
    color: var(--theme-light-color);
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    line-height: 16px;
    margin-top: 10px;
}

@media (max-width: 520px) {
    .special-item-meta {
        display: none;
    }
}

.special-item-share .share-icon {
    color: inherit;
    font-size: 16px;
    margin-left: 2px;
}

.special-item-share .weibo:hover {
    color: #e05244 !important;
}

.special-item-share .wechat {
    position: relative;
}

.special-item-share .wechat:hover {
    color: #44b549 !important;
}

.special-item-share .wechat:hover .share-wx-wrap {
    bottom: 40px;
    filter: alpha(opacity=100);
    opacity: 1;
    transition: all 0.3s ease-out 0s;
}

.special-item-share .qq:hover {
    color: #22a4ff !important;
}

.special-item-share .qzone:hover {
    color: #fdbf2f !important;
}

.special-item-share .douban:hover {
    color: #33b045 !important;
}

.special-item-share .linkedin:hover {
    color: #0077b5 !important;
}

.special-item-share .facebook:hover {
    color: #44619d !important;
}

.special-item-share .twitter:hover {
    color: #55acee !important;
}

.special-item-bottom {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

@media (max-width: 767px) {
    .special-item-bottom {
        margin-top: 10px;
    }
}

.special-item-bottom li {
    margin: 0;
}

.special-item-bottom a {
    color: var(--theme-gray-color);
    display: inline-block;
    line-height: 32px;
    max-width: 100%;
    overflow: hidden;
    padding-left: 15px;
    position: relative;
    text-decoration: none;
    text-overflow: ellipsis;
    transition: all 0.3s ease 0s;
    vertical-align: top;
    white-space: nowrap;
}

.special-item-bottom a:before {
    border: 4px solid transparent;
    border-left: 5px solid #ccc;
    content: '';
    height: 0;
    left: 4px;
    line-height: 0;
    position: absolute;
    top: 12px;
    transition: all 0.3s ease 0s;
    width: 0;
}

.special-item-bottom a:hover {
    color: var(--theme-hover);
    transition: all 0.3s ease 0s;
}

.special-item-bottom a:hover:before {
    border-left-color: var(--theme-hover);
    transition: all 0.3s ease 0s;
}

.widget_special .speial-item {
    border-bottom: 1px solid var(--theme-line-color);
    display: flex;
    padding: 15px 0;
}
.widget_special .speial-item:hover img {
    transform: scale(1.03);
    transition: all 0.3s ease-out 0s;
}
.widget_special .speial-item:first-child {
    padding-top: 5px;
}
.widget_special .speial-item:before {
    content: none;
}
.widget_special .speial-item:last-child {
    border-bottom: 0;
    padding-bottom: 5px;
}
.widget_special .speial-item-img {
    border-radius: var(--theme-border-radius-m);
    flex-shrink: 0;
    height: 64px;
    margin-right: 10px;
    overflow: hidden;
    width: 64px;
}
.widget_special .speial-item-img img {
    border-radius: var(--theme-border-radius-m);
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-out 0s;
    width: 100%;
}
.widget_special .speial-item-text {
    width: calc(100% - 74px);
}
.widget_special .speial-item-title {
    color: var(--theme-black-color);
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.widget_special .speial-item-title:hover {
    color: var(--theme-hover);
}
.widget_special .speial-item-desc {
    color: var(--theme-gray-color);
    display: -webkit-box;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 8px;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.widget_special .speial-item-last {
    color: var(--theme-light-color);
}

.load-more-wrap {
    margin: 0 !important;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}
.load-more-wrap .scroll-loader {
    color: var(--theme-light-color);
    display: none;
    padding: 6px 0;
    pointer-events: none;
}
.load-more-wrap .scroll-loader.loading {
    display: block;
    font-size: 0;
    text-align: center;
}
.load-more-wrap .scroll-loader.loading:before {
    animation: swiper-preloader-spin 2s linear infinite;
    color: hsla(var(--theme-color-hsl), 0.36);
    content: '\e655';
    display: inline-block;
    font-family: iconbg;
    font-size: 18px;
    line-height: 1;
    width: 1em;
}
.load-more-wrap .scroll-loader.disabled {
    cursor: default;
    display: inline-block;
    font-size: 13px;
    opacity: 0.8;
    position: relative;
}
.load-more-wrap .scroll-loader.disabled:after,
.load-more-wrap .scroll-loader.disabled:before {
    background: var(--theme-light-color);
    content: '';
    height: 1px;
    opacity: 0.7;
    position: absolute;
    right: calc(100% + 8px);
    top: 50%;
    width: 16px;
}
.load-more-wrap .scroll-loader.disabled:after {
    left: calc(100% + 8px);
    right: auto;
}
