Difference between revisions of "Team:Fudan-CHINA"

 
(86 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{Fudan-CHINA}}
 
{{Fudan-CHINA}}
 +
 
<html>
 
<html>
<head>
 
  
  
<style type="text/css">
+
 
+
 +
<!--page-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 +
<div id="signageDiv">
 +
<video id="bgVideo" autoplay muted loop>
 +
    <source  src="https://static.igem.org/mediawiki/2018/f/fd/T--Fudan-CHINA--bgVideo.mp4">
 +
</video>
 
 
 +
<div id="stepDiv">
 +
<span id="stepName">S T E P</span>
 +
<div style="height: 5vh;"></div>
 +
<span id="fullName">Synthetic Transducer Engineering Platform</span>
 +
</div>
 +
<div class="discoverBotton"><a href="#" class="animated-button victoria-one">DISCOVER NOW</a></div>
 +
</div>
 +
 +
<style>
 +
#signageDiv{
 +
position: relative;
 +
top:0;
 +
}
 +
.discoverBotton{
 +
font-family:Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
 +
position: absolute;
 +
top:70vh;
 +
left: 50%;
 +
transform: translateX(-50%);
 +
-moz-transform: translateX(-50%);
 +
-ms-transform: translateX(-50%);
 +
-webkit-transform: translateX(-50%);
 +
}
 +
a.animated-button.victoria-one:after {
 +
background: #fff;
 +
-moz-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
 +
-ms-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
 +
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
 +
transform: translateX(-50%) translateY(-50%) rotate(-25deg);
 +
}
 +
a.animated-button:link, a.animated-button:visited {
 +
position: relative;
 +
display: block;
 +
margin: 0 auto 0;
 +
padding: 1vw 1.5vw;
 +
color: #fff;
 +
font-size:1.15vw;
 +
font-weight: 900;
 +
text-align: center;
 +
text-decoration: none;
 +
letter-spacing: 0.1vw;
 +
border-radius:1.5vw;
 +
overflow: hidden;
 +
border: 0.1vw solid #fff;
 +
-webkit-transition: all 0.75s ease;
 +
-moz-transition: all 0.75s ease;
 +
-o-transition: all 0.75s ease;
 +
transition: all 0.75s ease;
 +
}
 +
a.animated-button:link:after, a.animated-button:visited:after {
 +
content: "";
 +
position: absolute;
 +
height: 0%;
 +
left: 50%;
 +
top: 50%;
 +
width: 25vw;
 +
z-index: -1;
 +
-webkit-transition: all 0.75s ease 0s;
 +
-moz-transition: all 0.75s ease 0s;
 +
-o-transition: all 0.75s ease 0s;
 +
transition: all 0.75s ease 0s;
 +
}
 +
a.animated-button:link:hover, a.animated-button:visited:hover {
 +
color: rgba(2,17,35,1);
 +
border: 0.1vw solid transparent;
 +
}
 +
a.animated-button:link:hover:after, a.animated-button:visited:hover:after {
 +
height: 20vw;
 +
}
 +
</style>
 +
<script>
 +
$(document).ready(function() {
 +
$("a.animated-button").on('click',function() {
 +
var navHeight=$("#navUl").height();
 +
var barHeight=$("#top_menu_14").height();
 +
var winHeight=$(window).height();
 +
var totalScroll=winHeight-barHeight-navHeight;
 +
$('body,html').animate({"scrollTop":totalScroll+2},1500);
 +
});
 +
});
 +
</script>
 +
<style>
 +
#signageDiv{
 +
width: 100%;
 +
overflow: hidden;
 +
}
 +
#bgVideo{
 +
position: relative;
 +
}
 +
#stepDiv{
 +
position: absolute;
 +
text-align: center;
 +
width: 100%;
 +
top: 50vh;
 +
-webkit-transform: translateX(0) translateY(-50%);
 +
-moz-transform: translateX(0) translateY(-50%);
 +
-ms-transform: translateX(0) translateY(-50%);
 +
transform: translateX(0) translateY(-50%);
 +
}
 +
#stepName{
 +
color: white;
 +
font-family: Algerian,_Algerian;
 +
line-height: 10vh;
 +
height: 10vh;
 +
}
 +
