Difference between revisions of "Team:Fudan-CHINA"

 
(132 intermediate revisions by 3 users not shown)
Line 3: Line 3:
 
<html>
 
<html>
  
<div class="column full_size" >
 
<h1>STEP</h1>
 
<p>Fudan-CHINA</p>
 
  
 +
 +
 +
<!--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();
 +
});
  
<h3>Description</h3>
+
</script>
 +
 +
<div class="trade-title">
 +
                <div class="theDivTitle learnMore">A BRIEF INTRODUCTION TO STEP</div>  
 +
            </div>
  
Synthetic Transducer Engineering Platform (STEP)
+
<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.
  
As the primary cause of death, cancer has long been threatening life of human. Modular receptor systems have become a hotspot of cancer therapy, while existing synthetic systems (CAR-T, synNotch, etc) are only capable of recognising membrane protein rather than soluble ligands, which are also important targets. To address this problem, we designed Synthetic Transducer Engineering Platform (STEP), which is aimed to convert extracellular stimulation of soluble ligands into a reporter gene signal. STEP consists of two separate transmembrane chains, one with an intracellular domain of a transcription factor and the other with a protease. Binding of ligands and the two chains will lead to a cleavage event and release the transcription factor, thus triggering desired gene expression, e.g., secretion of drugs. With its extra- and intra-cellular domain being highly programmable, STEP provides a general yet orthogonal platform of ligand recognition, and a new approach of targeting therapy of cancer.  
+
</div>
 +
 +
<div class="videoOutDiv">
 +
<div class="videoDiv" data-paralasic="0.45">
 +
</div>
 +
<div class="videoTitle">Watch Project Video</div>
 +
<div class="videoCont">Begin the exploration of our STEP system</div>
 +
<div class="videoPlayI"><i class="fa fa-play"></i></div>
 +
</div>
 +
<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>
  
</html>
+
<style>
 +
video::-webkit-media-controls-panel{
 +
background: rgba(35,35,35,0.8);
 +
 +
}
 +
video::-webkit-media-controls-play-button,video::-webkit-media-controls-mute-button,video::-webkit-media-controls-fullscreen-button{
 +
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;
 +
font-size:3vw;
 +
font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
 +
text-align:center;
 +
position: relative;
 +
top:-19vw;
 +
font-weight: 900;
 +
}
 +
.videoCont{
 +
color: white;
 +
font-size:1.2vw;
 +
font-family:;
 +
text-align:center;
 +
position: relative;
 +
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>
 +
<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);
 +
})
  
[[File:T--Fudan-CHINA--Lab01.jpg|400x600px]]
+
videoSizeAdj();
 +
$(window).resize(function(){
 +
videoSizeAdj();
 +
});
 +
 +
function videoSizeAdj(){
 +
var winHeight=$(window).height();
 +
var winWidth=$(window).width();
 +
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();
 +
});
 +
 +
 +
$(window).scroll(function() {
 +
var scrollTop = $(window).scrollTop();
 +
var videoDivTop=$(".videoDiv").offset().top;
 +
var winHeight=$(window).height();
 +
var videoDivValue = $('.videoDiv').attr('data-paralasic');
 +
if (scrollTop+winHeight-videoDivTop>0){
 +
$('.videoDiv').css('background-position', 'center top -' + (scrollTop+winHeight-videoDivTop)*videoDivValue + 'px');
 +
}
 +
});
 +
</script>
  
<html>
 
</div>
 
  
  
 +
<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="column full_size" >
+
<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
  
<h3>Before you start</h3>
+
                                </div>
<p> Please read the following pages:</p>
+
                            </a>
<ul>
+
                        </div>
<li> <a href="https://2018.igem.org/Competition">Competition Hub</a> </li>
+
<div class="trade-box-item itemModel">
<li> <a href="https://2018.igem.org/Competition/Deliverables/Wiki">Wiki Requirements page</a></li>
+
                            <a href="https://2018.igem.org/Team:Fudan-CHINA/Model">
