Difference between revisions of "Team:UM Macau/Public Engagement"

(Blanked the page)
 
(24 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{UM_Macau/WikiStripDown}}{{UM_Macau/Bootstrap}}{{UM_Macau/Navbar}}
  
 +
 +
<html>
 +
<head>
 +
 +
  <meta name="viewport" content="width=device-width, initial-scale=1">
 +
  <link href="https://fonts.googleapis.com/css?family=Poppins:300,300i,400,700,800&display=swap" rel="stylesheet">
 +
  <link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,700,700i,900,900i&display=swap" rel="stylesheet">
 +
 +
</head>
 +
 +
<style>
 +
 +
#globalWrapper{
 +
padding-bottom: 0px;
 +
}
 +
 +
/* Text Syling*/
 +
#HQ_page .landing-text h1{
 +
  font-size: 650%;
 +
  font-weight: 500;
 +
  color: white;
 +
  font-family:"Poppins";
 +
}
 +
 +
#HQ_page .pagecontainer h1{
 +
  padding-bottom: 2%;
 +
  font-size: 2.5rem;
 +
  font-family:"Poppins";
 +
  font-weight: 600;
 +
}
 +
 +
#HQ_page .pagecontainer p{
 +
  font-size: 1.4rem;
 +
  font-weight: 500;
 +
  font-family: "Lato";
 +
}
 +
 +
#HQ_page .pagecontainer2 h1{
 +
  padding-bottom: 2%;
 +
  font-size: 2.3rem;
 +
  font-family:"Poppins";
 +
  font-weight: 600;
 +
}
 +
 +
#HQ_page .pagecontainer2 p{
 +
  font-size: 1.3rem;
 +
  font-weight: 500;
 +
  font-family: "Lato";
 +
}
 +
 +
/*Team Cover*/
 +
html,body{
 +
  height: 100%;
 +
  width: 100%;
 +
  scroll-behavior: smooth;
 +
  overflow-x:visible;
 +
}
 +
 +
#pagecover{
 +
background: url(https://static.igem.org/mediawiki/2019/7/75/T--UM_Macau--coverphoto10.jpeg) no-repeat center fixed;
 +
display: table;
 +
height: 100vh;
 +
position: relative;
 +
width: 100%;
 +
background-size: cover;
 +
text-align: center;
 +
}
 +
 +
.landing-text{
 +
display: table-cell;
 +
text-align: center;
 +
vertical-align: middle;
 +
}
 +
 +
/*for scroll down arrow*/
 +
.arrow{
 +
  position: absolute;
 +
  bottom: 10%;
 +
  width: 100%;
 +
  cursor: pointer;
 +
  transition: 0.4s;
 +
  text-align: center;
 +
}
 +
 +
.arrow img{
 +
  width: 7%;
 +
}
 +
 +
.arrow:hover{
 +
  padding-bottom: 18px;
 +
}
 +
 +
/*Team Container Styling*/
 +
.pagecontainer2 {
 +
  padding-bottom: 10%;
 +
  padding-top: 5%;
 +
  padding-left: 10%;
 +
  padding-right: 10%;
 +
}
 +
 +
.pagecontainer {
 +
  padding-top: 10%;
 +
  padding-left: 10%;
 +
  padding-right: 10%;
 +
}
 +
 +
#epetext {
 +
  display: flex;
 +
  text-align: center;
 +
}
 +
 +
/*Accordion Styling*/
 +
.accordion {
 +
  background-color: #ffe8a3;
 +
  color: #222222;
 +
  cursor: pointer;
 +
  padding: 25px;
 +
  width: 100%;
 +
  border: none;
 +
  text-align: left;
 +
  outline: none;
 +
  font-size: 1.6rem;
 +
  font-family: "Lato";
 +
  transition: 0.4s;
 +
  border-radius: 30px;
 +
  margin-bottom: 2%;
 +
}
 +
 +
.active, .accordion:hover {
 +
  background-color: #ffd24a;
 +
}
 +
 +
.accordion:focus {
 +
  outline: none;
 +
}
 +
 +
.accordion:after {
 +
  content: '\002B';
 +
  color: #222222;
 +
  font-weight: bold;
 +
  float: right;
 +
  margin-left: 5px;
 +
}
 +
 +