#fullName{
 +
color: white;
 +
font-family:"Lucida Calligraphy",_LucidaCalligraphy;
 +
}
 +
</style>
 +
 +
<script>
 +
function signageDivFun(){
 +
var videoWidth=1920;
 +
var videoHeight=1080;
 +
var winWidth=$(window).width();
 +
var winHeight=$(window).height();
 +
$("#signageDiv").css("height",winHeight);
 +
if (winWidth*videoHeight>winHeight*videoWidth ){
 +
$("#bgVideo").css("width",winWidth);
 +
$("#bgVideo").css("top",0.5*(winHeight-videoHeight*winWidth/videoWidth));
 +
$("#bgVideo").css("Height",videoHeight*winWidth/videoWidth);
 +
$("#bgVideo").css("left",0);
 +
}
 +
else{
 +
$("#bgVideo").css("Height",winHeight);
 +
$("#bgVideo").css("left",0.5*(winWidth-videoWidth*winHeight/videoHeight));
 +
$("#bgVideo").css("width",videoWidth*winHeight/videoHeight);
 +
$("#bgVideo").css("top",0);
 +
}
 +
 +
if (winWidth/winHeight>21/8.5){
 +
$("#stepName").css("font-size","21vh");
 +
}
 +
else{
 +
$("#stepName").css("font-size","8.5vw");
 +
}
 +
if (winWidth/winHeight>5/2.2){
 +
$("#fullName").css("font-size","5vh");
 +
}
 +
else{
 +
$("#fullName").css("font-size","2.2vw");
 +
}
 +
}
 +
signageDivFun();
 +
$(window).resize(function(){
 +
signageDivFun();
 +
});
  
 +
</script>
 +
 +
<div class="trade-title">
 +
                <div class="theDivTitle learnMore">A BRIEF INTRODUCTION TO STEP</div>
 +
            </div>
 +
 +
<div id="abstract">
 +
Troubling the world for years, cancer has long been a major threat to people's health. The rapidly developing cell therapy has proved its potential for cancer treatment, but all of the current biosensors, from CAR to SynNotch, lack either programmability or orthogonality, which could significantly restrict its clinical application.
 +
<br><br>
 +
We provide our own solution to the problem, the Synthetic Transducer Engineering Platform (STEP). Consisting of two transmembrane chains with ligand receptor on the extracellular domain and protease/transcription factor pair on the intracellular domain, it can achieve high modularity as well as orthogonality in both upstream and downstream. Through our experiments and models, we've successfully proved the reliability and tunability of STEP, and are trying to find the best condition for its real application.
 +
<br><br>
 +
By using STEP in clinical researches and practices, treatment best suited for cancer patients can be developed. With further researches and optimisation, we believe it will reveal its full potential.
 +
 +
</div>
 
 
+
<div class="videoOutDiv">
+
<div class="videoDiv" data-paralasic="0.45">
.step{font-family:Algerian;
+
</div>
  font-size: 11em;
+
<div class="videoTitle">Watch Project Video</div>
  color: white;
+
<div class="videoCont">Begin the exploration of our STEP system</div>
  left: 800px;
+
<div class="videoPlayI"><i class="fa fa-play"></i></div>
  position: absolute;
+
</div>
  top: 330px;
+
<div class="teamVideo">
 +
<video id="example_video_1" controls controlsList="nodownload" preload="auto">
 +
    <source src="https://static.igem.org/mediawiki/2018/5/54/T--Fudan-CHINA--pjVideo.mp4" type="video/mp4" />
 +
</video>
 +
<div class="closeVideo">
 +
<i class="fa fa-close"></i>
 +
</div>
 +
</div>
 +
 
 +
<style>
 +
video::-webkit-media-controls-panel{
 +
background: rgba(35,35,35,0.8);
 
 
 
}
 
}
.abstract{
+
video::-webkit-media-controls-play-button,video::-webkit-media-controls-mute-button,video::-webkit-media-controls-fullscreen-button{
font-family:Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
+
filter: brightness(2);
 +
}
 +
video::-webkit-media-controls-current-time-display{
 +
color: rgba(255,255,255,0.6);
 +
}
 +
video::-webkit-media-controls-time-remaining-display{
 +
color: rgba(255,255,255,0.6);
 +
}
 +
#example_video_1{
 +
display: inline-block;
 +
position: relative;
 +
top:50%;
 +
transform: translateY(-50%);
 +
}
 +
