html,body{
    width: 100%;height: 100%;
    padding: 0;
}
body::-webkit-scrollbar {
    display: none;
  }
/*抬頭*/
ul{
  background-color: white;
  position:fixed;
  top: 0;
  left: 0;
  right: 0;
  /* top: -16px; */
  /* border: solid 1px #ccc; */
  display: table;
  width: 100%;
  margin-top: auto;
  padding-left: 0;
  z-index: 4;
}
/* 下拉內容 */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  z-index: 1;
}

/* 連結 */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* 當滑鼠移動到下拉內容上時 */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* 顯示下拉內容 */
.dropdown:hover .dropdown-content {
  display: block;
}

/* 當滑鼠移開下拉內容時 */
.dropdown:hover .dropbtn {
  background-color: #a3a3a3;
}

li{
  float: right;
  position: relative;
  top: 35px;
  display: inline-block;
  padding: auto;
  padding-left: 10px;
  padding-right: 40px;

  font-family: 'Noto Sans TC', sans-serif;
  letter-spacing: 2px;
  background-color: none;
  font-weight: bold;
  margin-bottom: 10px;
} 
body{
  height: 1500px;
  width: auto;
  /* border: solid 1px #7f1084; */
  margin: 0;
  padding:0
}

.line {
  background: none;
  margin-top: 25px;
  margin-left: -40px;
  color: black;
  border-bottom: 5px solid #7f1084;
  height: 0;
}
.logo{
  display:inline;
  position: relative;
  top: 10px;
  left: 12%;
  background-color: white;
  font-family: 'Times New Roman', sans-serif;
  font-size: 50px;
  letter-spacing: 5px;
}
.home{
  font-family: 'Noto Sans TC', sans-serif;
  text-decoration: none;
  /* background-color: white; */
  font-size: 30px;
  cursor: grab;
}
.home:active{
  cursor: grab;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.img1{
  position: relative;
  top: 16px;
  left: 11%;
}
ul .other{
  margin-right: 0;
  font-size: 30px;
}


.footer{
    position: fixed;
    bottom: 0;
    right: 0;
    font-size: 0.1px;
    display: block;
    /* border: solid 1px black; */
}

.mid{
    position: relative;
    top: 90px;
    width: 100%;
    /* border: solid 1px black; */
}
body {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    min-height: 200vh;
  }
  
ul.slides {
    position: relative;
    width: 100%;
    height: 600px;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #eee;
    overflow: hidden;
    z-index: 100;
  }
  
li.slide {
    margin: 0;
    padding: 0;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Helvetica;
    font-size: 120px;
    color: #fff;
    transition: .5s transform ease-in-out;
  }
  
.slide:nth-of-type(1) {
    background-color: #ebebeb83;
  }
  
.slide:nth-of-type(2) {
    background-color: #ebebeb83;
    left: 100%;
 }
  
.slide:nth-of-type(3) {
    background-color: #ebebeb83;
    left: 200%;
}
.slide:nth-of-type(4) {
    background-color: #ebebeb83;
    left: 300%;
}
 
input[type="radio"] {
    position: relative;
    z-index: 100;
    display: none;
  }
  
  .controls-visible {
    position: absolute;
    width: 100%;
    bottom: 15px;
    text-align: center;
  }
  
  .controls-visible label {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    margin: 0 3px;
    border: 2px solid #7F1184;
  }
  
  .slides input[type="radio"]:nth-of-type(1):checked ~ .controls-visible label:nth-of-type(1) {
    background-color: #333;
  }
  
  .slides input[type="radio"]:nth-of-type(2):checked ~ .controls-visible label:nth-of-type(2) {
    background-color: #333;
  }
  
  .slides input[type="radio"]:nth-of-type(3):checked ~ .controls-visible label:nth-of-type(3) {
    background-color: #333;
  }
  .slides input[type="radio"]:nth-of-type(4):checked ~ .controls-visible label:nth-of-type(4) {
    background-color: #333;
  }
  
  .slides input[type="radio"]:nth-of-type(1):checked ~ .slide {
    transform: translatex(0%);
  }
  .slides input[type="radio"]:nth-of-type(2):checked ~ .slide {
    transform: translatex(-100%);
  }
  .slides input[type="radio"]:nth-of-type(3):checked ~ .slide {
    transform: translatex(-200%);
  }
  .slides input[type="radio"]:nth-of-type(4):checked ~ .slide {
    transform: translatex(-300%);
  }
  
  
  .slides input[type="radio"]:nth-of-type(1):checked ~ .navigator:nth-of-type(1) {
    display: flex;
  }
  
  .slides input[type="radio"]:nth-of-type(2):checked ~ .navigator:nth-of-type(2) {
    display: flex;
  }
  
  .slides input[type="radio"]:nth-of-type(3):checked ~ .navigator:nth-of-type(3) {
    display: flex;
  }
  .slides input[type="radio"]:nth-of-type(4):checked ~ .navigator:nth-of-type(4) {
    display: flex;
  }
li img{
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    border: none;
}
.neiwen{
    width: 100%;
    height: 610px;
    background-color: #7F1184;
    position: absolute;
    top: 730px;
    display: block;
    border: solid 1px black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:  white;
}
.neiwenbiaoti{
  font-size: 60px;
  letter-spacing: 2px;
}
.neiwenimg{
  z-index: 6;
  overflow: hidden;
  /* border: solid 1px black; */
  width: 100%;
  height:100%;
  object-fit: contain;
  
}
.neiwenbiaoti1{
  /* border: solid 1px black; */
  font-size: 40px;
  display: inline-block;
  /* text-align: center; */
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 5;
}
/* .neiwenimg:before {
  content: '';
  background-color: black;
  display: block;
  position: relative;
  top: 0.1rem;
  left: 0.1rem;
  right: 0.1rem;
  bottom: 0.1rem;
  transition: transform 0.24s cubic-bezier(0.25,0,0.5,1),-webkit-transform 0.24s cubic-bezier(0.25,0,0.5,1);
  z-index: 1;
  transform: translateY(0px);
}
.neiwenimg:before:hover{
  transform: translateY(-45px);
} */

.neiwenbiaoti1:hover{
  top:1px;
  left: 2px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.neiwenbiaoti1:hover .neiwenimg img{
  height: 430px;
  transition: ease-in-out 0.5s;
}
#yanjiuneirong{
  text-align: center;
}
.neiwen2{
  width: 1200px;
  height: 450px;
  position: absolute;
  top: 1370px;
  left: 0;
  display: block;
  /* border: solid 1px black; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color:#F7F6F5 ;
  z-index: 6;
}
.jieshao{
  padding: 15px;
  padding-top: 30px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 40px;
  width: 880px;
  height: 220px;
  position: absolute;
  left: 750px;
  bottom: 50px;
  /* border: solid 1px black; */
  background-color:#F7F6F5 ;
  z-index: 5;
}

.greenblock{
  position: relative;
  left: 1300px;
  bottom: 210px;
  width: 400px;
  height: 200px;
  background-color:#3cc17a ;
  z-index: 2;
}
.neiwen2:hover .greenblock{
  left: 1320px;
  bottom: 190px;
  transition: 0.3s;
  transition: ease-in-out 0.5s;
}

.neiwen3{
  width: 1200px;
  height: 450px;
  position: absolute;
  top: 1870px;
  right: 0;
  display: block;
  /* border: solid 1px black; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color:#F7F6F5 ;
  z-index: 6;
}
.jieshao2{
  padding: 15px;
  padding-top: 50px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 40px;
  width: 200px;
  height: 70px;
  position: relative;
  right: 70px;
  bottom: 58px;
  /* border: solid 1px black; */
  background-color:#F7F6F5 ;
  z-index: 6;
}
.jieshao3{
  padding: 15px;
  padding-top: 30px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 40px;
  width: 600px;
  height: 220px;
  position: absolute;
  left: -250px;
  bottom: 50px;
  /* border: solid 1px black; */
  background-color:#F7F6F5 ;
  z-index: 5;
}
.blueblock{
  position: relative;
  left: -290px;
  bottom: 170px;
  width: 320px;
  height: 150px;
  background-color:#024E82 ;
  z-index: 2;
}
.neiwen3:hover .blueblock{
  left: -310px;
  bottom: 150px;
  transition: ease-in-out 0.5s;
}
.neiwen4{
  width: 1200px;
  height: 450px;
  position: absolute;
  top: 2370px;
  left: 0;
  display: block;
  /* border: solid 1px black; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color:#F7F6F5 ;
  z-index: 6;
}
.jieshao4{
  padding: 15px;
  padding-top: 20px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 25px;
  width: 20px;
  height: 40px;
  position: relative;
  left: 0px;
  bottom: 40px;
  /* border: solid 1px black; */
  background-color:#F7F6F5 ;
  z-index: 6;
}
.yellowblock{
  position: relative;
  left: 1310px;
  bottom: 230px;
  width:0px;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent #EDD04A transparent;
}
.jieshao5{
  padding: 15px;
  padding-top: 30px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 40px;
  width: 650px;
  height: 220px;
  position: absolute;
  left: 800px;
  bottom: 50px;
  /* border: solid 1px black; */
  background-color:#F7F6F5 ;
  z-index: 5;
}
.neiwen4:hover .yellowblock{
  left: 1330px;
  bottom: 210px;
  transition: ease-in-out 0.5s;
}
.neiwen5{
  width: 1200px;
  height: 450px;
  position: absolute;
  top: 2870px;
  right: 0;
  display: block;
  /* border: solid 1px black; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color:#F7F6F5 ;
  z-index: 6;
}
.jieshao6{
  padding: 15px;
  padding-top: 30px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 40px;
  width: 600px;
  height: 120px;
  position: absolute;
  left: -250px;
  bottom: 50px;
  /* border: solid 1px black; */
  background-color:#F7F6F5 ;
  z-index: 5;
}
.redblock{
  position: relative;
  left: -300px;
  bottom: 260px;
    width:150px;
    height:150px;
    border:50px solid #000;
    border-color:#AE4F50 ;
    border-radius:50%;
}
.neiwen5:hover .redblock{
  left: -350px;
  bottom: 210px;
  opacity: 0.5;
  transition: ease-in-out 0.5s;
}
.neiwen6{
  width: 100%;
  height: 450px;
  position: absolute;
  top: 3370px;
  left: 0;
  display: block;
  /* border: solid 1px black; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color:#F7F6F5 ;
  z-index: 6;
}
.jieshao7{
  position: relative;
  bottom: 150px;
  left: 200px;
  font-weight: 900;
  font-size:40px;
  letter-spacing: 4px;
  text-align: center;
}
.xian{
  position: relative;
  left: 860px;
  bottom: 150px;
  width: 750px;height: 10px;
  border-bottom: dashed 2px black;
}
.neiwen7{
  width: 1440px;
  height: 500px;
  position: absolute;
  top: 2450px;
  /* right: 100px; */
  border: dashed 2px black;
  
}
#yuankuang{
  width: 300px;
  height: 300px;
  position: relative;
  border: dashed 2px black;
  border-radius:50%;
  overflow: hidden;
}
#zernike1{
  width: 100px;
  height: 100px;
  position: absolute;
  top: 15px;
  left: 15px;
  border: solid 8px black;
  border-radius:50%;
  background-color: rgb(136, 133, 133);
  z-index: 10;
}
.neiwen7:hover #zernike1{
  transition: ease-in-out 5s;
  width: 200px;
  height: 200px;
  top: -160px;
  left: -160px;
  border-right: solid 10px black;
}
#zernike2{
  width: 200px;
  height: 200px;
  position: absolute;
  top: -20px;
  left: -20px;
  border: solid 8px black;
  border-radius:50%;
  background-color: rgb(136, 133, 133);
  z-index: 9;
}
.neiwen7:hover #zernike2{
  transition: ease-in-out 5s;
  width: 400px;
  height: 400px;
  top: -320px;
  left: -320px;
  border-right: solid 10px black;
}
#zernike3{
  width: 300px;
  height: 300px;
  position: absolute;
  top: -60px;
  left: -60px;
  border: solid 8px black;
  border-radius:50%;
  background-color: rgb(136, 133, 133);
  z-index: 8;
}
.neiwen7:hover #zernike3{
  transition: ease-in-out 5s;
  width: 600px;
  height: 600px;
  top: -480px;
  left: -480px;
  border-right: solid 10px black;
}
#zernike4{
  width: 400px;
  height: 400px;
  position: absolute;
  top: -80px;
  left: -80px;
  border: solid 8px black;
  border-radius:50%;
  background-color: rgb(136, 133, 133);
  z-index: 7;
}
.neiwen7:hover #zernike4{
  transition: ease-in-out 5s;
  width: 800px;
  height: 800px;
  top: -640px;
  left: -640px;
  border-right: solid 15px black;
}
#zernike5{
  width: 400px;
  height: 400px;
  transform: rotate(45deg);
  position: absolute;
  top: -70px;
  left: -70px;
  border-right: solid 8px black;
  border-radius: 50%;
  background-color: rgb(136, 133, 133);
  z-index: 6;
}
.neiwen7:hover #zernike5{
  transition: ease-in-out 5s;
  top: -250px;
  left: -250px;
  border-radius: 0%;
  border-right: solid 15px black;
}
#zernike6{
  width: 400px;
  height: 400px;
  transform: rotate(45deg);
  position: absolute;
  top: -30px;
  left: -30px;
  border-radius: 40%;
  border-right: solid 8px black;
  background-color: rgb(136, 133, 133);
  z-index: 5;
  border-radius: 0%;
}
.neiwen7:hover #zernike6{
  transition: ease-in-out 5s;
  top: -200px;
  left: -200px;
  border-right: solid 15px black;
}
#zernike7{
  width: 400px;
  height: 400px;
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
  left: 10px;
  border-right: solid 8px black;
  background-color: rgb(136, 133, 133);
  z-index: 4;
}
.neiwen7:hover #zernike7{
  transition: ease-in-out 5s;
  top: -150px;
  left: -150px;
  border-right: solid 15px black;
}
#zernike8{
  width: 400px;
  height: 400px;
  transform: rotate(45deg);
  position: absolute;
  top: 50px;
  left: 50px;
  border-right: solid 8px black;
  background-color: rgb(136, 133, 133);
  z-index: 3;
}
.neiwen7:hover #zernike8{
  transition: ease-in-out 5s;
  top: -100px;
  left: -100px;
  border-right: solid 15px black;
}
#zernike9{
  width: 400px;
  height: 400px;
  transform: rotate(45deg);
  position: absolute;
  top: 90px;
  left: 90px;
  border-right: solid 8px black;
  background-color: rgb(136, 133, 133);
  z-index: 2;
}


/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
  .pic-1{width: 25%;}
}
