@charset "utf-8";
* {
	padding: 0;
	margin: 0;
	font-family: "microsoft yahei";
	box-sizing: border-box;
}

input:focus {
	outline: none;
}

textarea:focus {
	outline: none;
}

input {}

body {
}

img {
	border: none;
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

a {
	color: inherit;
	text-decoration: none;
}

.cl {
	clear: both;
}
/**/

.banner {
	width: 100%;
}

.banner img {
	display: block;
	width: 100%;
}
.banner img.pc{
	display: none;
}
header {
	width: 100%;
	transition: 0.4s all;
	background-color: #cc3333;
}

.header {
	width: 100%;
	margin: 0px auto;
}

.header .logo {
	width: 100%;
	height: 60px;
	padding: 10px 0px;
	border-bottom: 1px solid white;
}

.header .logo img {
	display: block;
	height: 100%;
	margin: auto;
}

.header .nav {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.header .nav p{
	width: 33.333%;
}
.header .nav p a {
	display: block;
	text-align: center;
	color: #fdfdfd;
	font-size: 15px;
	line-height: 40px;
	transition: 0.3s all;
}

.header .nav p.hover a,
.header .nav p a:hover {
	background-color: white;
	color: #cf271e;
	transition: 0.3s all;
}

header.subnav-fixed .nav p a {
	color: #555;
}

.index-title {
	text-align: center;
	margin: 20px auto;
}

.index-title p.t1 {
	color: #717171;
	letter-spacing: 2px;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.index-title p.t1 span {
	color: #e21a22;
}

.index-title p.t2 {
	color: #4e5358;
	font-size: 22px;
	font-weight: bold;
}

.index-main1 {
	width: 100%;
	margin: 20px auto 45px;
	overflow: hidden;
}

.index-main1 img {
	display: block;
	width: 1920px;
	max-width: 100%;
	margin: auto;
}
.index-main1 img.pc{
	display: none;
}
.index-main2 {
	width: 100%;
	background-image: url(../images/index-pic_04.png);
	background-repeat: no-repeat;
	background-size: 100%;
	padding: 15px 0px;
	margin-bottom: 30px;
}

.index-main2 .index-title p.t1,
.index-main2 .index-title p.t2 {
	color: white;
}

.index-main2 ul {
	width: 95%;
	margin: 65px auto 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.index-main2 ul li {
	width: 48%;
	text-align: center;
	margin-bottom: 20px;
}
.index-main2 ul li:nth-child(9){
	/*width: 38.5%;*/
}
.index-main2 ul li a {
	display: block;
	background-color: rgba(226, 26, 34, 1);
	color: white;
	line-height: 40px;
	border-radius: 15px;
	font-size: 15px;
}

.index-main3 {
	width: 100%;
	margin: 35px auto;
}

.index-main3 .top {
	display: block;
	box-shadow: 0px 0px 12px #ccc;
	position: relative;
	overflow: hidden;
	
}

.index-main3 .top .list {
	width: 96%;
	margin: auto;
	transition: 0.3s all;
	margin-bottom: 12px;
}

.index-main3 .top .list.hover {
	position: static;
	transition: 0.3s all;
}

.index-main3 .top .list .right {
	display: block;
	width: 100%;
}

.index-main3 .top .list .right img {
	display: block;
	width: 100%;
}

.index-main3 .top .list .left {
	width: 100%;
	background-color: #cc3333;
	padding: 10%;
}

.index-main3 .top .list .left p.t1 {
	color: white;
	font-size: 48px;
	font-weight: bold;
	position: relative;
}

.index-main3 .top .list .left p.t1 span {
	color: white;
	font-weight: bold;
	font-size: 24px;
	margin-right: 15px;
	position: absolute;
	left: 80px;
	bottom: 10px;
}

.index-main3 .top .list .left p.t2 {
	font-size: 14px;
	color: white;
	margin-top: 5px;
	text-transform: uppercase;
	opacity: 0.7;
}

.index-main3 .top .list .left ul {
	margin-top: 20px;
}

.index-main3 .top .list .left ul li {
	position: relative;
	color: white;
	line-height: 2;
	padding-left: 18px;
}

.index-main3 .top .list .left ul li:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: white;
	position: absolute;
	left: 0;
	top: 13px;
}

.index-main3 .bottom {
	width: 100%;
	display: none;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 35px;
}

.index-main3 .bottom .list {
	width: 48%;
	position: relative;
	box-shadow: 0px 0px 8px #ccc;
	margin-bottom: 18px;
}

.index-main3 .bottom .list p.t1 {
	width: 100%;
}

.index-main3 .bottom .list p.t1 img {
	display: block;
	width: 100%;
}

.index-main3 .bottom .list p.t2 {
	width: 100%;
	height: 40px;
	color: white;
	text-align: center;
	background-color: rgba(204, 51, 51, 0.7);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
	font-weight: bold;
	transition: 0.3s all;
}

.index-main4-w {
	width: 100%;
	background-image: url(../images/index-pic_06.png);
	background-size: 100%;
	background-repeat: no-repeat;
	padding: 40px 20px;
	margin-bottom: 60px;
}

.index-main4-w .index-title {
	width: 95%;
	margin: auto;
	color: white;
}

.index-main4-w .index-title p.t1,
.index-main4-w .index-title p.t2 {
	color: white;
}

.index-main4 {
	width: 100%;
	margin: 15px auto 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}

.index-main4 .left img {
	width: 100%;
	display: block;
	margin-top: 50px;
}

.index-main4 .right {
	width: 100%;
	display: none;
	height: 349px;
	padding: 110px 0px 0px 180px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-image: url(../images/indexxx_06.png);
}

.index-main4 .right p.t1 {
	color: white;
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 25px;
}

.index-main4 .right p.t2 img {
	display: block;
	width: 40px;
}

.index-main4 .right p.t3 {
	color: white;
	margin: 8px 0px;
}

.index-main4 .right p.t4 {
	font-weight: bold;
	color: white;
	font-size: 30px;
}

.index-main5 {
	width: 95%;
	margin: 45px auto 65px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.index-main5 .list {
	width: 48%;
	margin-bottom: 15px;
	box-shadow: 0px 0px 8px #ccc;
}

.index-main5 .list p.t1 {
	display: block;
	width: 100%;
	height: 210px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
}

.index-main5 .list p.t1 img {
	display: block;
	width: 100%;
	transition: 0.3s all;
}

.index-main5 .list p.t2 {
	background-color: #e21a22;
	color: white;
	text-align: center;
	line-height: 40px;
}

.index-main5 .list:hover img {
	transform: scale(1.1, 1.1);
	transition: 0.3s all;
}

.index-main6 {
	width: 100%;
	margin: 25px auto 50px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.index-main6-bj {
	width: 95%;
	margin: auto;
	background-color: #e21a22;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.index-main6 .list {
	width: 48%;
	margin: 0px auto 15px;
	box-shadow: 0px 0px 12px #666;
}

.index-main6 .list p.t1 {
	width: 100%;
}

.index-main6 .list p.t1 img {
	display: block;
	width: 100%;
}

.index-main6 .list p.t2 {
	color: #555;
	font-size: 15px;
	font-weight: bold;
	background-color: white;
	line-height: 40px;
	text-align: center;
}

.index-main08 {
	width: 100%;
	margin: 0px auto 65px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.index-main08 .new-tit {
	width: 100%;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #cccccc;
	color: #e21a22;
	font-weight: bold;
	position: relative;
	padding: 12px 10px;
}

.index-main08 .new-tit:before {
	content: "";
	display: block;
	width: 100px;
	height: 2px;
	background-color: #e21a22;
	position: absolute;
	bottom: -1px;
	left: 0;
}

.index-main08 .new-tit a {
	display: block;
	color: #cccccc;
	font-weight: normal;
	font-size: 14px;
}

.index-main08 .new-tit a:hover {
	color: #0054A3
}

.index-main08 .one {
	width: 95%;
	margin: 0px auto 15px;
}

.index-main08 .one img {
	display: block;
	width: 100%;
	margin: 15px auto;
}

.index-main08 .one .list {
	width: 100%;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
}

.index-main08 .one .list p.t1 {
	font-weight: bold;
	color: #4f4f4f;
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.index-main08 .one .list p.t1 span {
	display: block;
	font-size: 14px;
	font-weight: normal;
}

.index-main08 .one .list p.t2 {
	color: #8f9091;
	font-size: 15px;
	line-height: 1.8;
}

.index-main08 .two {
	width: 95%;
	margin: auto;
}

.index-main08 .two .list {
	margin-bottom: 13px;
	padding-bottom: 13px;
	border-bottom: 1px solid #ccc;
	background-image: url(../images/news-icon.png);
	background-position: top left;
	background-repeat: no-repeat;
	padding-left: 45px;
}

.index-main08 .two .list p.t1 {
	font-weight: bold;
	color: #4f4f4f;
	margin-bottom: 10px;
}

.index-main08 .two .list p.t2 {
	color: #8f9091;
	font-size: 15px;
	line-height: 1.8;
}

.index-main08 .two .new-tit {
	margin-bottom: 16px;
}

.index-main07 {
	width: 100%;
	margin: 35px auto 25px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-shadow: 0px 0px 15px #ccc;
}

.index-main07 .left {
	width: 95%;
	margin: auto;
}

.index-main07 .left img {
	display: block;
	width: 100%;
}

.index-main07 .right {
	width: 95%;
	margin: auto;
}

.index-main07 .right p.t1 {
	color: #545454;
	font-size: 32px;
	font-weight: bold;
}

.index-main07 .right p.t2 {
	color: #999fa5;
	font-size: 18px;
	margin-bottom: 35px;
}

.index-main07 .right p.t3 {
	color: #797e84;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 25px;
}

.index-main07 .right p.t4 a {
	display: block;
	width: 120px;
	text-align: center;
	line-height: 38px;
	color: white;
	background-color: #e21a22;
}

.index-main09 {
	margin-bottom: 65px;
}

.index-main09 .bx-wrapper {
	margin: auto;
	box-shadow: 0px 0px 15px #ccc;
}
.index-main09 .bx-wrapper .bx-pager{
	display: none;
}

footer {
	width: 100%;
	padding: 15px 0px 10px;
	background-color: #4b4b4b;
}

.footer {
	width: 100%;
	margin: auto;
}

.footer .fnav {
	display: none;
	justify-content: space-between;
	border-bottom: 1px solid #e21a22;
	padding-bottom: 15px;
}

.footer .fnav a {
	color: white;
	font-size: 14px;
}

.footer .one {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 45px;
}
.footer .one .hr{
	display: none;
}
.footer .one .left{
	width: 95%;
	margin: auto;
}
.footer .one .left p.t1 {
	font-weight: bold;
	color: white;
	font-size: 22px;
	margin-bottom: 20px;
}

.footer .one .left p.t2 {
	font-size: 15px;
	color: white;
	line-height: 1.8;
}

.footer .one .center {
	width: 150px;
	margin: 20px auto;
}

.footer .one .center img {
	display: block;
	width: 100%;
}

.footer .one .right {
	width: 100%;
	display: flex;
	justify-content: space-around;
}

.footer .one .right p {
	display: block;
	width: 40%;
}

.footer .one .right p img {
	display: block;
	width: 100%;
}

.footer .two {
	color: #ccc;
	text-align: center;
	font-size: 14px;
	margin-top: 40px;
	padding: 20px 0px;
}
/**/
.main-hui {
	width: 100%;
	background-color: #ecedef;
	padding: 35px 0px;
}

.image-main {
	width: 100%;
	margin: 0px auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.image-main .left {
	width: 95%;
	box-shadow: 0px 0px 8px #ccc;
    margin: 0px auto 25px;
	display: inline-table;
}

.image-main .left h2 {
	width: 100%;
	height: 100px;
	box-sizing: border-box;
	line-height: 100px;
	font-size: 20px;
	color: white;
	text-align: center;
	font-weight: bold;
	background-color: #cc3333;
	letter-spacing: 3px;
}

.image-main .left ul.type {
	background-color: #fff;
	padding: 10px 0px 0px;
}
.image-main .left ul.type-two{
	    border-bottom: 2px solid #27779c !important;
}
.image-main .left ul.type-two li{
	padding-left: 40px !important;
	    border-bottom: 1px solid #27779c !important;
}
.image-main .left ul.type li {
	padding-left: 10px;
	display: flex;
	justify-content: flex-start;
	line-height: 40px;
	border-bottom: 1px solid #cc3333;
	transition: 0.5s all;
	cursor: pointer;
}
.image-main .left ul.type li.current,
.image-main .left ul.type-two{
    background-color: #4f5050;
}
.image-main .left ul.type li a {
	display: flex;
	justify-content: flex-start;
	color: #4f5050;
	font-size: 14px;
	font-weight: bold;
	width: 100%;
}

.image-main .left ul.type li a i {
	line-height: 38px;
	font-weight: normal;
	margin-right: 5px;
}

.image-main .left ul.type li:hover ,
.image-main .left ul.type li.hover {
	background-color: #cc3333;
	transition: 0.5s all;
}
.image-main .left ul.type li:hover a,
.image-main .left ul.type li.hover a{
	color: white;
}
.image-main .left ul.type li.bg {
	width: 100%;
	height: 32px;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
}

.image-main .left .left-tel {
	position: relative;
	padding-left: 65px;
	background-color: #cc3333;
	padding: 20px 0px 30px 65px;
}

.image-main .left .left-tel:before {
	position: absolute;
	left: 20px;
	top: 19px;
	font-size: 40px;
	color: white;
}

.image-main .left .left-tel p.t1 {
	font-size: 14px;
	color: white;
	display: block;
	margin-bottom: 2px;
}

.image-main .left .left-tel p.t2 {
	font-size: 17px;
	color: white;
	font-weight: bold;
}

.image-main .left .left-tel-t {
	width: 100%;
	background-color: #cc3333;
	padding-bottom: 20px;
}

.image-main .left .left-tel-t p {
	width: 84%;
	margin: auto;
	text-align: center;
	line-height: 25px;
	height: 25px;
	color: #545454;
	font-size: 12px;
	background-color: white;
	display: block;
}

.maps {
	width: 100%;
	padding: 0px 15px;
	box-sizing: border-box;
	height: 50px;
	line-height: 50px;
	display: flex;
	justify-content: space-between;
	background-color: white;
}
.maps input{
	height: 32px;
	width: 200px;
	box-sizing: border-box;
	display: block;
	margin-top: 9px;
	padding: 0px 10px;
	border: 1px solid #cc3333;
    background-color: #f4f7f9;
    border-radius: 3px;
}
.maps p:first-child {
	font-size: 18px;
	font-weight: bold;
}

.maps p:last-child {
	font-size: 14px;
	display: flex;
	justify-content: flex-end;
	color: #666666;
}

.maps p:last-child a {
	color: #666666;
}

.maps p:last-child i {
	display: block;
}
.img-right {
    width: 95%;
    margin: auto;
}

.img-right ul.list {
	margin: 20px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.img-right ul.list li {
	width: 310px;
	margin-bottom: 15px;
	background-color: white;
}

.img-right ul.list li p.t1 {
	display: block;
	width: 100%;
	overflow: hidden;
}

.img-right ul.list li p.t1 img {
	display: block;
	transition: 0.5s all;
	width: 100%;
}

.img-right ul.list li p.t2 {
	background-color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 0px;
	transition: 0.5s all;
	display: block;
}

.img-right ul.list li:hover img {
	transform: scale(1.1, 1.1);
	transition: 0.5s all;
}

.img-right ul.list li:hover p.t2 {
	background-color: #cc3333;
	color: white;
	transition: 0.5s all;
}
li.kongli {
	border: none !important;
	background-color: transparent !important;
}
.six-pages{width:100%}
.six-pages ul{display:flex;flex-wrap:wrap;justify-content:flex-start}
.six-pages ul li{background-color:#ddd;color:#666;margin-right:8px;color:white;font-size:14px;border-radius:3px;overflow:hidden;height:30px;line-height:30px}
.six-pages ul li a{display:block;width:100%;color:#666;font-size:14px;padding:0 14px}
.six-pages ul li.thisclass{background-color:#01AAED}
.six-pages ul li.thisclass a{color:white}
.six-pages ul li:last-child{color:#666;padding:0 14px};
/**/

.ashow-right {
	width: 960px;
}
.bsshow-right{
	width: 95%;
	margin: auto;
}
.ashow-right .show-article {
	padding: 20px;
	margin: 20px auto;
	background-color: white;
	border-top: #cc3333 3px solid;
}

.ashow-right .show-article h1 {
	text-align: center;
	font-size: 26px;
	color: #333;
	margin-bottom: 15px;
	font-weight: bold;
}

.ashow-right .show-article .time {
	display: flex;
	justify-content: center;
	border-top: #e7e7e7 1px dashed;
	padding-top: 15px;
}

.ashow-right .show-article .time span {
	font-size: 12px;
	color: #999;
	line-height: 24px;
	margin: 0px 15px;
	display: flex;
	justify-content: center;
}

.ashow-right .show-article .time span i {
	display: block;
	margin-right: 5px;
	font-size: 14px;
}

.ashow-right .show-article article {
	display: block;
	font-size: 15px;
	color: #333333;
	line-height: 2;
	margin: 20px auto;
}

.ashow-right .show-article article h6 {
	font-size: 16px;
	font-weight: bold;
	background-color: #f2f2f2;
	color: #cc3333;
	width: 960px;
	border-left: 5px solid #cc3333;
	box-sizing: border-box;
	line-height: 1;
	margin: 10px 0px 10px -20px;
	display: block;
	padding: 8px 0px 8px 20px;
}

.ashow-right .show-article article h5 {
	font-size: 16px;
	font-weight: bold;
	background-color: #f2f2f2;
	color: #cc3333;
	width: 960px;
	border-left: 5px solid #cc3333;
	box-sizing: border-box;
	line-height: 1;
	margin: 10px 0px 10px -20px;
	display: block;
	padding: 8px 0px 8px 20px;
}

.ashow-right .show-article article img {
	max-width: 100% !important;
	display: block !important;
	margin: 10px auto !important;
}

.img-right {
	width: 960px;
}

.img-right ul.list {
	margin: 20px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.img-right ul.list li {
	width: 48%;
	margin-bottom: 15px;
	border: 1px solid white;
	background-color: white;
}

.img-right ul.list li p.t1 {
	display: block;
	width: 100%;
	overflow: hidden;
}

.img-right ul.list li p.t1 img {
	display: block;
	transition: 0.5s all;
	width: 100%;
}

.img-right ul.list li p.t2 {
	background-color: white;
	font-size: 14px;
	text-align: center;
	padding: 10px 0px;
	transition: 0.5s all;
	display: block;
}

.img-right ul.list li:hover img {
	transform: scale(1.1, 1.1);
	transition: 0.5s all;
}

.img-right ul.list li:hover p.t2 {
	background-color: #cc3333;
	color: white;
	transition: 0.5s all;
}
li.kongli {
	border: none !important;
}
.six-pages{width:100%}
.six-pages ul{display:flex;flex-wrap:wrap;justify-content:flex-start}
.six-pages ul li{background-color:#ddd;color:#666;margin-right:8px;color:white;font-size:14px;border-radius:3px;overflow:hidden;height:30px;line-height:30px}
.six-pages ul li a{display:block;width:100%;color:#666;font-size:14px;padding:0 14px}
.six-pages ul li.thisclass{background-color:#01AAED}
.six-pages ul li.thisclass a{color:white}
.six-pages ul li:last-child{color:#666;padding:0 14px};

.ashow-right{
	width: 95% !important; 
	margin: auto;
}
.picshow-right {
	width: 100%;
}

.picshow-right .top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.picshow-right .top .left {
	width: 100%;
	background: #fff;
	border: 1px solid #eee;
}

.picshow-right .top .left img {
	display: block;
	width: 100%;
}
.pic-lists img{
	width: 48% !important;
}
.picshow-right .top .right {
	width: 100%;
	display: block;
}
.picshow-right .top .right .contact{
	font-size: 15px;
	line-height: 1.7;
	color: #888888;
	padding: 5px 0px;
	margin-bottom: 10px;
	border-bottom: 1px solid #888888;
}
.picshow-right .top .right .desc {
	font-size: 15px;
	line-height: 1.6;
	color: #555555;
}
.picshow-right .bottom{
	width: 100%;
	display: block;
}
.picshow-right .bottom p.tit{
	border-left: 5px solid #cc3333;
	display: block;
	background-color: #f2f2f2;
	color: #333;
	padding: 8px 0px 8px 15px;
	font-weight: bold;
	margin: 15px auto;
}
.picshow-right .bottom .liuyan{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.picshow-right .bottom .liuyan input.i1{
	width: 49%;
	height: 35px;
	padding: 10px;
	box-sizing: border-box;
	margin-bottom: 20px;
}
.picshow-right .bottom .liuyan textarea{
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	height: 100px;
}
.picshow-right .bottom .liuyan input.s1{
	width: 120px;
	background-color: #cc3333;
	border: none;
	color: white;
	height: 40px;
	margin-top: 25px;
}
.news-right {
	width: 95%;
	margin: auto;
}
.news-right ul.list {
	margin: 15px auto;
}

.news-right ul.list li {
	width: 100%;
	box-sizing: border-box;
	padding: 25px;
	display: flex;
	justify-content: space-between;
	background-color: white;
	margin-bottom: 15px;
	position: relative;
}

.news-right ul.list li .time {
	width: 70px;
	display: none;
}

.news-right ul.list li .time p.t1 {
	color: #ababab;
	font-size: 24px;
	padding-top: 5px;
	display: block;
	font-weight: bold;
}

.news-right ul.list li .time p.t2 {
	margin-top: 5px;
	font-size: 18px;
	color: #c5c5c5;
	font-family: Arial;
}

.news-right ul.list li .text {
	width: 830px;
}

.news-right ul.list li .text h3 a {
	color: #393c40;
	font-size: 24px;
	font-weight: bold;
}

.news-right ul.list li .text p.hr {
	height: 4px;
	width: 120px;
	margin: 28px 0px 20px 0px;
	padding: 0;
	background: #cc3333;
}

.news-right ul.list li .text p.desc {
	font-size: 14px;
	line-height: 24px;
}

.news-right ul.list li .text h3 a:hover {
	text-decoration: underline;
}

.news-right ul.list li:after {
	content: "";
	display: block;
	width: 0;
	height: 4px;
	background-color: #cc3333;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 0.5s all;
}

.news-right ul.list li:hover:after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background-color: #cc3333;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 0.5s all;
}

/**/

.custom_service p img {display: inline; vertical-align:middle;}
.scrollsidebar{position:absolute; z-index:999999; top:350px;right:0}
.side_content{width:154px; height:auto; overflow:hidden; float:left; }
.side_content .side_list {width:154px;overflow:hidden;}
.show_btn{ width:0; height:112px; overflow:hidden; margin-top:50px; float:left; cursor:pointer;}
.show_btn span { display:none;}
.close_btn{width:24px;height:24px;cursor:pointer;}
.side_title,.side_bottom,.close_btn,.show_btn {background:url(../images/sidebar_bg.png) no-repeat;}
.side_title {height:46px;}
.side_bottom { height:8px;}
.side_center {font-family:Verdana, Geneva, sans-serif; padding:5px 12px; font-size:12px;}
.close_btn { float:right; display:block; width:21px; height:16px; margin:16px 10px 0 0; _margin:16px 5px 0 0;}
.close_btn span { display:none;}
.side_center .custom_service p { text-align:center; padding:6px 0; margin:0; vertical-align:middle;}
.other  { text-align:center;border-bottom:1px solid #ddd;border-top:1px solid #ddd}
.other p { padding:5px 0; _height:16px; margin:0;color: #666666;}
.msgserver { text-align:center; margin-bottom:5px;}
.msgserver a { background:url(../images/sidebar_bg.png) no-repeat -119px -115px; padding-left:22px;}

/* blue skin as the default skin */
.side_title, .side_blue .side_title {background-position:-195px 0;}
.side_center, .side_blue .side_center {background:url(../images/blue_line.png) repeat-y center;}
.side_bottom, .side_blue .side_bottom {background-position:-195px -50px;}
.close_btn, .side_blue .close_btn {background-position:-44px 0;}
.close_btn:hover, .side_blue .close_btn:hover {background-position:-66px 0;}
.show_btn , .side_blue .show_btn {background-position:-119px 0;}
.msgserver a, .side_blue .msgserver a {color:#06C;}

/* green skin  */
.side_green .side_title {background-position:-349px 0;}
.side_green .side_center {background:url(../images/green_line.png) repeat-y center;}
.side_green .side_bottom {background-position:-349px -50px;}
.side_green .close_btn {background-position:-44px -23px;}
.side_green .close_btn:hover {background-position:-66px -23px;}
.side_green .show_btn {background-position:-147px 0;}
.side_green .msgserver a {color:#76a20c;}
/**/

/**/

.liuyan-title {
	width: 100%;
	background: #ddd;
	padding: 15px;
	box-sizing: border-box;
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

.liuyan-title1 {
	width: 100%;
}

.liuyan-box {
	width: 100%;
	margin-bottom: 25px;
}

.liuyan-box p {
	width: 100%;
	padding: 15px 15px;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	border: 1px solid #ddd;
	border-bottom: none;
	color: #333;
}

.liuyan-box p:last-child {
	border-bottom: 1px solid #ddd;
}

.liuyan-box p span:first-child {
	width: 100px;
	display: block;
	line-height: 30px;
	font-size: 15px;
}

.liuyan-box p span:last-child {
	display: block;
}

.liuyan-box p span:last-child input {
	width: 400px;
	display: block;
	height: 30px;
	padding: 0px 10px;
	font-size: 15px;
	border: 1px solid #dcdfe0;
	border-radius: 2px;
}

.liuyan-box p span:last-child textarea {
	width: 400px;
	display: block;
	height: 120px;
	padding: 10px 10px;
	font-size: 15px;
	border: 1px solid #dcdfe0;
	border-radius: 2px;
}
.liuyan-box p.tijiao input{
	width: 100%;
	border: none;
	background-color: #cc3333;
	color: white;
	height: 35px;
	border-radius: 3px;
	box-shadow: 0px 0px 5px #333;
}
/**/
.jobs-right {
	width: 960px;
}
.jobs-right ul.list {
	margin: 15px auto;
}

.jobs-right ul.list li {
	width: 100%;
	box-sizing: border-box;
	padding: 25px;
	display: flex;
	justify-content: space-between;
	background-color: white;
	margin-bottom: 15px;
	position: relative;
}


.jobs-right ul.list li .text {
	width: 100%;
	position: relative;
}
.jobs-right ul.list li .text i.more{
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	font-style: normal;
	width: 40px;
	line-height: 40px;
	letter-spacing: 5px;
	font-size: 14px;
	cursor: pointer;
	height: 107px;
	background-color: #F2F2F2;
	text-align: center;
	box-sizing: inherit;
	 writing-mode: vertical-lr;
    writing-mode: tb-lr;
}
.jobs-right ul.list li .text i.more:hover,
.jobs-right ul.list li.open .text i.more{
	background-color: #cc3333;
	color: white;
}
.jobs-right ul.list li .text h3 a {
	color: #393c40;
	font-size: 24px;
	font-weight: bold;
}

.jobs-right ul.list li .text p.hr {
	height: 4px;
	width: 120px;
	margin: 28px 0px 20px 0px;
	padding: 0;
	background: #cc3333;
}

.jobs-right ul.list li .text p.desc {
	font-size: 14px;
	line-height: 24px;
	display: flex;
	justify-content: flex-start;
}
.jobs-right ul.list li .text p.desc span{
	display: block;
	margin-right: 30px;
}
.jobs-right ul.list li .text .cons{
	background-color: #f2f2f2;
	padding: 25px;
	margin-top: 20px;
	color: #555;
	font-size: 14px;
	display: none;
}
.jobs-right ul.list li .text .cons h4.title{
	font-weight: bold;
	font-size: 16px;
	color: #555;
	margin-bottom: 15px;
}
.jobs-right ul.list li .text h3 a:hover {
	text-decoration: underline;
}

.jobs-right ul.list li:after {
	content: "";
	display: block;
	width: 0;
	height: 4px;
	background-color: #cc3333;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 0.5s all;
}

.jobs-right ul.list li:hover:after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background-color: #cc3333;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 0.5s all;
}
.jobs-right ul.list li.open .cons{
	display: block;
	transition: 0.3s height;
}