.teamVideo{
 +
position: fixed;
 +
width: 100%;
 +
height: 100%;
 +
background-color: rgba(0,0,0,1);
 +
top: 0;
 +
left: 0;
 +
z-index: 900;
 +
text-align: center;
 +
display: none;
 +
}
 +
.videoDiv{
 +
width:100%;
 +
height:28vw;
 +
background-image: url('https://static.igem.org/mediawiki/2018/c/ce/T--Fudan-CHINA--pjbgImg.jpg');
 +
background-position: center top;
 +
background-repeat: no-repeat;
 +
background-size: 100%;
 +
text-align: center;
 +
filter: brightness(0.5);
 +
}
 +
.videoTitle{
 
color: white;
 
color: white;
font-size: 1.8em;
+
font-size:3vw;
position: absolute;
+
font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
width: 1400px;
+
text-align:center;
left: 250px;
+
position: relative;
top: 580px;
+
top:-19vw;
line-height:25px;
+
font-weight: 900;
text-align: justify;/*两端对齐*/
+
font-weight: 600;/*粗度*/
+
 
}
 
}
.fullname{
+
.videoCont{
font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
+
 
color: white;
 
color: white;
    font-size: 2em;
+
font-size:1.2vw;
position: absolute;
+
font-family:;
left:800px;
+
text-align:center;
top:430px;
+
position: relative;
display: block;
+
top:-17vw;
+
font-weight: 100;
 +
}
 +
.videoOutDiv{
 +
position: relative;
 +
text-align: center;
 +
margin: 3vw 0 -5vw 0;
 +
}
 +
.videoPlayI{
 +
position: relative;
 +
top:-13vw;
 +
}
 +
.videoPlayI i{
 +
font-size:2.7vw;
 +
color: white;
 +
border: 2px solid white;
 +
width: 3vw;
 +
height: 3vw;
 +
padding: 1.3vw 0.9vw 0.9vw 1.3vw;
 +
border-radius: 50%;
 +
cursor: pointer;
 
}
 
}
 
 
 
 +
.closeVideo{
 +
position: fixed;
 +
top:2vw;
 +
right: 2vw;
 +
color:rgba(211,211,211,0.8);
 +
font-size: 2.5vw;
 +
cursor: pointer;
 +
transition: all 0.3s ease;
 +
}
 +
.closeVideo:hover{
 +
color: rgba(211,211,211,1);
 +
}
 
</style>
 
</style>
</head>
+
<script>
 +
$(".videoPlayI i").mouseenter(function(){
 +
$(this).stop().animate({"color":"rgba(135,206,250)","borderColor":"rgba(135,206,250)"},200);
 +
})
 +
$(".videoPlayI i").mouseleave(function(){
 +
$(this).stop().animate({"color":"white","borderColor":"white"},200);
 +
})
 +
 
 +
videoSizeAdj();
 +
$(window).resize(function(){
 +
videoSizeAdj();
 +
});
 
 
+
function videoSizeAdj(){
+
var winHeight=$(window).height();
<body style="margin:0; padding:0;">
+
var winWidth=$(window).width();
<img style="position: absolute;top:-7px; width:100%;z-index: -1;" src="https://static.igem.org/mediawiki/2018/8/8f/T--Fudan-CHINA--bgpicture2.jpeg">
+
if (winWidth/winHeight>16/9){
 +
$("#example_video_1").width(winHeight/9*16);
 +
$("#example_video_1").height(winHeight);
 +
}
 +
else{
 +
$("#example_video_1").width(winWidth);
 +
$("#example_video_1").height(winWidth/16*9);
 +
}
 +
}
 +
$(".videoPlayI").click(function(){
 +
$(".teamVideo").fadeIn();
 +
$("#top_menu_14").fadeOut();
 +
$("#example_video_1")[0].play();
 +
})
 +
