body {
	margin: 0;
	padding: 0;
}

.BanSelectText {
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	-khtml-user-select: none;
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Old versions of Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version, currently supported by any browser but < IE9 */
}

.Text-Shining {
	-webkit-animation: FText-Shining 2s alternate infinite;
	animation: FText-Shining 2s alternate infinite;
}

@keyframes FText-Shining {
	from {
		text-shadow: 0 0 5px lightblue, 0 0 10px lightblue, 0 0 15px lightblue, 0 0 20px skyblue, 0 0 25px skyblue, 0 0 30px skyblue;
	}

	to {
		text-shadow: 0 0 3px lightblue, 0 0 6px lightblue, 0 0 9px lightblue, 0 0 12px skyblue, 0 0 15px skyblue, 0 0 18px skyblue;
	}
}

.Text-Printing {
	width: 21em;
	height: 1.5em;
	border-right: 1px solid transparent;
	animation: FText-Printing 2s steps(42, end), FText-blink-caret .75s step-end infinite;
	font-family: Consolas, Monaco;
	word-break: break-all;
	overflow: hidden;
}

/* 打印效果 */
@keyframes FText-Printing {
	from {
		width: 0;
	}

	to {
		width: 21em;
	}
}

/* 光标 */
@keyframes FText-blink-caret {

	from,
	to {
		border-color: transparent;
	}

	50% {
		border-color: currentColor;
	}
}


.Btn-QQSugar:hover {
	animation: FBtn-QQSugar 0.5s;
}

@keyframes FBtn-QQSugar {

	0%,
	100% {
		transform: scale(1, 1);
	}

	25%,
	75% {
		transform: scale(1.1, 0.9);
	}

	50% {
		transform: scale(0.9, 1.1);
	}
}

.Hover-Card {

	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.11);
	-moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.11);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.11);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	top: 0;
}

.Hover-Card:hover,
.Hover-Card:focus {
	text-decoration: none;
	-webkit-box-shadow: 0px 8px 16px -2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 8px 16px -2px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 8px 16px -2px rgba(0, 0, 0, 0.2);
	transform: translateY(-10px);
	transform: translateX(-2px);
}

.Border-radius2 {
	border-radius: 2vw;
}

.Background_ffffff {
	background: rgba(255, 255, 255, 1);
}

.Trans-Magnified-0911 {
	transform: scale(0.9, 0.9);
}

.Trans-Magnified-0911 :hover {
	transform: scale(1.1, 1.1);
}

/* 1,滚动条 */
::-webkit-scrollbar {
	width: 0.7vw;
	/* 纵向滚动条 宽度 */
	height: 0.7vw;
	/* 横向滚动条 高度 */
	background: rgba(255, 255, 255, 0.5);
	/* 整体背景 */
	border-radius: 10px;
	/* 整体 圆角 */
}

/* 2,滚动条两端的按钮 */
::-webkit-scrollbar-button {
	width: 0px;
	/* 横向滚动条 宽度 */
	height: 0px;
	/* 纵向滚动条 高度 */
	background: white;
	border-radius: 10px;
}

/* 3,外层轨道 */
::-webkit-scrollbar-track {
	/* background: red; */
	border-radius: 8px;
	background: rgba(105, 105, 105, 0);
}

/* 4.内层轨道，它会覆盖外层轨道的样式。 */
::-webkit-scrollbar-track-piece {
	width: 5px;
	background: rgba(105, 105, 105, 0);
	margin: 0 -2px 0;
}

/* 5,滑块 */
::-webkit-scrollbar-thumb {
	background: #bec5ca;
	min-height: 50px;
	min-width: 10px;
	border-radius: 10px;
}

/* 纵向滑块悬浮 */
::-webkit-scrollbar-thumb:vertical:hover {
	background: rgba(0, 152, 255, 0.5);
}

/* 横向滑块悬浮 */
::-webkit-scrollbar-thumb:horizontal:hover {
	background: rgba(0, 152, 255, 0.5);
}

/* 6,边角，两个滚动条交汇处 */
::-webkit-scrollbar-corner {
	background: rgb(255, 255, 255);
}


.BottomBox {
	height: 10vh;
}

.BottomBox button {
	background: rgba(0, 0, 0, 0);
	border: none;
	text-align: center;
	animation-iteration-count: 1;
}

.BottomBox button:hover:not(.active) {
	animation: BottomBox-button-hover 1s;
	animation-fill-mode: forwards;
}

@keyframes BottomBox-button-hover {
	to {
		background-color: #ddd;
		color: black;
	}
}


.BGPic {
	position: relative;
	width: 100%;
	background-color: #ffffff;
	z-index: 8;
}

.HeadBox {
	position: relative;
	left: 0;
	margin-top: 60px;
	width: 100vw;
	overflow: hidden;
}

@media screen and (max-width: 800px) {
	.HeadBox {
		margin-top: 30px;
	}
}

