@charset "UTF-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
}
html{
  height: 100%;
/* overflow: auto; */
}

body {
  margin:0;
  padding:0;
  height: 100%;
  overflow-x: hidden;
}
header {
  position: relative;
  width:100%;
  padding-top: 190px;
  background-color: #fff;
  overflow-x: hidden;
}
header:before{
  position: absolute;
  content:"";
  background-image: url(../image/texture.jpg);
  width: 100%;
  height: 190px;
  margin:0;
  padding:0;
  top:0;
  left:0;
}
header:after {
  position: absolute;
  content:"";
  background: url(../image/logo.png) 0 0 no-repeat;
  background-size: 560px;
  width: 560px;
  height: 70px;
  margin: auto;
  top:0;
  bottom:0;
  right:0;
  left:0;
}
footer {
  position: relative;
  margin:0;
  padding:0;
  width:100%;
  height: 50px;
  padding-top:20px;
  background-image: url(../image/texture.jpg);
  background-color: #fff;
  color:#111;
  font-size: 0.9rem;
  font-weight: bold;
  text-align:center;
  overflow: hidden;
}
footer address{
  position: absolute;
  bottom: 2px;
  left:0;
  right:0;
  font-size: 0.6rem;
}
footer li {
  margin-top: 4px;
  display: inline-block;
  list-style:none;
}
footer ul>li:before {
  content: "|";
  margin-right: 0.1em;
}
footer ul>li:first-child:before {
  content: "";
}
footer a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
}
footer a:hover {
  text-decoration: none;
}
main {
  padding:0;
  margin:0;
  min-height: calc(100vh - 260px);
  height: calc(100vh - 260px);
  height: auto !important;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.menuTable table {
  font-size: 2.5em;
}

.menuTable tr {
  cursor: pointer;
}

.menuTable tr a{
  display:block;
  text-decoration: none;
}

.actionButton {
  margin-top:15px;
}

/*content------*/
.container {
  padding:60px 0 20px;
}

.app {
  padding-top: 2.5rem;
  position: relative;
  height: 450px;
  z-index: 1;
}
.app::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 5rem;
  background-color: #8bc4c6;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.app::after {
  position: absolute;
  height: 226px;
  width: 189px;
  margin: auto;
  content: url("../image/capsule.png");
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.app h2 {
  position: absolute;
  margin:0;
  padding:0;
  left: 50%;
  font-size: 150%;
  text-align: center;
  line-height: 1.2;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  z-index: 3;
}
.app h2::before {
  content:"";
  width: 0;
  height: 0;
  border: solid 5px transparent;
  /*border-top: solid 10px #8bc4c6;*/
  border-top: solid 10px #fff;
  position:absolute;
  left:0;
  top: 45%;
  margin-top:-4px;
  margin-left:-20px;
  vertical-align: middle;
  z-index: 3;
}

.app .app-icon {
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  z-index: 4;
}

.app .button{
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  z-index: 4;
}

.button  {
  display: inline-block;
  height: 1.6rem;
  padding: 0.3em 0.9em;
  border-radius: 1rem;
  color: #fff;
  background: #cc7240;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: .4s;
  box-shadow: 0px 0px 5px #222;
}

.button:hover {
  background: #b75525;
  color: #fff;
  text-decoration: none;
}
.backToHome {
    position: absolute;
    top: 100px;
    left: 1rem;
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 2rem;
    background: #04a3bf;
    text-decoration: none;
    box-shadow: 0px 0px 5px #222;
}
.backToHome::before {
    content: '🔙';
    display: block;
    color: #fff;
    width: 4rem;
    height: 4rem;
    font-size: 3rem;
    text-align: center;
}


/*md-----*/
@media only screen and (max-width:991px) {
  header{
    padding-top: 140px;
  }
  header:before {
    height:140px;
  }
  main{
    min-height: calc(100vh - 290px);
  }
  footer {
    height: 130px;
    font-size: 15px;
  }
  footer li {
    display: list-item;
    list-style:none;
  }
  footer ul>li:before {
    content: "";
    margin-right: 0.1em;
  }
}

/*sm-----*/
@media only screen and (max-width:420px) {
  header:after {
    background: url(../image/logo-mini.png) 0 0 no-repeat;
    background-size: 100%;
    width: 280px;
    height: 40px;
  }
}