.active:after {
 +
  content: "\2212";
 +
}
 +
 +
.panel {
 +
  padding: 0px 18px;
 +
  background-color: white;
 +
  max-height: 0;
 +
  overflow: hidden;
 +
  transition: max-height 0.2s ease-out;
 +
}
 +
 +
.panel .paneltext {
 +
  padding-top:3%;
 +
  padding-bottom: 8%;
 +
  padding-left: 5%;
 +
  padding-right: 5%;
 +
}
 +
 +
#reference {
 +
  padding-top: 10%;
 +
}
 +
 +
/*Slideshow*/
 +
* {
 +
  box-sizing: border-box;
 +
}
 +
 +
/* Position the image container (needed to position the left and right arrows) */
 +
.container {
 +
  position: relative;
 +
}
 +
 +
/* Hide the images by default */
 +
.mySlides {
 +
  display: none;
 +
  text-align: center;
 +
}
 +
 +
/* Add a pointer when hovering over the thumbnail images */
 +
.cursor {
 +
  cursor: pointer;
 +
}
 +
 +
/* Next & previous buttons */
 +
.prev,
 +
.next {
 +
  cursor: pointer;
 +
  position: absolute;
 +
  top: 40%;
 +
  width: auto;
 +
  padding: 20px;
 +
  margin-top: -50px;
 +
  color: white;
 +
  font-weight: bold;
 +
  font-size: 36px;
 +
  border-radius: 3px 3px 3px 3px;
 +
  user-select: none;
 +
  -webkit-user-select: none;
 +
  transition: 0.7s;
 +
}
 +
 +
/* Position the "next button" to the right */
 +
.next {
 +
  right: 0;
 +
  border-radius: 3px 3px 3px 3px;
 +
}
 +
 +
/* On hover, add a black background color with a little bit see-through */
 +
.prev:hover,
 +
.next:hover {
 +
  background-color: #eec206;
 +
  color: #000;
 +
}
 +
 +
 +
.slideshow .row:after {
 +
  content: "";
 +
  display: table;
 +
  clear: both;
 +
}
 +
 +
/* Eight columns side by side */
 +
.slideshow .column {
 +
  float: left;
 +
  width: 12.5%;
 +
}
 +
 +
/* Add a transparency effect for thumnbail images */
 +
.demo {
 +
  opacity: 0.6;
 +
}
 +
 +
.activ,
 +
.demo:hover {
 +
  opacity: 1;
 +
}
 +
 +
 +
/*footer styling*/
 +
 +
.footerall{
 +
  padding-right:20px;
 +
  padding-left: 20px;
 +
}
 +
 +
footer{
 +
  width: 100%;
 +
  background-color:#131111;
 +
  padding-top: 50px;
 +
  padding-bottom: 50px;
 +
  padding-left: 5%;
 +
  padding-right: 5%;
 +
  color: #fff;
 +
  bottom: 0;
 +
  left: 0;
 +
}
 +
 +
footer h4{
 +
  font-size: 1.3rem;
 +
  font-family: "Lato";
 +
  font-weight: 400;
 +
  color: #fff;
 +
}
 +
 +
footer h5{
 +
  font-size: 1.2rem;
 +
  font-family:"Lato";
 +
  font-weight: 300;
 +
  color: #fff;
 +
}
 +
 +
footer h6{
 +
  font-size: 1rem;
 +
  font-family:"Lato";
 +
  font-weight: 300;
 +
  color: #fff;
 +
}
 +
 +
.logo{
 +
  text-align: center;
 +
}
 +
 +
.contact{
 +
  border-right: 0.8px solid #fff;
 +
  border-left: 0.8px solid #fff;
 +
  padding-left: 25px;
 +
  height: 220px;
 +
}
 +
 +
.social{
 +
  padding-right: 10px;
 +
  width: 32px;
 +
  cursor: pointer;
 +
  transition: 0.4s;
 +
}
 +
 +
.social:hover{
 +
  opacity: 0.4;
 +
}
 +
 +
.sponsor{
 +
  padding-left: 50px;
 +
  padding-right: 50px;
 +
}
 +
 +
.sponsor img{
 +
  vertical-align: middle;
 +
  margin-top: 8px;
 +
}
 +
 +
hr{
 +
    border: 0;
 +
    height: 0.8px;
 +
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
 +
}
 +
 +
 +
