body * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	/* flex-shrink: 0; */
}
html{
	border: 0;
	outline: 0;
}

body {
	font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
		Arial, PingFang SC-Light, Microsoft YaHei;
	margin: 0;
	padding: 0;
	position: relative;
}

input {
	background-color: transparent;
	border: 0;
}

button {
	margin: 0;
	padding: 0;
	border: 1px solid transparent;
	outline: none;
	background-color: transparent;
}

button:active {
	opacity: 0.6;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.justify-start {
	display: flex;
	justify-content: flex-start;
}

.justify-center {
	display: flex;
	justify-content: center;
}

.justify-end {
	display: flex;
	justify-content: flex-end;
}

.justify-evenly {
	display: flex;
	justify-content: space-evenly;
}

.justify-around {
	display: flex;
	justify-content: space-around;
}

.justify-between {
	display: flex;
	justify-content: space-between;
}

.align-start {
	display: flex;
	align-items: flex-start;
}

.align-center {
	display: flex;
	align-items: center;
}

.align-end {
	display: flex;
	align-items: flex-end;
}

.inline-block{
	display: inline-block;
}

/* Safari，Chrome WebKit browsers */
input::-webkit-input-placeholder {
	color: #ffffff;
}

/* 火狐 Mozilla Firefox 4 to 18 */
input:-moz-placeholder {
	color: #ffffff;
}

/* 火狐 Mozilla Firefox 19+ */
input::-moz-placeholder {
	color: #ffffff;
}

/* Internet Explorer 10+ */
input:-ms-input-placeholder {
	color: #ffffff;
}
input:focus {

outline:none;

    border: 1px solid transparent;

}

/* 头部导航样式 */
.top .navigation {
	padding-top: 26px;
	margin: 0 120px;
	display: flex;
	align-items: center;
}

.top .navigation .logo {
	width: 171px;
	height: 69px;
}

.top .navigation span {
	margin-right: 13px;
	color: #fff;
	font-size: 27px;
}

.top .navigation .menu {
	margin-left: 35px;
	cursor: pointer;
	display: flex;
	align-items: center;
	position: relative;
}

.top .navigation .search {
	width: 45%;
	min-width: 260px;
	height: 42px;
	background: rgb(255 255 255 / 20%);
	border-radius: 21px;
	margin-left: 15%;
	position: relative;
}

.top .navigation .search input {
	width: 95%;
	margin-left: 5%;
	height: 100%;
	color: #FFFFFF;
	font-size: 21px;
}

.top .navigation .search .icon {
	width: 23px;
	height: 23px;
	position: absolute;
	right: 5%;
	top: 11px;
	cursor: pointer;
}

.top .navigation .language img {
	width: 25px;
	height: 25px;
	margin-right: 9px;
}

.top .navigation .language {
	font-size: 18px;
	display: flex;
	align-items: center;
	color: #FFFFFF;
	margin-left: 50px;
	cursor: pointer;
}

.down-triangle {
	width: 0;
	height: 0;
	border-top: 8px solid white;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	margin-left: 15px;
}
/* 底部样式 */

.footer {
	background: #000;
	padding: 100px 120px;
	width: 100%;
}

.footer .share-icon-list {
	width: 100%;
	height: 36px;
	line-height: 36px;
	text-align: center;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer .share-icon-list:before,
.footer .share-icon-list:after {
	position: absolute;
	background: #fff;
	content: "";
	height: 1px;
	top: 50%;
	width: 30%;
}

.footer .share-icon-list:before {
	left: 10px;
}

.footer .share-icon-list:after {
	right: 10px;
}

.footer .share-icon-list .icon-item{
	width: 27px;
	height: 27px;
	margin: 0 24px;
	cursor: pointer;
}
.footer .content {
	margin-top: 67px;
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.footer .content .footer-logo{
	width: 171px;
	height: 69px;
	
}
.footer .content .content-item{
	/* width: 25%; */
}
.footer .content .content-item .title{
	font-size: 24px;
	color: #418CBF;
	margin-bottom: 20px;
}
.footer .content .content-item ul{
	list-style: none;
	padding: 0;
}
.footer .content .content-item ul li{
	margin-bottom: 12px;
}
.footer .content .content-item ul li a{
	text-decoration: none;
	font-size: 19px;
	color: #FFFFFF;
}
.footer .content .content-item ul li img{
	width: 25px;
	height: 25px;
	margin-right: 15px;
}
.footer .content .content-item ul li span{
	color: #FFFFFF;
}
.footer .content .content-item:last-child ul li{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.breadcrumb {
	font-size: 24px;
	display: flex;
	align-items: center;
	margin: 48px 0;
}
.breadcrumb .item{
	margin: 0 15px;
	color: #999;
}
.breadcrumb img{
	width: 24px;
	height: 32px;
}
.breadcrumb .now{
	color: #333;
}
/* .breadcrumb  .arrow_r{
	position: relative;
}
.breadcrumb .arrow_r:after{
	content: '';
	position: absolute;
	top: 5px;
	right: 6px;
	width: 12px;
	height: 12px;
	border-top: 4px solid #999999;
	border-right: 4px solid #999999;
	transform: rotate(45deg);
} */
.container{
	margin: 0 120px;
}
.top .menuDialog{
	position: absolute;
    left: 120px;
    top: 32px;
    background: rgb(255 255 255 / 90%);
	padding: 30px 20px;
	min-width: 230px;
	cursor: auto;
	display: none;
}
.top .menuDialog span{
	font-size: 16px;
	color: #333 ;
	cursor: pointer;
}
.top .menuDialog ul{
	list-style: none;
}
.top .menuDialog ul li{
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}
.top .menuDialog ul li::before{
	position: absolute;
	content: '';
	border-left: 10px solid #333;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    left: 0;
    top: 0;
}
.top .menuDialog ul li.show::before{
	transform: rotate(90deg);
}
.top .menuDialog .item{
	color: #999;
	padding: 2px 0;
	font-size: 14px;
	cursor: pointer;
}
/* 兼容 */
@media screen and (max-width: 1000px){
	.main{
		height: 100%;
		position: relative;
	}
	.top .navigation {
		margin: 0 32px;
	}
	.top .navigation .search{
		margin-left: 10%;
	}
	.top .navigation .search input{
		font-size: 16px;
	}
	.footer {
		position: absolute;
		padding: 80px 32px;
		bottom: 0;
	}
	.share-icon-list .icon-item{
		margin: 0 15px;
	}
	.container{
		margin: 0 32px;
	}
	.breadcrumb{
		font-size: 18px;
	}
	.breadcrumb img{
		width: 16px;
		height: 24px;
	}
}