@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
*, *::before, *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
html {
	-webkit-tap-highlight-color: transparent
}
.red {
	color: #ff4343
}
.blue {
	color: #2697ff
}
.glod {
	color: #e9bd6c
}
.pink {
	color: #ff4387
}
.cyan {
	color: #19e9aa
}
.orange {
	color: #ff7b43
}
.yellow {
	color: #ffb443
}
.purple {
	color: #cd82ff
}
.green {
	color: #00c806
}
body {
	background:#333;
	font-family: microsoft yahei ui, Roboto, Noto, Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #f9f9f9;
	padding: 0;
	margin: 0;
	opacity:0.9;
	
}
ul, li {
	list-style: none;
	padding: 0;
	margin: 0
}
input, button, select {
	outline: none;
	border: none
}
a {
	color: #aaabbb;
	text-decoration: none;
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s
}
a:hover {
	color: #00c806;
	text-decoration: none
}
p {
	margin: 6px
}
::-moz-selection {
	background: #00c806;
	color: #fff
}
::selection {
	background: #00c806;
	color: #fff
}
::-webkit-scrollbar {
	width: 4px;
	height: 4px;
	background: #222
}
::-webkit-scrollbar-track {
	background: #222;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}
::-webkit-scrollbar-thumb {
	background: #383b50;
	border-radius: 2px
}
.container {
	position: relative;
	width: 85%;
	max-width: 1200px;
	margin: auto;
	overflow: hidden
}
.header+.container {
	margin-top: 60px
}
@media(max-width:1300px) {
	.container {
		width: 95%
	}
}
@media(max-width:991px) {
	.container {
		width: 98%
	}
}
@media(max-width:767px) {
	body {
		margin-top: 0px
	}
	.container {
		width: 100%
	}
	.header+.container {
		margin-top: 50px
	}
}
.header {
	position: fixed;
	display: flex;
	width: 100%;
	height: 70px;
	top: 0;
	left: 0;
	font-size: 0;
	background: 0 0;
	z-index: 999;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.header.fixed {
	height: 48px;
	background: rgba(52, 56, 76, .9);
	box-shadow: 0 0 8px #1e202b
}
@media(min-width:767px) {
	.header.fixed {
		height: 55px
	}
	.header.fixed a {
		color: #cdcee2
	}
	.nav-bar {
		display: none
	}
}
@media(max-width:767px) {
	.header {
		height: 55px
	}
}
.nav-bar {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	z-index: 1000;
	cursor: pointer;
	-webkit-transform: scale(.8);
	-moz-transform: scale(.8);
	-o-transform: scale(.8);
	transform: scale(.8);
	-webkit-transition: transform .3s;
	-moz-transition: transform .3s;
	-o-transition: transform .3s;
	transition: transform .3s
}
.nav-bar.active {
	-webkit-transform: rotateZ(90deg) scale(.8);
	-moz-transform: rotateZ(90deg) scale(.8);
	-o-transform: rotateZ(90deg) scale(.8);
	transform: rotateZ(90deg) scale(.8)
}
.nav-bar span {
	position: absolute;
	left: 0;
	right: 0;
	margin: 24px auto;
	width: 25px;
	height: 2px;
	background: #fff;
	border-radius: 25px
}
.nav-bar span::before {
	content: '';
	position: absolute;
	top: -8px;
	right: 0;
	width: 16px;
	height: 2px;
	background: #fff;
	border-radius: 25px
}
.nav-bar span::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 16px;
	height: 2px;
	background: #fff;
	border-radius: 25px
}
.logo {
	display: inline-flex;
	justify-content: center;
	height: 55px;
	width: 120px;
	padding: 8px 0
}
.logo img {
	max-width: 100%;
	height: auto;
	object-fit: contain
}
@media(max-width:767px) {
	.logo {
		display: flex;
		margin-left: 10px;
		height: 48px;
		padding: 10px 0
	}
}
.nav {
	display: flex;
	margin-left: 20px;
	font-size: 14px;
	float: right
}
.nav li {
	position: relative
}
.nav.show li {
	-webkit-transform: translateX(-105%);
	-moz-transform: translateX(-105%);
	-o-transform: translateX(-105%);
	transform: translateX(-105%)
}
.nav.show li:nth-child(even) {
	transition-duration: .4s
}
.nav li::after {
	content: "";
	position: absolute;
	width: 0;
	height: 3px;
	left: 50%;
	bottom: 0;
	background: #00c806;
	border-radius: 4px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.nav li.active::after, .nav li:hover::after {
	width: 100%;
	margin-left: -50%
}
.nav li a {
	display: inline-block;
	color: #eee;
	padding: 0 12px;
	height: 55px;
	line-height: 55px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
@media(max-width:767px) {
	.nav {
		flex-direction: column;
		position: fixed;
		top: 52px;
		right: 0;
		float: none;
		margin-left: 0;
		opacity: 0;
		visibility: hidden;
		text-align: right;
		z-index: 999;
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out
	}
	.nav.show {
		opacity: 1;
		visibility: visible
	}
	.nav li {
		right: -105%;
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out
	}
	.nav li::after {
		display: none
	}
	.nav li a {
		padding: 8px 8px 8px 15px;
		font-size: 14px;
		color: #fff;
		height: auto;
		line-height: normal;
		margin: 3px 0;
		background: rgba(52, 56, 76, .9);
		box-shadow: 0 0 8px #1e202b;
		border-radius: 25px 0 0 25px
	}
	.nav li a:hover, .nav li a.active {
		color: #fff;
		background: #00c806;
		box-shadow: 0 0 8px #00c806
	}
}
@media(min-width:767px) {
	.transparent-mark {
		display: none
	}
}
.transparent-mark {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 0 0
}
.banner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 300px;
	background: #34384c center center/cover
}
@media(max-width:767px) {
	.banner {
		height: 180px;
		padding-top: 25px
	}
}
.search-type, .search-form {
	display: flex;
	width: 80%;
	max-width: 700px;
	overflow-x: auto
}
.search-type .title {
	color: #ccc;
	padding: 6px 12px;
	white-space: nowrap
}
.search-type li i {
	margin-right: 3px
}
.search-type .item {
	color: #fff;
	padding: 6px 18px;
	border-radius: 4px 4px 0 0;
	margin-right: 4px;
	white-space: nowrap;
	cursor: pointer;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.search-type .item:hover, .search-type .item.active {
	color: #333;
	background: rgba(255, 255, 255, .9)
}
.search-form .search-input {
	flex: auto;
	font-size: 15px;
	padding: 8px 15px;
	color: #555;
	border-radius: 4px 0 0 4px;
	background: rgba(255, 255, 255, .85)
}
.search-form .search-btn {
	width: 100px;
	height: 45px;
	font-size: 15px;
	color: #fff;
	margin-left: -1px;
	border-radius: 0 4px 4px 0;
	background: rgba(23, 183, 28, .85);
	cursor: pointer
}
@media(max-width:480px) {
	.search-type, .search-form {
		width: 95%
	}
	.search-type .title {
		padding: 4px 10px
	}
	.search-type .item {
		padding: 4px 12px
	}
	.search-form .search-input {
		padding: 4px 12px;
		font-size: 14px
	}
	.search-form .search-btn {
		height: 38px;
		width: 80px;
		font-size: 14px
	}
}
.sort {
	position: fixed;
	top: 50%;
	left: 0;
	width: 32px;
	margin: 0;
	border-radius: 8px;
	z-index: 998;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.sort li {
	position: relative;
	margin: 4px 0
}
.sort li a {
	position: relative;
	display: inline-block;
	height: 32px;
	text-align: right;
	background: rgba(56, 59, 80, .85);
	padding: 6px 8px 6px 6px;
	box-shadow: 0 0 8px #2a2d3e;
	border-radius: 0 25px 25px 0;
	white-space: nowrap;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	-webkit-transform: translateX(-100%) translateX(30px);
	-moz-transform: translateX(-100%) translateX(30px);
	-o-transform: translateX(-100%) translateX(30px);
	transform: translateX(-100%) translateX(30px)
}
.sort li a:hover, .sort li a.active {
	color: #fff;
	background: #00c806
}
.sort li a:hover {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0)
}
#main {
	float: none
}
@media(max-width:991px) {
	#main {
		width: 100%
	}
}
#side {
	float: left;
	width: 300px;
	padding-top: 8px;
	padding-right: 8px
}
#side .card {
	margin: 0 0 8px
}
@media(max-width:991px) {
	#side {
		width: 100%;
		padding: 0
	}
	#side .card {
		margin: 5px
	}
}
.card {
	position: relative;
	background: #222;
	box-shadow: 0 0 5px #888;
	border-radius: 8px;
	margin: 8px;
	overflow: hidden
}
.card .card-head {
	font-size: 18px;
	font-weight: 700;
	padding: 12px 15px;
	border-bottom: 1px solid #3f4251
}
.card .card-head i {
	margin-right: 6px;
	color: #00c806;
	text-align: center;
	width: 1.25em
}
.card .card-head .more {
	position: absolute;
	right: 8px;
	color: #FFF;
	font-size: 14px;
	font-weight: 400;
	padding: 3px
}
.card .card-body {
	padding: 8px;
	font-size: 0
}
.card .card-body.content {
	font-size: 14px
}
.card .card-body.content img {
	max-width: 100%;
	border-radius: 4px
}
.pz .site-item {
	font-weight: 600
}
.pz .site-item:hover {
	color: #000;
	font-weight: 600;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05)
}
.pz a:hover span {
	color: #000
}
.pt .site-item:hover {
	color: #000;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05)
}
.pt a:hover span {
	color: #000
}
@media(max-width:767px) {
	.card {
		margin: 5px
	}
	.card .card-head {
		font-size: 16px;
		padding: 12px
	}
	.card .card-body.content {
		font-size: 13px
	}
	.card .card-head .more {
		display: none
	}
	.sort {
		display: none
	}
}
.board {
	display: flex;
	padding: 12px 8px;
	margin-bottom: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	flex-wrap: wrap
}
.board .icon {
	margin: 0 8px 0 4px
}
.top-grid {
	font-size: 0;
	padding: 8px
}
.top-banner a {
	text-align: center;
	border-radius: 5px;
	margin: 2.5px;
}
.top-banner img {
	border-radius: 5px;
	height: auto;
}
.top-banner .hengfu {
	display: block;
}
.top-banner .hengfu img {
	width: 100%;
	height: auto;
}
.top-banner .hengfu img a:hover {
	opacity: .8
}
.top-grid .item {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	width: 10%;
	color: #faa;
	font-size: 13px;
	padding: 10px 1px;
	border-radius: 6px;
	-webkit-transition: font-weight, background, transform .3s;
	-moz-transition: font-weight, background, transform .3s;
	-o-transition: font-weight, background, transform .3s;
	transition: font-weight, background, transform .3s
}
@media(max-width:1300px) {
	.top-grid .item {
		width: 16.6666667%
	}
}
@media(max-width:767px) {
	.top-grid .item {
		width: 20%
	}
	.top-banner .hengfu img {
		height: 50px !important;
	}
}
@media(max-width:480px) {
	.top-grid .item {
		width: 25%;
		padding: 10px 5px;
		font-size: 12px
	}
	.top-grid .item .icon {
		width: 40px;
		height: 40px;
		-webkit-transition: all .3s;
		-moz-transition: all .3s;
		-o-transition: all .3s;
		transition: all .3s
	}
}
.top-grid .item:hover {
	background: #444652;
	color: #ffcf26;
	font-weight: 600;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05)
}
.top-grid .item .icon {
	width: 56px;
	height: 56px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.top-grid .item:hover .icon {
	-webkit-transform: rotateZ(360deg);
	-moz-transform: rotateZ(360deg);
	-o-transform: rotateZ(360deg);
	transform: rotateZ(360deg)
}
.top-grid .item .icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px
}
.top-grid .item .name {
	width: 100%;
	text-align: center;
	margin-top: 8px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}
