@charset "utf-8";
/* CSS Document */
.my-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  background-color: #0d473e;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding: 50px 0 150px 0;
}
.my-sticky2 {
  position: -webkit-sticky;
  position: sticky;
  top: 270px;
  background-color: #9d8624;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding: 50px 0 150px 0;
  margin-top: -50px;
}
.my-sticky3 {
  position: -webkit-sticky;
  position: sticky;
  top: 390px;
  background-color: #302f2f;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding: 50px 0 150px 0;
  margin-top: -50px;
}
.my-sticky4 {
  position: -webkit-sticky;
  position: sticky;
  top: 490px;
  z-index: 49;
  background-color: transparent;
  height: 450px;
  margin-bottom: -450px;
}
.sticky-inner h2 {
  color: #FFF;
  font-size: 3rem;
}
@media screen and (max-width: 1024px) {
  .sticky-inner h2 {
    color: #FFF;
    font-size: 2.4rem;
  }
}
.sticky-inner {
  width: 1100px;
  margin: 0 auto;
}
.sticky-inner .block {
  margin: 40px 0 0 0;
}
.sticky-inner .block .thumb {
  width: 320px;
  float: left;
}
.sticky-inner .block .thumb img {
  width: 100%;
  height: auto;
}
.sticky-inner .block .detail {
  width: 65%;
  float: right;
}
@media screen and (max-width: 1024px) {
  .sticky-inner {
    width: 90%;
    margin: 0 auto;
  }
  .sticky-inner .block .thumb {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .sticky-inner .block .thumb img {
    width: 100%;
    height: auto;
  }
  .sticky-inner .block .detail {
    width: 100%;
    float: none;
  }
}
.sticky-inner .block .detail h3 {
  color: #FFF;
  font-size: 2rem;
  margin: 0 0 30px 0;
}
.sticky-inner .block .detail p {
  color: #FFF;
  font-size: 1rem;
  line-height: 2rem;
}
.sticky-inner .block .detail .link1 {
  position: relative;
  top: 30px;
}
.sticky-inner .block .detail .link1 a {
  text-decoration: none;
  color: #0d473e;
  font-size: 16px;
  background: #FFF;
  font-weight: 500;
  padding: 12px 4rem;
  border: 1px solid #FFF;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: .3s;
}
.sticky-inner .block .detail .link1 a:hover {
  text-decoration: none;
  background: transparent;
  color: #FFF;
  overflow: hidden;
  border: 1px solid #FFF;
}
.sticky-inner .block .detail .link2 {
  position: relative;
  top: 30px;
}
.sticky-inner .block .detail .link2 a {
  text-decoration: none;
  color: #9d8624;
  font-size: 16px;
  background: #FFF;
  font-weight: 500;
  padding: 12px 4rem;
  border: 1px solid #FFF;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: .3s;
}
.sticky-inner .block .detail .link2 a:hover {
  text-decoration: none;
  background: transparent;
  color: #FFF;
  overflow: hidden;
  border: 1px solid #FFF;
}
.sticky-inner .block .detail .link3 {
  position: relative;
  top: 30px;
}
.sticky-inner .block .detail .link3 a {
  text-decoration: none;
  color: #302f2f;
  font-size: 16px;
  background: #FFF;
  font-weight: 500;
  padding: 12px 4rem;
  border: 1px solid #FFF;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: .3s;
}
.sticky-inner .block .detail .link3 a:hover {
  text-decoration: none;
  background: transparent;
  color: #FFF;
  overflow: hidden;
  border: 1px solid #FFF;
}
.sticky-inner .block:after {
  content: "";
  clear: both;
  display: block;
}