/* ================== 初始化 ==================== */
@import '//at.alicdn.com/t/c/font_2781928_km9if27t0o9.css';

.iconfont {
	font-size: 14px;
}

@font-face {
	font-family: "DIN-Medium";
	src: url("../../fonts/din/DIN.woff") format("woff"),
		url("../../fonts/din/DIN.ttf") format("truetype"),
		url("../../fonts/din/DIN.eot") format("embedded-opentype"),
		url("../../fonts/din/DIN.svg") format("svg");
}

html {
	color: #000;
	background: #eff1f3
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

fieldset,
img {
	border: 0
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
b {
	font-style: normal;
	font-weight: 400
}

ol,
ul {
	list-style: none
}

caption,
th {
	text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: 400
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word
}

abbr,
acronym {
	border: 0;
	font-variant: normal
}

:root {
	--theme-color: #14C4BC;
	--theme-hover: #14C4BC;
	--action-color: #14C4BC;
	--theme-color-h: 0;
	--theme-color-s: 0%;
	--theme-color-l: 15%;
	--theme-color-hsl: var(--theme-color-h), var(--theme-color-s), var(--theme-color-l);
	--theme-line-color: hsla(var(--theme-color-hsl), .05);
	--theme-black-color: hsl(var(--theme-color-hsl));
	--theme-light-color: hsla(var(--theme-color-hsl), .6);
	--theme-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif
}

.iconfont {
	vertical-align: middle;
	margin-right: 5px;
	width: 24px;
	text-align: center;
	flex-shrink: 0;
}

q {
	quotes: none
}

q:before,
q:after {
	content: '';
	content: none
}

*,
:after,
:before,
input[type=search] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sup {
	top: -.5em
}

sub {
	bottom: -.25em
}

a {
	text-decoration: none;
	color: #333
}

a:focus {
	outline: none;
	-moz-outline: none;
}

a:hover,
a:active {
	outline: 0;
	color: var(--theme-color);
}

legend {
	border: 0;
	white-space: normal;
	color: #000
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	vertical-align: baseline;
	*vertical-align: middle
}

button,
input {
	line-height: normal
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
	cursor: pointer;
	-webkit-appearance: button;
	*overflow: visible
}

input[type=checkbox],
input[type=radio] {
	box-sizing: border-box;
	padding: 0;
	*height: 13px;
	*width: 13px
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0
}

input[type=hidden] {
	display: none !important
}

textarea {
	overflow: auto;
	vertical-align: top;
	resize: none
}

select,
input,
button,
textarea {
	font: 100% arial, helvetica, clean
}

table {
	font-size: inherit;
	font: 100%
}

pre,
code,
kbd,
samp {
	font-family: monospace, serif;
	_font-family: 'courier new', monospace;
	font-size: 100%;
	line-height: 100%
}

small {
	font-size: 75%
}

body {
	font-size: 14px;
	color: #333333;
	font-family: Helvetica Neue, Helvetica, sans-serif;
}

button,
input,
textarea,
label,
img {
	box-sizing: border-box;
}

input {
	outline-style: none;
}

.round {
	border-radius: 2500px;
}

.radius {
	border-radius: 3px;
}

.radius-l {
	border-radius: 6px;
}

.radius-lg {
	border-radius: 9px;
}

/* ================== 布局 ==================== */
/* -- flex弹性布局 -- */
.flex {
	display: flex;
}

.basis-xs {
	flex-basis: 20%;
}

.basis-sm {
	flex-basis: 40%;
}

.basis-df {
	flex-basis: 50%;
}

.basis-lg {
	flex-basis: 60%;
}

.basis-xl {
	flex-basis: 80%;
}

.flex-sub {
	flex: 1;
}

.flex-twice {
	flex: 2;
}

.flex-treble {
	flex: 3;
}

.flex-direction {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.align-start {
	align-items: flex-start;
}

.align-end {
	align-items: flex-end;
}

.align-center {
	align-items: center;
}

.align-stretch {
	align-items: stretch;
}

.self-start {
	align-self: flex-start;
}

.self-center {
	align-self: flex-center;
}

.self-end {
	align-self: flex-end;
}

.self-stretch {
	align-self: stretch;
}

.align-stretch {
	align-items: stretch;
}

.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-around {
	justify-content: space-around;
}

/* -- 内外边距 -- */
.margin-0 {
	margin: 0;
}

.margin-xs {
	margin: 5px;
}

.margin-sm {
	margin: 10px;
}

.margin {
	margin: 15px;
}

.margin-lg {
	margin: 20px;
}

.margin-xl {
	margin: 25px;
}

.margin-top-xs {
	margin-top: 5px;
}

.margin-top-sm {
	margin-top: 10px;
}

.margin-top {
	margin-top: 15px;
}

.margin-top-lg {
	margin-top: 20px;
}

.margin-top-xl {
	margin-top: 25px;
}

.margin-right-xs {
	margin-right: 5px;
}

.margin-right-sm {
	margin-right: 10px;
}

.margin-right {
	margin-right: 15px;
}

.margin-right-lg {
	margin-right: 20px;
}

.margin-right-xl {
	margin-right: 25px;
}

.margin-bottom-xs {
	margin-bottom: 5px;
}

.margin-bottom-sm {
	margin-bottom: 10px;
}

.margin-bottom {
	margin-bottom: 15px;
}

.margin-bottom-lg {
	margin-bottom: 20px;
}

.margin-bottom-xl {
	margin-bottom: 25px;
}

.margin-left-xs {
	margin-left: 5px;
}

.margin-left-sm {
	margin-left: 10px;
}

.margin-left {
	margin-left: 15px;
}

.margin-left-lg {
	margin-left: 20px;
}

.margin-left-xl {
	margin-left: 25px;
}

.margin-lr-xs {
	margin-left: 5px;
	margin-right: 5px;
}

.margin-lr-sm {
	margin-left: 10px;
	margin-right: 10px;
}

.margin-lr {
	margin-left: 15px;
	margin-right: 15px;
}

.margin-lr-lg {
	margin-left: 20px;
	margin-right: 20px;
}

.margin-lr-xl {
	margin-left: 25px;
	margin-right: 25px;
}

.margin-tb-xs {
	margin-top: 5px;
	margin-bottom: 5px;
}

.margin-tb-sm {
	margin-top: 10px;
	margin-bottom: 10px;
}

.margin-tb {
	margin-top: 15px;
	margin-bottom: 15px;
}

.margin-tb-lg {
	margin-top: 20px;
	margin-bottom: 20px;
}

.margin-tb-xl {
	margin-top: 25px;
	margin-bottom: 25px;
}

.padding-0 {
	padding: 0;
}

.padding-xs {
	padding: 5px;
}

.padding-sm {
	padding: 10px;
}

.padding {
	padding: 15px;
}

.padding-lg {
	padding: 20px;
}

.padding-xl {
	padding: 25px;
}

.padding-top-xs {
	padding-top: 5px;
}

.padding-top-sm {
	padding-top: 10px;
}

.padding-top {
	padding-top: 15px;
}

.padding-top-lg {
	padding-top: 20px;
}

.padding-top-xl {
	padding-top: 25px;
}

.padding-right-xs {
	padding-right: 5px;
}

.padding-right-sm {
	padding-right: 10px;
}

.padding-right {
	padding-right: 15px;
}

.padding-right-lg {
	padding-right: 20px;
}

.padding-right-xl {
	padding-right: 25px;
}

.padding-bottom-xs {
	padding-bottom: 5px;
}

.padding-bottom-sm {
	padding-bottom: 10px;
}

.padding-bottom {
	padding-bottom: 15px;
}

.padding-bottom-lg {
	padding-bottom: 20px;
}

.padding-bottom-xl {
	padding-bottom: 25px;
}

.padding-left-xs {
	padding-left: 5px;
}

.padding-left-sm {
	padding-left: 10px;
}

.padding-left {
	padding-left: 15px;
}

.padding-left-lg {
	padding-left: 20px;
}

.padding-left-xl {
	padding-left: 25px;
}

.padding-lr-xs {
	padding-left: 5px;
	padding-right: 5px;
}

.padding-lr-sm {
	padding-left: 10px;
	padding-right: 10px;
}

.padding-lr {
	padding-left: 15px;
	padding-right: 15px;
}

.padding-lr-lg {
	padding-left: 20px;
	padding-right: 20px;
}

.padding-lr-xl {
	padding-left: 25px;
	padding-right: 25px;
}

.padding-tb-xs {
	padding-top: 5px;
	padding-bottom: 5px;
}

.padding-tb-sm {
	padding-top: 10px;
	padding-bottom: 10px;
}

.padding-tb {
	padding-top: 15px;
	padding-bottom: 15px;
}

.padding-tb-lg {
	padding-top: 20px;
	padding-bottom: 20px;
}

.padding-tb-xl {
	padding-top: 25px;
	padding-bottom: 25px;
}

/* -- 浮动 -- */
.cf::after,
.cf::before {
	content: " ";
	display: table;
}

.cf::after {
	clear: both;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.bg-white {
	background-color: #ffffff;
}

.container {
	width: 1200px;
}

/* ================== 文本 ==================== */
.text-xs {
	font-size: 10px;
}

.text-sm {
	font-size: 12px;
}

.text-df {
	font-size: 14px;
}

.text-lg {
	font-size: 16px;
}

.text-xl {
	font-size: 18px;
}

.text-xxl {
	font-size: 22px;
}

.text-sl {
	font-size: 40px;
}

.text-xsl {
	font-size: 60px;
}

.text-price::before {
	content: "¥";
	font-size: 80%;
	margin-right: 2px;
}

.text-cut {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.text-cut1 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.text-cut2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.text-cut3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.text-bold {
	font-weight: bold;
}

.text-center {
	text-align: center;
}

.text-content {
	line-height: 1.6;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/* ==================
          按钮
 ==================== */

.btn {
	position: relative;
	border: 0px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 0 60px;
	font-size: 14px;
	height: 32px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	overflow: visible;
	margin-left: initial;
	transform: translate(0upx, 0upx);
	margin-right: initial;
}

.btn::after {
	display: none;
}

.btn:not([class*="bg-"]) {
	background-color: #f0f0f0;
}

.btn[class*="line"] {
	background-color: transparent;
}

.btn[class*="line"]::after {
	content: " ";
	display: block;
	width: 200%;
	height: 200%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid currentColor;
	transform: scale(0.5);
	transform-origin: 0 0;
	box-sizing: border-box;
	border-radius: 6px;
	z-index: 1;
	pointer-events: none;
}

.btn.round[class*="line"]::after {
	border-radius: 500px;
}

.btn[class*="lines"]::after {
	border: 3px solid currentColor;
}

.btn[class*="bg-"]::after {
	display: none;
}

.btn.sm {
	padding: 0 10px;
	font-size: 10px;
	height: 24px;
}

.btn.lg {
	padding: 0 20px;
	font-size: 16px;
	height: 40px;
}

.btn.cuIcon.sm {
	width: 24px;
	height: 24px;
}

.btn.cuIcon {
	width: 32px;
	height: 32px;
	border-radius: 250px;
	padding: 0;
}

button.cuIcon.lg {
	width: 40px;
	height: 40px;
}

.btn.shadow-blur::before {
	top: 2px;
	left: 2px;
	filter: blur(3px);
	opacity: 0.6;
}

.btn.button-hover {
	transform: translate(1px, 1px);
}

.block {
	display: block;
}

.btn.block {
	display: flex;
}

.btn[disabled] {
	opacity: 0.6;
	color: #ffffff;
}

.page-bg {
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	filter: blur(10px);
	transform: scale(1.08);
	opacity: .5;
	pointer-events: none;
}

.page-bg img {
	width: 100%;
}

/* 头 */
.hide {
	display: none;
}

code {
	font-family: 'Courier New', Courier, monospace;
	background-color: #f4f4f4;
	padding: 2px 5px;
	margin: 0 4px;
	border-radius: 4px;
	color: #d6336c;
}

/*分页*/
.page {
	background: #fff;
	border-radius: 4px;
	text-align: center;
	margin-top: 16px
}

.page .pager {
	display: inline-block;
	padding-left: 0;
	/*margin:20px 0;
	*/
	border-radius: 4px;
}

.page .pager>li {
	display: inline;
}

.page .pager>li>a,
.page .pager>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #1cbbb4;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
}

.page .pager>li:first-child>a,
.page .pager>li:first-child>span {
	margin-left: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.page .pager>li:last-child>a,
.page .pager>li:last-child>span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.page .pager>li>a:hover,
.page .pager>li>span:hover,
.page .pager>li>a:focus,
.page .pager>li>span:focus {
	z-index: 2;
	color: #23527c;
	background-color: #eee;
	border-color: #ddd;
}

.page .pager>.active>a,
.page .pager>.active>span,
.page .pager>.active>a:hover,
.page .pager>.active>span:hover,
.page .pager>.active>a:focus,
.page .pager>.active>span:focus {
	z-index: 3;
	color: #fff;
	cursor: default;
	background-color: #1cbbb4;
	border-color: #1cbbb4;
}

.page .pager>.disabled>span,
.page .pager>.disabled>span:hover,
.page .pager>.disabled>span:focus,
.page .pager>.disabled>a,
.page .pager>.disabled>a:hover,
.page .pager>.disabled>a:focus {
	color: #777;
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd;
}

/*分页end*/
.container {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}

.box {
	background-color: #fff;
	box-shadow: 0px 0px 2px rgb(98 124 153 / 10%);
	position: relative;
	border-radius: 4px;
}

.w-100 {
	width: 100%;
}

.header {
	width: 100%;
	height: 58px;
	background: #fff;
	margin-bottom: 16px;

}

.header .in {
	transform: translate(0);
	transition: transform .3s;
	box-shadow: 0px 5px 40px 0px rgba(17, 58, 93, .1);
	position: fixed;
	width: 100%;
	z-index: 7;
	background: #fff;
}

.header.up .in {
	transform: translate(0, -64px);
}

.header .logo {
	margin-right: 30px;
	padding: 10px 0;
}

.header .logo img {
	height: 34px;
}

.header .menu .item a {
	display: inline-block;
	padding: 18px 13px;
	font-size: 16px;
	transition: opacity .2s ease-out;
}

.header .search {
	background-color: rgb(204 204 204 / 21%);
	border-radius: 4px;
	position: relative;
}

.header .search input {
	padding: 8px 37px 8px 8px;
	width: 220px;
	background: 0 0;
	border: 0;
}

.header .search button {
	width: 32px;
	height: 32px;
	background: 0 0;
	border: 0;
	position: absolute;
	right: -5px;
	top: 0;
	color: inherit;
}

.content .main {
	max-width: calc(100% - 280px);
	margin: 0 auto;
	flex: 1;
}

.content article {
	padding: 28px;
	width: 100%;
	margin: 0 auto;
	max-width: 100%;
	position: relative;
	box-sizing: border-box;
	background-color: #fff;
	box-shadow: 0px 0px 2px rgb(98 124 153 / 10%);
	margin-bottom: 16px;
}

.content .main .title h1 {
	font-size: 26px;
	font-weight: 600;
	line-height: 36px;
	margin-bottom: 5px;
	color: #333;
}

.content .main .post-meta {
	line-height: 24px;
}

.content .main .post-meta li span {
	font-size: 14px;
	color: #8590a6;
}

.content .main .post-meta {
	margin-bottom: 10px;
	border-bottom: 1px solid #d7dadd;
	padding-bottom: 10px;
}

.content .main .detail {
	font-size: 14px;
	clear: both;
}

.content .main .detail h3 {
	font-size: 16px;
	font-weight: 600;
	position: relative;
	padding-left: 12px;
	line-height: 1.46;
	margin: 10px 0;
}
.content .main .detail table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 10px;
	overflow: hidden;
}

.content .main .detail th, .content .main .detail td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.content .main .detail th {
	background: #21c7c0;
	color: white;
	text-transform: uppercase;
}

.content .main .detail tr:nth-child(even) {
	background: #f2f2f2;
}

.content .main .detail tr:hover {
	background: #d6e4ff;
}
.content .main .detail h3:before {
	position: absolute;
	top: 4px;
	left: 0;
	content: "";
	width: 3px;
	height: -webkit-calc(100% - 8px);
	height: calc(100% - 8px);
	border-radius: 3px;
	background-color: var(--theme-color);
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, .15), transparent);
	background-image: linear-gradient(180deg, rgba(255, 255, 255, .15), transparent);
}

.content .main .detail>p {
	word-wrap: break-word;
	word-break: normal;
	line-height: 1.8;
	/* margin-bottom: 12px; */
}

.content .main .detail>img {
	max-width: 400px;
	height: auto;
	float: right;
	margin: 0 0 10px 10px;
	border-radius: 4px;
}

.content .main .detail ul {
	list-style: disc;
	margin-bottom: 1.2em;
	margin-left: 2em;
	line-height: 1.8;
}

.content .main .detail ul li::marker {
	color: #14C4BC;
}

.content .main .detail ol {
	list-style: decimal;
	margin-bottom: 1.2em;
	margin-left: 2em;
	line-height: 1.8;
}

.content .main .note {
	margin-top: 12px;
	font-size: 13px;
	padding: 15px;
	line-height: 1.8;
	background: #eef7ff;
}

.content .main .detail strong {
	font-weight: 600;
}

aside {
	width: 280px;
	min-width: 280px;
	margin-left: 16px;
	max-width: 100%;
}

aside .widget {
	background: #fff;
}

.widget .title {
	font-size: 16px;
	padding: 20px 16px 8px;
	font-weight: 600;
	line-height: 1;
}

.widget ul.list {
	padding: 0 16px 16px 16px;
}

.widget ul.list li {
	font-size: 13px;
	box-sizing: border-box;
}

.widget ul.list li a {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 13px;
	position: relative;
	padding-left: 16px;
	line-height: 24px;
}

.widget ul.list li a:before {
	background-color: #14C4BC;
	content: '';
	width: 6px;
	height: 6px;
	position: absolute;
	left: 0;
	top: 8px;
	border-radius: 10px;
}

.widget ul.img li {
	height: 92px;
	position: relative;
	font-size: 13px;
	padding: 16px;
	box-sizing: border-box;
}

.widget ul.img img {
	width: 83px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
	margin-right: 12px;
}

.widget ul.img h2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-bottom: 8px;
	word-break: break-all;
}

.widget ul.img time {
	font-size: 12px;
	color: #bcbcbc;
	margin-top: 5px;
	font-family: 'DIN-Medium';
}

.widget ul.img .rank {
	background-color: #ccc;
	color: #fff;
	position: absolute;
	border-radius: 0 10px 10px 0;
	left: -4px;
	top: 16px;
	z-index: 2;
}

.widget ul.img .rank span {
	display: block;
	padding: 0;
	margin-right: 6px;
	height: 22px;
	width: 34px;
	text-align: right;
	font-size: 12px;
	line-height: 24px;
	font-style: italic;
	font-family: 'DIN-Medium';
}

.widget ul.img .rank::after {
	content: '';
	bottom: -2px;
	left: 1px;
	height: 0;
	width: 0;
	border-right: 2px solid transparent;
	border-left: 2px solid transparent;
	position: absolute;
	transform: rotate(34deg);
	border-bottom: 4px solid #ccc;
}

.widget ul.img li:nth-child(1) .rank {
	background-color: #ff3355;
}

.widget ul.img li:nth-child(2) .rank::after {
	border-bottom: 4px solid #ff3355;
}

.widget ul.img li:nth-child(2) .rank {
	background-color: #ffa41b;
}

.widget ul.img li:nth-child(2) .rank::after {
	border-bottom: 4px solid #ffa41b;
}

.widget ul.img li:nth-child(3) .rank {
	background-color: #1a85ff;
}

.widget ul.img li:nth-child(3) .rank::after {
	border-bottom: 4px solid #1a85ff;
}

.like {
	margin: -8px;
}

.like .item {
	padding: 8px;
	width: 50%;

}

.like .item ul {
	background-color: #fff;
	box-shadow: 0px 0px 2px rgb(98 124 153 / 10%);
	position: relative;
	border-radius: 4px;
	padding: 10px 0;
}

.like .item ul li {
	padding: 5px 15px;
	font-size: 14px;
	display: flex;
	line-height: 1.4;
	align-items: center;
}

.like .item ul li span {
	flex-shrink: 0;
	padding: 0 8px;
	height: 24px;
	line-height: 24px;
	font-size: 12px;
	color: #8590a6;
	background-color: #f6f6f6;
	border-radius: 5px;
}

.like .item ul li a.post-link {
	-webkit-box-flex: 1;
	-ms-flex: 1 1;
	flex: 1 1;
	margin-left: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #444;
}

.postlist {
	margin-right: -16px;
	margin-bottom: -16px;
}

.postlist li {
	width: 50%;
}

.postlist li .item-in {
	margin-bottom: 16px;
	margin-right: 16px;
	overflow: hidden;
	border: 0;
	padding: 10px;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0px 0px 2px rgb(98 124 153 / 10%);
}

.postlist li .item-in .cover {
	margin-right: 16px;
}

.postlist li .item-in .cover img {
	width: 96px;
	height: 69px;
	object-fit: cover;
	border-radius: 4px;
}

.postlist li .item-in .info {
	width: 100%;
	display: flex;
	flex-flow: column;
	padding: 4px 0;
}

.postlist li .item-in h2 {

	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;

	margin-bottom: 5px;
	color: #333;
}

.postlist li .item-in h2 a {
	font-weight: 600;
	font-size: 15px;
}

.postlist li .item-in .meta {
	margin: 0;
	margin-top: auto;
}

.postlist li .item-in .meta span {
	font-size: 12px;
	height: 19px;
	display: inline-block;
	line-height: 19px;
	color: #aaa;
	font-family: 'DIN-Medium';
}

.footer .link {
	margin-bottom: 24px;
}

.footer .link span {
	margin-right: 12px;
	margin-left: 20px;
	color: #cfcfcf;
}
.detail {
	max-height: 1000px;
	overflow: hidden;
}
.show_more {
	padding-bottom: 30px;
	position: relative;
	background: #fff;
	cursor: pointer;
}

.show_more .show_article {
	text-align: center;
	position: absolute;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 98%, 0)), color-stop(28%, hsla(0, 0%, 98%, 0.9)), color-stop(49.1%, #f6f6f6), to(#fff));
	background-image: -o-linear-gradient(top, hsla(0, 0%, 98%, 0), hsla(0, 0%, 98%, 0.9) 28%, #f6f6f6 49.1%, #fff);
	background-image: linear-gradient(top, hsla(0, 0%, 98%, 0), hsla(0, 0%, 98%, 0.9) 28%, #f6f6f6 49.1%, #fff);
	width: 100%;
	top: -50px;
	height: 120px;
}

.show_more .show_article .show_more_arrow {
	position: relative;
	top: 12px;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/arrow.png) no-repeat;
	background-size: contain;
	-webkit-animation: arrow 0.4s infinite alternate;
	animation: arrow 0.4s infinite alternate;
}

@-webkit-keyframes arrow {
	0% {
		-webkit-transform: translate3d(0, -30%, 0);
		transform: translate3d(0, -30%, 0);
	}

	100% {
		-webkit-transform: translate3d(0, 30%, 0);
		transform: translate3d(0, 30%, 0);
	}
}

@keyframes arrow {
	0% {
		-webkit-transform: translate3d(0, -30%, 0);
		transform: translate3d(0, -30%, 0);
	}

	100% {
		-webkit-transform: translate3d(0, 30%, 0);
		transform: translate3d(0, 30%, 0);
	}
}
.show_more .hiup_bar {
	line-height: 40px;
	width: 50%;
	height: 40px;
	margin: 0 auto;
	border-radius: 20px;
	background: #407cea;
	font-size: 16px;
	text-align: center;
	color: #ffffff;
	position: relative;
}
/* 当屏幕宽度大于600px时 */
@media (max-width: 1000px) {
	.container {
		width: 100%;
		/* 使容器占据全部宽度 */
		padding: 0 10px
	}

	.container .main {
		width: 100%;
		max-width: 100%
	}

}

/* 当屏幕宽度大于1200px时 */
@media (min-width: 1200px) {
	.container {
		width: 1200px;
	}
}

/* 针对手机设备的样式 */
@media (max-width: 768px) {
	.container {
		width: 100%;
		/* 使容器占据全部宽度 */
		padding: 0
	}

	.header .logo {
		margin-left: 12px;
	}

	.container .main {
		width: 100%;
		max-width: 100%
	}

	

	/* .container .main .post-meta{
		display: ruby-text;
	} */
	.content .main .title h1 {
		font-size: 20px;
	}

	.content article {
		padding: 12px
	}
	.content .main .detail {
		font-size: 16px;
		max-height: 400px;
	}
	.content .main .detail ul {
		list-style: disc;
		margin-bottom: 0;
		margin-left: 20px;
		line-height: 1.8;
	}
	
	.content .main .detail ul li::marker {
		color: #14C4BC;
	}
	
	.content .main .detail ol {
		list-style: decimal;
		margin-bottom: 0;
		margin-left: 20px;
		line-height: 1.8;
	}
	
	.content .main .detail>img {
		width: 100%;
		float: none;
		margin: 0;
	}

	.postlist li {
		width: 100%
	}

	.page .pager li {
		display: none;
		/* 默认隐藏所有项 */
	}

	.page .pager li:first-child,
	.page .pager li:last-child {
		display: inline-block;
	}

	.like {
		display: block;
		margin: 0;
	}

	.like .item {
		width: 100%;
		padding: 8px 0
	}

	.footer {
		padding: 25px 16px;
	}

	aside,
	.search {
		display: none;
	}
}