/*for media styling*/
 +
@media (max-width: 768px) {
 +
#HQ_page .landing-text h1{
 +
  font-size: 200%;
 +
  font-weight: 500;
 +
  color: white;
 +
  font-family:"Poppins";
 +
}
 +
.arrow img{
 +
width: 15%;
 +
}
 +
}
 +
 +
</style>
 +
</head>
 +
 +
<body>
 +
 +
 +
<!--Team Cover-->
 +
<div id="pagecover">
 +
<div class="landing-text">
 +
<h1>Education & Public Engagement</h1>
 +
    <div class="arrow text-center" >
 +
      <a href="#pagestart"><img class="img-fluid" src="https://static.igem.org/mediawiki/2019/3/36/T--UM_Macau--homepicdownarrow.png"></a>
 +
    </div>
 +
</div>
 +
</div>
 +
<!--End of Team Cover-->
 +
 +
 +
<!--Team Container-->
 +
 +
<div  id="pagestart" class="pagecontainer">
 +
<div>
 +
<h1>Overview</h1>
 +
</div>
 +
<div id="epetext">
 +
<p>In our project, we conducted public engagement activities to achieve the goal of abridging synthetic biology to the public. Considering that people from different backgrounds have different pre-existing knowledge and interests in absorbing new information, we designed our activities in three levels referring to the education level of targeting population, with regards to middle/high school students, undergraduate students, and the general public. Different activities were designed based on their backgrounds in the formats of workshops, summer camps, lectures, and interviews respectively. By conducting the activities, we were able to spread the basic knowledge of synthetic biology with the example of how we adopted it in constructing OPHT protein complex for nanoparticle elimination. Besides, we were able to raise awareness of the public in the importance of protecting water resources. The goals of appealing more attention from the public and addressing potential effects of nanoparticle pollution were also achieved. </p>
 +
</div>
 +
</div>
 +
 +
<div class="pagecontainer2">
 +
<button class="accordion">Residential College Lecture</button>
 +
<div class="panel">
 +
<div class="paneltext">
 +
  <p>Synthetic biology is one of the main methods adopted in solving biological issues. Applying the synthetic biology techniques in realistic problems is always the core of iGEM. Conducting the residential college lecture in university is one of the best ways of introducing synthetic biology to the general public. As an iGEM team formed by biomedical majored undergraduate students, we felt obliged in presenting and introducing synthetic biology to reveal its benefits and its affable face to university students. We held a residential college lecture in Ma Man Kei and Lo Pak Sam college at the University of Macau. By this chance, we also introduced nanoparticle pollution and our project as one potential solution. Students were interested in SANCE and actively in asking questions. Not only the students, the vice-rector of the University of Macau also found our project appealing and meaningful. </p>
 +
      <br>
 +
      <br>
 +
      <div class="row" style="margin-left:auto; margin-right:auto;text-align: center; width: 90%;">
 +
        <div class="col-lg-6" style="padding-right: 0px">
 +
          <img class="img-fluid"  src="https://static.igem.org/mediawiki/2019/0/01/T--UM_Macau--epe1.jpeg">
 +
        </div>
 +
        <div class="col-lg-6" style="padding-right: 0px">
 +
          <img class="img-fluid" src="https://static.igem.org/mediawiki/2019/7/71/T--UM_Macau--epe2.jpeg">
 +
        </div>
 +
      </div>
 +
      <div class="row" style="padding-top: 15px;margin-left:auto; margin-right:auto;text-align: center; width: 90%;">
 +
        <div class="col-lg-6" style="padding-right: 0px">
 +
          <img class="img-fluid"  src="https://static.igem.org/mediawiki/2019/c/ca/T--UM_Macau--epe3.jpeg">
 +
        </div>
 +
        <div class="col-lg-6" style="padding-right: 0px">
 +
          <img class="img-fluid" src="https://static.igem.org/mediawiki/2019/2/29/T--UM_Macau--epe4.jpeg">
 +
        </div>
 +
      </div>
 +
 +
</div>
 +
</div>
 +
 +
 +
<button class="accordion">DIY Water Purification Kit Workshop in Local High Schools</button>
 +
<div class="panel">
 +