$(".closeVideo").click(function(){
 +
$("#top_menu_14").fadeIn();
 +
$(".teamVideo").fadeOut();
 +
$("#example_video_1")[0].pause();
 +
});
 
 
<img src="https://static.igem.org/mediawiki/2018/1/1d/T--Fudan-CHINA--step_white.png" width="250" height="250" style="position:absolute; left:500px; top:250px;" alt="badge">
 
 
 
<div class="step">S T E P</div>
+
$(window).scroll(function() {
+
var scrollTop = $(window).scrollTop();
<div class="abstract">
+
var videoDivTop=$(".videoDiv").offset().top;
Cell therapy has shown great potential in cancer treatment these years, while the existing CAR-T cell therapy can only target on cell surface antigens. However, there are also many tumour markers free in the blood, also being important targets marking the location of tumour. <br><br>
+
var winHeight=$(window).height();
+
var videoDivValue = $('.videoDiv').attr('data-paralasic');
Here we manage to construct a brand new transducer system, named STEP, to recognise small, soluble tumour markers (e.g. VEGF, AFP, TSGF). For that purpose, we adapt and optimise a newly developed system to transduce the input (free ligands) into release of a transcription factor and expression of desired drugs. To increase the recognition ability, we use Rosetta to redesign the interface between ligand and receptor in order to enhance the binding affinity.<br><br>  
+
if (scrollTop+winHeight-videoDivTop>0){
+
$('.videoDiv').css('background-position', 'center top -' + (scrollTop+winHeight-videoDivTop)*videoDivValue + 'px');
Our STEP system can be applied for detecting tumour markers in blood and secrete drug in real time to appropriate tissues, providing a new yet practical approach for cell therapy and cancer treatment.<br><br>
+
}
</div>
+
});
<div class="fullname">
+
</script>
Synthetic Transducer Engineering Platform
+
 
 +
 
 +
 
 +
<style>
 +
#abstract{
 +
font-size:23px;
 +
text-align:justify;
 +
line-height:35px;
 +
margin-left:10%;
 +
margin-right:10%;
 +
margin-top:3%;
 +
margin-bottom:5%;
 +
font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
 +
}
 +
</style>
 +
 
 +
<div class="moreInfoma">
 +
<div class="trade-content" style="overflow: hidden;">
 +
            <div class="trade-title">
 +
                <div class="theDivTitle learnMore">LEARN MORE</div>  
 +
            </div>
 +
            <div class="trade-black">
 +
                <div class="trade-box">
 +
                    <div class="trade-box-list">
 +
                        <div class="trade-box-item itemProject">
 +
                            <a href="https://2018.igem.org/Team:Fudan-CHINA/Design">
 +
                                <div class="item-logo">
 +
                                    <i class="fa fa-cogs"></i>
 +
                                </div>
 +
                                <div class="item-title">Project</div>
 +
                                <div class="item-text">
 +
                                    Background<br>Design<br>Applied Design
 +
                                </div>
 +
                            </a>
 +
                        </div>
 +
                        <div class="trade-box-item itemResults">
 +
                            <a href="https://2018.igem.org/Team:Fudan-CHINA/Results">
 +
                                <div class="item-logo">
 +
                                  <i class="fa fa-flask"></i>
 +
                                </div>
 +
                                <div class="item-title">
 +
                                        Results
 +
                          </div>
 +
                                <div class="item-text">
 +
                                    Overview<br>STEP System Test<br>Receptor Optimisation<br>Demonstrate<br>Interlab
 +
 
 +
                                </div>
 +
                            </a>
 +
                        </div>
 +
<div class="trade-box-item itemModel">
 +
                            <a href="https://2018.igem.org/Team:Fudan-CHINA/Model">
 +
                                <div class="item-logo">
 +
                                    <i class="fa fa-area-chart"></i>
 +
                                </div>
 +
                                <div class="item-title">Model</div>
 +
                                <div class="item-text">
 +
                                    Model<br>Software
 +
                                </div>
 +
                            </a>
 +
                        </div>
 +
                        <div class="trade-box-item itemParts">
 +
                            <a href="https://2018.igem.org/Team:Fudan-CHINA/Part_List">
 +
                                <div class="item-logo">
 +
                                    <i class="fa fa-puzzle-piece"></i>
 +
                                </div>
 +
                                <div class="item-title">
 +
                                            Parts                    </div>
 +
                                <div class="item-text">
 +
                                    Improved Part<br>Best New Basic Part<br>Best New Composite Part<br>Best Part Collection<br>Part List
 +
 
 +
                                </div>
 +
                            </a>
 +
                        </div>
 +
                    </div>
 +
                </div>
 +
            </div>
 +
