Skip to content
Snippets Groups Projects
home.html 11.1 KiB
Newer Older
Ran Tu's avatar
Ran Tu committed
{% extends "layout.html" %}
{% block title %}Home{% endblock %}
{% block lead %}<b>Welcome to iGEM 2024!</b>{% endblock %}

{% block page_content %}
Ran Tu's avatar
Ran Tu committed
<head>
Ran Tu's avatar
Ran Tu committed
  <link rel="icon" href="https://static.igem.wiki/teams/5182/logo-forwebuse.ico" >
Ran Tu's avatar
Ran Tu committed
  <link rel="stylesheet" href="\sjtu-biox-shanghai\static\animate.css">
Ran Tu's avatar
Ran Tu committed
</head>

Ran Tu's avatar
Ran Tu committed

<style type="text/css">
body{overflow-x:hidden; background-size: cover;
Ran Tu's avatar
Ran Tu committed
  background-image: url(https://static.igem.wiki/teams/5182/mascot-sticker/backgr-3-black-forcut.webp),
Ran Tu's avatar
Ran Tu committed
  url(https://static.igem.wiki/teams/5182/paper-rough2.webp);
Ran Tu's avatar
Ran Tu committed
  background-origin: border-box;
Ran Tu's avatar
Ran Tu committed
  background-attachment: scroll, scroll;
Ran Tu's avatar
Ran Tu committed
  background-color: transparent, transparent;
Ran Tu's avatar
Ran Tu committed
  background-position: 0px -80px,center;
Ran Tu's avatar
Ran Tu committed
  background-repeat:no-repeat,repeat;
Ran Tu's avatar
Ran Tu committed
  background-size:100% auto , cover;
Ran Tu's avatar
Ran Tu committed
  }
Ran Tu's avatar
Ran Tu committed
.bg-dark { background-color: #ffffff00; }
.bg-hero { background-color: transparent;}

.nav-link:hover {
    background-color:#ffffff00;
    -webkit-animation: Glow 0.2s ease infinite alternate;
            animation: Glow 0.2s ease infinite alternate;
}
.dropdown-menu {
    background-color:#26204C ;
    padding: 0px;
}
.dropdown-item {
    color: white;
    font-size: 1rem;
    -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
}
.dropdown-item:hover {
    display: block;
    background-color:#26204C;
    color:white;
    border-radius: 0.25rem;
    -webkit-animation: Glow 0.2s ease infinite alternate;
            animation: Glow 0.2s ease infinite alternate;
}
@-webkit-keyframes Glow {
    from {
        text-shadow: 0 0 10px #fff,
                     0 0 20px #fff,
                     0 0 30px #fff;
    }
    to {
        text-shadow: 0 0 5px #fff,
                     0 0 10px #fff,
                     0 0 15px #fff;
    }
}
@keyframes Glow {
    from {
        text-shadow: 0 0 10px #fff,
                     0 0 20px #fff,
                     0 0 30px #fff;
    }
    to {
        text-shadow: 0 0 5px #fff,
                     0 0 10px #fff,
                     0 0 15px #fff;
    }
}
#vedio1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
</style>

Ran Tu's avatar
Ran Tu committed
<body>
Ran Tu's avatar
Ran Tu committed
<!-- /*这是标题*/ -->
Ran Tu's avatar
Ran Tu committed
<div class="slide-in" style="display: flex; justify-content: center; position: relative; top: 120px;"  >
Ran Tu's avatar
Ran Tu committed
  <div style="text-align: start;line-height: 1.2;" >
Ran Tu's avatar
Ran Tu committed
    <span style="font-weight: bold; font-size: 100pt; color: #c063f2;">X</span>
Ran Tu's avatar
Ran Tu committed
    <span style="font-weight: bold; font-size: 100pt; color: #b58de0;">PCures</span>
    <br>
Ran Tu's avatar
Ran Tu committed
    <span style="font-weight: bold; font-size: 35pt; color: #c1b7f5;"><span style="color: #b689d4;">
Ran Tu's avatar
Ran Tu committed
      X</span>eroderma 
Ran Tu's avatar
Ran Tu committed
      <span style="color: #b689d4;">P</span>igmentosum complementation group 
      <span style="color: #b689d4;">C</span></span>
Ran Tu's avatar
Ran Tu committed
    <br>
Ran Tu's avatar
Ran Tu committed
    <span style="font-weight: bold; font-size: 35pt; color: #c1b7f5;">
Ran Tu's avatar
Ran Tu committed
      <span style="color: #b689d4;">U</span>ltraviolet 
      <span style="color: #b689d4;">R</span>esposive 
Ran Tu's avatar
Ran Tu committed
      g<span style="color: #b689d4;">E</span>netic 
Ran Tu's avatar
Ran Tu committed
      <span style="color: #b689d4;">S</span>witch</span>
Ran Tu's avatar
Ran Tu committed
  </div>
</div>

Ran Tu's avatar
Ran Tu committed
<!-- /*贴纸crane1*/ -->
Ran Tu's avatar
Ran Tu committed
<div class="mascot-sticker" style="position: absolute; top: 480px; right:100px; ">
Ran Tu's avatar
Ran Tu committed
  <img src="https://static.igem.wiki/teams/5182/mascot-sticker/crane3.webp" >
</div>

Ran Tu's avatar
Ran Tu committed
<!-- 什么是xp?小标题 -->
Ran Tu's avatar
Ran Tu committed
<div style="position: relative; margin-top: 450px;display: flex; justify-content: center;">
Ran Tu's avatar
Ran Tu committed
  <p class="homepage-subtitle" style="z-index: 4;">What is XP? </p>
Ran Tu's avatar
Ran Tu committed
  <img src="https://static.igem.wiki/teams/5182/mascot-sticker/homepage-ball.svg" style="position: absolute;
Ran Tu's avatar
Ran Tu committed
  height:70px !important; width:auto; left:500px; top:-20px; z-index:3;">
Ran Tu's avatar
Ran Tu committed
</div>
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
<!-- xp患者示例图 -->
Ran Tu's avatar
Ran Tu committed
<div style="display: flex; justify-content: center; margin-top:50px;">
Ran Tu's avatar
Ran Tu committed
  <img class="slide-in"
Ran Tu's avatar
Ran Tu committed
  src="https://static.igem.wiki/teams/5182/mascot-sticker/homepage-forpatient.webp" style="width: 60%;
Ran Tu's avatar
Ran Tu committed
  height:auto; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);">
Ran Tu's avatar
Ran Tu committed
</div>

Ran Tu's avatar
Ran Tu committed
<!-- xp简介 -->
Ran Tu's avatar
Ran Tu committed
<div  style="position: relative; margin-top: 50px;">
Ran Tu's avatar
Ran Tu committed
  <p class="homepage-text">Xeroderma Pigmentosum (XP) is a genetic disorder caused by defects in DNA repair mechanisms. 
Ran Tu's avatar
Ran Tu committed
    In affected individuals, cells are unable to effectively repair DNA damage from ultraviolet (UV) light, 
    resulting in the accumulation of UV-induced injuries. This condition is primarily characterized 
    by heightened sensitivity to sunlight and an increased risk of skin cancer, often accompanied by 
    other complications, including eye disorders and more.
Ran Tu's avatar
Ran Tu committed
  </p>
Ran Tu's avatar
Ran Tu committed
  <p class="homepage-text"> Patients commonly exhibit distinctive features such as dry skin, skin atrophy, checkerboard 
Ran Tu's avatar
Ran Tu committed
    pigmentation, telangiectasia, and the early onset of various skin tumors. Consequently, 
    this condition can lead to significant physical and emotional distress for those affected.
Ran Tu's avatar
Ran Tu committed
  </p>
</div>
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
<!-- 黑夜&月光(背景图) -->
Ran Tu's avatar
Ran Tu committed
<img src="https://static.igem.wiki/teams/5182/mascot-sticker/homepage-formoonnight.webp" 
style="margin-top=500px;
Ran Tu's avatar
Ran Tu committed
position:absolute; width:100%  !important; height:auto !important;left:0  !important;">
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
<!-- 不知道2025的igem还会不会搬前人代码。总之我在力所能及的范围内留下了注释 如果是屎山代码请不要骂我(骂了我也听不见) -->

Ran Tu's avatar
Ran Tu committed
<!-- 数据列举 -->
Ran Tu's avatar
Ran Tu committed
<div style="position: relative; margin-top: 400px;">
Ran Tu's avatar
Ran Tu committed
  <div  style="width: 50%; height: 100px; left: 100px !important; ">
Ran Tu's avatar
Ran Tu committed
    <p class="homepage-moon" ><span class="moon-highlight"">1</span>
Ran Tu's avatar
Ran Tu committed
       person suffers from XP for every 
Ran Tu's avatar
Ran Tu committed
       <span class="moon-highlight"">250,000</span> people.</p>
Ran Tu's avatar
Ran Tu committed
  </div>

Ran Tu's avatar
Ran Tu committed
  <img class="moon-sticker"
Ran Tu's avatar
Ran Tu committed
  src="https://static.igem.wiki/teams/5182/mascot-sticker/homepage-people.webp">
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
  <div  style="width: 50%; height: 100px; left: 20%; ">
Ran Tu's avatar
Ran Tu committed
    <p class="homepage-moon">Patients typically show symptoms of the disease around 
      <span class="moon-highlight"">1 year old</span>.</p>
  </div>

Ran Tu's avatar
Ran Tu committed
  <img class="moon-sticker" style="height:250px !important;" 
Ran Tu's avatar
Ran Tu committed
  src="https://static.igem.wiki/teams/5182/mascot-sticker/homepage-baby.webp">
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
  <div   style="width: 50%; height: 100px; left: 20%; ">
Ran Tu's avatar
Ran Tu committed
    <p class="homepage-moon"><span class="moon-highlight"">60%</span> of patients do not survive past 
      <span class="moon-highlight"">20 years old</span>.</p>
  </div>
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
  <img class="moon-sticker" style="height:250px !important;" 
Ran Tu's avatar
Ran Tu committed
  src="https://static.igem.wiki/teams/5182/mascot-sticker/homepage-bed.webp">
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
  <p class="homepage-moon" style="color: #f6f6f6;">The vast majority of patients must escape sunlight their entire lives 
Ran Tu's avatar
Ran Tu committed
    —— they can only wander under moonlight.</p>
Ran Tu's avatar
Ran Tu committed
  <img class="moon-sticker" style="height:300px !important;right: -70% !important;" 
Ran Tu's avatar
Ran Tu committed
  src="https://static.igem.wiki/teams/5182/mascot-sticker/mascot-papercrane18.webp">
Ran Tu's avatar
Ran Tu committed
  <!-- 烧焦的千纸鹤 -->
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
</div>
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
<!-- 我们能做什么? 小标题 -->
Ran Tu's avatar
Ran Tu committed
<div  style="position: relative; margin-top: 200px;display: flex; justify-content: center;">
Ran Tu's avatar
Ran Tu committed
  <p class="homepage-subtitle" style="z-index: 4;">So what can we do?  </p>
Ran Tu's avatar
Ran Tu committed
  <img src="https://static.igem.wiki/teams/5182/mascot-sticker/homepage-ball.svg" style="position: absolute;
Ran Tu's avatar
Ran Tu committed
  height:70px !important; width:auto; left:370px; top:-20px; z-index:3;">
Ran Tu's avatar
Ran Tu committed
</div>

<!-- gene switch 转场 -->
Ran Tu's avatar
Ran Tu committed
<img src="https://static.igem.wiki/teams/5182/mascot-sticker/homepage-switch.webp" style="position: absolute;
Ran Tu's avatar
Ran Tu committed
width:100%  !important; height:auto !important;left:0  !important;">
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
<!-- xpc介绍 -->
Ran Tu's avatar
Ran Tu committed
<div style="position: relative;margin-top: 800px;">
Enran Li's avatar
Enran Li committed
  <p class="homepage-text">Our project focuses on Xeroderma Pigmentosum(XP) Complementation Group C, 
Ran Tu's avatar
Ran Tu committed
    which is caused by mutations in the XPC gene, leading to abnormal XPC DNA repair 
    proteins and consequently impairs global genome repair. XPC is also one of the most common types of XP.
  </p>
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
  <p class="homepage-text">The causes of XPC are directly linked to genetic mutations and ultraviolet (UV) exposure. 
Ran Tu's avatar
Ran Tu committed
    Therefore, our project approaches the issue from both genetic and UV perspectives by constructing 
    a UV-controlled Genetic Switch.
  </p>
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
  <p class="homepage-text">We aim to achieve two main objectives:</p>
Ran Tu's avatar
Ran Tu committed
  <div style="position: relative; margin-top: 50px; padding: 20px; background-color: #ffffffb3; 
Ran Tu's avatar
Ran Tu committed
  border-radius: 15px;box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4); margin-left: 8%;margin-right: 8%; ">
Ran Tu's avatar
Ran Tu committed
    <p class="homepage-text" style="color: #4d2069;">
Ran Tu's avatar
Ran Tu committed
    First, to introduce a normal XPC gene to express functional XPC protein;</p>
Ran Tu's avatar
Ran Tu committed
    <p class="homepage-text" style="color: #4d2069;">Second, to create a genetic switch that responds to UV light, aiming to mitigate 
Ran Tu's avatar
Ran Tu committed
    the risks associated with the extrinsic delivery of non-integrating XPC genes into cytoplasm, 
    which may cause problems.
Ran Tu's avatar
Ran Tu committed
    </p>
  </div>
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
  <div  style="display: flex; justify-content: center;margin-top: 80px;">
Ran Tu's avatar
Ran Tu committed
    <img src="https://static.igem.wiki/teams/5182/project/description/schematic-diagram.png" style="width: 60%;
Ran Tu's avatar
Ran Tu committed
    height:auto; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);">
  </div>