<div class="paneltext">
 +
  <p>We conducted the DIY water purification kit workshop in two local high schools, Hou Kong High School and Sam Yuk Middle School, the two of the best secondary schools in Macau. The activity helped to enrich local students’ knowledge of water pollution as well as nanoparticle pollution and helped to raise their awareness on protecting water resources and get interested in scientific innovations. The workshop contained two parts, an introduction to water pollution, and interesting experiments of dirty water purification. The basic water purification mechanisms were learned and comprehended by students in the progress of making their own kit.</p>
 +
      <br>
 +
      <br>
 +
    <!-- Container for the image gallery -->
 +
<div class="container">
 +
 +
  <!-- Full-width images with number text -->
 +
  <div class="mySlides">
 +
      <img src="https://static.igem.org/mediawiki/2019/3/32/T--UM_Macau--hp_hsws_4.JPG" style="width:65%">
 +
  </div>
 +
 +
  <div class="mySlides">
 +
      <img src="https://static.igem.org/mediawiki/2019/8/82/T--UM_Macau--hp_hsws_2.JPG" style="width:65%">
 +
  </div>
 +
 +
  <div class="mySlides">
 +
      <img src="https://static.igem.org/mediawiki/2019/0/0a/T--UM_Macau--hp_hsws_1.jpeg" style="width:65%">
 +
  </div>
 +
 +
  <div class="mySlides">
 +
      <img src="https://static.igem.org/mediawiki/2019/b/bd/T--UM_Macau--hp_hsws_5.jpeg" style="width:65%">
 +
  </div>
 +
 +
  <div class="mySlides">
 +
      <img src="https://static.igem.org/mediawiki/2019/c/c2/T--UM_Macau--hp_hsws_3.jpeg" style="width:65%">
 +
  </div>
 +
 +
  <div class="mySlides">
 +
      <img src="https://static.igem.org/mediawiki/2019/7/7e/T--UM_Macau--hp_hsws_7.JPG" style="width:65%">
 +
  </div>
 +
 +
  <div class="mySlides">
 +
      <img src="https://static.igem.org/mediawiki/2019/a/a7/T--UM_Macau--hp_hsws_8.JPG" style="width:65%">
 +
  </div>
 +
 +
  <div class="mySlides">
 +
      <img src="https://static.igem.org/mediawiki/2019/d/d4/T--UM_Macau--hp_hsws_6.JPG" style="width:65%">
 +
  </div>
 +
 +
  <!-- Next and previous buttons -->
 +
  <a class="prev" onclick="plusSlides(-1)">&#10094;</a>
 +
  <a class="next" onclick="plusSlides(1)">&#10095;</a>
 +
 +
  <!-- Thumbnail images -->
 +
  <div class="slideshow row">
 +
    <div class="column">
 +
      <img class="demo cursor" src="https://static.igem.org/mediawiki/2019/3/32/T--UM_Macau--hp_hsws_4.JPG" style="width:100%" onclick="currentSlide(1)">
 +
    </div>
 +
    <div class="column">
 +
      <img class="demo cursor" src="https://static.igem.org/mediawiki/2019/8/82/T--UM_Macau--hp_hsws_2.JPG" style="width:100%" onclick="currentSlide(2)" >
 +
    </div>
 +
    <div class="column">
 +
      <img class="demo cursor" src="https://static.igem.org/mediawiki/2019/0/0a/T--UM_Macau--hp_hsws_1.jpeg" style="width:100%" onclick="currentSlide(3)">
 +
    </div>
 +
    <div class="column">
 +
      <img class="demo cursor" src="https://static.igem.org/mediawiki/2019/b/bd/T--UM_Macau--hp_hsws_5.jpeg" style="width:100%" onclick="currentSlide(4)">
 +
    </div>
 +
    <div class="column">
 +
      <img class="demo cursor" src="https://static.igem.org/mediawiki/2019/c/c2/T--UM_Macau--hp_hsws_3.jpeg" style="width:100%" onclick="currentSlide(5)">
 +
    </div>
 +
    <div class="column">
 +
      <img class="demo cursor" src="https://static.igem.org/mediawiki/2019/7/7e/T--UM_Macau--hp_hsws_7.JPG" style="width:100%" onclick="currentSlide(6)">
 +
    </div>
 +
    <div class="column">
 +
      <img class="demo cursor" src="https://static.igem.org/mediawiki/2019/a/a7/T--UM_Macau--hp_hsws_8.JPG" style="width:100%" onclick="currentSlide(7)">
 +
    </div>
 +
    <div class="column">
 +
      <img class="demo cursor" src="https://static.igem.org/mediawiki/2019/d/d4/T--UM_Macau--hp_hsws_6.JPG" style="width:100%" onclick="currentSlide(8)">
 +
    </div>
 +
  </div>
 +