</div>
 +
<div class="trade-content" style="overflow: hidden;">
 +
            <div class="trade-black">
 +
                <div class="trade-box">
 +
                    <div class="trade-box-list">
 +
                      <div class="trade-box-item itemHP">
 +
                            <a href="https://2018.igem.org/Team:Fudan-CHINA/Human_Practices">
 +
                                <div class="item-logo">
 +
                                  <i class="fa fa-h-square"></i>
 +
                                </div>
 +
                                <div class="item-title">Human Practice</div>
 +
                                <div class="item-text">
 +
                                    Overview<br>Silver HP<br>Integrated HP<br>Education &amp; Engagement<br>Collaborations<br>Safety
 +
                                </div>
 +
                            </a>
 +
                        </div>
 +
                        <div class="trade-box-item itemNotebook">
 +
                            <a href="https://2018.igem.org/Team:Fudan-CHINA/Notebook">
 +
                                <div class="item-logo">
 +
                                    <i class="fa fa-book"></i>
 +
                                </div>
 +
                                <div class="item-title">Notebook</div>
 +
                                <div class="item-text">
 +
                                    Notebook
 +
                                </div>
 +
                            </a>
 +
                        </div>
 +
                        <div class="trade-box-item itemTeam">
 +
                            <a href="https://2018.igem.org/Team:Fudan-CHINA/Team">
 +
                                <div class="item-logo">
 +
                                  <i class="fa fa-users"></i>
 +
                                </div>
 +
                                <div class="item-title">Team</div>
 +
                                <div class="item-text">
 +
                                    Team<br>Attributions
 +
                                </div>
 +
                            </a>
 +
                        </div>
 +
                        <div class="trade-box-item itemAwards">
 +
                            <a href="https://2018.igem.org/Team:Fudan-CHINA/Awards">
 +
                                <div class="item-logo">
 +
                                    <i class="fa fa-lightbulb-o"></i>
 +
                                </div>
 +
                                <div class="item-title">Awards</div>
 +
                                <div class="item-text">
 +
                                    Awards
 +
                                </div>
 +
                            </a>
 +
                        </div>
 +
                    </div>
 +
                </div>
 +
            </div>
 +
        </div>
 +
      </div>
 +
 
 +
<style>
 +
.theDivTitle{
 +
color: rgba(6,34,82,1);
 +
font-family: "Verlag Book",Arial,Helvetica;
 +
font-weight: 400;
 +
font-size: 3vw;
 +
padding:0;
 +
margin: 1vw;
 +
position: relative;
 +
}
 +
.theDivTitle:after {
 +
    content: "";
 +
    position: absolute;
 +
    width: 4vw;
 +
    height: 0.06vw;
 +
    background-color: rgba(6,34,82,1);
 +
    top:3.4vw;
 +
    left: 50%;
 +
    transform: translateX(-50%);
 +
}
 +
.trade-content{
 +
padding:0 0 0 0;
 +
margin: 0;
 +
}
 +
.trade-title {
 +
    color: #333;
 +
    text-align: center;
 +
    padding: 3.5vw 0 1vw 0;
 +
margin: 0 0 3vw 0;
 +
    position: relative;
 +
}
 +
 
 +
 
 +
 
 +
.trade-box-item a {
 +
    text-decoration: none;
 +
    color: #000;
 +
position: absolute;
 +
    width: 100%;
 +
    height: 100%;
 +
    left: 0;
 +
    top: 0;
 +
}
 +
 
 +
 
 +
.trade-box {
 +
    width: 85% !important;
 +
    margin: 0 auto;
 +
    position: relative;
 +
    transition: all .3s ease;
 +
}
 +
 
 +
.trade-box-list {
 +
    display: flex;
 +
    flex-direction: row;
 +
    justify-content: center;
 +
    align-items: center;
 +
}
 +
 
 +
