Line 1: | Line 1: | ||
<html> | <html> | ||
− | + | <section class="article-banner" style="background-image: url(https://static.igem.org/mediawiki/2018/2/2d/T--SKLMT-China--hp-banner-2.jpg)"> | |
<div class="banner-content"> | <div class="banner-content"> | ||
<h2 class="title">Integrated & Gold</h2> | <h2 class="title">Integrated & Gold</h2> | ||
Line 31: | Line 31: | ||
<div class="container"> | <div class="container"> | ||
+ | <div class="paragraph shadow"> | ||
+ | <style> | ||
+ | .btn-panel { | ||
+ | text-align: center; | ||
+ | vertical-align: middle; | ||
+ | border-bottom: solid 1px #eee; | ||
+ | } | ||
− | + | .btn-panel > * { | |
+ | margin-bottom: 1em; | ||
+ | } | ||
− | <ol class="carousel-indicators"> | + | .btn-panel a.actions { |
− | + | border-radius: 0; | |
− | + | min-width: 5em; | |
− | + | font-size: 1.5em; | |
− | + | line-height: 2em; | |
− | + | } | |
+ | </style> | ||
+ | <div class="btn-panel"> | ||
+ | <a class="actions prev-slide"><i class="fa fa-angle-left"></i></a> | ||
+ | <a class="actions slide-one">1</a> | ||
+ | <a class="actions slide-two">2</a> | ||
+ | <a class="actions slide-three">3</a> | ||
+ | <a class="actions slide-four">4</a> | ||
+ | <a class="actions next-slide"><i class="fa fa-angle-right"></i></a> | ||
+ | </div> | ||
+ | |||
+ | <div id="hpi-carousel" class="carousel slide"> | ||
+ | |||
+ | <ol class="carousel-indicators"> | ||
+ | <li data-target="#slide1" data-slide-to="0" class="active"></li> | ||
+ | <li data-target="#slide2" data-slide-to="1"></li> | ||
+ | <li data-target="#slide3" data-slide-to="2"></li> | ||
+ | <li data-target="#slide4" data-slide-to="3"></li> | ||
+ | </ol> | ||
− | + | <div class="carousel-inner"> | |
− | + | <div class="item active"> | |
− | + | ||
<h2 class="title">The first revolution</h2> | <h2 class="title">The first revolution</h2> | ||
<h3 class="title">Questionnaire survey</h3> | <h3 class="title">Questionnaire survey</h3> | ||
Line 64: | Line 90: | ||
</p> | </p> | ||
</div> | </div> | ||
− | + | <div class="item"> | |
− | + | ||
− | + | ||
− | + | ||
<h2 class="title">The second revolution</h2> | <h2 class="title">The second revolution</h2> | ||
<h3 class="title">HAIXIN center</h3> | <h3 class="title">HAIXIN center</h3> | ||
Line 79: | Line 102: | ||
<p>We contacted Dr. Li Zhen in The State Key Laboratory of Microbial Technology and discussed the experimental with him. Dr. Li Zhen's research topic is about the application of Red / Et homologous recombination and gene homologous recombination. He has a good understanding of the scientific principles of our project and supports our work on the engineering bacteria for nicotine degradation. At the same time, Dr. Lee has put forward realistic opinions and scientific treatment methods for the display problems encountered in our experiments. Finally, he hopes to be able to apply his own large fragment gene recombination technology to our project, and contribute to our project. </p> | <p>We contacted Dr. Li Zhen in The State Key Laboratory of Microbial Technology and discussed the experimental with him. Dr. Li Zhen's research topic is about the application of Red / Et homologous recombination and gene homologous recombination. He has a good understanding of the scientific principles of our project and supports our work on the engineering bacteria for nicotine degradation. At the same time, Dr. Lee has put forward realistic opinions and scientific treatment methods for the display problems encountered in our experiments. Finally, he hopes to be able to apply his own large fragment gene recombination technology to our project, and contribute to our project. </p> | ||
</div> | </div> | ||
− | + | <div class="item"> | |
− | + | ||
− | + | ||
<h2 class="title">The third revolution</h2> | <h2 class="title">The third revolution</h2> | ||
<h3 class="title">Interview with farmers</h3> | <h3 class="title">Interview with farmers</h3> | ||
Line 93: | Line 114: | ||
<p>Therefore, we have some doubts about the application direction of degrading saline-alkali pesticides in soil. We plan to look for the national soil quality standards. We checked the soil quality environmental standards issued by the ministry of environmental protection, but found that the domestic authorities did not have the control standards for nicotine in the soil. We asked the law professors and he indicated that the relevant standards for nicotine were not included in the corresponding laws on the environment. </p> | <p>Therefore, we have some doubts about the application direction of degrading saline-alkali pesticides in soil. We plan to look for the national soil quality standards. We checked the soil quality environmental standards issued by the ministry of environmental protection, but found that the domestic authorities did not have the control standards for nicotine in the soil. We asked the law professors and he indicated that the relevant standards for nicotine were not included in the corresponding laws on the environment. </p> | ||
</div> | </div> | ||
− | + | <div class="item"> | |
− | + | ||
− | + | ||
<h2 class="title"> The fourth revolution</h2> | <h2 class="title"> The fourth revolution</h2> | ||
<h3 class="title"> The State Key Laboratory of Microbial Technology secondly</h3> | <h3 class="title"> The State Key Laboratory of Microbial Technology secondly</h3> | ||
Line 115: | Line 134: | ||
</div> | </div> | ||
</div> | </div> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
+ | </div> | ||
</div> | </div> | ||
</div> | </div> | ||
− | |||
</html> | </html> | ||
+ | |||
{{SKLMT-China/footer}} | {{SKLMT-China/footer}} | ||
+ | |||
+ | <html> | ||
+ | <script> | ||
+ | $(".prev-slide").click(function(){ | ||
+ | $("#hpi-carousel").carousel('prev'); | ||
+ | }); | ||
+ | $(".next-slide").click(function(){ | ||
+ | $("#hpi-carousel").carousel('next'); | ||
+ | }); | ||
+ | $(".slide-one").click(function(){ | ||
+ | $("#hpi-carousel").carousel(0); | ||
+ | }); | ||
+ | $(".slide-two").click(function(){ | ||
+ | $("#hpi-carousel").carousel(1); | ||
+ | }); | ||
+ | $(".slide-three").click(function(){ | ||
+ | $("#hpi-carousel").carousel(2); | ||
+ | }); | ||
+ | $(".slide-four").click(function(){ | ||
+ | $("#hpi-carousel").carousel(3); | ||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | </html> |
Revision as of 03:15, 17 October 2018