</div>
 +
  </div>
 +
 +
</div>
 +
 +
<button class="accordion">Sea Product Market Interview</button>
 +
<div class="panel">
 +
<div class="paneltext">
 +
<p><img src="https://static.igem.org/mediawiki/2019/0/0e/T--UM_Macau--seamarket2.jpeg" style="float:right; width:40%; margin-left: 3%; margin-top: 1%;">Many studies claimed that nanoparticles in the marine environment can be absorbed by living organisms which later might become the dishes on the table of local residents and potentially influence their health. Seafood product sellers in markets are the people with closest contacts to seafood products. In order to investigate whether nanoparticles would affect the quality of seafood in Macau, and collect the understanding in nanoparticle pollution from the local residents, we arranged and conducted local market interviews targeting sellers and customers in Macau local seafood markets, and 29 valid replies were collected.</p>
 +
    <br>
 +
    <p><img src="https://static.igem.org/mediawiki/2019/5/51/T--UM_Macau--seamarket3.jpeg" style="float:right; width:40%; margin-left: 3%; margin-top: 3%; margin-bottom: 2%">The sea products they sell mostly come from the ocean potentially exposing to nanoparticle contamination. Many sellers have more than 20 years of experience, but they claimed that the quality and amount of sea product didn’t change within these 2 decades. After further inquiry, we found that this resulted from the reason that most of them have no idea that the quality of seafood products could be affected by water pollution, let alone the nanoparticle pollution. This result suggested that the potential hazard of nanoparticle pollution hasn’t been fully recognized and focused by local residents. By holding this local market interview, we were able to bring new perspectives on water pollution as well as the suggestions on seafood safety to local sellers and customers. </p>
 +
    <br>
 +
      <div class="row" style="margin-left:auto; margin-right:auto;text-align: center; width: 90%;">
 +
        <div class="col-lg-12" style="padding-right: 0px; padding-bottom: 15px">
 +
          <img class="img-fluid"  src="https://static.igem.org/mediawiki/2019/6/69/T--UM_Macau--seamarket1.jpeg">
 +
        </div>
 +
      </div>
 +
 +
</div>
 +
</div>
 +
 +
 +
  <button class="accordion">Summer Camp</button>
 +
  <div class="panel">
 +
  <div class="paneltext">
 +
      <p>Synthetic biology is still a quite mysterious area for students who still study in high school or middle school. With this concern, we got involved in the high school summer camp as teacher assistants to enrich their knowledge of synthetic biology. The high school students who attended UM summer camp were invited to participate in the lecture on introducing nanoparticle pollution and synthetic biology. After the lecture, the students showed their awareness of nanoparticle pollution and raised some good questions.</p>
 +
      <br>
 +
      <br>
 +
  <div class="row" style="margin-left:auto; margin-right:auto;text-align: center; width: 90%;">
 +
        <div class="col-lg-6" style="padding-right: 0px">
 +
          <img class="img-fluid"  src="https://static.igem.org/mediawiki/2019/7/78/T--UM_Macau--summer01.jpeg">
 +
        </div>
 +
        <div class="col-lg-6" style="padding-right: 0px">
 +
          <img class="img-fluid" src="https://static.igem.org/mediawiki/2019/1/12/T--UM_Macau--summer02.jpeg">
 +
        </div>
 +
      </div>
 +
      <div class="row" style="padding-top: 15px;margin-left:auto; margin-right:auto;text-align: center; width: 90%;">
 +
        <div class="col-lg-6" style="padding-right: 0px">
 +
          <img class="img-fluid"  src="https://static.igem.org/mediawiki/2019/1/1f/T--UM_Macau--hp_sumcamp_1.png">
 +
        </div>
 +
        <div class="col-lg-6" style="padding-right: 0px">
 +
          <img class="img-fluid" src="https://static.igem.org/mediawiki/2019/a/a3/T--UM_Macau--hp_sumcamp_2.png">
 +
        </div>
 +
      </div>
 +
  </div>
 +
  </div>
 +