.HeadBox .Head {
	position: relative;
	width: 100%;
	height: 16vw;
	background: rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

@media screen and (max-width: 800px) {
	.HeadBox .Head {
		height: 32vw;
	}
}

.HeadBox .Head img {
	width: 110%;
	height: 410%;
	filter: brightness(1.1);
	animation-name: HeadBox_Head_animation;
	animation-duration: 6s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	position: relative;
	z-index: -4;
}

@keyframes HeadBox_Head_animation {
	from {
		filter: blur(5px);
		margin-left: -2%;
		margin-top: -5%;
	}

	to {
		filter: blur(0px);
		margin-left: -8%;
		margin-top: -30%;

	}
}

@media screen and (max-width: 800px) {
	.HeadBox .Head img {
		height: 210%;
	}
}

.HeadBox .Head .TextBox {
	position: absolute;
	color: rgb(255, 255, 255);
	left: 0;
	top: 40%;
	width: 100%;
	height: 20vw;
	vertical-align: middle;
	z-index: 9;
}

.HeadBox .Head .TextBox .Titles {
	font-size: 2.3vw;
	font-weight: bolder;
	text-align: center;
	margin-bottom: 0;
	cursor: default;
}

@media screen and (max-width: 800px) {
	.HeadBox .Head .TextBox .Titles {
		font-size: 4vw;
		font-weight: bolder;
		text-align: center;
		margin-bottom: 0;
		cursor: default;
	}
}

.HeadBox .Head .TextBox .Titles2 {
	font-size: 1.1vw;
	font-weight: bolder;
	text-align: center;
	margin-bottom: 0;
	cursor: default;
}

@media screen and (max-width: 800px) {
	.HeadBox .Head .TextBox .Titles2 {
		font-size: 2vw;
		font-weight: bolder;
		text-align: center;
		margin-bottom: 0;
		cursor: default;
	}
}
.SideMenuOut
{

	height: 185px;
}
.SideMenu {
	visibility: visible;
	position: fixed;
	z-index: 9;
	right: 5px;
	bottom: 10%;
	height: 85px;
	width: 40px;
	transition: 0.3s;
	/*border:1px solid #000;*/
}
.SideMenuIn {
	position: absolute;
	width: 100%;
	height: 40px;
	bottom: 45px;
}
.SideMenuIn:hover{
	height: 135px;
}
.SideMenuIn:hover .HideIcon
{
	visibility: visible;
	position: relative;
}
.SideMenuIn:hover .ShowIcon
{
	visibility: hidden;
}
.SideMenu .ShowIcon
{
	position: absolute;
	bottom: 0px;
	transition: 0s;
}
.SideMenu .ToTopIcon
{
	position: absolute;
	bottom: 0px;
}
.SideMenu_Hide {
	visibility: hidden;
}
.SideMenu_Hide .Box
{
	transition: 0s;
}
.SideMenu .Box {
	width: 100%;
	height: 40px;
	color: rgba(0, 119, 184, 0.9);
	font-size: small;
	font-weight: bold;
	cursor: pointer;
	border-radius: 8px;
	background: rgba(255, 255, 255, 1);
}
.SideMenu .HideIcon
{
	visibility: hidden;
	position: absolute;
	margin-top: 5px;
}
.SideMenu .Box:hover {
	border-radius: 8px;
	background: rgba(217, 217, 217, 1);
}

.SideMenu .Box .ToTop,
.SideMenu .Box .WeChat,
.SideMenu .Box .EMail, 
.SideMenu .Box .Call,
.SideMenu .Box .Attendant
{
	height: 100%;
	transform-origin: center;
}

.SideMenu .Box .ToTop:hover .Icon {
	animation: SideMenu-Move 0.6s;
}
.SideMenu .Box .Call:hover .Icon {
	animation: SideMenu-Revolve 0.5s;
}
.SideMenu .Box .EMail:hover .Icon {
	animation: SideMenu-Scale 0.5s;
}
.SideMenu .Box .WeChat:hover .Icon1 {
	animation: SideMenu-Scale1 0.8s;
}
.SideMenu .Box .WeChat:hover .Icon2 {
	animation: SideMenu-Scale2 0.8s;
}
@keyframes SideMenu-Move {

	0%,
	100% {
		transform: translateY(0);
	}

	20%,
	70% {
		transform: translateY(-3px);
	}

	50% {
		transform: translateY(0);
	}
}

@keyframes SideMenu-Scale{

	0%,
	100% {
		transform: scale(1, 1);
	}

	25%,
	75% {
		transform: scale(1.1, 0.9);
	}

	50% {
		transform: scale(0.9, 1.1);
	}
}
@keyframes SideMenu-Scale1{

	0%,
	100% {
		transform: scale(1, 1);
	}
	16%{
		transform: scale(0.9, 0.8);
	}
	32% {
		transform: scale(0.8, 0.9);
	}
	50% {
		transform: scale(1, 1);
	}
}
@keyframes SideMenu-Scale2{

	0%,
	50%,
	100% {
		transform: scale(1, 1);
	}
	66%{
		transform: scale(1.1, 1.2);
	}
	82% {
		transform: scale(1.2, 1.1);
	}
}
@keyframes SideMenu-Revolve {

	0%,
	100% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(-15deg);
	}

	50% {
		transform: rotate(0deg);
	}

	75% {
		transform: rotate(15deg);
	}
}

.SideMenu .Box .ToTop img {
	position: absolute;
	width: 80%;
	height: 24%;
	top: 15%;
	left: 10%;
}

.SideMenu .Box .WeChat img,
.SideMenu .Box .Call img,
.SideMenu .Box .EMail img,
.SideMenu .Box .Attendant img
{
	position: absolute;
	width: 80%;
	height: 60%;
	top: 20%;
	left: 10%;
}

.SideMenu .Box .Text {
	position: absolute;
	height: 50%;
	width: 100%;
	text-align: center;
	bottom: 10%;
}

.SideMenu .Box .Pic {
	position: absolute;
	visibility: hidden;
	top: -50px;
	height: 140px;
	width: 140px;
	right: 39px;
	cursor: default;
}

.SideMenu .Box .Pic:hover {
	visibility: visible;
}

.SideMenu .Box .Pic .FText {
	position: absolute;
	top: 15%;
	width: 70%;
	height: 70%;
	right: 18%;
}

.SideMenu .Box .Pic .FText img {
	position: absolute;
	left: 0;
	top: 0;
}

.SideMenu .Box .Pic img {
	width: 100%;
	height: 100%;
}

.SideMenu .Box .Pic .Bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.SideMenu .Box .Call:hover .Pic {
	visibility: visible;
}

.SideMenu .Box .WeChat:hover .Pic {
	visibility: visible;
}

.SideMenu .Box .EMail:hover .Pic {
	visibility: visible;
}






.New_Hr {
	position: relative;
	width: 100%;
	height: 0.5vw;
}

.New_Hr hr {
	width: 100%;
	margin: 0 auto;
	border: 0;
	height: 0.5vw;
	background: #ffffff;
	background-image: linear-gradient(to right, rgb(0, 119, 184), rgb(0, 119, 184), rgba(255, 255, 255, 0.05));
}


.Middle_TitleBox {
	width: 100%;
	margin-bottom: 3vw;
}

.Middle_TitleBox .Middle_Title {
	width: 40%;
	left: 30%;
	padding-top: 2%;
	position: relative;
	text-align: center;
	font-weight: bold;
}

.Middle_TitleBox .Middle_Title .Titles {
	font-size: 36px;
	color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 800px) {
	.Middle_TitleBox .Middle_Title .Titles {
		font-size: 24px;
	}
}

.Middle_TitleBox .Middle_Title .Titles2 {
	font-size: 16px;
	color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 800px) {
	.Middle_TitleBox .Middle_Title .Titles2 {
		font-size: 12px;
	}
}

.Middle_TitleBox .Middle_Title .Title {
	font-size: 36px;
	color: rgb(0, 0, 0);
}

@media screen and (max-width: 800px) {
	.Middle_TitleBox .Middle_Title .Title {
		font-size: 24px;
	}
}

.Middle_TitleBox .Middle_Title .Title2 {
	font-size: 16px;
	color: rgb(204, 204, 204);
}

@media screen and (max-width: 800px) {
	.Middle_TitleBox .Middle_Title .Title2 {
		font-size: 12px;
	}
}

.WhiteBox-A99 {
	position: relative;
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
}

.BlackBox-A3 {
	position: relative;
	width: 100%;
	background: rgba(0, 0, 0, 0.03);
}



/*index*/



.Pic_Run {
	position: relative;
	padding: 0;
	margin-left: 5%;
	margin-top: 3%;
	width: 90%;
	height: 40vw;
	overflow: hidden;
}

.Pic_Run .flexslider {
	background: none;
}

.Pic_Run .flexslider .flex-control-nav li a {
	background: rgba(0, 152, 255, 0.05);
}

.Pic_Run .flexslider .flex-control-nav li .flex-active {
	background: rgba(0, 152, 255, 0.6);
}

.Pic_Run ul {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
	width: 100%;
	height: 100%;
}

.Pic_Run .liCss {
	position: relative;
	display: inline-block;
	width: 22vw;
	height: 34vw;
	margin-left: 1vw;
	cursor: default;
}

.Pic_Run .liCss .InfoBox {
	position: relative;
	margin-top: 0%;
	width: 100%;
	height: 100%;
	overflow-x: auto;
	font-size: 1.5vw;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(0, 152, 255, 0.6);
	transition: 1s;
}

.Pic_Run .liCss .InfoBox .info {
	position: relative;
	width: 90%;
	left: 5%;
}