Ran Tu's avatar
Ran Tu committed
  <p class="homepage-text" style="margin-top: 50px;">
Ran Tu's avatar
Ran Tu committed
    A UV response mechanism has been reported in plants, where UV signals induce the monomerization 
    of UVR8 protein and its interaction with COP1, while RUP2 relieves this interaction. We introduced 
    this mechanism into mammalian cells by combining UVR8 with VP64 and COP1 with GAL4. Upon UV irradiation, 
    this system will be activated. In this process, COP1 aids in localization, and VP64 enhances the 
    expression of the CMV promoter, leading to the production of XPC and RUP2. The XPC protein will serve a 
    therapeutic role, while RUP2 acts as a negative feedback regulator to prevent overexpression.
  </p>

Ran Tu's avatar
Ran Tu committed
  <p class="homepage-text">
Ran Tu's avatar
Ran Tu committed
    Our project proposes a novel optogenetic strategy for gene therapy. 
    We are developing a UV-B regulated gene expression system to enable controllable expression of the XPC 
    gene in patients, transforming harmful UV exposure into a therapeutic tool.
  </p>
Ran Tu's avatar
Ran Tu committed
  <img src="https://static.igem.wiki/teams/5182/mascot-sticker/mascot-papercrane-bottle.webp"
Ran Tu's avatar
Ran Tu committed
  class="mascot-sticker" style="height:250px !important; right:20% !important;">
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
</div>
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
<!-- 总而言之……(小标题) -->
Ran Tu's avatar
Ran Tu committed
<div style="position: relative; margin-top: 50px;display: flex; justify-content: center;">
  <p class="homepage-subtitle" style="z-index: 4;">In conclusion...  </p>
  <img src="https://static.igem.wiki/teams/5182/mascot-sticker/homepage-ball.svg" style="position: absolute;