</div>
 +
 +
 +
<!--JS for Accordion-->
 +
<script>
 +
var acc = document.getElementsByClassName("accordion");
 +
var i;
 +
 +
for (i = 0; i < acc.length; i++) {
 +
  acc[i].addEventListener("click", function() {
 +
    this.classList.toggle("active");
 +
    var panel = this.nextElementSibling;
 +
    if (panel.style.maxHeight) {
 +
      panel.style.maxHeight = null;
 +
    } else {
 +
      panel.style.maxHeight = panel.scrollHeight + "px";
 +
    }
 +
  });
 +
}
 +
</script>
 +
 +
<script>
 +
  var slideIndex = 1;
 +
showSlides(slideIndex);
 +
 +
// Next/previous controls
 +
function plusSlides(n) {
 +
  showSlides(slideIndex += n);
 +
}
 +
 +
// Thumbnail image controls
 +
function currentSlide(n) {
 +
  showSlides(slideIndex = n);
 +
}
 +
 +
function showSlides(n) {
 +
  var i;
 +
  var slides = document.getElementsByClassName("mySlides");
 +
  var dots = document.getElementsByClassName("demo");
 +
  var captionText = document.getElementById("caption");
 +
  if (n > slides.length) {slideIndex = 1}
 +
  if (n < 1) {slideIndex = slides.length}
 +
  for (i = 0; i < slides.length; i++) {
 +
    slides[i].style.display = "none";
 +
  }
 +
  for (i = 0; i < dots.length; i++) {
 +
    dots[i].className = dots[i].className.replace(" activ", "");
 +
  }
 +
  slides[slideIndex-1].style.display = "block";
 +
  dots[slideIndex-1].className += " activ";
 +
  captionText.innerHTML = dots[slideIndex-1].alt;
 +
}
 +
</script>
 +
 +
<!--Footer-->
 +
<footer class="footerall container-fluid">
 +
  <div class="row align-items-center">
 +
    <div class="logo col-sm-6 col-lg-3">
 +
      <img class="img-fluid" src="https://static.igem.org/mediawiki/2019/9/96/T--UM_Macau--homepicigem.png" style="width:200px">
 +
    </div>
 +
    <div class="contact col-sm-6 col-lg-3">
 +
      <h4>CONTACT US</h4>
 +
      <h5>umac.igem@gmail.com</h5>
 +
      <br>
 +
      <h4>FOLLOW US</h4>
 +
        <a href="https://www.facebook.com/igemumac2019/"><img class="img-fluid social" src="https://static.igem.org/mediawiki/2019/8/80/T--UM_Macau--homepicfb.png"></a>
 +
        <a href="https://www.instagram.com/igem_ummacau/"><img class="img-fluid social" src="https://static.igem.org/mediawiki/2019/d/da/T--UM_Macau--homepicinsta.png"></a>
 +
      </div>
 +
 +
    <div class="sponsor col-sm-12 col-lg-6">
 +
      <div class="row align-items-center">
 +
        <div class="col-sm-4 "><img class="img-fluid" src="https://static.igem.org/mediawiki/2019/3/3b/T--UM_Macau--homepicum.png" style="width:100%"></div>
 +
        <div class="col-sm-4 "><img class="img-fluid" src="https://static.igem.org/mediawiki/2019/5/5e/T--UM_Macau--homepicfhs.png" style="width:100%  "></div>
 +
        <div class="col-sm-4 "></div>
 +
      </div>
 +
      <div class="row align-items-center">
 +
        <div class="col-sm-4 "><img class="img-fluid" src="https://static.igem.org/mediawiki/2019/c/c4/T--UM_Macau--homepicidt.png" style="width:100%"></div>
 +
        <div class="col-sm-4 "><img class="img-fluid" src="https://static.igem.org/mediawiki/2019/a/aa/T--UM_Macau--homepictwist.png" style="width:100%"></div>
 +
        <div class="col-sm-4 "><img class="img-fluid" src="https://static.igem.org/mediawiki/2019/8/8a/T--UM_Macau--homepiclumicks.png" style="width:100%"></div>
 +
      </div>
 +
      <div class="row align-items-center">
 +
        <div class="col-sm-4 "><img class="img-fluid" src="https://static.igem.org/mediawiki/2019/9/9c/T--UM_Macau--homepicdiagon.png" style="width:100%"></div>
 +
        <div class="col-sm-4 "><img class="img-fluid" src="https://static.igem.org/mediawiki/2019/4/43/T--UM_Macau--homepicgjb.png" style="width:100%"></div>
 +
        <div class="col-sm-4"></div>
 +
      </div>
 +
    </div>
 +
  </div>
 +
  <hr>
 +
  <div>
 +
    <div class="row">
 +
    <div class="col-sm-12 text-center">
 +
      <h6>iGEM 2019 UM_Macau</h6>
 +
    </div>
 +
    </div>
 +
  </div>
 +
