:root{
	--color: #009b21;
	--color2: #004F76;
}
html{scroll-behavior: smooth;}
a:hover{
	opacity: .7;
}
*{
	margin: 0;
	padding: 0;
}
html,body{
	width: 100%;
	background: white;
}
img{
	max-width: 100%;
}
section{
	max-width: 1450px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	overflow: hidden;
}
pre{
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	white-space: break-spaces;
	font-family: "Roboto", Helvetica Neue, Helvetica, Arial, sans-serif;
}

body{
	position: relative;
}
body>img.bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -1;
}
.headView{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
.headView .menuBtn{
	width: 30px;
	height: 30px;
    position: absolute;
    right: 10px;
    flex-shrink: 0;
}
.headView .menuBtn span {
    width: 25px;
    height: 3px;
    background-color: white;
    display: block;
    margin-top: 5px;
    transition: all 277ms ease-in-out;
    position: relative;
}
.headView.scroll .menuBtn span{
	background: #333;
}
.headView.action .menuBtn span {
    transform: rotate(-45deg);
    top: 7px;
}
.headView.action .menuBtn span:nth-child(2) {
    opacity: 0;
}
.headView.action .menuBtn span:nth-child(3) {
    transform: rotate(45deg);
    top: -9px;
}
.headView.action .nav{
	display: flex!important;
	position: absolute;
	left: 0px;
	top: 60px;
	background: white;
	border: 1px solid #ddd;
	flex-direction: column;
	z-index: 9999;
	width: 100%;
}
.headView.action .head .nav a{
	padding: 20px 0;
	border-bottom: 1px solid;
    border-image: linear-gradient(to right, var(--color2), var(--color)) 1;
}
.headView.action .head .nav a:last-child{
	border-bottom: none;
}
.headView *{
	color: white;
	font-size: 16px;
}
.headView .head{
	display: flex;
	align-items: center;
	padding: 45px 0;
	transition: padding .3s ease;
}
.headView.scroll .head{
	padding: 20px 0;
}

.headView .head .logo{
	overflow: hidden;
	flex: 1;
}
.headView .head .logo img{
	width: 242px;
	margin-left: -242px;
	margin-right: 242px;
	filter: drop-shadow(#fff 242px 0px);
}
.headView .head .nav{
	display: flex;
	flex-shrink: 0;
}
.headView .head .nav a{
	margin: 0 19.5px;
}
.headView a:hover{
	color: #00FFC3;
	opacity: 1;
}
.headView .head .language{
	display: flex;
	align-items: center;
	flex-shrink: 0;
	margin-left: 140px;
	width: 98px;
}
.headView .head .language *{
	font-size: 22px;
}
.headView .head .language div{
	margin-right: 10px;
	border: 1px solid white;
	border-radius: 100px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3px 10px;
	opacity: 0;
}
.headView .head .language:hover div{
	opacity: 1;
}
.headView .head .language:hover i{
	color: #00FFC3;
}
.headView .head .language div *{
	font-size: 12px;
	padding-top: 2px;
}
.headView .head .language div a[href='javascript:;']{
	/*color: var(--color);*/
}

.headView .head .language div span{
	margin: 0 5px;
}
.headView.scroll{
	background: white;
	box-shadow:0px 0px 15px rgba(0, 0, 0, .1);
}
.headView.scroll .head .logo img{
	margin: 0;
	filter: inherit;
}
.headView.scroll *{
	color: #333333;
}
.headView.scroll .head .language div{
	border-color: #333;
}
.fullScreen{
	position: relative;
    width: 100%;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 100vh;
}
.fullScreen>div{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.swiper-container,
.swiper-container .img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-container .msg{
	position: absolute;
	bottom: 0;
	left: 0;
	color: white;
	width: 100%;
	text-align: center;
	font-size: 78px;
	margin-bottom: 6%;
}
.swiper-container .msg section{
	text-align: left;
}
.swiper-container .msg section>*{
    opacity: 0;
}
@keyframes textRun {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    20% {
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}
.swiper-container .msg section>*.active{
	animation: textRun .75s ease forwards;
}
.title-info{
	display: flex;
	align-items: flex-start;
	font-size: 23.988px;
	color: var(--color2);
	margin-bottom: 45px;
}
.title-info img{
	width: 24px;
	margin-top: 5px;
	margin-left: 7px;
}
.title-desc{
	font-size: 36px;
	color: var(--color);
	margin-bottom: 45px;
}
.footView{
	padding-top: 76px;
	padding-bottom: 120px;
	background-image: url(/home/img/foot-bg.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	color: white;
}
.footView .foot{
	display: flex;
	justify-content: space-between;
}
.footView .foot .left .title-info{
	color: white;
	margin-bottom: 40px;
}
.footView .foot .left .item{
	margin-bottom: 35px;
	display: flex;
	flex-direction: column;
	align-content: center;
	line-height: 23.988px;
}
.footView .foot .left .item:last-child{
	margin-bottom: 0;
}
.footView .foot .left .item .name{
	color: #00FFC3;
	font-size: 17.991px;
}
.footView pre{
	font-size: 15.992px;
	color: white;
}
.footView .foot .right{
	display: flex;
	flex-direction: column;
}
.footView .foot .right .top a{
	text-align: right;
	font-size: 17.991px;
	text-decoration: underline;
	color: #ffffff;
    margin-bottom: 10px;
    display: block;
}
.footView .foot .right .center{
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.footView .foot .right .center .goTop{
	width: 65px;
	height: 65px;
	border: 2px solid #00FFC3;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	font-size: 15.992px;
	color: #00ffc3;
	cursor: pointer;
}
.footView .foot .right .center .goTop:hover{
	opacity: .5;
}
.footView .foot .right .bottom{
	text-align: right;
	font-size: 12px;
	color: #ffffff;
}
.about{
	display: flex;
	justify-content: space-between;
}
.about .left{
	margin-right: 50px;
	position: relative;
}
.about .left>div:first-child{
	opacity: 0;
}
.about .left>div:last-child{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.about .left .item{
	border-bottom: 1px solid;
    border-image: linear-gradient(to right, var(--color2), var(--color)) 1;
    padding-top: 20px;
    padding-bottom: 35px;
}
.about .left .item .name{
	font-size: 20px;
	color: var(--color);
	margin-bottom: 8px;
}
.about .left .item .desc{
	font-size: 16px;
	color: var(--color2);
	line-height: 31.983px;
}
.about .left .item .desc>div{
	display: flex;
}
.about .left .item .desc img{
	margin-top: 11px
}
.about .right{
	flex-shrink: 0;
	padding: 0 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 500px;
}
.about .right div{
	position: relative;
    width: 100%;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom:133.3333333333%;
    box-sizing: border-box;
}
.about .right video{
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    border: none;
    outline: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.about .right div span{
	position: absolute;
    height: 0;
    width: 0;
    background: white;
}
.about .right div span.m1{
	top: -2px;
	left: 0;
    height: 4px;
    width: 100%;
    background: white;
}
.about .right div span.m2{
	left: -2px;
	top: 0;
    width: 4px;
    height: 100%;
    background: white;
}
.about .right div span.m3{
	bottom: -2px;
	left: 0;
    height: 4px;
    width: 100%;
    background: white;
}
.about .right div span.m4{
	right: -2px;
	top: 0;
    width: 4px;
    height: 100%;
    background: white;
}
video:focus {
 outline: -webkit-focus-ring-color auto 0px;
}
.science{
	display: flex;
	border: 1px solid;
    border-image: linear-gradient(to right, var(--color2), var(--color)) 1;
    border-left: none;
    border-right: none;
    /*background: rgba(243, 243, 243, .3);*/
    height: 866px;
    /*background: rgba(255, 255, 255, .6);*/
}
.science .right{
	width: 100%;
}
.science .left{
	width: 210px;
	border-right: 1px solid;
	border-image: linear-gradient(to right, var(--color2), var(--color)) 1;
	flex-shrink: 0;
}
.science .left .item{
	color: var(--color2);
	border-bottom: 1px solid;
	border-image: linear-gradient(to right, var(--color2), var(--color)) 1;	
	min-height: 145px;
	font-size: 17.991px;
	text-align: left;
	/*color: #808080;*/
	line-height: 23.988px;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.science .left .item.active{
	background: linear-gradient(to right, #82d0ae 0%, rgba(243, 243, 243, .3) 50%, rgba(243, 243, 243, .3) 100%);
}
.science .left .item span{
	width: 62%;
	display: inline-block;
}
.science .left .item div{
	display: none;
	position: absolute;
	right: -5px;
	height: 40px;
	background: white;
}
.science .left .item div img{
	width: 10px;
}
.science .left .item.active div{
	display: flex;
	align-items: center;
}
.science .right .item{
	padding: 40px 70px;
	display: none;
	flex-direction: column;
	height: 100%;
}
.science .right .item pre{
	font-size: 16px;
	color: var(--color2);
	line-height: 31.98px;
	flex-shrink: 0;
    word-break: break-word;
}
.science .right .item.active{
	display: flex;
}
.science .right .item .img{
	flex:1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pipelineScroll{
	overflow-y: hidden!important;
}
.pipeline{
	width: 1400px;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, .3);
}
.pipeline .tr:first-child{
	display: flex;
}
.pipeline .tr .th{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 184px;
	padding: 15px 0;
	box-sizing: border-box;
	text-align: center;
	background-color: var(--color);
	color: white;
}
.pipeline .tr .th span{
	width: 100%;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 21.99px;
	font-size: 17.99px;
	border-right: 1px solid white;
}
.pipeline .tr .th:last-child span{
	border-right: none;
}
.pipeline .tr .th:nth-child(2){
	width: calc(1400px - 184px * 6);
}
.pipeline .tr .th:nth-child(2) span{
	border-right: none;
}
.pipeline .tr .th:nth-child(1),
.pipeline .tr .th:nth-child(2){
	background: #45a4e4;
}
.pipeline .tr:not(:first-child){
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e3e4e5;
}
.pipeline .tr .td{
	width: 184px;
	font-size: 17.99px;
	color: #333333;
	line-height: 23.99px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 30px;
}
.pipeline .tr .span{
	width: calc(1400px - 184px);
	display: flex;
	flex-direction: column;
}
.pipeline .tr .span .item{
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #e3e4e5;
	margin: 7.5px 0;
	position: relative;
}
.pipeline .tr .span .item>span{
	position: absolute;
	width: 1px;
	background-color: #e3e4e5;
	display: inline-block;
	right: 0;
	top: 0;
	height: calc(100% - 15px);
}
.pipeline .tr .span .item:last-child span{
	height: calc(100% - 7.5px);
}
.pipeline .tr .span .item:first-child{
	margin-top: 15px;
}
.pipeline .tr .span .item:last-child{
	border-bottom: none;
}
.pipeline .tr .span .item .top{
	display: flex;
	align-items: center;
}
.pipeline .tr .span .item .top .names{
	border: 1px solid #e3e4e5;
	border-top: none;
	border-bottom: none;
	padding: 12px 40px;
	box-sizing: border-box;
	width: calc(1400px - 184px * 6);
	display: flex;
	margin-bottom: 15px;
	cursor: pointer;
}
.pipeline .tr .span .item:last-child .top .names{
	margin-bottom: 7.5px;
}
.pipeline .tr .span .item .top .names .icon{
	color: #45a4e4;
	margin-right: 5px;
	margin-left: -21px;
}
.pipeline .tr .span .item .top .names .icon img{
	width: 16px;
}
.pipeline .tr .span .item .top .names .icon img:last-child{
	display: none;
}
.pipeline .tr .span .item .top.active .names .icon img:last-child{
	display: inline-block;
}
.pipeline .tr .span .item .top.active .names .icon img:first-child{
	display: none;
}
.pipeline .tr .span .item .top .names .name{
	font-size: 17.99px;
	color: #333333;
	line-height: 23.99px;
}
.pipeline .tr .span .item .top .names .desc{
	font-size: 17.99px;
	color: #333333;
	line-height: 23.99px;
}
.pipeline .tr .span .item .top .line{
	width: calc(184px * 5);
	height: 1px;
	background-color: #e3e4e5;
	margin-top: -15px;
}
.pipeline .tr .span .item:last-child .top .line{
	margin-top: -7.5px;
}
.pipeline .tr .span .item .top .line .progress{
	height: 7px;
	margin-top: -3.5px;
}
.pipeline .tr .span .item .bottom{
	display: none;
	font-size: 15.99px;
	color: #4d4d4d;
	line-height: 19.99px;
	padding-left: 40px;
	margin-bottom: 7.5px;
}
.pipeline .tr .span .item .top.active + .bottom{
	display: inline-block;
    white-space: break-spaces;
    word-break: break-word;
}

.team{
	padding: 0 18px;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.team .item{
	margin: 29px;
	width: calc(100% / 3 - 58px);
	overflow: hidden;
	border-radius: 18px;
	cursor: pointer;
}
.team .item>div{
	position: relative;
    width: 100%;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 100%;
}
.team .item>div img{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform .3s ease;
}
.team .item:hover img{
	transform: scale(1.1);
}
.team .item .info{
	position: absolute;
	bottom: -1px;
	left: 0;
	background-image: url(/home/img/team1.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	width: 100%;
	padding: 10px 29px;
	color: #ffffff;
	line-height: 32px;
	font-size: 13px;
	padding-top: 35px;
	opacity: 0;
	transition: opacity 1s ease;
}
.team .item:hover .info{
	opacity: 1;
}
.team .item .info .name{
	font-size: 27.985px;
	overflow: visible;
	white-space: nowrap;
	text-overflow:ellipsis;
}
.team .item .info .office{
	font-size: 19.99px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow:ellipsis;
}
.team .item .info .more{
	position: relative;
	display: inline-block;
	line-height: 8px;
}
.team .item .info .more i{
	font-size: .7rem;
	position: absolute;
	top: 0;
	right: -10px;
}
.team .teamWin{
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	margin: 30px 47px;
	border-radius: 18px;
	width: calc(100% - 95px);
	height: calc(100% - 55px);
	border: 1px solid var(--color2);
	overflow: hidden;
    /*border-image: linear-gradient(to right, var(--color2), var(--color)) 1;
	border-image-outset: 0;
	border-image-repeat: stretch;
	border-radius: 16px;
	background-clip: padding-box, border-box;
	background-origin: padding-box, border-box;
	background-image: linear-gradient(to right, var(--color2), var(--color)), linear-gradient(90deg, var(--color2), var(--color));*/
	display: flex;
}
.team .teamWin>div{
	width: 100%;
	height: 100%;
	padding: 120px 115px;
	background: white;
	border-radius: 15px;
	display: flex;
}
.team .teamWin .left{
	width: 330px;
	margin-right: 80px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	flex-direction: column;
	color: #333;
	font-size: 20px;
}
.team .teamWin .left img{
	border-radius: 18px;
	margin-bottom: 35px;
}
.team .teamWin .left .name{
	font-size: 24px;
}
.team .teamWin .right{
	display: flex;
	flex-direction: column;
}
.team .teamWin .icon{
	text-align: left;
	margin-top: 65px;
	width: 100%;
}
.team .teamWin .icon i{
	color: #666;
	font-size: 35px;
	cursor: pointer;
}
.team .teamWin .right pre{
	font-size: 16px;
	color: #454545;
	line-height: 1.7;
	word-break: break-word;
}

.news{
	display: flex;
}
.news .left{
	display: flex;
	flex-direction: column;
	width: 200px;
	flex-shrink: 0;
	margin-right: 120px;
	border-top: 1px solid;
    border-image: linear-gradient(to right, var(--color2), var(--color)) 1;
}
.news .left .item{
	padding: 0 15px;
	height: 60px;
	display: flex;
	cursor: pointer;
	align-items: center;
	border-bottom: 1px solid;
    border-image: linear-gradient(to right, var(--color2), var(--color)) 1;
	font-size: 17.991px;
	color: #333;
}
.news .left .item.active{
	color: var(--color);
	background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(34,177,115,.3) 100%);
}
.news .right{
	width: calc(100% - 200px - 120px);
	border-top: 1px solid;
    border-image: linear-gradient(to right, var(--color2), var(--color)) 1;
}
.news .right .item{
	cursor: pointer;
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid;
    border-image: linear-gradient(to right, var(--color2), var(--color)) 1;
}
.news .right .item.active{
	box-shadow: inset 0px -11px 6px -4px #d0f7e5;
}
.news .right .item .desc{
	display: none;
}
.news .right .item.active .title i{
	color: var(--color);
}
.news .right .item .dateTime{
	text-align: right;
	padding-top: 10px;
	font-size: 13.993px;
	color: var(--color);
}
.news .right .item .dateTime a{
	color: var(--color);
}
.news .right .item .title{
	margin-bottom: 45px;
	margin-top: 15px;
	display: flex;
	font-size: 20px;
}
.news .right .item .title i{
	margin-top: 8px;
}
.news .right .item .title div{
	margin-left: 80px;
	font-size: 23.988px;
	color: #333333;
	line-height: 35.981px;
}
.news .right .item.active .desc{
	display: block;
	font-size: 15.992px;
	color: #004f76;
	line-height: 27.985px;
	margin-bottom: 45px;
	padding-left: 96px;
}
.news .pageView{
	margin-top: 40px;
}
.news .pageView .pages{
	padding-bottom: 10px;
	border-bottom: 1px solid;
	display: inline-block;
    border-image: linear-gradient(to right, var(--color2), var(--color)) 1;
	font-size: 17.991px;
	color: #b1b1b1;
}
.news .pageView .pages .page{
	display: inline-block;
	margin-left: 40px;
}
.news .pageView .pages .page img{
	width: 7px;
	margin: 0 10px;
	cursor: pointer;
}
.news .pageView .pages .page img:first-child,
.news .pageView .pages .page img:last-child{
	width: 12px;
}
.news .pageView .pages .page img.disabled{
	opacity: .3;
}
#news,
#team,
#about,
#science,
#pipeline{
	padding: 95px 0;
}
#about{
	padding-bottom: 60px;
}
body{
	background-image: url(/home/img/bg1.jpg);
	/*background-image: url(/uploads/png/2025-02-13/17-67adb6c673641.png);*/
    background-attachment: fixed;
    background-size: cover;
    background-position: 0px 0px;
}
#science{
	/*background-image: url(/home/img/science_bg.png);*/
	background-repeat: no-repeat;
	background-attachment: fixed !important;
	background-size: cover;
}
/*#science>div{
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .6);
}*/
#pipeline{
	background-image: url(/home/img/pipeline_bg.png);
	background-repeat: no-repeat;
	background-attachment: fixed !important;
	background-size: cover;
}
#team{
	/*background-image: url(/home/img/team_bg.png);*/
	background-repeat: no-repeat;
	background-attachment: fixed !important;
	background-size: cover;
}
#news{
	/*background-image: url(/home/img/news_bg.png);*/
	background-position: left bottom;
	background-repeat: no-repeat;
	background-attachment: fixed !important;
}

.newsItemView{
	display: flex;
	flex-direction: column;
}
.newsItemView .line{
	background: linear-gradient(to right, #3f67ad, #3eb35a);
	height: 2px;
}
.newsItemView .times{
	margin-top: 18px;
	margin-bottom: 55px;
	font-size: 13.993px;
	text-align: right;
	color: #333333;
}
.newsItemView .title{
	font-size: 27px;
	font-weight: 500;
	color: #333333;
	line-height: 35.981px;
	margin-bottom: 50px;
}
.newsItemView .html{
	font-size: 17px;
	color: #333333;
	line-height: 30px;
}
.newsItemView .html *{
	max-width: 100%;
}
.newsItemView .other{
	border-top: 1px solid #e3e4e5;
	box-shadow: inset 0px -20px 6px -4px #e1f3e5;
	border-bottom: 2px solid;
    border-image: linear-gradient(to right, #6a93b3, #7aca8f) 1;
    margin-top: 50px;
    padding-bottom: 110px;
}
.newsItemView .other div{
	margin-top: 40px;
	font-size: 15.992px;
	line-height: 27.985px;
	color: #000000;
}
.newsItemView .other div a{
	color: #000000;
}

@media (max-width: 768px){
	.fullScreen{
		padding-bottom:133.33%;
	}
	.swiper-slide{
		display: flex;
		align-items: center;
	}
	.swiper-container .msg{
		font-size: 26px;
		margin-bottom: auto;
		bottom: initial;
		left: 20px;
		margin-top: 64%;
	}
	.headView .head{
		padding: 20px 0;
	}
	.headView .head .logo img{
		width: auto;
		height: 20px;
	    margin-left: 0;
	    margin-right: 0;
	    margin-top: -25px;
	    margin-bottom: 20px;
	    filter: drop-shadow(#fff 0px 20px);
	}
	.headView.action .head .nav a{
		color: #333;
	}
	.headView .head .language{
		margin:0 40px;
	}
	.title-info{
		justify-content: center;
	}
	#news,
	#team,
	#about,
	#science,
	#pipeline{
		padding: 55px 0;
	}
	.about{
		flex-direction: column;
	}
	.about .left{
		margin-right: 0;
	}
	.title-desc{
		font-size: 20px;
		margin-bottom: 25px;
	}
	.about .left .item{
		padding-bottom: 20px;
	}
	.about .right{
		margin-top: 30px;
		width: 100%;
	}
	.science{
		flex-direction: column;
		height: auto;
		border: 1px solid;
		border-image: linear-gradient(to right, var(--color2), var(--color)) 1;
	}
	.science .left{
		width: 100%;
		display: flex;
		border-right: none;
	}
	.science .left .item{
		flex: 1;
		border-right: 1px solid;
		min-height: auto;
		padding: 15px 0;
	}
	.science .left .item:last-child{
		border-right: none;
	}
	.science .left .item.active{
		background: linear-gradient(to bottom, #82d0ae 0%, rgba(243, 243, 243, .3) 50%, rgba(243, 243, 243, .3) 100%);
	}
	.science .left .item span{
		width: auto;
	}
	.science .left .item div {
	    bottom: -5px;
	    right: auto;
	    width: 40px;
	    height: auto;
	    justify-content: center;
	}
	.science .left .item div img{
		transform: rotate(90deg);
	}
	.science .left .item span{
		text-align: center;
	}
	.science .right .item{
		padding: 20px;
	}
	.science .right .item .img{
		margin: 15px 0;
	}
	.pipeline{
		width: 100%
	}
	.pipeline .tr:first-child{
		display: none;
	}
	.pipeline .tr:not(:first-child){
		flex-direction: column;
	}
	.pipeline .tr .span{
		width: 100%
	}
	.pipeline .tr .span .item .top{
		flex-direction: column;
	}
	.pipelineScroll{
		overflow:hidden!important;
	}
	.pipeline .tr:not(:first-child),
	.pipeline .tr .span .item,
	.pipeline .tr .span .item .top .names{
		border:none!important;
	}
	.pipeline .tr .span .item>span{
		display: none;
	}
	.pipeline .tr .td{
		width: 100%;
		padding: 30px;
		padding-bottom: 0px;
		display: ruby;
	}
	.pipeline .tr .span .item .top .names{
		width: 100%;
		padding: 12px;
	}
	.pipeline .tr .span .item .top .names .icon{
	    margin-left: 0px;
	}
	.pipeline .tr .span .item .top{
		margin-bottom: 15px
	}
	.pipeline .tr .span .item .bottom{
		padding-left: 15px;
	    width: calc(100% - 15px);
	}
	.pipeline .tr .span .item .top .line{
		width: calc(100% - 30px);
	}
	.pipeline .tr .td img{
		max-width: 50%;
	}
	.pipeline .tr .span .item .top .head{
		margin: 0 15px;
		display: flex;
		align-items: end;
		font-size: 12px;
		margin-top: -15px;
		margin-bottom: 30px;
		border-bottom: 1px solid var(--color);
	}
	.pipeline .tr .span .item .top .head div{
		flex: 1;
		flex-shrink: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		overflow: hidden;
	}
	.pipeline .tr .span .item .top .head div span{
		text-align: center;
		display: block;
	}
	.pipeline .tr .span .item .top .head div i{
		display: inline-block;
		width: 1px;
		background-color: var(--color);
		height: 10px;
		margin-top: 8px;
	}



	.team .item{
		margin: 15px 0;
		width: 100%;
	}
	.team .item .info .name{
		font-size: 20px;
	}
	.team .item .info .office{
		font-size: 17px;
	}
	.team .teamWin {
		position: fixed;
	    left: 15px;
	    top: 100px;
	    border-radius: 18px;
	    width: calc(100% - 30px);
	    height: auto;
	    margin: 0;
	    border-radius: 16px;
	}
	.team .teamWin>div{
		padding: 15px;
		flex-direction: column;
        overflow-y: scroll;
        height: calc(100vh - 200px);
	}
	.team .teamWin .icon {
	    text-align: center;
	    margin-bottom: 0;
	    position: absolute;
        top: -44px;
        right: 18px;
	    background: #666;
	    border-radius: 100%;
        padding: 4px;
        width: 40px;
        height: 40px;
	}
	.team .teamWin .icon i{
		color: white;
        font-size: 20px;
	}
	.news{
		flex-direction: column;
	}
	.news .left{
		width: 100%;
		margin-right: 0;
		border: none;
		/*flex-wrap: wrap;*/
		white-space: nowrap;
	    flex-direction: initial;
	    overflow-x: auto;
	}
	.news .left .item{
		width: 50%;
		flex-shrink: 0;
	}
	.news .left .item.active {
	    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(34, 177, 115, .3) 100%);
	}
	.news .right .item{
		position: relative;
	}
	.news .right .item .title i{
		position: absolute;
		top: 12px;
		left: 0;
		margin-top: 0;
	}
	.news .right .item.active .desc,
	.news .right .item .title div{
		margin-left: 0;
		padding-left: 0;
	}
	.footView .foot{
		flex-direction: column;
	}
	.footView .foot .right{
		margin-top: 30px;
	}
	.footView .foot .right .top .row{
		display: flex;
		flex-wrap: wrap;
	}
	.footView .foot .right .bottom{
		margin-top: 30px;
		text-align: center;
		display:flex;
		flex-direction: column;
	}
	.footView{
		padding-bottom: 50px;
	}
	.news .right{
		width: 100%;
	}
}