<li> <a href="https://2018.igem.org/Resources/Template_Documentation">Template documentation</a></li>
+
                                <div class="item-logo">
</ul>
+
                                    <i class="fa fa-area-chart"></i>
</div>
+
                                </div>
 
+
                                <div class="item-title">Model</div>
 
+
                                <div class="item-text">
<div class="clear extra_space"></div>
+
                                    Model<br>Software
<div class="line_divider"></div>
+
                                </div>
<div class="clear extra_space"></div>
+
                            </a>
 
+
                        </div>
 
+
                        <div class="trade-box-item itemParts">
 
+
                            <a href="https://2018.igem.org/Team:Fudan-CHINA/Part_List">
<div class="column full_size" >
+
                                <div class="item-logo">
<h3> Styling your wiki </h3>
+
                                    <i class="fa fa-puzzle-piece"></i>
<p>You may style this page as you like or you can simply leave the style as it is. You can easily keep the styling and edit the content of these default wiki pages with your project information and completely fulfill the requirement to document your project.</p>
+
                                </div>
<p>While you may not win Best Wiki with this styling, your team is still eligible for all other awards. This default wiki meets the requirements, it improves navigability and ease of use for visitors, and you should not feel it is necessary to style beyond what has been provided.</p>  
+
                                <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>
 +
<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;
 +
}
  
  
  
<div class="clear extra_space"></div>
+
.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;
 +
}
  
<div class="column third_size" >
+
.trade-box-list {
 +
    display: flex;
 +
    flex-direction: row;
 +
    justify-content: center;
 +
    align-items: center;
 +
}
  
<h3> Uploading pictures and files </h3>
+
.trade-box-item {
<p> You must upload any pictures and files to the iGEM 2018 server. Remember to keep all your pictures and files within your team's namespace or at least include your team's name in the file name. </p>
+
    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);
 +
}
  
<p>When you upload, set the "Destination Filename" to <b> T--YourOfficialTeamName--NameOfFile.jpg</b>. (If you don't do this, someone else might upload a different file with the same "Destination Filename", and your file would be erased!)</p>
+
.item-logo {
 +
    margin: 0 auto;
 +
    display: block;
 +
}
  
<div class="button_link">
+
.trade-content .trade-box-item .item-logo {
<a href="https://2018.igem.org/Special:Upload">
+
    position: relative;
UPLOAD FILES
+
    margin-top: 8vw;
</a>
+
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
</div>
+
}
  
</div>
+
.item-logo i {
 +
    display: block;
 +
    margin: 0 auto;
 +
    max-width: 100%;
 +
color: white;
 +
font-size: 3.5vw;
 +
}
  
<div class="column third_size" >
+
.item-title {
<h3> Wiki template information </h3>
+
    font-size: 1.8vw;
<p>We have created these wiki template pages to help you get started and to help you think about how your team will be evaluated. You can find a list of all the pages tied to awards here at the <a href="https://2018.igem.org/Judging/Pages_for_Awards">Pages for awards</a> link. You must edit these pages to be evaluated for medals and awards, but ultimately the design, layout, style and all other elements of your team wiki is up to you!</p>
+
    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";
 +
}
  
</div>
+
.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";
 +
}
  
  
<div class="column third_size" >
+
.trade-content .itemProject {
<div class="highlight decoration_B_full">
+
    background-image: url("https://static.igem.org/mediawiki/2018/1/1a/T--Fudan-CHINA--projectBgImg1.png");
<h3> Editing your wiki </h3>
+
}
<p>On this page you can document your project, introduce your team members, document your progress and share your iGEM experience with the rest of the world! </p>
+
<p>Use WikiTools - Edit in the black menu bar to edit this page</p>
+
.trade-content .itemResults {
 +
    background-image: url("https://static.igem.org/mediawiki/2018/0/0e/T--Fudan-CHINA--ResultBgImg.jpg");
 +
filter: brightness(1.1);
 +
}
  