.trade-box-item {
 +
    flex: 1;
 +
    text-align: center;
 +
    position: relative;
 +
    height: 26vw;
 +
    background: no-repeat center;
 +
    background-size: 100% auto;
 +
}
 +
 
 +
.trade-content .trade-box-item:before {
 +
    content: "";
 +
    position: absolute;
 +
    width: 100%;
 +
    height: 100%;
 +
    left: 0;
 +
    top: 0;
 +
    background-color: rgba(0,0,0,.6);
 +
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
 +
}
 +
 
 +
.item-logo {
 +
    margin: 0 auto;
 +
    display: block;
 +
}
 +
 
 +
.trade-content .trade-box-item .item-logo {
 +
    position: relative;
 +
    margin-top: 8vw;
 +
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
 +
}
 +
 
 +
.item-logo i {
 +
    display: block;
 +
    margin: 0 auto;
 +
    max-width: 100%;
 +
color: white;
 +
font-size: 3.5vw;
 +
}
 +
 
 +
.item-title {
 +
    font-size: 1.8vw;
 +
    font-weight:700;
 +
    color: #fff;
 +
    padding: 0.7vw 0;
 +
    position: relative;
 +
font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
 +
}
 +
 
 +
.trade-content .item-title:before {
 +
    content: "";
 +
    position: relative;
 +
    display: block;
 +
    width: 3vw;
 +
    border-bottom: 0.1vw solid #fff;
 +
    margin: 0 auto 2vw;
 +
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
 +
}
 +
 
 +
.item-text {
 +
    position: relative;
 +
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
 +
    opacity: 0;
 +
padding: 2vw;
 +
color: #fff;
 +
    font-size: 1.5vw;
 +
    line-height:1.8vw;
 +
font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
 +
}
 +
 
 +
 
 +
.trade-content .itemProject {
 +
    background-image: url("https://static.igem.org/mediawiki/2018/1/1a/T--Fudan-CHINA--projectBgImg1.png");
 +
}
 +
 +
.trade-content .itemResults {
 +
    background-image: url("https://static.igem.org/mediawiki/2018/0/0e/T--Fudan-CHINA--ResultBgImg.jpg");
 +
filter: brightness(1.1);
 +
}
 +
 
 +
.trade-content .itemModel {
 +
    background-image: url("https://static.igem.org/mediawiki/2018/2/2b/T--Fudan-CHINA--modelBgImg1.png");
 +
}
 +
 +
.trade-content .itemParts {
 +
    background-image: url("https://static.igem.org/mediawiki/2018/1/18/T--Fudan-CHINA--partsBgImg.jpg");
 +
}
 +
 
 +
.trade-content .itemHP {
 +
    background-image: url("https://static.igem.org/mediawiki/2018/1/12/T--Fudan-CHINA--hpBgImg2.png");
 +
}
 +
.trade-content .itemNotebook {
 +
    background-image: url("https://static.igem.org/mediawiki/2018/2/26/T--Fudan-CHINA--NotebookBgImg.png");
 +
}
 +
 
 +
.trade-content .itemAwards {
 +
    background-image: url("https://static.igem.org/mediawiki/2018/2/2a/T--Fudan-CHINA--awardBgImg2.png");
 +
}
 +
 
 +
.trade-content .itemTeam {
 +
    background-image: url("https://static.igem.org/mediawiki/2018/6/64/T--Fudan-CHINA--teamBgImg1.png");
 +
}
 +
 
 +
.trade-content .trade-box-item:hover .item-text {
 +
    display: block;
 +
    opacity: 1;
 +
    margin-top: 0;
 +
}
 +
 
 +
.trade-content .trade-box-item:hover:before {
 +
    background-color: rgba(50,143,189,0.90);
 +
}
 +
 
 +
.trade-content .trade-box-item:hover .item-logo {
 +
    margin-top: 5vw;
 +
}
 +
 
 +
.trade-content .trade-box-item:hover .item-title:before {
 +
    opacity: 0;
 +
    margin-bottom: 0;
 +
}
 +
</style>
 +
 +
 +
 +
 
 +
<div id="sponsor">
 +
<div class="theDivTitle">SPONSORS</div>
 +
<div style="font-size: 0;position: relative;margin: 4vw;">
 +
