﻿@charset "utf-8";

body {
    background-color: rgba(247, 247, 247, 1);
}


/* 字体 */
@font-face {
    font-family: fangzhenglanting-cuhei;
    src: url('../fonts/fangzhenglanting-cuhei.ttf');
}
@font-face {
    font-family: fangzhenglanting-xihei;
    src: url('../fonts/fangzhenglanting-xihei.ttf');
}
@font-face {
    font-family: FuturaBT-Medium;
    src: url('../fonts/futurabt-medium.ttf');
}
.font-en {
    font-family: FuturaBT-Medium;
}
.font-cn-bold {
    font-family: fangzhenglanting-cuhei;
}
.font-cn-lighter {
    font-family: fangzhenglanting-xihei;
    display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 5;
}


/* 标题颜色 */
.title-white {
    color: #f7f7f7;
}
.title-black {
    color: #111;
}


/* READ MORE 按钮 */
.read-more {
    display: block;
    position: absolute;
    vertical-align: bottom;
    text-align: right;
}
.read-more a {
    display: block;
    background: rgba(88, 88, 88, 0.8);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    padding-top: 16px;
    padding-right: 8px;
    width: 100%;
    height: 100%;
}
.read-more-ripple {
    position: relative;
    background: -webkit-linear-gradient(left, rgba(175, 175, 175, 0.7), rgba(88, 88, 88, 0.8)) !important;
    background: -o-linear-gradient(right, rgba(175, 175, 175, 0.7), rgba(88, 88, 88, 0.8)) !important;
    background: -moz-linear-gradient(right, rgba(175, 175, 175, 0.7), rgba(88, 88, 88, 0.8)) !important;
    background: linear-gradient(to right, rgba(175, 175, 175, 0.7), rgba(88, 88, 88, 0.8)) !important;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-webkit-user-select: none;
    -ms-user-select: none;
}
.read-more-ripple span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(51, 51, 51, 0.8);
    border-radius: 100%;
    filter: alpha(opacity=60);
    opacity: 0.6;
    animation: ripple .6s 0s linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transform: scale(0);
    width: 100%;
    height: 100%;
}
@keyframes ripple {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}


/* 适配 */
@media (min-width:992px) {
    .when-mobile {
        display: none;
    }
    .when-pc {
    }
}
@media (max-width:992px) {
    .when-mobile {
    }
    .when-pc {
        display: none;
    }
}
