* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	outline: none;
}

body {
	font-size: 14px;
}

img {
	border: 0
}

li {
	list-style: none;
}

body {
	font-family: "Microsoft YaHei";
	font-family: Microsoft YaHei;
}

i {
	font-style: normal;
}

div:after,
ul:after,
li:after {
	content: "";
	display: block;
	clear: both;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

/* img { -webkit-transition:1s; -moz-transition:1s; transition:1s; } */
.w1200 {
	width: 1200px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.w1300 {
	width: 1300px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.w1350 {
	width: 1350px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.clearBox:after {
	content: "";
	display: block;
	clear: both;
}

.clear {
	display: block;
	clear: both;
}

input {
	outline: none;
}

a,
a:hover {
	cursor: pointer;
}
a  {
	color: inherit;
}

.dpib {
	display: inline-block;
}

.dpb {
	display: block;
}

.tac {
	text-align: center;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.pstr {
	position: relative;
}

.psta {
	position: absolute
}


.flex-box {
	display: -webkit-box;
	/* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box;
	/* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox;
	/* 混合版本语法: IE 10 */
	display: -webkit-flex;
	/* 新版本语法: Chrome 21+ */
	display: flex;
	/* 新版本语法: Opera 12.1, Firefox 22+ */
}

.justify-center {
	display: -webkit-box;
	/* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box;
	/* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox;
	/* 混合版本语法: IE 10 */
	display: -webkit-flex;
	/* 新版本语法: Chrome 21+ */
	display: flex;
	/* 新版本语法: Opera 12.1, Firefox 22+ */
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.item-center {
	display: -webkit-box;
	/* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
	display: -moz-box;
	/* 老版本语法: Firefox (buggy) */
	display: -ms-flexbox;
	/* 混合版本语法: IE 10 */
	display: -webkit-flex;
	/* 新版本语法: Chrome 21+ */
	display: flex;
	/* 新版本语法: Opera 12.1, Firefox 22+ */
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}




/* 箭头 start */
.arrow {
	width: 11px;
	height: 11px;
	border-top: 2px solid #999;
	border-right: 2px solid #999;
	margin-right: 3px;
	margin-top: 3px;
	margin-left: 3px;

}

.arrow_l {
	transform: rotate(-135deg);
	/* 左箭头 start */
}

.arrow_r {
	transform: rotate(45deg);
	/* 右箭头 start */
}

.arrow_u {
	transform: rotate(-45deg);
	/* 上箭头 start */
}

.arrow_b {
	transform: rotate(135deg);
	/* 下箭头 start */
}

/* 箭头 end */


/* 实心箭头 start */
.triangle {
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	margin: 20px auto;
	line-height: 0;
	font-size: 0;
	vertical-align: middle;
}

.triangle_t {
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-top: 0 none;
	border-bottom: 10px solid #2C4E84;
	_color: #2C4E84;
	_filter: chroma(color=#2C4E84);
}
.triangle_r {
	border-left: 10px solid #2C4E84;
	border-right: 0 none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	_color: #2C4E84;
	_filter: chroma(color=#2C4E84);
}
.triangle_b {
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-top: 10px solid #2C4E84;
	border-bottom: 0 none;
	_color: #2C4E84;
	_filter: chroma(color=#2C4E84);
}
.triangle_l {
	border-right: 10px solid #2C4E84;
	border-left: 0 none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	_color: #2C4E84;
	_filter: chroma(color=#2C4E84);
}

/* 实心箭头 end */



/* 左右居中(偏移) start */
.tftl_50_0 {
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

/* 左右居中(偏移) end */

/* 上下居中(偏移) start */
.tftl_0_50 {
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

/* 上下居中(偏移) end */

/* 上下左右居中(偏移) start */
.tftl_50_50 {
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/* 上下左右居中(偏移) end */

.b-shadow {
	-o-box-shadow: 0 0 25px rgba(0, 0, 0, .08);
	-ms-box-shadow: 0 0 25px rgba(0, 0, 0, .08);
	-moz-box-shadow: 0 0 25px rgba(0, 0, 0, .08);
	-webkit-box-shadow: 0 0 25px rgba(0, 0, 0, .08);
	box-shadow: 0 0 25px rgba(0, 0, 0, .08);
}

.transition {
	-webkit-transition: all ease .4s;
	-moz-transition: all ease .4s;
	-ms-transition: all ease .4s;
	-o-transition: all ease .4s;
	transition: all ease .4s;
}

/**** 英文大小写 start ****/

/* 全大写 start */
.uppercase {
	text-transform: uppercase;
}

/* 首字母大写 start */
.capitalize {
	text-transform: capitalize;
}

/* 全小写 start */
.lowercase {
	text-transform: lowercase;
}

/**** 英文大小写 end ****/

.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.image-bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.image-bg-contain {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.image-bg-top {
	background-position: top;
	background-repeat: no-repeat;
	/* background-size: cover; */
}
.image-bg-center {
	background-position: center;
	background-repeat: no-repeat;
	/* background-size: cover; */
}
.image-bg-100 {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

/* 多板块通用 start */
.page-box {
	padding-top: 60px;
	padding-bottom: 60px;
}

@media (max-width: 1200px) {
	.page-box {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

@media (max-width: 992px) {
	.page-box {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.page-box {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.page-box {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

@media (max-width: 380px) {
	.page-box {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

.page-body {
	color: #666;
}

.cfff .page-body {
	color: #fff;
}

.page-content {
	color: #666;
	padding: 30px 0;
	line-height: 1.6;
}

@media (max-width: 992px) {
	.page-content {
		padding: 20px 0;
	}
}

@media (max-width: 768px) {
	.page-content {
		padding: 10px 0;
	}
}

@media (max-width: 480px) {
	.page-content {
		padding: 5px 0;
	}
}

.typename-box {
	text-align: center;
	padding: 0;
	/* margin-top: 20px; */
	margin-bottom: 35px;
	overflow: hidden;
}

.cfff {
	color: #fff;
}

.typename-box.tal {
	text-align: left;
	display: inline-block;
	margin-bottom: 10px;
}

.type-name {
	line-height: 1.5;
	font-size: 45px;
	font-weight: bold;
	color: #2C4E84;
}
.cfff .type-name {
	color: #fff;
}

.typename-line {
	width: 40px;
	height: 2px;
	background-color: #2C4E84;
	display: block;
	margin: 5px auto;
}

.cfff .typename-line {
	background-color: #fff;
}

.dpib .typename-line {
	width: auto;
}

.typename-line2 {
	width: 50px;
}

.typename-icon {
	height: 18px;
	width: 120px;
	margin: 5px auto;
	background: url(http://www.yaoyuanlaw.com/skin/images/icon1.png) no-repeat center center;
}

.cfff .typename-icon {
	background: url(http://www.yaoyuanlaw.com/skin/images/icon1-1.png) no-repeat center center;
}

.typename-box.tal .typename-line {
	float: left;
	width: 20px;
	height: 6px;
}


.typen-line-icon {
	display: block;
}

.tac .typen-line-icon {
	text-align: center;
	margin: auto;
}

.type-desc {
	font-size: 16px;
	color: #aaa;
}

.cfff .type-desc {
	color: #fff;
}

.type-name-en {
	text-transform: uppercase;
	background-image: linear-gradient(#999999, #ffffff);
	-webkit-background-clip:text; 
	-webkit-text-fill-color:transparent;;
	font-size: 34px;
	font-weight: bold;
	color: #ccc;
	margin-bottom: -34px;
}

.cfff .type-name-en {
	color: #fff;
	background-image: linear-gradient(#fff, #2C4E84);
}

.type-desc-en { 
	margin-top: 5px;
}

.cfff .type-desc-en {
	color: #fff;
}

.title-line {
	display: block;
	width: 50px;
	height: 1px;
	background-color: #2C4E84;
	margin: 5px 0;
}

@media (max-width: 1200px) {
	.typename-box {
		margin-bottom: 30px;
	}

}

@media (max-width: 768px) {
	.typename-box {
		margin-bottom: 15px;
	}
	.type-name-en {
		font-size: 20px;
		margin-bottom: -20px;
	}
	.type-name {
		line-height: 1.5;
		font-size: 26px;
	}

	.typename-icon {
		margin: 0 auto;
	}
	.typen-line-icon {
		max-width: 60px;
	}

	.typename-line {
		margin: 5px auto;
	}

}

@media (max-width: 480px) {
	.typename-box {
		margin-bottom: 10px;
	}
	.type-name-en {
		font-size: 20px;
		margin-bottom: -15px;
	}

	.type-name {
		font-size: 22px;
	}

	.typename-icon {
		height: 10px;
	}
	.typen-line-icon {
		max-width: 40px;
	}
	.typename-line {
		height: 4px;
	}

	.title-line {
		margin-top: 5px;
		margin-bottom: 10px;
	}

	.type-subtitle {
		font-size: 12px;
	}

	.type-desc {
		font-size: 13px;
	}
}

.page-body {
	position: relative;
}


.hidden {
	display: none;
}

.list-video-box {
	position: relative;
}

.video {
	object-fit: cover;
}


.wrap {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

@media (max-width:1200px) {
	.wrap {
		width: auto;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media only screen and (max-width:768px) and (min-width:500px) {
	.wrap {
		padding: 0 10px;
	}
}

@media only screen and (max-width: 768px) {
	.wrap {
		padding: 0 10px;
		margin: 0;
	}
}

@media (max-width: 480px) {
	.wrap {
		padding: 0 5px;
		margin: 0;
	}
}







.bgcf5f5f5 {
	background-color: #f5f5f5;
}

.bgcf6f6f6 {
	background-color: #f6f6f6;
}

.bgcf7f7f7 {
	background-color: #f7f7f7;
}

.bgcf8f8f8 {
	background-color: #f8f8f8;
}

.bgcf9f9f9 {
	background-color: #f9f9f9;
}

.bgcfafafa {
	background-color: #fafafa;
}

.bgcfbfbfb {
	background-color: #fbfbfb;
}

.bgcfcfcfc {
	background-color: #fcfcfc;
}

.bgcfdfdfd {
	background-color: #fdfdfd;
}

.bgcfefefe {
	background-color: #fefefe;
}

.bgcffffff {
	background-color: #ffffff;
}


.color-default {
	color: #2C4E84;
}


.bold {
	font-weight: bold;
}

/* 多板块通用 end */


/* 图片 start */
.list-image-box-bg {
	border: 1px solid #efefef;
    border-radius: 5px;
    padding: 5px;
}
.list-image-box {
	overflow: hidden;
	position: relative;
	padding-bottom: 68.75%;
}

.list-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* object-fit: cover; */
	display: block;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}
.list-image-zhezhao {
	position: absolute;
	right: 0;
	bottom: -100%;
	left: 0;
	height: 100%;
	background-color: rgba(0,0,0,.7);
    color: #fff;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
	overflow: hidden;
}

.list-image-zhezhao-bg {
	width: 86%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.list-image-box:hover .list-image-zhezhao {
	bottom: 0;
}
/* 图片 end */




/* 上一篇下一篇 start */
.prenext-ul {
	padding: 10px 0;
	border-top: 1px solid #eaeaea;
}

.prenext-li {
	color: #666;
}

.prenext-li a {
	/* display: block; */
	line-height: 30px;
}

.prenext-li a:hover {
	color: #256ab9;
}

.prenext-li a.disabled {
	opacity: 0.5;
	filter: alpha(opacity=50);
}

@media (max-width: 768px) {
	.prenext-ul {
		padding: 10px 0;
		text-align: left;
	}

	.prenext-li {
		float: none;
		width: auto;
		padding: 5px 0;
	}

	.prenext-li a {
		margin: 0 2px;
		line-height: 20px;
	}
}

/* 上一篇下一篇 end */
