
/* 滚动条美化 */
/*滚动条宽 长,滚动条整体部分，其中的属性有width,height,background,border等。*/
::-webkit-scrollbar {
	width: 2px;
	height: 2px; 
} 

body::-webkit-scrollbar {
	width: 10px;
	height: 10px; 
} 
/* 滑块颜色 */
::-webkit-scrollbar-thumb { 
	border-radius: 5px; 
	background-color: rgba(170, 170, 170, 0.8);
} 
* { 
scrollbar-width:thin;
scrollbar-color: rgba(170, 170, 170, 0.8) transparent;
} 
.headerVeiw {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9;
	width: 100%;
	transition: all .2s ease-in-out;
}

.headerVeiw .content {
	width: 100%;
    margin: 0 auto;
}

.headerVeiw .content .navBox {
	padding: 2rem 8rem; 
}

.headerVeiw .content .navBox .box {
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.headerVeiw .content .navBox .box .logo {
	flex: 0 0 8rem;
	cursor: pointer;
    margin-top: 1.9rem;

}

.headerVeiw .content .navBox .box .logo .i {
	width: 100%;
	display: none;
}
.headerVeiw  .content .navBox .box .logo .i:last-child{
display: block;
} 
.headerVeiw .content .navBox .box .itemBoxBox .itemBox {
	margin-right: -0.5rem;
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item {
	font-size: 0.8rem;
	color: #fff;
	padding:0 0.5rem;
	cursor: pointer;
	line-height: 2.1rem; 
}
@media screen and (min-width:1100px) {
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item {
	position: relative;
	
}
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .name {
	position: relative;
	white-space: nowrap;
    display: block;
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .name::after {
	content: '';
	position: absolute;
	height: 2px;
	background-color: #F39700;
	left: 0;
	bottom: 0%;
	width: 100%;
	opacity: 0;
	transition: all .3s ease;
}
.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item.on .name::after ,
.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item:hover .name::after {
	opacity: 1; 
}



.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox {
	position: absolute;
	/* width: 100%; */
	left: 0;
	top: 100%;
	overflow: hidden;
	transition: all .3s ease;
	opacity: 0;
	/* 改为使用 max-height 动画以支持从 0 -> 自适应高度的过渡 */
	max-height: 0;
	opacity: 0;
	transition: max-height .32s ease, opacity .2s ease;
	border-radius: 8px; 
	background: rgba(255,255,255,0.3);
	backdrop-filter: saturate(180%) blur(13px); 
	-webkit-backdrop-filter: saturate(180%) blur(13px);
box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.13); 
}
.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item:hover .childBox { 
	opacity: 1;
	/* 改为使用 max-height 动画以支持从 0 -> 自适应高度的过渡 */
	max-height: none; 
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox {
	padding: 1rem 1rem 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-evenly;
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox .label {
	font-size: 1.8rem;
	color: #fff; 
	white-space: nowrap;
	display: none;  
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox .clist {
	font-size: 0.8rem;
	color: #fff; 
	min-width: 5rem;
} 
.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item:nth-child(3) .childBox .cbox .clist {
	width: 15rem;
}
.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox .clist+.clist {
	margin-left: 2rem;
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox .clist .clistitem {
	/* margin-right: 3rem; */
	font-size: 0.8rem;
	margin-bottom: 1rem;
	line-height: 1rem; 
    display: block;
	white-space: nowrap;
}
.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item:nth-child(3) .childBox .cbox .clist .clistitem {
	white-space: normal; 
    height: 2rem;
}
.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item:nth-child(10) .childBox{
	 left: auto;
	 right: 0;
}
.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item.on .childBox .cbox .clist .clistitem.on,
.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox .clist .clistitem:hover{ 
	color: #F39700;
	font-weight: 500;
}

 
.headerVeiw .content .topnav {
	margin-bottom: 0.4rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.headerVeiw .content .search {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff; 
	padding:0.3rem  0.5rem;
	border-radius: 5rem; 
	margin-left:2rem;
    min-height: auto;
}

.headerVeiw .content .search .i {
	width: 0.8rem;
}

.headerVeiw .content .search .t { 
	font-size: 0.8rem;
	color: #000;
	line-height: 1;
	margin-left: 0.4rem;
	white-space: nowrap;
}



.headerVeiw .content .language {
	position: relative;
	margin-left: 2rem;
	cursor: pointer;
	font-size: 0.8rem;
	color: #000; 
	white-space: nowrap;
}
.headerVeiw .content .language .cur{
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.5rem;
	border-radius:0.7rem;  
	background-color: #fff;
	padding: 0 0.45rem; 
} 
.headerVeiw .content .language:hover .cur{ 
	border-radius:0.7rem 0.7rem 0 0;  
}
.headerVeiw .content .language .cur .icon{
	width: 0.4rem;
	margin-left: 0.3rem;
	transform: rotate(180deg); 
}
.headerVeiw .content .language:hover .cur .icon{
	transform: rotate(0deg);
}
.headerVeiw .content .language .selectbox{
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	width: 100%;
	background: #fff;  
	border-radius: 0 0 0.7rem 0.7rem;  
	box-shadow: 0 .4rem 1.6rem 0 rgba(0, 0, 0, .06);
    z-index: 1;
	overflow: hidden;
}
.headerVeiw .content .language:hover .selectbox{
	display: block;
}
.headerVeiw.showFixed .content .language:hover .selectbox a{ 
	background: rgba(200, 200, 200, 0.2)
}
.headerVeiw .content .language .selectbox a{
	font-size: 0.8rem;
    color: #000;
    line-height: 2em;
	display: block; 
	text-align: left;
    padding: 0.45rem;
}
.headerVeiw .content .language .selectbox a+a{
	border-top: 1px solid rgba(0, 0, 0, .06);
}
 
.headerVeiw.showFixed .content .search ,
.headerVeiw.showFixed .content .language  .cur{
    background: rgba(200, 200, 200, 0.2)
}

.headerVeiw.showFixed {
	background-color: #fff;
	box-shadow: 0 .8rem 1.6rem 0 rgba(0, 0, 0, .06);
}

.headerVeiw.showFixed  .content .navBox .box .logo .i:first-child {
	display: block;
}
.headerVeiw.showFixed  .content .navBox .box .logo .i:last-child {
	display: none;
}

.headerVeiw.showFixed .content {
	width: 100%;
}
 

.headerVeiw.showFixed .content .navBox .box .itemBoxBox .itemBox .item {
	color: #3D3D3D;
}

.headerVeiw.showFixed .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox .clist{
	color: #3D3D3D;
}

.headerVeiw.showFixed .content .navBox .box .itemBoxBox .itemBox .item .childBox{
    background: #fff;
backdrop-filter: none;
} 

#footer{
    width: 100%;
    padding: 0px 0; 
}
.footerView {
	background: #272727;
	padding: 3rem 0;
	position: relative;
}

.footerView .content {
	margin: auto;
	padding: 0 8rem;
	display: flex;
	align-items: center;
	color: #fff;
	justify-content: space-between;
}

.footerView .content .leftbox {
	display: flex;
}

.footerView .content .imgBox .i {
	width: 7rem;
	margin: auto;
}

.footerView .content .imgBox .t {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 1);
	line-height: 1.6rem;
	text-align: center;
}

.footerView .content .leftbox .info {
	margin-left: 1.2rem;
}

.footerView .content .leftbox .info .title {
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
	font-weight: bold;
	color: rgba(255, 255, 255, 1);
	line-height: 1.3rem;
	padding-bottom: 0.6rem;
	border-bottom: 1px solid rgba(239, 239, 239, 0.2);
}

.footerView .content .leftbox .info .itemBox .item {
	font-size: 0.7rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
	line-height: 1.3rem;
}

.footerView .content .right .iconBox {
	display: flex;
	justify-content: flex-end;
}

.footerView .content .right .iconBox .i {
	width: 2rem;
	margin-left: 1rem;
	cursor: pointer;
}

.footerView .content .right .copyright {
	font-size: 0.7rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
	line-height: 1.3rem;
	margin-top: 1.2rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}

.footerView .content .right .copyright a {
	color: rgba(255, 255, 255, 1);
	margin: 0 0.5rem;
	white-space: nowrap;
}
.fixedbox{
	position: fixed;
	right: 4rem;
	top: 80%;
	background: #583492;
	border-radius: 3rem;
	z-index: 7;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease 0s;
	cursor: pointer;
}
.fixedbox .icon{
	width: 3rem;
	display: block;
}
.fixedbox .icon:nth-child(2){
	display: none;
}
@media screen and (min-width:750px) {
	
	.fixedbox:hover{
		padding: 0.5rem 1rem 0.5rem 0.5rem;
	}
	.fixedbox:hover .icon:nth-child(1){
		display: none;
	}
	.fixedbox:hover .icon:nth-child(2){
		display: block;
	} 
	.fixedbox:hover  .txt{
		display: block;
	}
}
.fixedbox  .txt{
	  
	font-weight: 500;
	font-size: 1rem;
	color: #FFFFFF;
	line-height: 1.25rem;
	margin-left: 0.5rem;
	display: none;
}
.wap{
	display: none!important;
}
.cookie-policy{ 
    z-index: 100;
    display: none;
	position: fixed;
	left: 50%;
	bottom: 5%;
	transform: translate(-50%, 0%);
	width: 83.3%;  
	border-radius: 0.3rem; 
}
.cookie-policy .content {     
	max-width: 45rem;
	margin: 0 auto;
	padding: 0.6rem 1rem;  
	font-size: 0.7rem;
	color: #3A353F;
	line-height: 1.5em;
	border-radius: 0.3rem;
	background: rgba(255,255,255,0.4);
box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.13); 
backdrop-filter: blur(13px);
	display: flex;
	justify-content: space-between;
	align-items: center;
} 
.cookie-policy .content .tit{
	font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.cookie-policy .content .txt a{
	display: inline; 
	color: #4713A7; 
}
.cookie-policy .content .btnbox{ 
	display: flex;
	justify-content: flex-end;
	align-items: center; 
}
.cookie-policy .content .btn{ 
	min-width: 4rem;
	padding: 0 1rem; 
	line-height: 1.5rem;
	cursor: pointer;
	margin-left: 0.6rem;
	text-align: center;
	border-radius: 0.8rem; 
	border: 1px solid #4713A7;
}
.cookie-policy .content .btn.reject{
	color: #4713A7;
	background: rgba(255,255,255,0.1); 
}
.cookie-policy .content .btn.accept{
	color: #fff; 
	background: #4713A7; 
}
@media screen and (max-width:1100px){ 

	.headerVeiw .pc{
		display: none!important;
	}
	.headerVeiw .wap{
		display: block!important; 
	}
	.headerVeiw .content .navBox {
		padding: 2rem 2rem; 
	}
		
.headerVeiw .content .navBox .box .logo { 
    margin-top: 0;

}
	.headerVeiw .content .navBox .box .itemBoxBox .search {
		cursor: pointer; 
		background-color: transparent;
		width: 2.1rem;
		padding: 0;
		border-radius: 0;
		margin-left: 2rem;
	}
	
	.headerVeiw .content .navBox .box .itemBoxBox .search .i {
		width: 100%;
	}
	
	.headerVeiw .content .navBox .box .itemBoxBox .search .i img:nth-child(2){
		display: none;
	}
	.headerVeiw.showFixed .content .navBox .box .itemBoxBox .search .i img:nth-child(1),
	.headerVeiw.open .content .navBox .box .itemBoxBox .search .i img:nth-child(1){
		display: none;
	}
	.headerVeiw.showFixed .content .navBox .box .itemBoxBox .search .i img:nth-child(2),
	.headerVeiw.open .content .navBox .box .itemBoxBox .search .i img:nth-child(2){
		display: block;
	} 
	.headerVeiw .content .navBox .box .itemBoxBox .search .t {
		display: none;
	}
	.headerVeiw.showFixed .content .resourcecenter {  
		color:  #583492;
	} 
	.headerVeiw .content .language { 
		font-size: 1rem;
		color: #583492;
	}
	.headerVeiw .content .language .cur{  
		line-height: 2.5rem;
		border-radius: 2rem; 
		font-weight: bold;
		padding: 0 1rem;
	} 
	.headerVeiw .content .language .cur .icon{
		width: 0.6rem; 
	} 
	.headerVeiw .content .language .selectbox{ 
		position: absolute;
		top: 100%;
		right: 0;
		background: #fff;   
		box-shadow: 0 .4rem 1.6rem 0 rgba(0, 0, 0, .06);
		z-index: 1;
	} 
	.headerVeiw .content .language .selectbox a{
		font-size: 1.2rem; 
		padding: 0.45rem 1rem;
	} 
	.headerVeiw .content .navBox .box .itemBoxBox .menu { 
		margin-left: 2rem; 
		width: 2.1rem; 
	}
	
	.headerVeiw .content .navBox .box .itemBoxBox .menu img{
		display: block;
	} 
	.headerVeiw .content .navBox .box .itemBoxBox .menu img:nth-child(2),
	.headerVeiw .content .navBox .box .itemBoxBox .menu img:nth-child(3){
		display: none;
	} 
	.headerVeiw.showFixed .content .navBox .box .itemBoxBox .menu img:nth-child(1),
	.headerVeiw.showFixed .content .navBox .box .itemBoxBox .menu img:nth-child(3){
		display: none;
	}
	.headerVeiw.showFixed .content .navBox .box .itemBoxBox .menu img:nth-child(2){
		display: block;
	}  
	.headerVeiw.open .content .navBox .box .itemBoxBox .menu img:nth-child(1),
	.headerVeiw.open .content .navBox .box .itemBoxBox .menu img:nth-child(2){
		display: none;
	}
	.headerVeiw.open .content .navBox .box .itemBoxBox .menu img:nth-child(3){
		display: block;
	}  
	.headerVeiw .content .navBox .box .itemBoxBox .login { 
		margin-left: 2rem; 
		width: 2.5rem; 
	} 
	.headerVeiw .content .navBox .box .itemBoxBox .login img:nth-child(2){
		display: none;
	} 
	.headerVeiw.showFixed .content .navBox .box .itemBoxBox .login img:nth-child(1),
	.headerVeiw.open .content .navBox .box .itemBoxBox .login img:nth-child(1){
		display: none;
	}
	.headerVeiw.showFixed .content .navBox .box .itemBoxBox .login img:nth-child(2),
	.headerVeiw.open .content .navBox .box .itemBoxBox .login img:nth-child(2){
		display: block;
	}  
	.headerVeiw.open .content .navBox .box .logo .i:nth-child(2){
		display: none;
	}
	.headerVeiw.open .content .navBox .box .logo .i:nth-child(1){
		display: block;
	}  
	.headerVeiw .content .navBox .box .itemBoxBox {
		display: flex;
		align-items: center;   
		
	margin-right: 0;
	}
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox {
		display: none; 
	}
	.headerVeiw.open .content .navBox .box .itemBoxBox .itemBox {
		position: fixed;
		top: 6rem;
		left: 0;
		width: 100%;
		height: calc(100vh - 6rem);
		background: #FFFFFF;
		display: block;
	}  
	.headerVeiw.open .content .navBox .box .itemBoxBox .itemBox::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 27%;
		height: 100%;
		background: #F5F5F5;
	
	}
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item {
		font-size: 1.4rem;
		color: #222222;
		line-height: 1.5rem; 
		width: 27%;
		text-align: center;
		padding: 0;
	}
	
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .name {
		padding: 1.2rem;
		position: relative;
		white-space: normal;
		text-align: left;
	}
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item.on  .name{
		background: #FFFFFF;
		font-weight: 600;
	}
	
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .name::after {
		content: '';
		position: absolute;
		width: 2px;
		background-color: #F39700;
		left: 0;
		bottom: 0%;
		height: 100%;
		opacity: 0;
		transition: all .3s ease;
	}
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item.on .name::after ,
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item:hover .name::after {
		opacity: 1; 
	}
	
	
	
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox {
		display: none;
	}
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item.on .childBox {
		display: block;
		position: absolute; 
		left: 27%;
		top: 0;   
		width: 73%;
		height: 100%;
		max-height: none;
		opacity: 1;
		box-shadow: none;
		backdrop-filter:none;
	} 
	
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox {
		padding: 0;
		display: block;
	}
	 
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox .clist {
		font-size: 1.3rem;
		color: #222222;
	} 
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox .clist+.clist {
		margin-left: 0;
	}
	
	.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox .clist .clistitem {
		/* margin-right: 3rem; */
        height: auto !important;
		font-size: 1.3rem;
		margin-bottom: 0;
		padding: 1.25rem 2rem;
		line-height: 1.5rem;
		white-space: normal;
		width: 100%;
		text-align: left;
	}
	  .headerVeiw .content .navBox .box .itemBoxBox .itemBox .item:nth-child(3) .childBox .cbox .clist {
		width: 100%;
	}
	
	 .headerVeiw.open {
		background-color: #fff;
		box-shadow: 0 .8rem 1.6rem 0 rgba(0, 0, 0, .06);
	}
	
	.headerVeiw.showFixed .content .navBox .box .itemBoxBox .itemBox .item ,
	.headerVeiw.open .content .navBox .box .itemBoxBox .itemBox .item {
		color: #3D3D3D;
	}
	
	.headerVeiw.showFixed .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox .clist ,
	.headerVeiw.open .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox .clist{
		color: #3D3D3D;
	}
	
	
	.headerVeiw.showFixed .content .navBox .box .itemBoxBox  .search ,
	.headerVeiw.open .content .navBox .box .itemBoxBox  .search {
		background: transparent;
	} 
	
	.headerVeiw.showFixed .content .navBox .box .itemBoxBox  .language  .cur,
	.headerVeiw.open .content .navBox .box .itemBoxBox  .language  .cur{
		background: #583492;
		color: #fff;
	} 
	.headerVeiw  .userinfo { 
		position: relative;
		margin-left: 2rem;
		display: none;
		cursor: pointer; 
	} 
	.headerVeiw  .userinfo .cursor{  
		font-size: 0.9rem;
		color: #FFFFFF; 
		max-width: 8rem; 
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.headerVeiw.showFixed  .userinfo .cursor{  
		color: #000;
	}  
	.headerVeiw  .userinfo .icon{ 
		width: 0.5rem;
		display: block;
		transform: rotate(-90deg);
	}
	.headerVeiw  .userinfo .icon img:last-child{
		display: none;
	} 
	.headerVeiw.showFixed  .userinfo .icon img:first-child{
		display: none;
	} 
	.headerVeiw.showFixed  .userinfo .icon img:last-child{
		display: block;
	} 
	.headerVeiw  .userinfo:hover .icon{
		transform: rotate(90deg);
	} 
	.headerVeiw  .userinfo .setbox{  
		display: none;
		position: absolute;
		top: 100%;
		right: -2rem;
		padding: 0 0.5rem;
		border-radius: 0.5rem;
		background: #FFFFFF;
	}
	.headerVeiw  .userinfo:hover .setbox{
		display: block;
	}  
	.headerVeiw  .userinfo .setbox .setbtn{
		padding: 0.5rem ;
		font-size: 0.7rem;
		color: #000000;
		line-height: 1.1rem;
		text-align: center;
		cursor: pointer;
	}  
	.headerVeiw  .userinfo .setbox .setbtn+.setbtn{
		border-top: 1px solid #D8D8D8;
	}
	 
}
@media screen and (max-width:750px){ 
	
	.cookie-policy .content { 
		display: block; 
		font-size: 1.2rem;
		width: 90%;
		padding: 2rem;
	} 
	.cookie-policy .content .tit{
		font-size: 1.4rem;
	}
	.cookie-policy .content .btnbox{
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 1rem;
	}
	.cookie-policy .content .btn{ 
	padding: 0 1rem; 
	margin: 0; 
	width: 48%;
	line-height: 3.5rem; 
}
	body::-webkit-scrollbar {
	display: none;
} 
	::-webkit-scrollbar {
	display: none;
} 
.pc{
	display: none!important;
}
.wap{
	display: block!important; 
}

 

.footerView { 
	padding: 3.5rem 0; 
}

.footerView .content { 
	padding: 0 2rem;
	display: block; 
}
 
.footerView .content .leftbox .info {
	margin-left: 0;
}

.footerView .content .leftbox .info .title {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: bold; 
	line-height: 1.3rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(239, 239, 239, 0.2);
}

.footerView .content .leftbox .info .itemBox .item {
	font-size:1.1rem;
	font-weight: 400; 
	line-height: 1.7rem;
	color: #999999;
}

.footerView .content .right {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 1.7rem;
}
.footerView .content .imgBox {
	padding-right: 3.5rem; 
	border-right: 1px solid #484848;
}
.footerView .content .imgBox .i{
	width: 8.8rem;
}
.footerView .content .imgBox .t {
    font-size: 1.1rem;
	color: #999999;
    line-height: 1.7rem;
    text-align: center;
	margin-top: 1rem;
} 

.footerView .content .right .flexbox{
	width: calc(100% - 13rem);
}
.footerView .content .right .iconBox .i {
	width: 2.4rem;
	margin-left: 1.25rem;
	cursor: pointer;
}

.footerView .content .right .copyright {
	font-size: 1.1rem;
	font-weight: 400;
	color: #999999;
	line-height: 2rem;
	margin-top: 2.5rem; 
}

.footerView .content .right .copyright a {
	color: #999999;
	margin: 0 0.5rem;
    white-space: normal;
	text-align: right;
}

.fixedbox{ 
	right: 2rem; 
	border-radius: 5rem; 
}  
.fixedbox .icon{
	width: 4.5rem;
	display: block;
}
}