.Pic_Run .liCss .InfoBox .info li {
	text-align: left;
	list-style-type: circle;
}

.Pic_Run .liCss :hover .LiBoxTitle {
	transform: translateY(-100%);
}

.Pic_Run .liCss :hover .InfoBox {
	transform: translateY(-100%);
}

.Pic_Run .liCss .LiBox {
	margin-top: 0%;
	width: 22vw;
	height: 90%;
	overflow: hidden;
}

@media screen and (max-width: 800px) {
	.Pic_Run .liCss .LiBox {
		width: 30vw;
	}
}

.Pic_Run .liCss img {
	width: 100%;
	height: 65%;
}

.Pic_Run .liCss .LiBoxTitle {
	background: rgba(0, 152, 255, 0.6);
	height: 100%;
	width: 100%;
	position: relative;
	text-align: center;
	color: rgba(255, 255, 255, 0.9);
	transition: 1s;
}

.Pic_Run .liCss .LiBoxTitle .title {
	font-size: 2vw;
	height: 20%;
	width: 100%;
	position: relative;
}

@media screen and (max-width: 800px) {
	.Pic_Run .liCss .LiBoxTitle .title {
		font-size: 3vw;
	}
}

.Pic_Run .liCss .LiBoxTitle .category {
	font-size: 1vw;
	height: 15%;
	left: 1%;
	width: 98%;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	line-height: 1.2vw;
}

@media screen and (max-width: 800px) {
	.Pic_Run .liCss .LiBoxTitle .category {
		visibility: hidden;
	}
}

.Index_TeamPage {
	position: relative;
	width: 100%;
	background: rgba(0, 0, 0, 0.03)
}

.Index_Service {
	position: relative;
	width: 100%;
}

.Index_Service .ItemOne {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 20%;
	height: 18vw;
	margin-left: 5%;
	text-align: center;
	font-size: 2vw;
	overflow: hidden;
}

/*
@media screen and (max-width: 800px) {
	.Index_Service .ItemOne  {
		width: 90vw;
		height: 90vw;
		margin-left: 5vw;
	}
  }
  */
.Index_Service .Pic {
	position: relative;
	top: 5%;
	left: 0%;
	width: 100%;
	height: 70%;
}

.Index_Service .Pic img {
	width: 100%;
	height: 100%;
}

.Index_Service .Title {
	position: absolute;
	width: 100%;
	bottom: 0;
	text-align: center;
}

.Index_AboutBox {
	position: relative;
	width: 100%;
	height: 38vw;
	left: 0vw;
	background-image: url('../images/background5.png');
	background-attachment: fixed;
	/*background-image: linear-gradient(to right, rgba(18, 29, 80), rgba(6, 34, 66), rgba(0, 40, 54));*/
}

@media screen and (max-width: 800px) {
	.Index_AboutBox {
		height: 900px;
	}
}

.Index_AboutBox .Index_AboutPic {
	background: rgb(255, 255, 255);
	margin-top: 30px;
	margin-left: 5.5%;
	position: absolute;
	width: 42%;
	height: 55%;
	font-size: 1.4vw;
	z-index: 3;
}

@media screen and (max-width: 800px) {
	.Index_AboutBox .Index_AboutPic {
		position: relative;
		margin-top: 1vw;
		margin-left: 1%;
		height: 350px;
		width: 98%;
	}
}

.Index_AboutBox .Index_AboutPic img {
	width: 100%;
	height: 100%;
}

.Index_AboutBox .Index_About {

	/*background: rgba(0, 152, 255, 0.05);*/
	color: rgba(0, 0, 0);
	margin-top: 30px;
	margin-left: 52.5%;
	position: absolute;
	width: 42%;
	height: 55%;
	font-size: 14px;
	line-height: 2;
	overflow-y: auto;
	z-index: 4;
	transition: 0.5s;
}

@media screen and (max-width: 800px) {
	.Index_AboutBox .Index_About {
		position: relative;
		margin-top: 1vw;
		font-size: 12px;
		height: 350px;
		width: 98%;
		margin-left: 1%;
	}
}

.Index_AboutBox .Index_AboutText {
	position: absolute;
	width: 100%;
	height: 90%;
	top: 5%;
}

@media screen and (max-width: 800px) {
	.Index_AboutBox .Index_AboutText {
		width: 100%;
	}
}

.Index_AboutBox .Index_AboutText .p1,
.Index_AboutBox .Index_AboutText .p2,
.Index_AboutBox .Index_AboutText .p3 {
	width: 100%;
	cursor: default;
}

.Index_AboutBox .Index_AboutText .p1 {
	font-weight: bold;
	text-align: left;
}

.Index_AboutBox .Index_AboutText .p2 {
	text-align: left;
	color: #ffffff;
}

.Index_AboutBox .Index_AboutText .ShowMoreBtn {
	position: absolute;
	width: 26%;
	height: 36px;
	line-height: 36px;
	left: 0%;
	bottom: 0%;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	text-align: center;
	color: #fff;
	border-color: #ffffff;
	background-color: rgba(0, 119, 184, 0);
	border-style: solid;
	transition: 0.2s;
}

@media screen and (max-width: 800px) {
	.Index_AboutBox .Index_AboutText .ShowMoreBtn {
		height: 36px;
		line-height: 36px;
		left: 37%;
	}
}

.Index_AboutBox .Index_AboutText .ShowMoreBtn:hover {
	border-color: rgb(0, 119, 184);
	background-color: rgb(0, 119, 184);
}

.Index_News {
	position: relative;
	height: 32vw;
	width: 100%;
}

@media screen and (max-width: 800px) {
	.Index_News {
		height: 700px;
	}
}

.Index_News .PicBox {
	width: 43%;
	height: 23vw;
	right: 5%;
	overflow: hidden;
	position: absolute;
	cursor: pointer;
}

@media screen and (max-width: 800px) {
	.Index_News .PicBox {
		position: relative;
		top: 1.5%;
		left: 10%;
		width: 80%;
		height: 48%;
	}
}

.Index_News .PicBox .BGPic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(1);
	transition: 0.5s;
}

.Index_News .PicBox .Cover {
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.7);
	transition: 0.5s;
	transform: translateY(90%);
	width: 100%;
	height: 100%;
	z-index: 9;
}

.Index_News .PicBox .Cover2 {
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0);
	transition: 0.5s;
	transform: translateY(90%);
	width: 100%;
	height: 100%;
	z-index: 10;
}

.Index_News .PicBox:hover .BGPic {
	transform: scale(1.1);
}

.Index_News .PicBox:hover .Cover {
	transform: translateY(0%);
}

.Index_News .PicBox:hover .Cover2 {
	transform: translateY(40%);
}