<a href="http://life.fudan.edu.cn/" style="font-size: 0;">
 +
<img class="spImg" id="spImg1" src="https://static.igem.org/mediawiki/2018/7/74/T--Fudan-CHINA--sp2.png" />
 +
</a>
 +
<a href="http://medicine.fudan.edu.cn/" style="font-size: 0;">
 +
<img class="spImg" id="spImg2" src="https://static.igem.org/mediawiki/2018/d/d1/T--Fudan-CHINA--sp3.png" />
 +
</a>
 +
<a href="http://www.yfc.cn/cn/index.html" style="font-size: 0;">
 +
<img class="spImg" id="spImg4" src="https://static.igem.org/mediawiki/2018/7/7b/T--Fudan-CHINA--sp4.png" />
 +
</a>
 +
<a href="https://sg.idtdna.com/pages" style="font-size: 0">
 +
<img class="spImg" id="spImg3" style="position: relative;left:15.3px;" src="https://static.igem.org/mediawiki/2018/e/eb/T--Fudan-CHINA--sp7.png" /></a>
 +
<a href="http://www.snapgene.com/" style="font-size: 0;">
 +
<img class="spImg" id="spImg5" src="https://static.igem.org/mediawiki/2018/f/fb/T--Fudan-CHINA--sp5.png" />
 +
</a>
 +
<a href="https://www.mathworks.com/" style="font-size: 0;">
 +
<img class="spImg" id="spImg6" src="https://static.igem.org/mediawiki/2018/c/c4/T--Fudan-CHINA--sp6.png" />
 +
</a>
 
</div>
 
</div>
 +
</div>
 +
<style>
 +
#sponsor{
 +
width: 100%;
 +
overflow: hidden;
 +
text-align: center;
 +
padding:5vw 0 4vw 0;
 +
background-color: white;
 +
font-size: 0;
 +
}
 +
 +
.spImg{
 +
padding: 0.1vw;
 +
border-style: solid;
 +
border-color:rgba(219,219,219,1);
 +
border-width: 0.1vw;
 +
opacity:0;
 +
position: relative;
 +
top:15px;
 +
width:25vw;
 +
margin: 1vw 1vw;
 +
}
 +
</style>
 
<script>
 
<script>
var abc=$('.abstract');
+
    $(function(){
 +
  scsl();
 +
      });
 +
$(window).scroll(function(){
 +
  scsl();
 +
    });
 +
function scsl(){
 +
slideInTop($("#spImg1"),$("#spImg1"),0);
 +
slideInTop($("#spImg2"),$("#spImg1"),0);
 +
slideInTop($("#spImg3"),$("#spImg1"),0);
 +
slideInTop($("#spImg4"),$("#spImg4"),0);
 +
slideInTop($("#spImg5"),$("#spImg4"),0);
 +
slideInTop($("#spImg6"),$("#spImg4"),0);
 +
};
 +
</script>
  
abc.slideToggle(5000);
+
</script>
+
+
</body>
+
 
</html>
 
</html>
 +
{{Fudan-CHINA/ContactUs}}

Latest revision as of 07:13, 30 November 2018

S T E P
Synthetic Transducer Engineering Platform
A BRIEF INTRODUCTION TO STEP
Troubling the world for years, cancer has long been a major threat to people's health. The rapidly developing cell therapy has proved its potential for cancer treatment, but all of the current biosensors, from CAR to SynNotch, lack either programmability or orthogonality, which could significantly restrict its clinical application.

We provide our own solution to the problem, the Synthetic Transducer Engineering Platform (STEP). Consisting of two transmembrane chains with ligand receptor on the extracellular domain and protease/transcription factor pair on the intracellular domain, it can achieve high modularity as well as orthogonality in both upstream and downstream. Through our experiments and models, we've successfully proved the reliability and tunability of STEP, and are trying to find the best condition for its real application.

By using STEP in clinical researches and practices, treatment best suited for cancer patients can be developed. With further researches and optimisation, we believe it will reveal its full potential.
Watch Project Video
Begin the exploration of our STEP system

  Address



G604, School of Life Sciences, Fudan University
2005 Songhu Road, Yangpu, Shanghai, China