.board span:last-child {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}
.site-item {
	display: inline-block;
	width: 11.1111111%;
	color: #fff;
	font-size: 14px;
	padding: 10px 8px;
	border-radius: 6px;
	white-space: nowrap;
	text-align: center;
	text-overflow: clip;
	overflow: hidden;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.site-item.top {
	display: inline-flex;
	flex-direction: column;
	align-items: center
}
.site-item.side {
	width: 50%
}
.site-item:hover {
	background: #ffcf26;
	color: #000
}
.site-item .icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.site-item.top .icon {
	width: 56px;
	height: 56px
}
.site-item .icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: middle;
	margin-top: -3px
}
.site-item.top .name {
	width: 100%;
	text-align: center;
	margin-top: 8px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}
@media(max-width:1300px) {
	.site-item {
		width: 16.6666667%
	}
	.site-item.top {
		width: 14.2857143%
	}
}
@media(max-width:767px) {
	.site-item {
		width: 25%
	}
	.site-item.top {
		width: 20%
	}
}
@media(max-width:480px) {
	.site-item {
		width: 33.3%;
		font-size: 13px
	}
	.site-item.top {
		width: 25%;
		padding: 10px 5px;
		font-size: 13px
	}
	.site-item .name {
		line-height: 20px
	}
	.site-item.top .icon {
		width: 25px;
		height: 25px
	}
}
.post-item {
	display: inline-flex;
	width: 50%;
	color: #555;
	font-size: 14px;
	padding: 8px;
	border-radius: 8px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.post-item.side {
	width: 100%
}
.post-item:hover {
	color: #555;
	background: #eee
}
.post-item .pic {
	flex: none;
	width: 120px;
	height: 85px
}
.post-item.side .pic {
	width: 80px;
	height: 60px
}
.post-item .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px
}
.post-item .text {
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: space-between;
	margin-left: 10px;
	padding: 4px 0
}
.post-item.side .text {
	padding: 0
}
.post-item .title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 15px;
	height: 2.85714286em
}
.post-item.side .title {
	font-size: 14px
}
.post-item .info {
	display: flex;
	justify-content: space-between;
	color: #888;
	font-size: 12px
}
.post-item.side .info {
	font-size: 11px
}
@media(max-width:767px) {
	.post-item {
		width: 100%
	}
	.post-item .pic {
		width: 95px;
		height: 70px
	}
}
.post-info {
	display: flex;
	justify-content: space-around;
	color: #888;
	font-size: 13px;
	padding-bottom: 8px;
	margin-bottom: 10px;
	border-bottom: 1px dashed #eee
}
.site-main {
	display: inline-block;
	width: calc(100% - 280px);
	padding: 5px;
	font-size: 14px;
	vertical-align: top
}
.site-main .title {
	display: block;
	font-weight: 600;
	font-size: 22px;
	line-height: normal;
	text-align: center;
	padding-bottom: 0
}
.site-main span {
	line-height: 42px;
	padding: 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	z-index: 1
}
.site-main img {
	vertical-align: middle;
	margin-top: -4px
}
@media(max-width:1300px) {
	.site-main span {
		line-height: 32px;
		padding: 6px
	}
}
@media(max-width:767px) {
	.site-main {
		width: 100%;
		font-size: 13px
	}
	.site-main .title {
		width: 50%;
		padding-top: 0;
		font-size: 18px;
		line-height: 32px
	}
	.site-main span {
		line-height: 26px;
		padding: 4px
	}
}
.site-side {
	float: left;
	width: 280px;
	padding: 20px;
	text-align: center
}
.site-side .snapshot {
	width: 100%;
	height: 180px;
	margin-bottom: 5px;
	border-radius: 4px;
	box-shadow: 0 0 10px #ddd
}
.site-side .snapshot img {
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px
}
.site-side .oz-btn {
	margin: 5px 0
}
@media(max-width:767px) {
	.site-side {
		width: 100%;
		padding: 0;
		float: none
	}
	.site-side .snapshot {
		position: absolute;
		top: 20px;
		left: 51%;
		width: 210px;
		height: 160px
	}
	.site-side .oz-btn {
		width: 48%;
		margin: 1%;
		font-size: 14px
	}
}
@media(max-width:480px) {
	.site-side .site-img {
		left: auto;
		right: 15px;
		width: 40%;
		height: 35%
	}
}
.side-sort {
	display: inline-block;
	width: 50%;
	font-size: 14px;
	color: #666;
	text-align: center;
	padding: 10px 12px;
	border-radius: 4px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.side-sort:hover, .side-sort.active {
	color: #666;
	background: #eee
}
@media(max-width:991px) {
	.ranking div:nth-child(2) .card {
		margin: 8px 8px 8px 0
	}
	.ranking div:nth-child(3) .card {
		margin-top: 0
	}
}
@media(max-width:767px) {
	.ranking div:nth-child(2) .card {
		margin: 5px!important
	}
}
.card .side-statistic {
	font-size: 14px
}
.card .side-statistic p {
	margin: 12px 8px
}
.side-latest .oz-timeline-main {
	padding: 3px 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}
.side-latest .oz-timeline-main .icon {
	display: inline-block;
	width: 20px;
	height: 20px
}
.side-latest .oz-timeline-main .icon img {
	width: 100%;
	height: 100%;
	object-fit: cover
}
.side-latest .oz-timeline-main .name {
	line-height: 35px;
	vertical-align: middle
}
.links {
	clear: both
}
.links .card-head::before {
	content: '';
	position: absolute;
	left: 5px;
	width: 4px;
	height: 22px;
	background: #00c806;
	border-radius: 2px
}
.link-item {
	display: inline-block;
	font-size: 13px;
	padding: 5px 12px;
	margin: 2px;
	color: #666;
	background: #eee;
	border-radius: 25px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.link-item:hover {
	color: #fff;
	background: #00c806
}
.suspend {
	position: fixed;
	right: 2%;
	bottom: 5%
}
.suspend li {
	position: relative;
	width: 32px;
	height: 32px;
	margin: 3px;
	line-height: 32px;
	font-size: 13px;
	text-align: center;
	color: #eee;
	background: rgba(0, 0, 0, .8);
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.suspend li a {
	color: #eee
}
.suspend li a:hover {
	color: #fff
}
.suspend li:hover {
	color: #fff;
	background: #00c806
}
.suspend li:hover .more {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}
.suspend .more {
	position: absolute;
	display: block;
	visibility: hidden;
	opacity: 0;
	top: 0;
	right: 40px;
	height: 32px;
	padding: 0 10px;
	line-height: 32px;
	white-space: nowrap;
	background: rgba(0, 0, 0, .8);
	border-radius: 2px;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.suspend .more::after {
	content: '';
	position: absolute;
	display: block;
	top: calc(50% - 5px);
	right: -4px;
	border-top: 5px solid transparent;
	border-left: 5px solid rgba(0, 0, 0, .8);
	border-bottom: 5px solid transparent
}
.suspend .more.QRcode {
	width: 200px;
	height: 200px;
	top: calc(50% - 150px);
	padding: 3px
}
.suspend .more img {
	width: 100%;
	height: 100%;
	object-fit: cover
}
.back-top {
	visibility: hidden;
	opacity: 0;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0)
}
.back-top.show {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}
.footer {
	text-align: center;
	margin-top: 8px;
	padding: 10px;
	font-size: 13px;
	background: #222;
	box-shadow: 0 0 8px #1d1f2b
}
.ad {
	display: block
}
.ad img {
	width: 100%
}
#captchaImage {
	height: 36px;
	cursor: pointer
}
.oz-timeline {
	position: relative;
	padding: 5px;
	font-size: 14px
}
.oz-timeline .oz-timeline-item {
	display: block;
	position: relative;
	padding-left: 20px
}
.oz-timeline .oz-timeline-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 6px;
	width: 1px;
	height: 100%;
	background: #aaabbb
}
.oz-timeline .oz-timeline-item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 14px;
	height: 14px;
	background: #ccc;
	border: 3px solid #fff;
	border-radius: 100px;
	box-shadow: 0 0 6px #ccc
}
.oz-timeline .oz-timeline-time {
	color: #aaabb2;
	line-height: 15px;
	font-size: 13px;
	font-weight: 600
}
.oz-timeline .oz-timeline-main {
	padding: 8px 0
}
.oz-btn {
	height: 36px;
	line-height: 36px;
	padding: 0 15px;
	color: #fff;
	background: #eee;
	font-size: 14px;
	border: none;
	text-align: center;
	border-radius: 2px;
	display: inline-block;
	white-space: nowrap;
	cursor: pointer;
	-webkit-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s
}
.oz-btn:hover {
	color: #fff;
	opacity: .8
}
.oz-btn:active {
	opacity: 1
}
.oz-btn-lg {
	height: 38px;
	line-height: 38px;
	padding: 0 20px;
	font-size: 16px
}
.oz-btn-sm {
	height: 28px;
	line-height: 28px;
	padding: 0 10px;
	font-size: 12px
}
.oz-btn-xs {
	height: 22px;
	line-height: 22px;
	padding: 0 5px;
	font-size: 12px
}
.oz-btn-xss {
	height: 20px;
	line-height: 20px;
	padding: 0 5px;
	font-size: 10px
}
.oz-btn-block {
	width: 100%
}
.oz-btn-radius {
	border-radius: 100px
}
.oz-btn-container .oz-btn {
	margin: 5px
}
.oz-bg-red {
	background: #ff5722
}
.oz-bg-blue {
	background: #1e9fff
}
#inputName, #inputEmail, #inputUrl, #inputTelegram {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -10
}
.index-box {
	width: 100%;
	height: 300px;
	background-size: cover;
	position: relative;
}
.index-box::before {
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 300px!important;
	background: rgba(51, 51, 51, .1);
	position: absolute
}
.index-box .tit {
	text-align: center;
	padding: 25px 0 0;
	color: #fff;
	z-index: 99;
	position: relative
}
.index-box .tit h2 {
	font-size: 50px;
	letter-spacing: 5px;
	color: #fff
}
.index-box .tit p {
	margin-top: 15px;
	font-size: 20px
}
.index-box .search-box {
	width: 760px;
	height: 60px;
	margin: auto;
	background: rgba(255, 255, 255, .25);
	border-radius: 40px;
	z-index: 99;
	position: relative;
	padding: 10px;
	margin-top: 25px
}
.index-box .search-box .txt {
	width: 615px;
	height: 40px;
	border: 0;
	border-radius: 20px 0 0 20px;
	text-indent: 10px;
	background: #fff
}
.index-box .search-box .iconfont {
	width: 125px;
	height: 40px;
	border: 0;
	background: rgba(23, 183, 28, .85);
	border-radius: 0 20px 20px 0;
	float: right;
	cursor: pointer
}
@media screen and (max-width:767px) {
	.index-box {
		width: 100%;
		height: 250px !important;
		background-size: cover;
		position: relative;
		margin-top: -26px;
	}
	.index-box::before {
		height: 250px!important;
	}
	.index-box .tit {
		padding-top: 3rem
	}
	.index-box .tit h2 {
		font-size: 1.5rem
	}
	.index-box .tit p {
		font-size: 1rem
	}
	.index-box .search-box {
		width: 90%;
		height: auto;
		overflow: hidden;
		border-radius: 1rem
	}
	.index-box .search-box .iconfont, .index-box .search-box .txt {
		width: 100%;
		border-radius: .8rem
	}
	.index-box .search-box .iconfont {
		margin-top: .5rem
	}

}