Ran Tu's avatar
Ran Tu committed
  height:70px !important; width:auto; left:450px; top:-20px; z-index:3;">
Ran Tu's avatar
Ran Tu committed
</div>

Ran Tu's avatar
Ran Tu committed
<div style="position: relative; margin-top: 50px;">
Ran Tu's avatar
Ran Tu committed
  <p class="homepage-text">On our journey to combat this disease, the purple sun stands not only as a symbol of life, 
Ran Tu's avatar
Ran Tu committed
    but also as a representation of our hopes for the future. We aspire, with determination and efforts, 
    to transform ultraviolet light from a harmful blade into a life-saving remedy, bringing new hope to 
    XP patients, allowing them to bask again in the warmth of the sun.
  </p>
Ran Tu's avatar
Ran Tu committed

</div>

Ran Tu's avatar
Ran Tu committed
<div style="display: flex; justify-content: center; height: 100vh;">
Ran Tu's avatar
Ran Tu committed
  <img class="mascot-sticker" src="https://static.igem.wiki/teams/5182/mascot-sticker/homepage-purplesun.webp" 
Ran Tu's avatar
Ran Tu committed
  style="position: absolute;width:60% !important;height:auto;">
Ran Tu's avatar
Ran Tu committed
</div>
Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed

Ran Tu's avatar
Ran Tu committed
<script src="{{ url_for('static', filename = 'homepage.js') }}"></script>

</body>

Ran Tu's avatar
Ran Tu committed
{% endblock %}