<div class="button_link">
+
.trade-content .itemModel {
<a href="https://2018.igem.org/wiki/index.php?title=Team:Fudan-CHINA&action=edit">
+
    background-image: url("https://static.igem.org/mediawiki/2018/2/2b/T--Fudan-CHINA--modelBgImg1.png");
EDIT PAGE
+
}
</a>
+
</div>
+
.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");
 +
}
  
</div>
+
.trade-content .itemAwards {
</div>
+
    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;
 +
}
  
<div class="clear extra_space"></div>
+
.trade-content .trade-box-item:hover .item-title:before {
<div class="line_divider"></div>
+
    opacity: 0;
<div class="clear extra_space"></div>
+
    margin-bottom: 0;
 +
}
 +
</style>
 +
 +
 +
  
 
+
<div id="sponsor">
 
+
<div class="theDivTitle">SPONSORS</div>
<div class="column two_thirds_size" >
+
<div style="font-size: 0;position: relative;margin: 4vw;">
<h3>Tips</h3>
+
<a href="http://life.fudan.edu.cn/" style="font-size: 0;">
<p>This wiki will be your team’s first interaction with the rest of the world, so here are a few tips to help you get started: </p>
+
<img class="spImg" id="spImg1" src="https://static.igem.org/mediawiki/2018/7/74/T--Fudan-CHINA--sp2.png" />
<ul>
+
</a>
<li>State your accomplishments! Tell people what you have achieved from the start. </li>
+
<a href="http://medicine.fudan.edu.cn/" style="font-size: 0;">
<li>Be clear about what you are doing and how you plan to do this.</li>
+
<img class="spImg" id="spImg2" src="https://static.igem.org/mediawiki/2018/d/d1/T--Fudan-CHINA--sp3.png" />
<li>You have a global audience! Consider the different backgrounds that your users come from.</li>
+
</a>
<li>Make sure information is easy to find; nothing should be more than 3 clicks away. </li>
+
<a href="http://www.yfc.cn/cn/index.html" style="font-size: 0;">
<li>Avoid using very small fonts and low contrast colors; information should be easy to read.  </li>
+
<img class="spImg" id="spImg4" src="https://static.igem.org/mediawiki/2018/7/7b/T--Fudan-CHINA--sp4.png" />
<li>Start documenting your project as early as possible; don’t leave anything to the last minute before the Wiki Freeze. For a complete list of deadlines visit the <a href="https://2018.igem.org/Calendar">iGEM 2018 calendar</a> </li>
+
</a>
<li>Have lots of fun! </li>
+
<a href="https://sg.idtdna.com/pages" style="font-size: 0">
</ul>  
+
<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>
 +
    $(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>
  
<div class="column third_size">
+
<div class="highlight decoration_A_full">
+
<h3>Inspiration</h3>
+
<p> You can also view other team wikis for inspiration! Here are some examples:</p>
+
<ul>
+
<li> <a href="https://2014.igem.org/Team:SDU-Denmark/"> 2014 SDU Denmark </a> </li>
+
<li> <a href="https://2014.igem.org/Team:Aalto-Helsinki">2014 Aalto-Helsinki</a> </li>
+
<li> <a href="https://2014.igem.org/Team:LMU-Munich">2014 LMU-Munich</a> </li>
+
<li> <a href="https://2014.igem.org/Team:Michigan"> 2014 Michigan</a></li>
+
<li> <a href="https://2014.igem.org/Team:ITESM-Guadalajara">2014 ITESM-Guadalajara </a></li>
+
<li> <a href="https://2014.igem.org/Team:SCU-China"> 2014 SCU-China </a></li>
+
</ul>
+
</div>
+
</div>
+
 
+
 
+
 
+
 
+
 
</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