.Index_News .PicBox .Cover2 .Title {
	width: 96%;
	margin-left: 2%;
	height: 10%;
	font-size: medium;
	font-weight: bold;
	cursor: pointer;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Index_News .PicBox .Cover2 .Article {
	width: 96%;
	margin-left: 2%;
	overflow: hidden;
	height: 30%;
	font-size: small;
}

.Index_News .PicBox .Cover2 .Article img {
	visibility: hidden;
	width: 0px;
	height: 0px;
}

.Index_News .PicBox .Cover2 .Article::after {
	content: "...";
	position: absolute;
	right: 2%;
	top: 32%;
}

.Index_News .PicBox .BGPic img {
	width: 100%;
	height: 100%;
}

.Index_News .NewsBox {
	margin-left: 5%;
	width: 43%;
	height: 23vw;
	float: left;
	overflow: hidden;
}

@media screen and (max-width: 800px) {
	.Index_News .NewsBox {
		margin-top: 1.5%;
		margin-left: 10%;
		width: 80%;
		height: 48%;
	}
}

.Index_News .NewsBox ul {
	padding: 0;
	width: 100%;
	height: 100%;
	list-style-type: none;
	overflow: hidden;
}

.Index_News .NewsBox ul li {
	position: relative;
	margin-left: 0%;
	margin-top: 1.5%;
	height: 30.3%;
	width: 100%;
	cursor: pointer;
}

.Index_News .NewsBox ul li:hover .TitleBox {
	color: rgb(0, 119, 184);
}

.Index_News .NewsBox ul li .ImgBox {
	position: absolute;
	left: 0%;
	width: 18%;
	height: 81%;
	overflow: hidden;
}

.Index_News .NewsBox ul li .ImgBox img {
	width: 100%;
	height: 100%;
	transition: 0.5s;
	transform: scale(1);
}

.Index_News .NewsBox ul li .ImgBox:hover img {
	transform: scale(1.1);
}

.Index_News .NewsBox ul li .TitleBox {
	position: absolute;
	color: #000;
	right: 0%;
	width: 80%;
	height: 25%;
	font-size: normal;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

}

.Index_News .NewsBox ul li .ArticleBox {
	line-height: 1.3;
	position: absolute;
	right: 0%;
	top: 26%;
	width: 80%;
	height: 30%;
	font-size: 2px;
	overflow: hidden;
}

@media screen and (max-width: 800px) {
	.Index_News .NewsBox ul li .ArticleBox {
		height: 30%;
	}
}

.Index_News .NewsBox ul li .ArticleBox img {
	visibility: hidden;
	width: 0px;
	height: 0px;
}

.Index_News .NewsBox ul li .ArticleBox::after {
	content: "...";
	position: absolute;
	right: 0;
	bottom: 0;
}

.Index_News .NewsBox ul li .BottomBox {
	position: absolute;
	font-size: 2px;
	right: 0%;
	bottom: 18%;
	width: 80%;
	height: 19%;
}

.Index_News .NewsBox ul li .Line {
	position: absolute;
	bottom: 2px;
	width: 100%;
	height: 1px;
	background-color: rgb(204, 204, 204);
}

.Index_Team {
	position: relative;
	width: 100%;
	height: 35vw;
	white-space: nowrap;
}

@media screen and (max-width: 800px) {
	.Index_Team {
		font-size: 3vw;
		height: 160vw;
	}
}

.Index_Team .Team_Box_Out {

	position: relative;
	left: 0%;
	top: 5%;
	width: 100%;
	height: 90%;
	white-space: normal;

}

.Index_Team .Team_Box {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-top: 2.5%;
	margin-left: 5%;
	width: 26.6%;
	height: 90%;
	background: rgba(0, 152, 255, 0.6);
	color: rgba(255, 255, 255, 0.9);
	cursor: default;
	text-align: center;
	overflow: hidden;
}

@media screen and (max-width: 800px) {
	.Index_Team .Team_Box {
		width: 50%;
		height: 30%;
		margin-left: 25%;
	}
}

.Index_Team .Team_Box .Pic {
	position: relative;
	background: rgba(255, 255, 255, 1);
	height: 40%;
	width: 100%;
}

@media screen and (max-width: 800px) {
	.Index_Team .Team_Box .Pic {
		height: 60%;
	}
}

.Index_Team .Pic img {
	top: 5%;
	width: 40%;
	height: 90%;
}



.Index_Team .Team_Box .Text {
	position: relative;
	bottom: 0;
	margin-left: 2.5%;
	width: 95%;
	font-size: 1.5vw;
}

@media screen and (max-width: 800px) {
	.Index_Team .Team_Box .Text {
		height: 50%;
		font-size: 1.8vw;
	}
}

.Index_Team .Team_Box .Text2 {
	position: absolute;
	bottom: 5%;
	left: 10%;
	width: 80%;
	height: 10%;
	font-size: 2.2vw;
}

@media screen and (max-width: 800px) {
	.Index_Team .Team_Box .Text2 {
		font-size: 3vw;
	}
}


/*about*/
/*腾讯地图*/
.MapOutBox {
	position: relative;
	top: 0;
	width: 90%;
	height: 70vw;
	left: 5%;
	overflow: hidden;
}

@media screen and (max-width: 800px) {
	.MapOutBox {
		height: 90vw;
	}
}

.TXMapOutBox {
	position: relative;
	top: 0;
	width: 100%;
	height: 100%;
	left: 0;
}

.TXMapBox {
	position: relative;
	width: 100%;
	height: 100%;
}

.AboutBox {
	color: rgb(102, 102, 102);
	height: 40vw;
	width: 100%;
}

@media screen and (max-width: 800px) {
	.AboutBox {
		height: 900px;
	}
}

.AboutBox .AboutBox_Left {
	margin-top: 5%;
	position: absolute;
	left: 5%;
	width: 43%;
	height: 70%;
	overflow: hidden;
}

@media screen and (max-width: 800px) {
	.AboutBox .AboutBox_Left {
		margin-top: 1%;
		position: relative;
		left: 5%;
		width: 90%;
		height: 35%;
		overflow: hidden;
	}
}

.AboutBox .AboutBox_Left:hover img {
	transform: scale(1.1);
}

.AboutBox .AboutBox_Left img {
	height: 100%;
	width: 100%;
	transform: scale(1);
	transition: 0.5s;
}

.AboutBox .AboutBox_Right {
	font-size: 14px;
	margin-top: 5%;
	position: absolute;
	right: 5%;
	width: 43%;
	height: 70%;
	overflow-x: scroll;
}

@media screen and (max-width: 800px) {
	.AboutBox .AboutBox_Right {
		margin-top: 1%;
		position: relative;
		left: 5%;
		width: 90%;
		height: 60%;
		overflow: hidden;
	}
}

.AboutBox2 {
	position: relative;
	width: 100%;
	left: 0%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.AboutBox2 ul {
	margin-top: 20px;
	padding: 0;
	list-style-type: none;
	width: 400px;
}

.AboutBox2 li {
	width: 100%;
	height: 430px;
	/*border-color: #000;
	border-style: solid;*/
	color: rgb(0, 119, 184);
	text-align: center;
}

.AboutBox2 li .Time,
.AboutBox2 li .Title,
.AboutBox2 li .Desc {
	cursor: default;
}

.AboutBox2 li .Time {
	font-size: 28px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.AboutBox2 li .Time .TimeI {
	position: relative;
	width: 23%;
	height: 50px;
}

.AboutBox2 li .Time .TimeI .TimeText {
	position: absolute;
	right: 0%;
	bottom: 0%;
	width: 20%;
	text-align: right;
}

.AboutBox2 li .Time .TimeI .TimeTime {
	overflow: hidden;
	position: absolute;
	left: 0%;
	bottom: 0%;
	text-align: left;
	width: 75%;
	height: 40px;
}

.AboutBox2 li .Time .TimeText {
	font-size: 16px;
}

.AboutBox2 li .Title {
	font-size: 16px;
	font-weight: bold;
}

.AboutBox2 li .Desc {
	font-size: 14px;
	color: rgb(102, 102, 102);
}

.AboutBox2 li .CircleBox {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.AboutBox2 li .CircleBox .Circle {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border-color: rgb(0, 119, 184);
	border-style: solid;
	border-width: 1px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.AboutBox2 li .CircleBox .Circle .Circle2 {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: rgb(0, 119, 184);
}

.AboutBox2 li .CircleBox .Circle:hover {
	border-color: rgb(120, 181, 44);
	/* 圆形边框颜色 */
}

.AboutBox2 li .CircleBox .Circle:hover .Circle2 {
	background-color: rgb(120, 181, 44);
}

.AboutBox2 li .VerticalLineBox {
	margin-top: 5px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.AboutBox2 li .VerticalLine {
	width: 1px;
	height: 60px;
	background-color: rgb(204, 204, 204);
}

.AboutBox2 li .ImgBox {
	margin-top: 5px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.AboutBox2 li .ImgBox .ImgOut {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.AboutBox2 li .ImgBox .ImgOut img {
	width: 100%;
	height: 100%;
	transition: 0.5s;
	transform: scale(1);
}

.AboutBox2 li .ImgBox .ImgOut:hover img {
	transform: scale(1.1);
}

/*News*/
.News_Box {
	width: 98%;
	margin-left: 1%;
	padding-top: 20px;
}

.News_Box ul {
	position: relative;
	padding-top: 40px;
	padding-left: 0;
	padding-bottom: 20px;
	width: 100%;
	height: 20vw;
	list-style-type: none;
	/*border: 1px solid #000;*/
}

@media screen and (max-width: 800px) {
	.News_Box ul {
		height: 900px;
	}
}

.News_Box ul li {
	float: left;
	width: 30%;
	height: 100%;
	margin-left: 1.65%;
	margin-right: 1.65%;
	/*border: 1px solid #000;*/
}

@media screen and (max-width: 800px) {
	.News_Box ul li {
		margin-top: 10px;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		height: 280px;
	}
}

.News_Box .Control_Box {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.News_Box .Control_BoxOut {
	height: 32px;
	position: relative;
	width: 40%;
	margin-top: 25px;
	margin-bottom: 25px;
}

@media screen and (max-width: 800px) {
	.News_Box .Control_BoxOut {
		height: 32px;
		position: relative;
		width: 80%;
		margin-top: 25px;
		margin-bottom: 25px;
	}
}

.News_Box .Control_BoxOut .Btn_L,
.News_Box .Control_BoxOut .Btn_R {
	cursor: pointer;
	text-align: center;
	position: absolute;
	width: 20%;
	top: 0;
	color: rgb(0, 119, 184);
	border-color: rgb(0, 119, 184);
	border-style: solid;
	background-color: #ffffff;
	transition: 0.5s;
}

.News_Box .Control_BoxOut .Btn_L:hover,
.News_Box .Control_BoxOut .Btn_R:hover {
	background-color: rgb(0, 119, 184);
	color: #ffffff;
}

.News_Box .Control_BoxOut .Btn_L {
	left: 0;
}

.News_Box .Control_BoxOut .Page_Show {
	text-align: center;
	position: absolute;
	width: 30%;
	left: 33.3%;
	top: 0;
}

.News_Box .Control_BoxOut .Btn_R {
	right: 0;
}

.News_Box ul li .PicBox {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
}

.News_Box ul li .PicBox .BGPic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(1);
	transition: 0.5s;
}

.News_Box ul li .PicBox .Cover {
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.7);
	transition: 0.5s;
	transform: translateY(90%);
	width: 100%;
	height: 100%;
	z-index: 9;
}

.News_Box ul li .PicBox .Cover2 {
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0);
	transition: 0.5s;
	transform: translateY(90%);
	width: 100%;
	height: 100%;
	z-index: 10;
}

.News_Box ul li .PicBox:hover .BGPic {
	transform: scale(1.1);
}

.News_Box ul li .PicBox:hover .Cover {
	transform: translateY(0%);
}

.News_Box ul li .PicBox:hover .Cover2 {
	transform: translateY(40%);
}

.News_Box ul li .PicBox .Cover2 .Title {
	width: 96%;
	margin-left: 2%;
	height: 10%;
	font-size: medium;
	font-weight: bold;
	cursor: pointer;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.News_Box ul li .PicBox .Cover2 .Article {
	width: 96%;
	margin-left: 2%;
	overflow: hidden;
	height: 30%;
	font-size: small;
}

.News_Box ul li .PicBox .Cover2 .Article img {
	visibility: hidden;
	width: 0px;
	height: 0px;
}

.News_Box ul li .PicBox .Cover2 .Article::after {
	content: "...";
	position: absolute;
	right: 2%;
	top: 32%;
}

.News_Box ul li .PicBox .BGPic img {
	width: 100%;
	height: 100%;
}


.News2_Box {
	width: 98%;
	margin-left: 1%;
	padding-top: 20px;
}

.News2_Box ul {
	position: relative;
	padding-left: 0;
	width: 100%;
	height: 50vw;
	list-style-type: none;
	/*border: 1px solid #000;*/
}

@media screen and (max-width: 800px) {
	.News2_Box ul {
		height: 500px;
	}
}

.News2_Box ul li {
	float: left;
	width: 100%;
	margin-top: 1vw;
	height: 15vw;
	/*border: 1px solid #000;*/
}

@media screen and (max-width: 800px) {
	.News2_Box ul li {
		margin-top: 10px;
		height: 150px;
	}
}

.News2_Box .Control_Box {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.News2_Box .Control_BoxOut {
	height: 32px;
	position: relative;
	width: 40%;
	margin-top: 25px;
	margin-bottom: 25px;
}

@media screen and (max-width: 800px) {
	.News2_Box .Control_BoxOut {
		height: 32px;
		position: relative;
		width: 80%;
		margin-top: 25px;
		margin-bottom: 25px;
	}
}

.News2_Box .Control_BoxOut .Btn_L,
.News2_Box .Control_BoxOut .Btn_R {
	cursor: pointer;
	text-align: center;
	position: absolute;
	width: 20%;
	top: 0;
	color: rgb(0, 119, 184);
	border-color: rgb(0, 119, 184);
	border-style: solid;
	background-color: #ffffff;
	transition: 0.5s;
}

.News2_Box .Control_BoxOut .Btn_L:hover,
.News2_Box .Control_BoxOut .Btn_R:hover {
	background-color: rgb(0, 119, 184);
	color: #ffffff;
}

.News2_Box .Control_BoxOut .Btn_L {
	left: 0;
}

.News2_Box .Control_BoxOut .Page_Show {
	text-align: center;
	position: absolute;
	width: 30%;
	left: 33.3%;
	top: 0;
}

.News2_Box .Control_BoxOut .Btn_R {
	right: 0;
}

.News2_Box ul li .PicBox {
	cursor: pointer;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.News2_Box ul li .PicBox .BGPic {
	position: absolute;
	overflow: hidden;
	left: 2.5%;
	top: 10%;
	width: 20%;
	height: 80%;
	transform: scale(1);
}

.News2_Box ul li .PicBox .Cover2 {
	color: #000;
	position: absolute;
	right: 2.5%;
	top: 10%;
	background-color: #ffffff;
	width: 70%;
	height: 80%;
	z-index: 10;
}

.News2_Box ul li .PicBox .BGPic:hover img {
	transform: scale(1.1);
}

.News2_Box ul li .PicBox .Cover2 .Title {
	width: 96%;
	margin-left: 2%;
	height: 28%;
	font-size: larger;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media screen and (max-width: 800px) {
	.News2_Box ul li .PicBox .Cover2 .Title {
		font-size: medium;
	}
}

.News2_Box ul li .PicBox:hover .Cover2 .Title {
	color: rgb(0, 119, 184);
}

.News2_Box ul li .PicBox .Cover2 .Article {
	position: absolute;
	width: 95%;
	margin-left: 2%;
	bottom: 0%;
	overflow: hidden;
	height: 70%;
	font-size: small;
}

@media screen and (max-width: 800px) {
	.News2_Box ul li .PicBox .Cover2 .Article {
		position: absolute;
		width: 95%;
		margin-left: 2%;
		bottom: 0%;
		overflow: hidden;
		height: 70%;
		font-size: small;
	}
}

.News2_Box ul li .PicBox .Cover2 .Article img {
	visibility: hidden;
	width: 0px;
	height: 0px;
}

.News2_Box ul li .PicBox .Cover2 .Article::after {
	content: "...";
	position: absolute;
	right: 0%;
	bottom: 0%;
}

.News2_Box ul li .PicBox .BGPic img {
	width: 100%;
	height: 100%;
	transition: 0.5s;
}

.NewsShow_Box {
	/*border: 1px solid #000;*/
	width: 100%;
}

.NewsShow_Box .CatalogBox {
	/*border: 1px solid #000;*/
	width: 96%;
	margin-left: 2%;
	padding-top: 30px;
	padding-bottom: 30px;
	height: 100px;
	cursor: default;
	color: #000000;
}

.NewsShow_Box .CatalogBox .Main,
.NewsShow_Box .CatalogBox .Title {
	font-size: 14px;
	float: left;
}

.NewsShow_Box .CatalogBox .Title {
	color: rgb(185, 185, 185);
}

.NewsShow_Box .CatalogBox .Main:hover {
	color: rgb(0, 119, 184);
}

.NewsShow_Box .ContentBox {
	min-height: 500px;
	color: #000000;
	margin-left: 2%;
	width: 96%;
}

.NewsShow_Box .ContentBox .Title {
	margin-top: 20px;
	font-size: 24px;
	font-weight: bold;
	color: rgb(0, 119, 184);
	width: 100%;
	text-align: center;
}

.NewsShow_Box .ContentBox .Title2 {
	margin-top: 20px;
	font-size: 14px;
	color: rgb(102, 102, 102);
	width: 100%;
	text-align: right;
}

.NewsShow_Box .ContentBox .Content {
	text-indent: 2em;
	margin-top: 20px;
	font-size: 14px;
}

/*Services*/
.Services_MapWhiteBox {
	width: 100%;
	height: 350px;
	background-color: #ffffff;
}

@media screen and (max-width: 800px) {
	.Services_MapWhiteBox {
		height: 800px;
	}
}

.Services_MapBlueBox {
	width: 100%;
	height: 350px;
	background-color: rgb(207, 226, 243);
}

@media screen and (max-width: 800px) {
	.Services_MapBlueBox {
		height: 800px;
	}
}

.Services_MapWhiteBox .OutBox,
.Services_MapBlueBox .OutBox {
	position: relative;
	width: 100%;
	height: 70%;
	top: 15%;
}

.Services_MapWhiteBox .Title,
.Services_MapBlueBox .Title {
	font-size: 20px;
	font-weight: bold;
	color: rgb(0, 119, 184);
}

.Services_MapWhiteBox .TextBox .Desc,
.Services_MapBlueBox .TextBox .Desc {
	margin-top: 5%;
}

.Services_MapWhiteBox .TextBox p,
.Services_MapBlueBox .TextBox p {
	font-size: 16px;
	line-height: 2;
	color: #666666;
	margin-bottom: 0;
}



.Services_MapWhiteBox .MapBox {
	float: left;
	position: relative;
	margin-left: 5%;
	width: 55%;
	height: 100%;
}

@media screen and (max-width: 800px) {
	.Services_MapWhiteBox .MapBox {
		float: none;
		margin-left: 5%;
		width: 90%;
		height: 60%;
	}
}

.Services_MapWhiteBox .MapBox .Map,
.Services_MapBlueBox .MapBox .Map {
	width: 100%;
	height: 100%;
}

.Services_MapWhiteBox .MapBox .Marker,
.Services_MapBlueBox .MapBox .Marker {
	position: relative;
	width: 25px;
	height: 34px;
}

.Services_MapWhiteBox .MapBox .Marker img,
.Services_MapBlueBox .MapBox .Marker img {
	width: 100%;
	height: 100%;
}

.Services_MapWhiteBox .TextBox {
	position: relative;
	float: right;
	margin-right: 5%;
	width: 30%;
	height: 100%;
}

@media screen and (max-width: 800px) {
	.Services_MapWhiteBox .TextBox {
		float: none;
		margin-left: 5%;
		width: 90%;
		height: 30%;
	}
}


.Services_MapBlueBox .MapBox {
	float: right;
	position: relative;
	margin-right: 5%;
	width: 55%;
	height: 100%;
}

@media screen and (max-width: 800px) {
	.Services_MapBlueBox .MapBox {
		float: none;
		margin-left: 5%;
		width: 90%;
		height: 60%;
	}
}

.Services_MapBlueBox .TextBox {
	float: left;
	position: relative;
	margin-left: 5%;
	width: 30%;
	height: 100%;
}

@media screen and (max-width: 800px) {
	.Services_MapBlueBox .TextBox {
		float: none;
		margin-left: 5%;
		width: 90%;
		height: 30%;
	}
}

.Services2_Box {
	margin-top: 50px;
	margin-left: 1%;
	margin-bottom: 50px;
	height: 300px;
	width: 98%;
	/*border-color: #000;
	border-style: solid;*/

}

.Services2_Box input,
.Services2_Box textarea {
	color: #666;
	background-color: rgb(237, 241, 245);
	border: none;
}

.Services2_Box input::placeholder,
.Services2_Box textarea::placeholder {
	color: rgb(185, 185, 185);
}

.Services2_Box input:focus,
.Services2_Box textarea:focus {
	border: none;
}

.Services2_Box .InputBox1 {
	height: 36px;
}

.Services2_Box .InputBox1 input {
	height: 36px;
	font-size: 16px;
	padding-top: 2px;
	padding-left: 10px;
	padding-right: 10px;
	overflow: hidden;
}

.Services2_Box .InputBox2 {
	margin-top: 15px;
}

.Services2_Box .InputBox2 textarea {
	height: 130px;
	padding-top: 2px;
	padding-left: 10px;
	padding-right: 10px;
}

.Services2_Box #Title,
.Services2_Box #Email {
	float: left;
	width: 47%;
	margin-left: 2%;
}

.Services2_Box #Content {
	width: 96%;
	margin-left: 2%;
	resize: none;
}

.Services2_Box .SendOutBox {
	margin-top: 15px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.Services2_Box .Send {
	font-weight: bold;
	cursor: pointer;
	text-align: center;
	width: 80px;
	height: 32px;
	color: rgb(0, 119, 184);
	border-color: rgb(0, 119, 184);
	border-style: solid;
	background-color: #ffffff;
	transition: 0.5s;
}

.Services2_Box .Send:hover {
	color: #ffffff;
	background-color: rgb(0, 119, 184);
}

/*Join Us*/
.Join_PositionBox {
	position: relative;
	width: 95%;
	margin-left: 2.5%;
}

.Join_PositionBox ul {
	width: 100%;
	list-style-type: none;
	padding: 0;
	min-height: 440px;
}

.Join_PositionBox ul li {
	cursor: pointer;
	margin-top: 10px;
	margin-bottom: 10px;
	position: relative;
	margin-left: 10%;
	width: 80%;
	height: 220px;
	color: rgb(152, 152, 152);
	background-color: #ffffff;
	transition: 0.3s;
}

@media screen and (max-width: 800px) {
	.Join_PositionBox ul li {
		margin-left: 5%;
		width: 90%;
		height: 280px;
	}
}

.Join_PositionBox ul li:hover {
	background-color: rgb(0, 119, 184);
	color: #ffffff;
}

.Join_PositionBox ul li:hover .Title,
.Join_PositionBox ul li:hover .More {
	color: #ffffff;
}

.Join_PositionBox ul li .Time {
	position: relative;
	width: 80%;
	height: 32px;
	margin-left: 10%;
	margin-top: 20px;
	font-weight: bolder;
	font-size: 16px;
	transition: 0.3s;
}

.Join_PositionBox ul li .Title {
	position: relative;
	color: #000000;
	width: 80%;
	height: 32px;
	margin-left: 10%;
	margin-top: 10px;
	font-weight: bolder;
	font-size: 16px;
	transition: 0.3s;
}

.Join_PositionBox ul li .Desc {
	position: relative;
	width: 80%;
	height: 70px;
	margin-left: 10%;
	margin-top: 10px;
	overflow: hidden;
	font-size: 12px;
	transition: 0.3s;
}

.Join_PositionBox ul li .Desc img {
	width: 0px;
	height: 0px;
	visibility: hidden;
}

.Join_PositionBox ul li .More {
	width: 80%;
	position: absolute;
	height: 32px;
	margin-left: 10%;
	bottom: 0;
	color: rgb(0, 119, 184);
	overflow: hidden;
	font-weight: bold;
	font-size: 12px;
	transition: 0.3s;
}

/*Products*/
.Products_FriendsBox {
	width: 100%;
}

.Products_FriendsBox ul {
	position: relative;
	margin-top: 40px;
	width: 88%;
	margin-left: 6%;
	list-style-type: none;
	padding: 0;
	height: 1200px;
	/*border: #000 solid 1px;*/
}

@media screen and (max-width: 800px) {
	.Products_FriendsBox ul {
		height: 2400px;
	}
}

.Products_FriendsBox ul li {
	cursor: pointer;
	position: relative;
	float: left;
	height: 280px;
	width: 24%;
	margin-left: 0.5%;
	margin-right: 0.5%;
	margin-top: 10px;
	margin-bottom: 10px;
}

@media screen and (max-width: 800px) {
	.Products_FriendsBox ul li {
		cursor: pointer;
		position: relative;
		float: left;
		height: 280px;
		width: 48%;
		margin-left: 1%;
		margin-right: 1%;
		margin-top: 10px;
		margin-bottom: 10px;
	}
}

.Products_FriendsBox ul li .PicBox {
	margin-left: 20%;
	margin-top: 5%;
	height: 30%;
	width: 60%;
	/*border: #000 solid 1px;*/
}

.Products_FriendsBox ul li .PicBox img {
	height: 100%;
	width: 100%;
}

.Products_FriendsBox ul li .Desc {
	position: absolute;
	color: rgb(102, 102, 102);
	font-size: 14px;
	width: 90%;
	height: 50%;
	left: 5%;
	bottom: 5%;
	overflow: hidden;
}

.Products_BlueBox {
	width: 100%;
	background-color: rgb(207, 226, 243);
}

.Products_BlueBox ul {
	position: relative;
	list-style-type: none;
	padding: 0;
	width: 90%;
	margin-left: 5%;
	height: 340px;

	margin-bottom: 0;
	/*border: #000 solid 1px;*/
}

@media screen and (max-width: 800px) {
	.Products_BlueBox ul {
		height: 680px;
	}
}

.Products_BlueBox ul li {
	float: left;
	position: relative;
	width: 14%;
	height: 80px;
	margin-left: 1.33%;
	margin-right: 1.33%;
	margin-top: 10px;
	/*border: #000 solid 1px;*/
}

@media screen and (max-width: 800px) {
	.Products_BlueBox ul li {
		width: 28%;
		margin-left: 2.66%;
		margin-right: 2.66%;
	}
}

.Products_BlueBox ul li:hover .PicBox img {
	transform: scale(1);
}

.Products_BlueBox ul li .PicBox {
	cursor: pointer;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.Products_BlueBox ul li img {
	width: 100%;
	height: 100%;
	transition: 0.5s;
	transform: scale(0.9);
}

.Products2_ShowBox {
	width: 100%;
	min-height: 900px;
}

.Products2_ShowBox_L {
	float: left;
	position: relative;
	top: 30px;
	left: 2%;
	width: 20%;
	min-height: 800px;
	/*border: #000 solid 1px;*/
}

@media screen and (max-width: 800px) {
	.Products2_ShowBox_L {
		left: 1%;
		width: 25%;
	}
}

.Products2_ShowBox_L ul {
	position: absolute;
	height: 100%;
	width: 100%;
	list-style-type: none;
	padding: 0;
	overflow-y: scroll;
	margin-bottom: 0;
}

.Products2_ShowBox_L ul li {
	position: relative;
	cursor: pointer;
	width: 96%;
	height: 6%;
	margin-top: 0.5%;
	margin-bottom: 0.5%;
	margin-left: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.Products2_ShowBox_L ul .Fire {
	background-color: rgb(0, 119, 184);
	text-decoration: none;
	-webkit-box-shadow: 0px 8px 16px -2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 8px 16px -2px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 8px 16px -2px rgba(0, 0, 0, 0.2);
	transform: translateY(-10px);
	transform: translateX(-2px);
}

.Products2_ShowBox_L ul .Fire .TextBox {
	color: rgb(255, 255, 255);
}

.Products2_ShowBox_L ul li .TextBox {
	cursor: pointer;
	width: 100%;
	color: rgb(0, 0, 0);
	font-size: 15px;
	font-weight: bold;
	text-indent: 1em;
}

@media screen and (max-width: 800px) {
	.Products2_ShowBox_L ul li .TextBox {
		cursor: pointer;
		width: 100%;
		color: rgb(0, 0, 0);
		font-size: 13px;
		font-weight: bold;
		text-indent: 1em;
	}
}

.Products2_ShowBox_L ul li:hover {
	background-color: rgb(0, 119, 184);
}

.Products2_ShowBox_L ul li:hover .TextBox {
	color: rgb(255, 255, 255);
}

.Products2_ShowBox_R {
	position: relative;
	top: 30px;
	margin-left: 28%;
	min-height: 800px;
	width: 70%;
	/*border: #000 solid 1px;*/
}

@media screen and (max-width: 800px) {
	.Products2_ShowBox_R {
		right: 1%;
	}
}

.Products2_ShowBox_R ul {
	list-style-type: none;
	padding: 0;
	margin-bottom: 0;
	width: 100%;
	min-height: 700px;
	/*border: #000 solid 1px;*/
}

.Products2_ShowBox_R ul li {
	cursor: pointer;
	position: relative;
	margin-left: 0.5%;
	margin-right: 0.5%;
	margin-top: 25px;
	margin-bottom: 25px;
	float: left;
	width: 32.3%;
	height: 300px;
	/*border: #000 solid 1px;*/
}

@media screen and (max-width: 800px) {
	.Products2_ShowBox_R ul li {
		float: none;
		margin-left: 10%;
		margin-right: 10%;
		margin-top: 10px;
		margin-bottom: 10px;
		width: 80%;
		height: 200px;
		/*border: #000 solid 1px;*/
	}
}

.Products2_ShowBox_R ul li .ProductsDesc_Box {
	width: 100%;
	height: 100%;
}

.Products2_ShowBox_R ul li .ProductsDesc_Box img {
	position: absolute;
	top: 2%;
	left: 5%;
	width: 90%;
	height: 75%;
	/*border: #000 solid 1px;*/
}

.Products2_ShowBox_R ul li .ProductsDesc_Box .Title {
	position: absolute;
	text-align: center;
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	line-height: 40px;
	background-color: rgb(243, 243, 243);
	width: 100%;
	height: 40px;
	bottom: 0%;
	left: 0%;
	transition: 0.5s;
}

.Products2_ShowBox_R ul li:hover .ProductsDesc_Box .Title {
	background-color: rgb(0, 119, 184);
	color: #ffffff;
}

.Products2_ShowBox_R .Control_Box {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 800px) {
	.Products2_ShowBox_R .Control_Box {
		margin-bottom: 20px;
	}
}

.Products2_ShowBox_R .Control_BoxOut {
	height: 32px;
	position: relative;
	width: 40%;
	margin-top: 15px;
	margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
	.Products2_ShowBox_R .Control_BoxOut {
		height: 32px;
		position: relative;
		width: 80%;
		margin-top: 15px;
		margin-bottom: 25px;
		font-size: 8px;
	}
}

.Products2_ShowBox_R .Control_BoxOut .Btn_L,
.Products2_ShowBox_R .Control_BoxOut .Btn_R {
	cursor: pointer;
	text-align: center;
	position: absolute;
	width: 20%;
	top: 0;
	color: rgb(0, 119, 184);
	border-color: rgb(0, 119, 184);
	border-style: solid;
	background-color: #ffffff;
	transition: 0.5s;
}

.Products2_ShowBox_R .Control_BoxOut .Btn_L:hover,
.Products2_ShowBox_R .Control_BoxOut .Btn_R:hover {
	background-color: rgb(0, 119, 184);
	color: #ffffff;
}

.Products2_ShowBox_R .Control_BoxOut .Btn_L {
	left: 0;
}

.Products2_ShowBox_R .Control_BoxOut .Page_Show {
	text-align: center;
	position: absolute;
	width: 30%;
	left: 33.3%;
	top: 0;
}

.Products2_ShowBox_R .Control_BoxOut .Btn_R {
	right: 0;
}

.Products3_ShowBox_R {
	position: relative;
	margin-top: 30px;
	margin-left: 28%;
	min-height: 800px;
	width: 70%;
	/*border: #000 solid 1px;*/
}

@media screen and (max-width: 800px) {
	.Products3_ShowBox_R {
		right: 1%;
	}
}

.Products3_ShowBox_R .DisplayBox {
	position: relative;
	margin-top: 0;
	width: 100%;
	height: 400px;
	/*border: #000 solid 1px;*/
}

@media screen and (max-width: 800px) {
	.Products3_ShowBox_R .DisplayBox {
		height: 250px;
	}
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxL {
	position: absolute;
	top: 25%;
	left: 0;
	width: 30%;
	height: 50%;
	overflow: hidden;
	cursor: move;
	/*border: #000 solid 1px;*/
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxL img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxL .DisplayBoxL_Cover {
	position: absolute;
	left: 0;
	top: 0;
	visibility: visible;
	background: rgba(0, 0, 0, 0.2);
	width: 50%;
	height: 50%;
	z-index: 9;
	/*border: #000 solid 1px;*/
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxL .DisplayBoxL_Cover2 {
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	background: rgba(0, 0, 0, 0.2);
	width: 50%;
	height: 50%;
	z-index: 2;
	/*border: #000 solid 1px;*/
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxL_Control {
	position: relative;
	width: 100%;
	height: 60%;
}

@media screen and (max-width: 800px) {
	.Products3_ShowBox_R .DisplayBox .DisplayBoxL_Control {
		position: relative;
		width: 100%;
		height: 90%;
	}
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxL_ControlOut {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30%;
	height: 15%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	/*border: #000 solid 1px;*/
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxL_Control .BtnL,
.Products3_ShowBox_R .DisplayBox .DisplayBoxL_Control .BtnR {
	cursor: pointer;
	position: absolute;
	top: 0;
	width: 25%;
	color: rgb(0, 119, 184);
	transform: 0.5s;
	/*border: #000 solid 1px;*/
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxL_Control .BtnL:hover,
.Products3_ShowBox_R .DisplayBox .DisplayBoxL_Control .BtnR:hover {
	background-color: rgb(0, 119, 184);
	color: #ffffff;
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxL_Control .BtnL {
	left: 0;
	text-align: center;
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxL_Control .BtnR {
	right: 0;
	text-align: center;
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxL_Control .PageShow {
	position: absolute;
	top: 0;
	left: 28%;
	width: 44%;
	color: rgb(0, 119, 184);
	/*border: #000 solid 1px;*/
	text-align: center;
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxR {
	position: absolute;
	width: 60%;
	height: 100%;
	visibility: visible;
	right: 0;
	overflow: hidden;
	/*border: #000 solid 1px;*/
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxR2 {
	position: absolute;
	width: 60%;
	height: 100%;
	visibility: hidden;
	right: 0;
	overflow: hidden;
	/*border: #000 solid 1px;*/
}

.Products3_ShowBox_R .DisplayBox .DisplayBoxR img {
	position: absolute;
	width: 200%;
	height: 200%;
}

.Products3_ShowBox_R .TextBox {
	position: relative;
	width: 100%;
	/*border: #000 solid 1px;*/
}

.Products3_ShowBox_R .TextBox .Title {
	color: rgb(0, 119, 184);
	margin-top: 20px;
	height: 32px;
	width: 100%;
	font-size: 24px;
	line-height: 32px;
	font-weight: bold;
	text-align: left;
}

.Products3_ShowBox_R .TextBox .Content {
	position: relative;
	margin-top: 30px;
	margin-bottom: 30px;
	color: rgb(0, 0, 0);
	width: 100%;
	font-size: 14px;
	text-align: left;
}

.Products3_ShowBox_R .TextBox p {
	position: relative;
	text-indent: 2em;
}