/* @@navbar2 
--------------------------------------------------------*/
.itscNavBar {
	background-image: url('../image/banner.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 80% 50%;
	position: relative;
}

.itscNavBar-robot-box {
	height: 100%;
	width: 40%;
	transition: all .5s;
}

.itscNavBar-robot-box a:hover {
	color: #fff;
}

.robotandTreeBox {
	display: flex;
	justify-content: space-between;
	padding-top: 40px;
	height: 480px;
	overflow: hidden;
}

.robotBox {
	width: 50%;
	height: 400px;
}

.robotPositionBox {
	position: relative;
	height: 400px;
	width: 360px;
}

.robot-body {
	width: 310px;
	z-index: 10;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.robot-arm {
	position: absolute;
	width: 120px;
	right: -10px;
	top: 140px;
	transform-origin: bottom left;
	animation: robotArm 1s 2;
	z-index: 11;
}

.treeBox {
	width: 50%;
	height: 100%;
	position: relative;
}

.robot-tree {
	width: 440px;
	right: 20px;
	position: absolute;
	transition: all .5s;
}

.robot-bubble-box {
	position: absolute;
	width: 622px;
	height: 200px;
	right: -580px;
	top: -15px;
	z-index: 13;
}

.robot-bubble-text {
	position: absolute;
	width: 80%;
	height: 74%;
	top: 8%;
	right: 2%;
	padding: 20px;
	word-wrap: break-word;
	color: #fff;
	font-size: 23px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.robot-bubble {
	opacity: 0;
	position: absolute;
	animation: bubbleShow .5s 1 forwards;
	animation-delay: 2s;
}

.robot-light {
	width: 300px;
	position: absolute;
	bottom: -10%;
	left: 50%;
	transform: translate(-50%);
	z-index: 9;
}

.logoandSearchBox {
	height: 170px;
	position: sticky;
	top: 0;
	background-color: rgba(0, 114, 188, 1);
	z-index: 999;
}

.itscNavBarBgCustom {
	background-image: unset;
	background-size: unset;
	background-repeat: unset;
	background-position: unset;
	background-color: #0072bb;
}

@keyframes robotComeIn {
	0% {
		left: -20%;
	}

	100% {
		left: 0%;
	}
}

@keyframes robotArm {
	0% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(10deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

@keyframes bubbleShow {
	0% {
		opacity: 0;
		width: 10px;
		left: 0px;
		bottom: 0px;
	}

	100% {
		opacity: 1;
		width: 620px;
		left: 0;
		bottom: 0;
	}
}

.itscNavBar-logo {
	display: flex;
	align-items: center;
	height: 120px;
	color: #fff;
	font-size: 20px;
	z-index: 30;
}

.itscNavBar-logo a {
	cursor: pointer;
}

.uicLogo {
	height: 75px;
	min-height: 40px;
}

.itscLogo {
	width: 80px;
	display: none;
}

.navBtnPalce {
	display: none;
}

.fullName {
	display: block;
}

.itscNavBar-bar {
	height: 120px;
	display: flex;
	justify-content: flex-end;
	z-index: 99;
}

.itscNavBar-bar-search {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	top: -3px;
}

.itscNavBar-bar-search input {
	background-color: rgba(255, 255, 255, .3);
	border-radius: 8px !important;
	border: unset;
	color: #fff;
	font-size: 16px;
}

.itscNavBar-bar-search .languageChange {
	color: #fff;
	margin-left: 20px;
	font-size: 16px;
	white-space: nowrap;
	cursor: pointer;
}

.itscNavBar-navbar {
	color: #fff;
	font-size: 16px;
	margin-top: 20px;
	display: flex;
	justify-content: flex-end;
	position: absolute;
	right: 14px;
	bottom: -30px;
}

.itscNavBar-navbar a {
	cursor: pointer;
	color: #fff;
	text-decoration: none;
}

.itscNavBar-navbar div {
	padding: 5px 20px;
	font-size: 20px;
	white-space: nowrap;
}

.itscNavBar-navbar .navListItem:nth-last-child(2)>div {
	padding-right: 0;
}

.itscNavBar-navbar div:hover {
	/* background-color: rgba(255, 255, 255, .3);
	border-radius: 4px; */
	color: #00C8FF;
}

.itscNavBar-navbar .active {
	/* background-color: rgba(255, 255, 255, .3);
	border-radius: 4px; */
	color: #00C8FF;
}

.itscNavBar-navbar-btn {
	display: none;
	font-size: 20px;
	z-index: 40;
	cursor: pointer;
}

.itscNavBar-navbar-list {
	position: absolute;
	width: calc(100% + 15px);
	left: -15px;
	background-color: rgba(0, 114, 188, 1);
	top: 40px;
	overflow: hidden;
	font-size: 16px;
	height: 0px;
	transition: all .5s;
	z-index: 30;
}

.itscNavBar-navbar-list>a {
	text-decoration: none;
	color: #fff;
}

.itscNavBar-navbar-list>a>div {
	padding: 10px 35px;
	height: 45px;
	cursor: pointer;
	position: relative;
}

.itscNavBar-navbar-list>a>div::before {
	position: absolute;
	content: '';
	bottom: -1px;
	left: 34px;
	width: 91%;
	border-bottom: 1px dashed rgba(255, 255, 255, .3);
	z-index: 1;
}

.itscNavBar-navbar-list>a>div:hover {
	background-color: #488fd3;
	color: #fff;
	z-index: 10;
	border-bottom: 1px solid rgba(255, 255, 255, .6);
}

.input-group {
	margin: 0;
}

.languageChange a {
	color: #fff !important;
}

.itsc-nameEnCn {
    display: block;
    text-decoration: none !important;
    cursor: pointer;
    margin-top: 7px;
    width: 270px;
    margin-left: 20px;
    flex-shrink: 0;
}

.itsc-nameEnCn div {
	width: 100%;
	display: inline-block;
	text-align: justify;
	text-align-last: justify;
	line-height: 35px;
	color: #fff;
}

.itsc-nameEnCn div:after {
	content: '';
	width: 100%;
	display: inline-block;
}

.itsc-nameEnCn .cn {
	font-size: 22px;
}

.itsc-nameEnCn .en {
	font-size: 15px;
	white-space: nowrap;
}

@media screen and (max-width:1420px) {


	.robot-tree {
		transform: scale(0.6);
		right: -60px;
		bottom: -88px;
	}
}
@media screen and (max-width: 1350px) {
	.itscNavBar-navbar div {
		padding: 10px;
		font-size: 18px;
	}
        .itscNavBar-navbar{
                bottom: -40px;
        }
}
@media screen and (max-width:1270px) {}

@media screen and (max-width:1200px) {

	.fullName {
		display: none;
	}

	.itscLogo {
		display: block;
	}
}

@media screen and (max-width:1080px) {}

@media screen and (max-width:1020px) {

	.robot-body {
		width: 270px;
	}

	.robot-arm {
		width: 100px;
		right: 14px;
	}

	.robot-light {
		bottom: 0%;
	}

	.robot-bubble-box {
		right: -449px;
		top: 20px;
		width: 496px;
		height: 155px;
	}


	.robot-bubble-text {
		width: 79%;
		height: 79%;
		top: 9%;
		right: 5%;
		font-size: 19px;
		padding: 15px;
	}

	.robot-bubble {
		transform: scale(0.8);
		margin-left: -75px;
		margin-bottom: -23px;
	}

	.robot-tree {
		display: none;
	}

	.robotandTreeBox {
		height: 440px;
	}
}
@media screen and (max-width: 960px){
.itscNavBar-navbar div {
    padding: 10px;
    font-size: 16px;
}
.itsc-nameEnCn {
		margin-left: 20px;
		width: 210px;
	}
}

@media screen and (max-width:950px) {
	.uicLogo {
		height: 50px;
	}

	.itscNavBar-logo div {
		margin-left: unset;
	}

	.itsc-nameEnCn .cn {
		font-size: 18px;
	}

	.itsc-nameEnCn .en {
		font-size: 12px;
	}

	.itsc-nameEnCn div {
		line-height: 23px;
	}
}
@media screen and (max-width:884px) {
	.itscNavBar-navbar div {
		padding: 10px;
		font-size: 16px;
	}
}
@media screen and (max-width:880px) {
	.logoandSearchBox {
		height: 130px;
	}

	.itscNavBar-navbar {
		bottom: -55px;
		right: 8px;
	}

	.itscNavBar-bar-search .languageChange {
		margin-left: 10px;
	}

	.itscNavBar-bar {
		height: unset;
		justify-content: flex-end;
                width:100%;
		top: -100px;
	}

	.itscNavBar-logo {
		justify-content: flex-start;
		top: -25px;
	}

	.navBtnPalce {
		display: block;
	}

	.uicLogo {
		height: 40px;
	}

	.itscLogo {
		width: 50px;
	}

	.itscNavBar-navbar>a {
		display: none;
	}

	.itscNavBar-navbar-btn {
		display: block;
		padding: 10px;
	}

	.itscNavBar-navbar-list {
		top: 110px;
	}


}
@media screen and (max-width:840px) {
	.robotandTreeBox {
		height: 310px;
	}

	.robotBox {
		width: 100%;
		height: 250px;
	}

	.robot-body {
		width: 180px;
	}

	.robot-arm {
		width: 70px;
		right: 10px;
		top: 95px;
	}

	.robot-light {
		width: 200px;
		bottom: -6%;
	}

	.robot-bubble-box {
		right: -465px;
		top: -34px;
	}

	.itscNavBar-robot-box {
		height: 100%;
		width: 100%;
	}

	.robotPositionBox {
		height: 250px;
		width: 240px;
	}
}
@media screen and (max-width:745px) {
	.robotPositionBox {
		height: 250px;
		width: 160px;
	}

	.robotandTreeBox {
		height: 260px;
	}

	.robot-body {
		width: 140px;
	}

	.robot-arm {
		width: 51px;
		right: 0px;
		top: 83px;
	}

	.robot-light {
		width: 150px;
		bottom: 17%;
	}

	.robot-bubble-box {
		right: -353px;
		top: -13px;
		width: 372px;
		height: 116px;
	}

	.robot-bubble {
		transform: scale(0.6);
		margin-left: -130px;
		margin-bottom: -42px;
	}

	.robot-bubble-text {
		width: 79%;
		height: 78%;
		top: 8%;
		right: 4%;
		font-size: 14px;
		padding: 10px;
	}

	@keyframes bubbleShow {
		0% {
			opacity: 0;
			width: 10px;
			left: 126px;
			bottom: 40px;
		}

		100% {
			opacity: 1;
			width: 620px;
			left: 0;
			bottom: 0;
		}
	}

}


@media screen and (max-width:680px) {
	.itsc-nameEnCn {
		position: relative;
		left: -166px;
		top: 53px;
	}
}

@media screen and (max-width:660px) {
	.input-group .form-control {
		float: right;
		width: 90%;
	}
}

@media screen and (max-width:540px) {
	.robotPositionBox {
		height: 250px;
		width: 110px;
	}

	.robotandTreeBox {
		height: 200px;
		padding-top: 50px;
	}

	.robot-body {
		width: 100px;
	}

	.robot-arm {
		width: 40px;
		right: -5px;
		top: 55px;
	}

	.robot-light {
		width: 100px;
		bottom: 42%;
	}

	.robot-bubble-box {
		right: -241px;
		top: -9px;
		width: 248px;
		height: 78px;
	}

	.robot-bubble {
		transform: scale(0.4);
		margin-left: -193px;
		margin-bottom: -61px;
	}

	.robot-bubble-text {
		width: 79%;
		height: 78%;
		top: 8%;
		right: 5%;
		font-size: 12px;
		padding: 5px;
	}

	@keyframes bubbleShow {
		0% {
			opacity: 0;
			width: 10px;
			left: 180px;
			bottom: 50px;
		}

		100% {
			opacity: 1;
			width: 620px;
			left: 0;
			bottom: 0;
		}
	}


}

@media screen and (max-width:460px) {
	.logoandSearchBox {
		height: 220px;
	}

	.itscNavBar-logo {
		flex-direction: column;
		top: 70px;
	}

	.itscNavBar-logo a {
		left: unset;
		top: unset;
		transform: unset;
	}

	.uicLogo {
		height: 60px;
	}

	.itsc-nameEnCn {
		margin-left: unset;
		margin-top: 25px;
	}

	.itscNavBar-navbar-list {
		top: 200px;
	}

	.itscNavBar-navbar div {
		position: relative;
		top: 85px;
	}


}

@media screen and (max-width:374px) {
	.robotBox {
		display: none;
	}

	.robotandTreeBox {
		height: 10px;
	}
}

.form-control:focus {
	border: 1px solid #fff;
	box-shadow: none;
}

/* @@navbar3 
--------------------------------------------------------*/
.square-item1 {
	min-width: 170px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	margin: 15px;
	border: 1px solid #999999;
	box-shadow: 0px 2px 14px 1px rgba(0, 0, 0, 0.35);
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	-webkit-transform: perspective(2500px) rotateY(0);
	transform: perspective(2500px) rotateY(0);
	-webkit-transition-duration: .8s;
	-o-transition-duration: .8s;
	transition-duration: .8s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	cursor: pointer;
}

.square-item1::before {
	content: '';
	position: absolute;
	width: 120px;
	height: 100%;
	background-image: url(../image/parallelogram-light.png);
	background-size: cover;
	background-repeat: no-repeat;
	top: 0;
	left: 47%;
	transform: translateX(-50%);
	z-index: 2;
	transition: all 0.6s;
}

.active .square-item1::before {
	background-image: url(../image/parallelogram-dark.png);
}

.square-item1:hover::before {
	opacity: 0;
	transition: unset;
}

.square-item1::after {
	background-color: #2E75B6;
}

.square-item1:after {
	content: '';
	position: absolute;
	z-index: 1;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	width: 100%;
	height: 0;
	top: 50%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-50deg);
	transform: translateX(-50%) translateY(-50%) rotate(-50deg);
}

.square-item1 span {
	display: inline-block;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	color: #235a8b;
	position: relative;
	z-index: 2;
}

.second-nav-box {
       margin:40px 0 0 0;
}

.second-nav-box li.active .square-item1 {
	background: #0072BC;
}

.second-nav-box li.active .square-item1 span {
	color: #fff;
}

.site-list-wrap ul,
.navbar ul,
.staff-box .people-box .intro,
.second-nav-box ul,
.left-nav-box,
.breadcrumb-box ul {
	list-style: none;
	padding: 0;
}

.second-nav-box .wrap ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
        width:100%;
}

.second-nav-box .wrap li a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 16px;
	color: #919191;
	transition: all .1s;
	padding: 10px 15px;
	text-align: center;
	text-decoration: none;
}

.second-nav-box .wrap li.active a,
.second-nav-box .wrap li a:hover {
	font-weight: bold;
	color: #235a8b;
}

.second-nav-box .wrap li.active a,
.second-nav-box .wrap li a:hover {
	font-weight: bold;
	color: #235a8b;
}

@media (max-width: 1200px) {
.second-nav-box {
       margin:20px 0;
}
}


@media (max-width: 768px) {
	.second-nav-box .wrap li {
		width: 50%;
	}

	.square-item1 {
		margin: 10px;
	}
}

@media (max-width: 580px) {
	.second-nav-box .wrap li {
		width: 50%;
	}

	.square-item1 span {
		font-size: 15px;
		white-space: nowrap;
	}
}

@media (max-width: 375px) {
	.second-nav-box .wrap li {
		width: 100%;
	}

	.square-item1 span {
		font-size: 16px;
	}
}

.square-item1:hover:after {
	opacity: 1;
	height: 440%;
	color: #fff;
}

.square-item1::after {
	background-color: #2E75B6;
}

.square-item1:hover span {
	color: #fff;
}

@media (min-width: 1057px) {
	.second-nav-box .wrap .container {
		width: auto;
	}
}

@media (max-width: 1200px) {
	.second-nav-box .wrap ul {
		flex-wrap: wrap;
	}
}


/* @downloadList */
.download-list {
	margin-top: 40px;
}

.download-list a {
	color: #000;
}

.download-item {
	border: 1px solid #eaeaea;
	overflow: hidden;
	height: 220px;
	cursor: pointer;
	transition: all .5s;
	margin-bottom: 40px;
}

.download-item:hover {
	box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
	transform: translateY(-5px);
}

.download-item>img,
.download-item>div {
	float: left;
}

.download-item>div {
	width: calc(100% - 260px);
	height: 100%;
}

.download-item img {
	width: 260px;
	height: 100%;
	object-fit: cover;
}

.download-item-desc {
	padding: 20px 40px;
	font-size: 18px;
}

.download-item-desc>div {
	margin-bottom: 10px;
}

.download-item-desc>div:last-child {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
}

.download-item-desc>div:first-child {
	color: #058dff;
}

.download-item-desc a {
	color: #058dff;
	margin-right: 15px;
}

@media screen and (max-width:700px) {
	.download-item {
		height: 180px;
	}

	.download-item img {
		width: 30%;
	}

	.download-item>div {
		width: 70%;
	}

	.download-item-desc {
		padding: 20px;
		font-size: 16px;
	}

	.download-item-desc>div:last-child {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		overflow: hidden;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
	}
}

@media screen and (max-width:500px) {
	.download-item {
		height: 117px;
	}

	.download-item-desc>div {
		margin-bottom: 5px;
	}

	.download-item-desc>div:last-child {
		-webkit-line-clamp: 2;
	}

	.download-item-desc {
		padding: 10px;
		font-size: 13px;
	}

}


/* @@footerBox 
--------------------------------------------------------*/
.itsc-footerBox {
    width: 100%;
    min-height: 300px;
    color: #fff;
    background-color: #0072bb;
    padding: 10px 0;
    margin-top: 50px;
}

.itsc-footerBox .container {
    position: relative;
}

.itsc-footerBox .container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.itsc-footerBox-contactList {
    display: flex;
    justify-content: center;
    align-items: center;
}

.itsc-footerBox-contactList p {
    margin: 0;
    display: inline-block;
}

.itsc-footerBox-contactList>a {
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
}

.itsc-footerBox-contactList>a:hover {
    text-decoration: unset;
    color: #fff;
}

.itsc-footerBox-contactList>a>img {
    width: 50px;
}

.itsc-footerBox-contactList>a:nth-child(2) {
    margin: 0 40px;
}

.wxcode {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.wxcode img {
    width: 80px;
}

.wxcode div {
    margin-top:10px;
    text-align: center;
    white-space: nowrap;
}

.itsc-footerBox p {
    text-align: center;
}

.itsc-footerBox-address {
    margin-top: 30px;
}

@media screen and (max-width:991px) {
    .itsc-footerBox-contactList>a {
        font-size: 16px;
    }

    .wxcode>img {
        width: 60px;
    }

    .itsc-footerBox-contactList>a:nth-child(2) {
        margin: 0 20px;
    }
}

@media screen and (max-width:590px) {
    .itsc-footerBox-contactList {
        flex-direction: column;
    }

    .itsc-footerBox-contactList>a {
        width: 270px;
        margin: 20px 0;
    }

    .wxcode {
        margin: 20px 0;
    }

    .wxcode>img {
        width: 80px;
    }

    .wxcode>div {
        display: block;
        margin-top: 10px;
        font-size: 16px;
    }

    .itsc-footerBox .container h2 {
        margin-bottom: 20px;
    }

    .itsc-footerBox-address {
        margin-top: 0px;
    }
}

/* @@content
 ---------------------------------------------*/
.singleArticle {
	margin-top: 40px;
}

p {
	font-size: 16px;
}
.article-img{
                object-fit: cover;float: left;width: 40%;
            }
            .article-box{
                padding-left: 40px;float: left;width: 60%;
            }
            .article-title{
                position: relative;
                font-size: 26px;color: #3b81c2;
                margin-bottom:40px;
            }
            .aboutus{
                position: relative;
                padding-left: 30px;
                margin-bottom: 20px;
                font-size: 26px;color: #3b81c2;
            }
            .aboutus::before{
                position: absolute;
                content: "";
                width: 10px;
                height: 10px;
                background-color: #3b81c2;
                left: 0px;
                top: 9px;
            }
            .aboutus::after{
                position: absolute;
                content: "";
                width: 10px;
                height: 10px;
                background-color: #ffa800;
                left: 10px;
                top: 19px;
            }
 @media screen and (max-width:767px){
                .article-img,.article-box{
                    width: 100%;
                }
                .article-box{
                    margin-top: 40px;
                    padding-left: 0px;
                }
            }

/* @@accordion
 -----------------------------------------*/
.accordionModel {
	margin-top: 80px;
}

.accordion-box {
	box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.accordion-box #vsb_content * {
	font-size: 16px !important;
	line-height: 25px !important;
}

.accordion-box #vsb_content a {
	color: rgb(54, 96, 146) !important;
	text-decoration: underline !important;
}

.accordionTitle {
	padding-left: 90px;
	background: url('../image/t3.svg') no-repeat left center;
	margin-bottom: 20px;
	margin-top: 20px;
}

.accordionTitle,
.accordionTitle * {
	font-size: 30px;
	line-height: 70px;
	color: #2177ca;
}

.accrodingDesc {
}

.accrodingDesc,
.accrodingDesc * {
	font-size: 14px;
    margin-bottom: 20px;
}

/* 打开和关闭手风琴面板的样式 */
.accordion {
	background-color: #fff;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
	border: 1px solid #E0E0E0;
	line-height: 100%;
	font-size: 16px;
	color: #2177ca;
	border-bottom: none;
}

.container .accordion:not(:nth-last-child(2)) {
	border-bottom: none;
}

.container .accordion:last-child {
	border-left: none;
	border-right: none;
	padding: 0px;
}

/* 设置点击和鼠标移到选项上面时（悬停）的样式 */
/* .active, .accordion:hover {
   background-color: #ccc;
 } */

/* 为手风琴面板设计样式。 默认隐藏 */
.panel2 {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	border-left: 1px solid #E0E0E0;
	border-right: 1px solid #E0E0E0;
}

/* 设置 +、- 标志 */
.accordion:after {
	content: "\002B";
	color: #2177ca;
	font-weight: bold;
	float: right;
	margin-left: 5px;
	transition: transform .3s;
	font-size: 20px;
}

.accordion-box .accordion:last-child::after {
	display: none;
}

.panel2 p {
	padding: 0px 0px 10px 0;
}

.accordion.active::after {
	transform: rotate(45deg);
}

.accordion2 {
	background-color: #fff;
	width: 100%;
	border: none;
	outline: none;
	transition: 0.4s;
	//border: 1px solid #E0E0E0;
	padding: 0px;
}

@media screen and (max-width:767px) {
	.accordionTitle {
		font-size: 24px;
		padding-left: 80px;
		background-size: 60px;
	}
}


/* @@searchResult
 -------------------------------------------------*/
.searchBox {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.searchBox>form>.formInput {
	font-size: 20px;
	height: 50px;
	border-radius: 5px;
	border: 1px solid #a8a8a8;
	padding: 5px 10px;
}

.searchBox>form>.formInput:focus-visible {
	outline: none;
}

.searchBox,
.searchBox>form {
	width: 100%;

}

.searchBox>form>.formInput {
	width: 100%;
}

.formBtn {
	position: absolute;
	right: 0px;
}

.formBtn span {
	position: absolute;
	left: 50%;
	top: 58%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.searchBox>form>.formBtn>input {
	width: 100%;
	min-width: 50px;
	height: 44px;
	transform: translate(-3px, 3px);
	top: 4;
	border-radius: 0;
	border: none;
	background: none;
	background: #fff;
}

.input-group {
	display: flex;
}

/* @@newlist2 
----------------------------------------*/
.news-list {
	margin-top: 60px;
}

.news-list a {
	color: #000;
}

.news-item {
	border: 1px solid #eaeaea;
	overflow: hidden;
	height: 235px;
	cursor: pointer;
	transition: all .5s;
	margin-bottom: 40px;
}

.news-item:hover {
	box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.25);
	transform: translateY(-5px);
}

.news-item>img,
.news-item>div {
	float: left;
}

.news-item>div {
	width: 70%;
	height: 100%;
        position:relative;
}

.news-item img {
	width: 30%;
	height: 100%;
	object-fit: cover;
}

.news-item-desc {
	font-size: 16px;
}

.news-item-desc>div {
	margin-bottom: 10px;
}

.news-item-desc-content {
	display: -webkit-box;
	-webkit-line-clamp: 6;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	margin: 10px 20px;
}

.news-item-desc-title {
	background-color: #f7fafd;
	padding: 10px 20px;
	padding-left: 50px;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-item-desc-date {
        position:absolute;
        right:20px;
        bottom:0px;
}

.news-item-desc-title::before {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	background-color: #92d050;
	left: 20px;
	top: 13px;
}

.news-item-desc-title::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	background-color: #0072bb;
	left: 30px;
	top: 23px;
}

.news-item-desc-title span {
	font-weight: unset;
	font-size: unset;
	color: #000;
}

@media screen and (max-width:991px) {
	.news-item {
		height: 185px;
	}

	.news-item-desc-content {
		-webkit-line-clamp: 4;
	}
}

@media screen and (max-width:500px) {
	.news-item {
		height: 145px;
                margin-bottom: 20px;
	}

	.news-item-desc-title {
		font-size: 16px !important;
		padding: 5px 20px;
		padding-left: 50px;
	}

	.news-item-desc-title::before {
		width: 8px;
		height: 8px;
		left: 17px;
		top: 8px;
	}

	.news-item-desc-title::after {
		width: 8px;
		height: 8px;
		left: 25px;
		top: 17px;
	}

	.news-item-desc-content {
		font-size: 14px;
		-webkit-line-clamp: 3;
	}

}

/* @@other
 ---------------------------------*/
.itsc-table-model {
	margin-top: 80px;
}

.itsc-table {
	width: 100%;
	color: #000;
	border-color: #dddddd;
}

.itsc-table a {
	color: #000;
	text-decoration: none;
}

.itsc-table tr:hover {
	cursor: pointer;
}

.itsc-table tr:hover a {
	font-weight: bold;
}


.itsc-table th,
.itsc-table td {
	padding: 15px;
}

.itsc-table tr:nth-child(even) {
	background-color: #f9f9f9;
}

.itsc-table th:first-child {
	width: 80%;
}

/* @@staff
 ----------------------------------------------*/

.staffList{
        margin-bottom:0px;
}
.people-box {
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.people-box a {
	text-decoration: none !important
}

.people-box a.item {
	display: flex;
	width: 350px;
	padding: 16px 10px;
	border-radius: 10px;
	cursor: pointer !important;
}

.people-box a.item:hover {
	box-shadow: 0px 2px 14px 1px rgba(0, 0, 0, 0.35);
	border-bottom-color: transparent;
}

.fullscreen .people-box a.item {
	width: auto;
}

.people-box a.item img {
	width: 120px;
	flex-shrink: 0;
	margin-right: 20px;
	object-fit: contain;
}

.people-box a.item .info {
	color: #333333;
	min-width: 235px;
}

.people-box a.item .info .name {
	color: #2177ca;
	font-size: 18px;
	font-weight: bold
}

.people-box a.item .info .name.cn {
	margin-bottom: 15px;
}

.people-box a.item .info .title {
	color: #2177ca;
	font-size: 16px;

	margin: 10px 0;
}

.people-box a.item .info .email {
	margin: 10px 0;
}

.people-box a.item .info .tel {
	margin: 10px 0;
}


.people-box a.item .info .del {
	margin: 10px 0;
}

/* @@globalStyle 
--------------------------------------------------------*/
* {
	font-family: Arial, '微软雅黑'!important;
	font-size: 16px;
}

.glyphicon {
	font-family:"Glyphicons Halflings"!important;
}
.fas{
       font-family: "Font Awesome 6 Free"!important;
}

body {
	position: relative;
}

.bd1 {
	border: 1px solid red;
}

.bd2 {
	border: 1px solid green;
}

.bd1 {
	border: 1px solid #000;
}
@media screen and (min-width:1201px) {
.logoandSearchBox {
		padding: 0 5%;
	}
}

@media screen and (max-width:1200px) {
.articelbox.container{
		width:100%!important;
	}
}


@media screen and (min-width:1024px) {

	.robotandTreeBox {
		padding: 40px 5% 0 5%;
	}

	.itsc-model {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.itsc-model-serviceList {
		margin-top: -30px;
	}

	.hotFaqModel {
		padding-top: 30px;
	}

	.itsc-model-newsList {
		margin-top: 30px;
	}
}