</footer>
 +
 +
</body>
 +
</html>

Latest revision as of 20:24, 21 October 2019


Education & Public Engagement

Overview

In our project, we conducted public engagement activities to achieve the goal of abridging synthetic biology to the public. Considering that people from different backgrounds have different pre-existing knowledge and interests in absorbing new information, we designed our activities in three levels referring to the education level of targeting population, with regards to middle/high school students, undergraduate students, and the general public. Different activities were designed based on their backgrounds in the formats of workshops, summer camps, lectures, and interviews respectively. By conducting the activities, we were able to spread the basic knowledge of synthetic biology with the example of how we adopted it in constructing OPHT protein complex for nanoparticle elimination. Besides, we were able to raise awareness of the public in the importance of protecting water resources. The goals of appealing more attention from the public and addressing potential effects of nanoparticle pollution were also achieved.

Synthetic biology is one of the main methods adopted in solving biological issues. Applying the synthetic biology techniques in realistic problems is always the core of iGEM. Conducting the residential college lecture in university is one of the best ways of introducing synthetic biology to the general public. As an iGEM team formed by biomedical majored undergraduate students, we felt obliged in presenting and introducing synthetic biology to reveal its benefits and its affable face to university students. We held a residential college lecture in Ma Man Kei and Lo Pak Sam college at the University of Macau. By this chance, we also introduced nanoparticle pollution and our project as one potential solution. Students were interested in SANCE and actively in asking questions. Not only the students, the vice-rector of the University of Macau also found our project appealing and meaningful.



We conducted the DIY water purification kit workshop in two local high schools, Hou Kong High School and Sam Yuk Middle School, the two of the best secondary schools in Macau. The activity helped to enrich local students’ knowledge of water pollution as well as nanoparticle pollution and helped to raise their awareness on protecting water resources and get interested in scientific innovations. The workshop contained two parts, an introduction to water pollution, and interesting experiments of dirty water purification. The basic water purification mechanisms were learned and comprehended by students in the progress of making their own kit.



Many studies claimed that nanoparticles in the marine environment can be absorbed by living organisms which later might become the dishes on the table of local residents and potentially influence their health. Seafood product sellers in markets are the people with closest contacts to seafood products. In order to investigate whether nanoparticles would affect the quality of seafood in Macau, and collect the understanding in nanoparticle pollution from the local residents, we arranged and conducted local market interviews targeting sellers and customers in Macau local seafood markets, and 29 valid replies were collected.


The sea products they sell mostly come from the ocean potentially exposing to nanoparticle contamination. Many sellers have more than 20 years of experience, but they claimed that the quality and amount of sea product didn’t change within these 2 decades. After further inquiry, we found that this resulted from the reason that most of them have no idea that the quality of seafood products could be affected by water pollution, let alone the nanoparticle pollution. This result suggested that the potential hazard of nanoparticle pollution hasn’t been fully recognized and focused by local residents. By holding this local market interview, we were able to bring new perspectives on water pollution as well as the suggestions on seafood safety to local sellers and customers.


Synthetic biology is still a quite mysterious area for students who still study in high school or middle school. With this concern, we got involved in the high school summer camp as teacher assistants to enrich their knowledge of synthetic biology. The high school students who attended UM summer camp were invited to participate in the lecture on introducing nanoparticle pollution and synthetic biology. After the lecture, the students showed their awareness of nanoparticle pollution and raised some good questions.



CONTACT US

umac.igem@gmail.com

FOLLOW US


iGEM 2019 UM_Macau