* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

html,
body {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
}

a:hover {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a,
button {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
  outline: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  background-color: #D9B965;
}

::selection {
  background: #D9B965;
  color: #fff;
}

.navbar-default {
  background: -moz-linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0.71) 24%, rgba(255, 255, 255, 0.01) 47%, rgba(255, 255, 255, 0) 71%);
  background: -webkit-linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0.71) 24%, rgba(255, 255, 255, 0.01) 47%, rgba(255, 255, 255, 0) 71%);
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0.71) 24%, rgba(255, 255, 255, 0.01) 47%, rgba(255, 255, 255, 0) 71%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=0);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 10em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.nav_box {
  margin-top: 1em;
}

.nav_box dl {
  margin-bottom: 0;
}

.nav_box dl dt {
  display: inline-block;
  vertical-align: middle;
}

.nav_box dl dt a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #005999;
  border-radius: 4px;
  width: 139px;
  height: 44px;
  color: #D9B965;
  font-weight: normal;
  position: relative;
  z-index: 1;
}

.nav_box dl dt a:before {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: block;
  content: "";
  width: 0;
  height: 100%;
  background-color: rgba(217, 185, 101, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  border-radius: 4px;
}

.nav_box dl dt a:after {
  -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0.1s;
  display: block;
  content: "";
  width: 0;
  height: 100%;
  background-color: #00375D;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  border-radius: 4px;
}

.nav_box dl dt a:hover:before,
.nav_box dl dt a:hover:after,
.nav_box dl dt a:focus:before,
.nav_box dl dt a:focus:after {
  width: 100%;
  right: auto;
  left: 0;
}

.nav_box dl dd {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  position: relative;
}

.nav_box dl dd a {
  font-size: 1.1rem;
  color: #333333;
  margin-right: 1.5em;
  padding: 1.5em 0;
  padding-right: 1.5em;
  position: relative;
}

.nav_box dl dd a:after {
  display: block;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #D8D8D8;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.nav_box dl dd a:hover,
.nav_box dl dd a:focus {
  color: #005999;
}

.nav_box dl dd:nth-last-child(2) a {
  border: 0;
  margin: 0;
}

.nav_box dl dd .nav_menu {
  transition: all 0.5s cubic-bezier(1, 0.01, 0, 0.99);
  opacity: 0;
  height: 0;
  position: absolute;
  top: 180%;
  left: 30%;
  margin: auto;
  width: 12em;
  text-align: left;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transform: translateX(-70%);
  overflow: hidden;
}

.nav_box dl dd .nav_menu dd {
  display: block;
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  border-bottom: 1px solid #ddd;
}

.nav_box dl dd .nav_menu dd a {
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  text-align: left;
  line-height: 20px;
  padding: .5em 1em;
  font-size: 1rem;
}

.nav_box dl dd .nav_menu dd a:after {
  content: normal;
}

.nav_box dl dd .nav_menu dd:hover,
.nav_box dl dd .nav_menu dd:focus {
  background-color: #00375D;
}

.nav_box dl dd .nav_menu dd:hover a,
.nav_box dl dd .nav_menu dd:focus a {
  color: #fff;
}

.nav_box dl dd:hover .nav_menu,
.nav_box dl dd:focus .nav_menu {
  opacity: 1;
  height: auto;
  transform: translateX(-50%);
}

.nav_box .nav_share {
  display: none;
}

.toggle_bar {
  display: none;
}


@media (max-width: 1599px) {
  .navbar-default {
    padding: 0 5em;
  }
}

@media (max-width: 1399px) {
  .nav_box dl dd a {
    margin-right: 1em;
    padding-right: 1em
  }
}

@media (max-width: 1280px) {
  .nav_box dl dt a {
    width: 100px;
  }
}

@media (max-width: 1240px) {
  .navbar-default {
    padding: 0 1em;
  }

  .logo {
    width: 12%;
  }
}

@media (max-width: 1099px) {
  .nav_box dl dt a {
    width: 100px;
  }

  .nav_box dl dd a {
    margin-right: .5em;
    padding-right: .5em;
  }
}

@media (max-width: 991px) {
  .nav_box dl dt a {
    width: 80px;
    height: 35px;
  }

  .nav_box dl dd a {
    margin-right: 0.5em;
    padding-right: 0.5em;
  }

  .nav_box .nav_share {
    display: block;
  }

  .nav_box .nav_share ul {
    text-align: center;
  }

  .nav_box .nav_share ul li {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    margin: 20px 5px;
  }

  .nav_box i {
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(217, 185, 101, 0.5);
    z-index: -1;
    transform: translateX(-100%);
    opacity: 0;
  }

  .nav_box dl {
    transition: all 0.5s cubic-bezier(1, 0.01, 0, 0.99);
    text-align: center;
    background-color: #00375D;
    width: 85%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    padding-top: 1em;
    overflow-y: auto;
    transform: translateX(-100%);
    opacity: 0;
  }

  .nav_box dl dt {
    display: block;
  }

  .nav_box dl dt a {
    margin: 0 auto;
    font-size: 1.4rem;
    width: 100%;
    height: 45px;
    border-radius: 0;
    background-color: #D9B965;
    color: #fff;
  }

  .nav_box dl dt a:before {
    border-radius: 0;
  }

  .nav_box dl dt a:after {
    border-radius: 0;
  }

  .nav_box dl dd {
    display: block;
    margin-bottom: 1em;
  }

  .nav_box dl dd a {
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .nav_box dl dd a:after {
    content: normal;
  }

  .nav_box dl dd a:hover,
  .nav_box dl dd a:focus {
    color: #D9B965;
  }

  .nav_box dl dd:nth-last-child(2) a {
    margin-bottom: 10px;
  }

  .nav_box dl dd .nav_menu {
    transition: none;
    opacity: 1;
    height: auto;
    transform: translateX(0);
    position: initial;
    background-color: #fff;
    color: #000;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    width: 100%;
    margin: 0;
    padding: 0;
    display: none;
  }

  .nav_box dl dd .nav_menu dd {
    flex: 1 1 auto;
    margin-bottom: 0;
    width: 100%;
    border: 0;
  }

  .nav_box dl dd .nav_menu dd a {
    display: block;
    font-size: 1.2rem;
    line-height: normal;
    padding: 0.5em 0;
    text-align: center;
    color: #000;
  }

  .nav_box dl dd .nav_menu dd:hover,
  .nav_box dl dd .nav_menu dd:focus {
    background-color: #D9B965;
  }

  .nav_box dl dd:hover .nav_menu,
  .nav_box dl dd:focus .nav_menu {
    transform: translateX(0);
  }

  .nav_box.active i {
    transform: translateX(0);
    opacity: 1;
  }

  .nav_box.active dl {
    transform: translateX(0);
    opacity: 1;
  }

  .toggle_bar {
    width: 50px;
    height: 35px;
    position: absolute;
    top: 1em;
    right: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .toggle_bar i {
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    display: block;
    width: 30px;
    height: 3px;
    background-color: #00498F;
    margin-bottom: 5px;
  }

  .toggle_bar i:nth-child(3) {
    margin-bottom: 0;
  }

  .toggle_bar span {
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    color: #00498F;
    font-size: 0.92rem;
    font-weight: bold;
  }

  .toggle_bar.active i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
  }

  .toggle_bar.active i:nth-child(2) {
    transform: rotate(-45deg);
  }

  .toggle_bar.active span {
    margin-top: 3em;
  }

  .logo {
    width: 15%;
  }
}

@media (max-width: 480px) {
  .nav_box dl {
    width: 80%;
  }

  .logo {
    width: 20%;
  }
}

@media (max-width: 400px) {
  .nav_box dl {
    width: 77%;
  }
}

@media (max-width: 360px) {
  .nav_box dl {
    width: 75%;
  }
}

.index_banner {
  margin-top: -1em;
}

.index_banner .slick-dots {
  bottom: 3em;
  text-align: right;
  padding: 0 3em;
}

.index_banner .slick-dots li {
  width: 45px;
  height: 3px;
}

.index_banner .slick-dots li button {
  width: 45px;
  height: 3px;
  background-color: #FFFFFF;
  padding: 0;
}

.index_banner .slick-dots li button:before {
  content: normal;
}

.index_banner .slick-dots li.slick-active button {
  background-color: #D9B965;
}

.index_banner.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.wrapper {
  background: url(../image/bg3.jpg) repeat-y top center;
}

.in_n_bg {
  padding: 3em 0;
}

.in_news_title {
  text-align: center;
}

.in_news_title h3 {
  color: #00375D;
  font-size: 1.67rem;
}

.in_news_items {
  padding: 2em 1em 0;
  margin: 3.5em auto;
}

.in_news_items a {
  display: block;
  position: relative;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.in_news_items a time {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 59px;
  height: 59px;
  background-color: #D9B965;
  border-radius: 100%;
  color: #ffffff;
  font-size: 0.92rem;
  text-align: center;
  font-weight: normal;
  font-family: "arial";
  letter-spacing: 2px;
  position: absolute;
  top: -2em;
  left: 1em;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.in_news_items a img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.in_news_items a .in_news_bottom {
  background-color: #fff;
  padding: 1em;
}

.in_news_items a .in_news_bottom span {
  display: block;
  width: 90px;
  border-radius: 4px;
  padding: 0.5em 1em;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.in_news_items a .in_news_bottom h3 {
  font-size: 1.25rem;
  color: #0090D1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 24px;
  height: 50px;
}

.in_news_items a .in_news_bottom p {
  font-size: 1rem;
  color: #000000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 24px;
  height: 72px;
}

.in_news_items a:hover,
.in_news_items a:focus {
  box-shadow: none;
}

.in_news_box .slick-prev,
.in_news_box .slick-next {
  width: 60px;
  height: 60px;
  background: url(../image/icon/arrows.jpg) no-repeat center;
  z-index: 1;
  transform: none;
}

.in_news_box .slick-prev:before,
.in_news_box .slick-next:before {
  content: normal;
}

.in_news_box .slick-prev:hover,
.in_news_box .slick-prev:focus,
.in_news_box .slick-next:hover,
.in_news_box .slick-next:focus {
  background: url(../image/icon/arrows.jpg) no-repeat center;
  opacity: 0.6;
}

.in_news_box .slick-prev {
  transform: scaleX(-1);
  left: -6%;
}

.in_news_box .slick-next {
  right: -6%;
}

.in_map {
  margin: 3em auto;
  position: relative;
}

.in_map .in_map_items {
  position: absolute;
  bottom: -8em;
  right: 30em;
}

.in_map .in_map_items img {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.in_map .in_map_items:hover img,
.in_map .in_map_items:focus img {
  box-shadow: none;
}

.in_map .in_map_items2 {
  position: absolute;
  bottom: -5em;
  right: 18em;
}

.in_map .in_map_items3 {
  position: absolute;
  bottom: -0.5em;
  right: 6em;
}

.in_t_bg {
  margin-top: 7em;
  padding: 3em 0 0;
  background: url(../image/bg2.png) no-repeat bottom center;
  min-height: 800px;
}

.in_t_box {
  background-color: #fff;
  position: relative;
  padding: 3em 15em 3em 5em;
  margin-top: 6em;
  min-height: 361px;
}

.in_t_box:before {
  display: block;
  content: "";
  border: 1px solid #D9B965;
  width: 96%;
  height: 89%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.in_t_box h3 {
  color: #003151;
  font-size: 1.58rem;
  margin-bottom: 1em;
  font-weight: 500;
}

.in_t_box p {
  font-size: 1rem;
  line-height: 30px;
  margin-bottom: 2em;
}

.in_t_box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 197px;
  height: 49px;
  background-color: #004791;
  color: #ffffff;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.in_t_box a:before {
  -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  display: block;
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(217, 185, 101, 0.3);
  z-index: -2;
}

.in_t_box a:after {
  -webkit-transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0.1s;
  display: block;
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #00375D;
  z-index: -1;
}

.in_t_box a img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.in_t_box a:hover:before,
.in_t_box a:focus:before {
  width: 100%;
}

.in_t_box a:hover:after,
.in_t_box a:focus:after {
  width: 100%;
}

.in_t_box .t1 {
  position: absolute;
  bottom: -12em;
  right: -12em;
  width: 55%;
}

.footer {
  background-color: #00498F;
  padding: 3em 0;
}

.footer dl dt {
  display: inline-block;
  vertical-align: middle;
}

.footer dl dd {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.6em;
}

.footer dl dd a {
  display: block;
  background-color: #D9B965;
  border-radius: 4px;
  line-height: 38px;
  color: #fff;
  font-size: 1rem;
  padding: 0 1.5em;
  letter-spacing: 1px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.footer dl dd a:before {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: block;
  content: "";
  width: 0;
  height: 100%;
  background-color: rgba(0, 55, 93, 0.2);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  border-radius: 4px;
}

.footer dl dd a:after {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0.1s;
  display: block;
  content: "";
  width: 0;
  height: 100%;
  background-color: #00375D;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  border-radius: 4px;
}

.footer dl dd a:hover:before,
.footer dl dd a:hover:after,
.footer dl dd a:focus:before,
.footer dl dd a:focus:after {
  width: 100%;
  right: auto;
  left: 0;
}

.footer ul {
  margin-bottom: 0;
  text-align: right;
}

.footer ul li {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  margin: 0 0.3em;
  width: 14%;
}

.footer p {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.footer p a {
  color: #fff;
}

@media (max-width: 1530px) {
  .footer dl dd {
    margin: 0 0.3em;
  }

  .footer dl dd a {
    padding: 0 1em;
  }
}

@media (max-width: 1399px) {
  .in_map .in_map_items {
    bottom: -12em;
  }

  .in_map .in_map_items2 {
    bottom: -8em;
  }

  .in_map .in_map_items3 {
    bottom: -4em;
  }
}

@media (max-width: 1280px) {
  .footer ul li {
    width: 15%;
  }
}

@media (max-width: 1199px) {
  .in_t_box .t1 {
    right: -7em;
  }
}

@media (max-width: 1099px) {
  .footer {
    padding: 2em 0;
  }
}

@media (max-width: 991px) {
  .index_banner .slick-dots {
    bottom: 1.5em;
    padding: 0 0.5em;
  }

  .in_news_box .slick-prev {
    left: 0;
  }

  .in_news_box .slick-next {
    right: 0;
  }

  .in_map .in_map_items {
    right: 24em;
  }

  .in_map .in_map_items3 {
    right: 2em;
  }

  .in_map .in_map_items2 {
    right: 13em;
  }

  .in_t_box {
    padding: 3em 10em 3em 5em;
  }

  .in_t_box:before {
    height: 95%;
  }

  .in_t_box .t1 {
    bottom: -5em;
  }

  .footer dl {
    text-align: center;
  }

  .footer p {
    text-align: center;
  }

  .footer ul {
    text-align: center;
    margin-top: 1em;
  }

  .footer ul li {
    width: auto;
  }
}

@media (max-width: 767px) {
  .in_n_bg {
    padding: 2em 0 0;
    margin-top: -0.6em;
  }

  .in_t_box {
    padding: 2em 7em 2em 2em;
  }

  .in_t_box .t1 {
    bottom: -4em;
    right: -5em;
  }

  .in_t_bg {
    margin-top: 12em;
  }

  .footer ul {
    display: none;
  }

  .footer dl dd {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .in_map .in_map_items {
    right: 16em;
  }

  .in_map .in_map_items img {
    width: 80%;
  }

  .in_map .in_map_items2 {
    right: 8em;
  }

  .in_map .in_map_items3 {
    right: 0;
  }

  .in_t_box {
    padding: 2em 10em 2em 2em;
  }

  .in_t_box .t1 {
    bottom: -4em;
    right: -2em;
  }

  .footer dl dt {
    display: block;
    margin-bottom: 10px;
  }

  .footer dl dd {
    margin-bottom: 5px;
  }

  .in_news_items {
    margin: 1.5em auto;
  }
}

@media (max-width: 480px) {
  .index_banner .slick-dots {
    bottom: 0.8em;
  }

  .in_map .in_map_items {
    bottom: -9em;
    right: 12em;
  }

  .in_map .in_map_items img {
    display: block;
    width: 60%;
    margin: 0 auto;
  }

  .in_map .in_map_items2 {
    bottom: -6em;
    right: 6em;
  }

  .in_map .in_map_items3 {
    bottom: -4em;
    right: 0;
  }

  .in_t_bg {
    margin-top: 8em;
  }

  .in_t_box {
    padding: 2em;
  }

  .in_t_box .t1 {
    bottom: auto;
    top: -14em;
  }

  .footer dl dd {
    margin: 0 auto;
    margin-bottom: 5px;
  }

  .in_news_items {
    padding: 2em 0.3em 0;
  }
}

@media (max-width: 400px) {
  .in_t_box .t1 {
    top: -11.8em;
  }

  .footer dl dd a {
    padding: 0 0.3em;
  }
}

@media (max-width: 360px) {
  .in_map .in_map_items {
    bottom: -6em;
    right: 10em;
    width: 20%;
  }

  .in_map .in_map_items img {
    width: auto;
  }

  .in_map .in_map_items2 {
    bottom: -4em;
    right: 5em;
  }

  .in_map .in_map_items3 {
    bottom: -2em;
    right: 0;
  }
}

.about_banner {
  background: no-repeat top left;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about_banner .about_title {
  text-align: center;
  height: 70px;
  margin-bottom: 6em;
}

.about_banner .about_title h1 {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

.bread_box {
  margin: 1em auto;
  position: relative;
}

.bread_box ul {
  text-align: right;
  margin-bottom: 0;
}

.bread_box ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.5em;
}

.bread_box ul li a {
  font-size: 0.92rem;
  color: #878787;
}

.bread_box ul li i {
  display: block;
  width: 7px;
  height: 7px;
  background-color: #878787;
  margin: 0 auto;
  transform: rotate(45deg);
}

.bread_box p {
  font-size: 1rem;
  color: #444444;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.about_list {
  margin: 1.5em auto;
}

.about_list ul {
  text-align: center;
}

.about_list ul li {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 57px;
  border: 1px solid #D9B965;
  border-radius: 4px;
  background-color: #FAFAFA;
  flex: 1 1 auto;
  margin-bottom: 10px;
}

.about_list ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
  color: #333333;
  text-align: center;
  letter-spacing: 2px;
}

.about_list ul li:hover,
.about_list ul li:focus,
.about_list ul li.active {
  background-color: #D9B965;
}

.about_list ul li:hover a,
.about_list ul li:focus a,
.about_list ul li.active a {
  color: #fff;
}

.about_box {
  background: no-repeat right center;
  min-height: 561px;
  display: flex;
  align-items: center;
}

.about_box p {
  font-size: 1.1rem;
  color: #333333;
  width: 42%;
  letter-spacing: 2px;
  line-height: 30px;
}

.about_box p a {
  color: #D9B965;
}

.about_box p a:hover,
.about_box p a:focus {
  text-decoration: underline;
  color: #00375D;
}

.about_box2 {
  padding: 2em 7em;
  max-height: 534px;
  height: 100%;
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_box2:before {
  display: block;
  content: "";
  border: 1px solid #D9B965;
  width: 95%;
  height: 90%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.about_box2 p {
  color: #333333;
  font-size: 1.1rem;
  line-height: 30px;
}

.about_box3 {
  background: no-repeat top center;
  min-height: 437px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_box3 p {
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 0;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  line-height: 40px;
}

.about_box4 {
  margin: 4em auto;
  margin-left: 4em;
  position: relative;
}

.about_box4-2 {
  background-color: #fff;
  width: 70%;
  padding: 5em;
  position: relative;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
  margin-left: 15em;
  margin-top: -3em;
}

.about_box4A-2 {
  background-color: #fff;
  width: 70%;
  padding: 5em;
  position: relative;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
  margin-left: 15em;
  margin-top: -3em;
}


.about_box4-2:before {
  display: block;
  content: "";
  width: 95%;
  height: 90%;
  border: 1px solid #D9B965;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.about_box4-2 p {
  font-size: 1.1rem;
  color: #333333;
  line-height: 30px;
  position: relative;
  z-index: 10;
}

.about_box4-2 h3 {
  margin-bottom: 1.5em;
  color: #005999;
  font-size: 1.1rem;
}

.about_box4A-2 p {
  font-size: 1.1rem;
  color: #333333;
  line-height: 30px;
  position: relative;
  z-index: 10;
}

.about_box4A-2 h3 {
  margin-bottom: 1.5em;
  color: #005999;
  font-size: 1.1rem;
}


.about_box5 {
  margin: 4em auto;
  margin-right: 4em;
  position: relative;
}

.about_box5-2 {
  background-color: #fff;
  width: 70%;
  padding: 5em;
  position: relative;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
  margin-left: 10em;
  margin-top: -3em;
}

.about_box5-2:before {
  display: block;
  content: "";
  width: 95%;
  height: 90%;
  border: 1px solid #D9B965;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.about_box5-2 p {
  font-size: 1.1rem;
  color: #333333;
  line-height: 30px;
  margin-bottom: 2em;
}

.about_box5-2 ul {
  list-style: none;
  border-left: 2px solid #D9B965;
  padding-left: 0.8em;
}

.about_box5-2 ul li {
  margin-bottom: 0.5em;
  font-size: 1.1rem;
  color: #333333;
}

.about_box6 {
  margin: 5em auto;
}

.about_box6 p {
  color: #333333;
  font-size: 1.1rem;
  line-height: 30px;
}

.about_box7 {
  background: no-repeat top center;
  background-size: cover;
  min-height: 431px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_box7 p {
  width: 40%;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333333;
  line-height: 30px;
}

.about_box8 {
  background-color: #ffffff;
  padding: 2em 3em;
  width: 45%;
  margin: -4em auto 10em;
  position: relative;
}

.about_box8 h3 {
  font-size: 1.25rem;
  color: #000000;
  position: absolute;
  left: 2.4em;
  bottom: -3em;
}

.about_box8 img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -6em;
  margin: auto;
}

.about_box8 ul li {
  list-style: none;
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 2px;
}

.about_box8 ul li span {
  font-size: 1.1rem;
  color: #005999;
}

.about_box9 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 1.5em auto;
}

.about_box9 img {
  display: block;
  margin: 0 auto 2em;
}

.about_box9 p {
  width: 100%;
  color: #333333;
  font-size: 1.1rem;
  line-height: 30px;
}

.about_box10 {
  background: no-repeat top center;
  background-size: cover;
  min-height: 469px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 3em auto;
}

.about_box10 p {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
  line-height: 30px;
  color: #ffffff;
  padding: 2em 5em;
  margin-bottom: 0;
  font-weight: 300;
}

.rwd-table {
  overflow: hidden;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:before {
  content: attr(data-th) " : ";
  display: inline-block;
}

@media (min-width: 767px) {
  .rwd-table td:before {
    display: none;
  }

  .rwd-table th,
  .rwd-table td {
    display: table-cell;
  }
}

.about_table {
  margin: 4em auto 5em;
}

.about_table p {
  color: #333333;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 2em;
}

.about_table h3 {
  font-size: 1.25rem;
  color: #fff;
  background-color: #004B8C;
  text-align: center;
  padding: 0.8em 1em;
  font-weight: 400;
  margin-bottom: 0;
}

.about_table table {
  width: 100%;
  border-bottom: 2px solid #D9B965;
}

.about_table table tr:nth-child(odd) {
  background-color: #FFFFFF;
}

.about_table table tr th {
  padding: 1em 0.5em;
  color: #D9B965;
  font-weight: normal;
  font-size: 1.1rem;
}

.about_table table tr th:nth-last-child(2) {
  width: 10%;
}

.about_table table tr td {
  padding: 1.5em 0.5em;
  color: #333333;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 30px;
}

.about_box11 {
  margin: 5em auto;
}

.about_box11 img {
  display: block;
  margin: 0 auto;
}

.about_box11 h3 {
  font-size: 1.25rem;
  color: #005999;
  margin-bottom: 1em;
}

.about_box11 p {
  color: #333333;
  font-size: 1.1rem;
  margin-bottom: 2.5em;
}

.about_box11 ul {
  list-style: none;
  border-left: 2px solid #D9B965;
  padding-left: 1em;
  margin-bottom: 2em;
}

.about_box11 ul li {
  font-size: 1.1rem;
  color: #333333;
  line-height: 30px;
}

.about_box12 {
  background-color: #fff;
  padding: 5em 15px;
}

.about_box12 h3 {
  font-size: 1.25rem;
  color: #005999;
  margin-bottom: 1em;
}

.about_box12 p {
  color: #000000;
  font-size: 1.1rem;
  line-height: 30px;
  margin-bottom: 4em;
}

.about_box12 p a {
  color: #000000;
}

.about_box12 ul {
  list-style: none;
  border-left: 2px solid #D9B965;
  padding-left: 1em;
  margin-bottom: 2em;
}

.about_box12 ul li {
  font-size: 1.1rem;
  color: #333333;
  line-height: 30px;
}

@media (max-width: 1700px) {
  .about_box8 {
    width: 55%;
  }

  .about_box7 p {
    width: 52%;
  }
}

@media (max-width: 1520px) {
  .about_box4-2 {
    padding: 3em;
    margin-left: 10em;
  }

  .about_box4A-2 {
    padding: 3em;
    margin-left: 10em;
  }

  .about_box5-2 {
    padding: 3em;
  }
}

@media (max-width: 1399px) {
  .about_box2 {
    padding: 2em 4em;
  }

  .about_box8 {
    width: 65%;
  }
}

@media (max-width: 1280px) {
  .about_box2 {
    padding: 2em;
  }

  .about_box2 p {
    margin-bottom: 0;
  }

  .about_box4-2 {
    width: 85%;
    margin-left: 3em;
  }

  .about_box4A-2 {
    width: 85%;
    margin-left: 3em;
  }


  .about_box5-2 {
    width: 90%;
    margin-left: 3em;
  }
}

@media (max-width: 1240px) {
  .about_box2 p {
    font-size: 1rem;
    line-height: 26px;
  }
}

@media (max-width: 1199px) {
  .about_box3 p {
    width: 80%;
  }

  .about_box8 {
    width: 75%;
  }

  .about_box7 p {
    width: 75%;
  }
}

@media (max-width: 1099px) {
  .about_box2 {
    padding: 1em 2em;
  }

  .about_box8 {
    width: 85%;
  }

  .about_box8 img {
    right: -4em;
  }
}

@media (max-width: 991px) {
  .about_banner {
    min-height: 285px;
    background-position-x: 50%;
  }

  .about_box2 {
    padding: 2em;
  }

  .about_box2:before {
    width: 97%;
  }

  .about_list ul li {
    width: 32%;
  }

  .about_box4 {
    margin-left: 0;
  }

  .about_box4 .about_box4-2 .about_box4A-2 {
    width: 90%;
    margin: 0 auto;
    margin-top: -3em;
  }

  .about_box5 {
    margin-right: 0;
  }

  .about_box5 .about_box5-2 {
    margin: 0 auto;
    margin-top: -3em;
  }

  .about_box6 {
    margin-top: 0;
  }

  .about_box8 {
    width: 95%;
    margin: -4em auto 2em;
  }

  .about_box8 img {
    display: none;
  }

  .about_box8 h3 {
    position: unset;
  }

  .about_box7 p {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .about_banner {
    background-position-x: 5%;
  }

  .about_box p {
    width: 55%;
  }

  .about_table table tr th:nth-last-child(2) {
    width: auto;
  }

  .about_table table tr td {
    padding: 0.2em 0.5em;
  }

  .about_table .rwd-table td:before {
    color: #D9B965;
  }
}

@media (max-width: 576px) {
  .about_banner {
    background-position-x: 12%;
  }

  .about_list ul li {
    width: 49%;
  }

  .about_box2:before {
    height: 93%;
  }

  .about_box {
    background-position-y: 170%;
    align-items: flex-start;
    min-height: 650px;
  }

  .about_box p {
    width: 100%;
  }

  .about_box3 {
    min-height: auto;
    padding: 2em 0;
  }

  .about_box3 p {
    width: 90%;
    font-size: 1.1rem;
    line-height: 30px;
  }

  .about_box4 .about_box4-2 .about_box4A-2 {
    width: 100%;
    margin-top: 0;
  }

  .about_box4 .about_box4A-2 .about_box4-2:before {
    height: 92%;
  }

  .about_box5 {
    margin-top: 0;
  }

  .about_box5 .about_box5-2 {
    width: 100%;
    margin-top: 0;
  }

  .about_box5 .about_box5-2:before {
    height: 92%;
  }

  .about_box10 p {
    padding: 1em;
  }

  .about_box11 {
    margin: 1em auto;
  }

  .about_box12 {
    padding: 2em 15px;
  }
}

@media (max-width: 480px) {
  .about_banner {
    background-position-x: 18%;
  }

  .about_box4 .about_box4-2 .about_box4A-2 {
    padding: 1.5em;
  }

  .about_box4 .about_box4A-2 .about_box4-2:before {
    height: 97%;
  }

  .about_box5 .about_box5-2 {
    padding: 1.5em;
  }

  .about_box5 .about_box5-2:before {
    height: 97%;
  }

  .about_box8 {
    padding: 1em;
  }

  .about_box7 {
    min-height: 300px;
  }

  .about_box10 {
    min-height: auto;
  }

  .bread_box p {
    position: inherit;
    margin-top: 1em;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .about_banner {
    background-position-x: 22%;
  }

  .about_box {
    background-position-y: 235%;
  }
}

.contact_box {
  margin: 4em auto;
}

.contact_box h3 {
  color: #00375D;
  font-size: 1.4rem;
  margin-bottom: 1.3em;
}

.contact_box ul li {
  display: inline-block;
  vertical-align: middle;
  vertical-align: top;
  list-style: none;
  font-size: 1.1rem;
  color: #00375D;
  margin-bottom: 1em;
  width: 49%;
  line-height: 30px;
  padding-left: 2em;
}

.contact_box ul li a {
  color: #00375D;
}

.contact_box ul li:nth-child(1) {
  background: url(../image/icon/add.png) no-repeat;
  background-position-y: 5px;
}

.contact_box ul li:nth-child(2) {
  background: url(../image/icon/phone.png) no-repeat;
  background-position-y: 5px;
}

.contact_box ul li:nth-child(3) {
  background: url(../image/icon/email.png) no-repeat;
  background-position-y: 5px;
}

.contact_box ul li:nth-child(4) {
  background: url(../image/icon/fax.png) no-repeat;
  background-position-y: 5px;
}

.contact_box ul li:nth-child(5) {
  background: url(../image/icon/car.png) no-repeat;
  background-position-y: 5px;
  width: 100%;
}

#map {
  min-height: 694px;
  margin-bottom: 5em;
}

.contact_form {
  margin-bottom: 5em;
}

.contact_form h3 {
  font-size: 1.25rem;
  color: #00375D;
  text-align: center;
  font-weight: 300;
  margin-bottom: 1.5em;
}

.contact_form .form-control {
  height: 62px;
  background-color: #ffffff;
  border-radius: 0;
  border: 0;
  margin-bottom: 2em;
  font-size: 1.1rem;
  color: #00375D;
}

.contact_form a {
  display: block;
  background-color: #D9B965;
  width: 100%;
  line-height: 62px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 2px;
}

.contact_form button {
  display: block;
  background-color: #00498F;
  width: 100%;
  line-height: 62px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 2px;
  border: 0;
}

@media (max-width: 767px) {
  .contact_form .form-control {
    height: 45px;
    margin-bottom: 1em;
  }

  .contact_form a,
  .contact_form button {
    line-height: 45px;
    margin-bottom: 10px;
  }

  #map {
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  .contact_box ul li {
    width: 100%;
  }
}

.t_banner {
  background: no-repeat top right;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.t_banner .t_title {
  text-align: center;
  height: 70px;
  margin-bottom: 6em;
}

.t_banner .t_title h1 {
  font-size: 2rem;
  color: #000;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

.t_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5em auto 7em;
}

.t_box2 {
  background-color: #ffffff;
  padding: 4em 5em;
  margin-left: -9em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 884px;
  position: relative;
  z-index: 9;
}

.t_box2 h3 {
  margin-bottom: 1.5em;
  color: #005999;
  font-size: 1.1rem;
}

.t_box2 p {
  line-height: 30px;
  font-size: 1.1rem;
  color: #333333;
}

.t_boxA {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2em auto 5em;
}

.t_box2A {
  background-color: #ffffff;
  padding: 4em 5em;
  margin-left: -9em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 884px;
  position: relative;
  z-index: 9;
}

.t_box2A h3 {
  margin-bottom: 1.5em;
  color: #005999;
  font-size: 1.1rem;
}

.t_box2A p {
  line-height: 30px;
  font-size: 1.1rem;
  color: #333333;
}

.t_box2A:before {
  display: block;
  content: "";
  width: 95%;
  height: 90%;
  border: 1px solid #D9B965;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.t_box2R {
  background-color: #ffffff;
  padding: 4em 5em;
  margin-right: -9em;
  margin-left: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 884px;
  position: relative;
  z-index: 9;
}

.t_box2R h3 {
  margin-bottom: 1.5em;
  color: #005999;
  font-size: 1.1rem;
}

.t_box2R p {
  line-height: 30px;
  font-size: 1.1rem;
  color: #333333;
}

.t_box2R:before {
  display: block;
  content: "";
  width: 95%;
  height: 90%;
  border: 1px solid #D9B965;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.t_box3 {
  position: relative;
}

.t_box3 .t_box4{
  background-color: rgba(0, 0, 0, 0.5);
  min-height: 234px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.t_box3 .t_box4 p {
  width: 55%;
  color: #fff;
  font-size: 1.1rem;
  line-height: 30px;
  margin-bottom: 0;
}

.t_box4A {
  background-color: rgba(0, 0, 0, 0.5);
  min-height: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.t_box4A p {
  width: 55%;
  color: #fff;
  font-size: 1.1rem;
  line-height: 30px;
  margin-bottom: 0;
}

.t_box5 {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5em 0;
  height: 100%;
}

.t_box5 img {
  display: block;
  margin: 0 auto;
}

.t_box5 p {
  color: #333333;
  font-size: 1.1rem;
  margin-bottom: 0;
}

@media (max-width: 1680px) {
  .t_banner {
    background-position-x: 40%;
  }
}

@media (max-width: 1440px) {
  .t_box2 {
    padding: 3em;
    margin-left: -18em;
  }
  .t_box2A {
    padding: 3em;
    margin-left: -18em;
  }
  .t_box2R {
    padding: 3em;
    margin-right: -18em;
  }

}

@media (max-width: 1280px) {
  .t_banner {
    background-position-x: 50%;
  }

  .t_box img {
    width: 70%;
  }
  .t_boxA img {
    width: 70%;
  }
  .t_boxB img {
    width: 70%;
  }  
 
}

@media (max-width: 1199px) {
  .t_box2 {
    margin-left: -9em;
    margin-right: 0;
  }

  .t_box2A {
    margin-left: -9em;
    margin-right: 0;
  }
  
  .t_box2R {
    margin-right: -9em;
    margin-left: 0;
  }

  .t_box3 .t_box4 P {
    width: 75%;
  }

  .t_box4A P {
    width: 75%;
  }

}

@media (max-width: 1099px) {
  .t_banner {
    background-position-x: 60%;
  }

  .t_box2 {
    margin-left: -16em;
  }
  .t_box2A {
    margin-left: -16em;
  }

  .t_box2R {
    margin-right: -16em;
  }
  
}

@media (max-width: 991px) {
  .t_banner {
    min-height: 285px;
  }

  .t_box2 {
    padding: 2em;
  }

  .t_box2A {
    padding: 2em;
  }

  .t_box2R {
    padding: 2em;
  }
  
  
}

@media (max-width: 767px) {
  .t_banner {
    background-position-x: 65%;
  }

  .t_box {
    display: block;
    margin: 2em auto;
  }

  .t_box img {
    width: 100%;
  }

  .t_box2 {
    margin: 0 auto;
    width: 100%;
  }
  
  .t_boxA {
    display: block;
    margin: 2em auto;
  }

  .t_boxA img {
    width: 100%;
  }

  .t_box2A {
    margin: 0 auto;
    width: 100%;
  }

  .t_box2R {
    margin: 0 auto;
    width: 100%;
  }
  

  .t_box3 .t_box4 .t_box4A {
    position: relative;
    background-color: #000;
    padding: 1.5em;
  }

  .t_box3 .t_box4 .t_box4A p {
    width: 100%;
  }

  .t_box5 {
    padding: 2em 0;
  }
}

@media (max-width: 480px) {
  .t_banner {
    background-position-x: 60%;
  }
}

@media (max-width: 360px) {
  .t_banner {
    background-position-x: 62%;
  }
}

.study_banner {
  position: relative;
}

.study_banner .study_title {
  text-align: center;
  height: 70px;
  position: absolute;
  top: 0;
  bottom: -10em;
  left: 0;
  right: 0;
  margin: auto;
}

.study_banner .study_title h1,
.study_banner .study_title .h1 {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

.sttudy_box {
  margin: 3em auto;
}

.sttudy_box p {
  color: #333333;
  font-size: 1.1rem;
  line-height: 30px;
}

.sttudy_box ul li {
  color: #333333;
  font-size: 1.1rem;
  display: block;
  padding-left: 1em;
  position: relative;
  margin-bottom: 1em;
}

.sttudy_box ul li:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 9px;
  height: 9px;
  background-color: #D9B965;
  position: absolute;
  top: 10px;
  left: 0;
  margin: auto;
}

.sttudy_box2 {
  text-align: center;
  margin: 2em auto 5em;
  border: 1px solid #D9B965;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 2em;
}

.sttudy_box2 h3 {
  font-size: 1.25rem;
  color: #004B8C;
}

.sttudy_box2 ul {
  margin: 3em auto 0;
}

.sttudy_box2 ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25rem;
  color: #333333;
  padding-left: 1.2em;
  position: relative;
  margin: 0 1em;
}

.sttudy_box2 ul li:before {
  display: block;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #D9B965;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.study_box3 {
  background-color: #fff;
  padding: 4em 1.5em;
}

.study_tabs {
  position: relative;
}

.study_tabs .study_items {
  display: none;
}

.study_tabs .study_items h3 {
  font-size: 1.58rem;
  color: #000000;
  margin-bottom: 1.5em;
}

.study_tabs .study_items h3 span {
  display: inline-block;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #D9B965;
  border-radius: 50px;
  color: #fff;
  font-size: 1.58rem;
  margin-left: 1em;
  font-weight: 400;
  width: 196px;
  height: 40px;
  text-align: center;
}

.study_tabs .study_items p {
  font-size: 1.1rem;
  color: #000000;
}

.study_tabs .study_items p span {
  color: #004B8C;
}

.study_tabs .study_items ul {
  margin: 2em auto;
}

.study_tabs .study_items ul li {
  font-size: 1.1rem;
  list-style: none;
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.5em;
}

.study_tabs .study_items ul li:before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #D9B965;
  position: absolute;
  top: 10px;
  left: 0;
  margin: auto;
}

.study_items_button {
  margin: 3em auto 0;
}

.study_items_button ul {
  text-align: center;
  margin-bottom: 0;
}

.study_items_button ul li {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  border: 2px solid #D9B965;
  border-radius: 50px;
  margin: 0 0.5em;
}

.study_items_button ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #000000;
  font-size: 1.25rem;
  padding: 0.5em 1em;
}

.study_items_button ul li:hover,
.study_items_button ul li:focus {
  background-color: #D9B965;
}

.study_items_button ul li:hover a,
.study_items_button ul li:focus a {
  color: #fff;
}

.study_box4 {
  margin: 2em auto;
}

.study_box4 p {
  color: #333333;
  font-size: 1.1rem;
  line-height: 33px;
  margin-bottom: 3em;
}

.study_box4 h3 {
  font-size: 1.25rem;
  color: #004B8C;
  margin-bottom: 1em;
}

.study_box4 h4 {
  color: #004B8C;
  font-size: 1.58rem;
  font-weight: bold;
}

.study_box4 span {
  display: block;
  width: 111px;
  line-height: 35px;
  border-radius: 50px;
  background-color: #D9B965;
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1em;
}

.study_box4 ul {
  margin: 2em auto;
}

.study_box4 ul li {
  font-size: 1.1rem;
  list-style: none;
  padding-left: 1em;
  position: relative;
  margin-bottom: 1em;
}

.study_box4 ul li:before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #D9B965;
  position: absolute;
  top: 10px;
  left: 0;
  margin: auto;
}

.study_line {
  width: 68% !important;
  height: 1px;
  background-color: #CCCCCC;
  margin: 3em auto;
}

.study_box5 {
  background-color: #ffffff;
  min-height: 313px;
  border: 1px solid #D9B965;
  border-radius: 8px;
  margin-bottom: 3em;
  margin-top: 3em;
  padding: 2em 2em 0;
  position: relative;
}

.study_box5 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background-color: #D9B965;
  border-radius: 100%;
  color: #fff;
  font-size: 1.1rem;
  position: absolute;
  top: -2em;
  left: 1em;
}

.study_box5 h3 {
  margin: 1.5em auto 1em;
  font-size: 1.1rem;
  color: #000000;
}

.study_box5 ol li {
  font-size: 1.1rem;
  list-style: none;
  margin-bottom: 0.5em;
  padding-left: 1.2em;
  position: relative;
}

.study_box5 ol li:before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #D9B965;
  position: absolute;
  top: 10px;
  left: 0;
  margin: auto;
}

.study_box5-2 {
  background-color: #ffffff;
  min-height: 222px;
  border: 1px solid #D9B965;
  border-radius: 8px;
  margin-bottom: 3em;
  margin-top: 3em;
  padding: 2em 2em 0;
  position: relative;
}

.study_box5-2 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background-color: #D9B965;
  border-radius: 100%;
  color: #fff;
  font-size: 1.1rem;
  position: absolute;
  top: -2em;
  left: 1em;
}

.study_box5-2 h3 {
  margin: 1.5em auto 1em;
  font-size: 1.1rem;
  color: #000000;
}

.study_box5-2 ol li {
  font-size: 1.1rem;
  list-style: none;
  margin-bottom: 0.5em;
  padding-left: 1.2em;
  position: relative;
}

.study_box5-2 ol li:before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #D9B965;
  position: absolute;
  top: 10px;
  left: 0;
  margin: auto;
}

.study_box6 {
  margin: 2em auto;
}

.study_box6 h3 {
  font-size: 1.25rem;
  color: #004B8C;
  margin-bottom: 1em;
}

.study_box6 ul li {
  list-style: none;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333333;
}

.study_box6 ul li span {
  color: #004B8C;
  font-size: 1.1rem;
}

.study_box6 p {
  color: #333333;
  font-size: 1.1rem;
  line-height: 30px;
}

.study_box7 {
  margin: 2em auto 6em;
}

.study_box7 h3 {
  font-size: 1.25rem;
  color: #004B8C;
  margin-bottom: 1em;
}

.study_box7 ul li {
  list-style: none;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333333;
}

.study_box7 ul li span {
  color: #004B8C;
  font-size: 1.1rem;
}

.study_box7 p {
  color: #333333;
  font-size: 1.1rem;
  line-height: 30px;
}

.study_box6-2 {
  margin: 3em auto;
}

.study_box6-2 ul li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1em;
}

.study_box6-2 i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 1.25rem;
  color: #ffffff;
  background-color: #D9B965;
  width: 43px;
  height: 43px;
  border-radius: 100%;
  margin-right: 1em;
}

.study_box6-2 p {
  font-size: 1.1rem;
  color: #333;
  width: calc(100% - 43px);
}

@media (max-width: 1280px) {
  .study_box5 {
    padding: 2em 1em 0;
  }

  .study_box5 h3 {
    margin: 1em auto;
  }

  .study_box5-2 {
    padding: 2em 1em 0;
  }

  .study_box5-2 h3 {
    margin: 1em auto;
  }
}

@media (max-width: 991px) {
  .sttudy_box {
    margin: 1em auto;
  }

  .study_line {
    width: 97% !important;
    margin: 1em auto;
  }
}

@media (max-width: 767px) {
  .study_box4 {
    margin: 1em auto;
  }

  .study_box4 p {
    margin-bottom: 2em;
  }

  .study_box5 {
    margin-bottom: 1em;
  }

  .study_box5-2 {
    margin-bottom: 1em;
  }

  .study_box6-2 {
    margin: 0em auto;
  }

  .study_box7 {
    margin: 2em auto;
    margin-top: 0;
  }

  .study_box6 {
    margin-top: 0;
  }

  .study_banner .study_title {
    top: auto;
    bottom: 0;
    left: 1.5em;
    right: auto;
  }

  .study_banner .study_title img {
    display: none;
  }
}

@media (max-width: 576px) {

  .study_banner .study_title h1,
  .study_banner .study_title .h1 {
    font-size: 1.5rem;
  }

  .sttudy_box2 ul {
    margin: 1em auto 0;
  }

  .sttudy_box2 ul li {
    margin: 0.5em;
  }
}

@media (max-width: 480px) {
  .study_tabs .study_items h3 span {
    margin-left: 0.2em;
    width: auto;
    padding: 0 0.5em;
  }

  .study_items_button ul li {
    margin-bottom: 1em;
  }

  .study_banner .study_title {
    bottom: -1.5em;
  }
}

@media (max-width: 400px) {
  .study_tabs .study_items h3 span {
    display: block;
    margin: 0.5em 0;
    width: 196px;
    line-height: 40px;
  }
}

.read_box {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  border-bottom: 1px solid #DDDDDD;
}

.read_box:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.6);
}

.read_box a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1em;
}

.read_box a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 59px;
  height: 59px;
  background-color: #D9B965;
  border-radius: 100%;
  color: #fff;
  font-size: 0.92rem;
  color: #fff;
  margin-right: 1em;
}

.read_box a .read_items {
  width: calc(100% - 59px);
}

.read_box a .read_items h3 {
  font-size: 1.25rem;
  color: #333333;
}

.read_box a .read_items p {
  font-size: 0.92rem;
  color: #545454;
  margin-bottom: 0;
}

.read_box:hover,
.read_box:focus {
  background-color: rgba(217, 185, 101, 0.2);
}

.read_bg {
  margin: 2em auto 4em;
}

.page {
  margin: 0 auto 5em;
}

.page ul {
  text-align: center;
}

.page ul li {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  width: 40px;
  line-height: 40px;
  background-color: #EEEEEE;
  font-size: 0.75rem;
}

.page ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #000;
}

.page ul li:hover,
.page ul li:focus,
.page ul li.active{
  background-color: #004593;
}

.page ul li:hover a,
.page ul li:focus a,
.page ul li.active a{
  color: #D9B965;
}

.page ul li:hover.pre,
.page ul li:focus.pre {
  background-color: transparent;
  opacity: 0.5;
}

.page ul li:hover.nex,
.page ul li:focus.nex {
  background-color: transparent;
  opacity: 0.5;
}

.page ul li.pre img {
  transform: scaleX(-1);
}

.read_title {
  margin: 4em auto 3em;
  position: relative;
  z-index: 1;
}

.read_title h3,
.read_title h1 {
  color: #333333;
  font-size: 1.42rem;
  text-align: center;
  margin: 1.5em auto;
}

.read_title span {
  display: block;
  margin: 0 auto;
  font-size: 1rem;
  color: #ffffff;
  background-color: #D9B965;
  border-radius: 50px;
  line-height: 33px;
  width: 109px;
  text-align: center;
}

.read_title:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #CCCCCC;
  position: absolute;
  left: 0;
  bottom: 1em;
  z-index: -1;
}

.read_box2 {
  margin-bottom: 4em;
}

.read_box2 .read_editor_img {
  margin: 3em auto;
}

.read_box2 .read_editor_p {
  font-size: 1.25rem;
  color: #000000;
  line-height: 35px;
}

.read_share {
  border-top: 1px solid #CCCCCC;
  padding-top: 2em;
  margin-bottom: 2em;
}

.read_share ul {
  text-align: center;
}

.read_share ul li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  text-align: center;
}

.read_share ul li:first-child {
  margin-right: 10px;
}

.read_share ul li a {
  display: block;
  width: 70%;
}

.read_share ul li a img {
  display: block;
  width: 100%;
}

.read_bak {
  display: block;
}

.read_bak a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: #00498F;
  width: 145px;
  height: 45px;
  border-radius: 50px;
  margin: 0 auto;
  font-size: 1rem;
  color: #fff;
}

.read_page {
  position: relative;
  margin: 5em auto;
  text-align: center;
}

.read_page .pre {
  position: absolute;
  top: 1em;
  bottom: 0;
  left: 0;
  margin: auto;
}

.read_page .pre a {
  color: #D9B965;
}

.read_page .pre a:hover,
.read_page .pre a:focus {
  color: #00375D;
}

.read_page .nex {
  position: absolute;
  top: 1em;
  bottom: 0;
  right: 0;
  margin: auto;
}

.read_page .nex a {
  color: #D9B965;
}

.read_page .nex a:hover,
.read_page .nex a:focus {
  color: #00375D;
}

@media (max-width: 767px) {
  .read_title {
    margin: 4em auto 0em;
  }

  .read_box a .read_items h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .read_box a {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .read_page {
    margin: 2em auto 1em;
  }

  .read_page .pre {
    display: inline-block;
    vertical-align: middle;
    position: initial;
    margin: 1.5em 1em;
  }

  .read_page .nex {
    display: inline-block;
    vertical-align: middle;
    position: initial;
    margin: 1.5em 1em;
  }
}

.video_box {
  margin: 2em auto 0;
}

.video_box .video_box2 {
  padding: 1.5em;
}

.video_box .video_box2 h3 {
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  color: #333333;
  font-size: 1.1rem;
  margin-bottom: 0.8em;
}

.video_box .video_box2 p {
  color: #333333;
  font-size: 1rem;
}

.video_box:hover .video_box2 h3,
.video_box:focus .video_box2 h3 {
  color: #D9B965;
}

@media (max-width: 576px) {
  .video_box img {
    width: 100%;
  }

  .video_box .video_box2 {
    padding: 1.5em 0;
  }

  .read_bg {
    margin: 0 auto 4em;
  }
}

#calendar {
  margin: 3em auto 5em;
  border-bottom: 2px solid #004B8D;
}

footer .top {
  display: none;
}

@media (max-width: 767px) {
  footer .top {
    -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    display: block;
    position: fixed;
    right: 0;
    bottom: 2.5em;
    z-index: 9;
    font-size: 0.75rem;
    color: #fff;
    text-align: center;
    background-color: #CCCCCC;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    padding: 0.5em 1em;
    cursor: pointer;
    box-shadow: -1px -1px 5px rgba(0, 0, 0, 0.1);
  }

  footer .top img {
    display: block;
    transform: rotate(-90deg);
    margin: 0 auto;
  }

  footer .top:hover,
  footer .top:focus {
    background-color: #D9B965;
  }
}

.b_bg {
  padding-bottom: 5em;
}

.b_month {
  margin: 2.5em auto;
}

.b_month h3 {
  color: #00375D;
  font-size: 1.25rem;
}

.b_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  margin: 1.5em auto;
  border: 1px solid #D9B965;
}

.b_box img {
  width: 350px;
}

.b_box .b_box2 {
  width: calc(100% - 550px);
  padding: 1em 2em;
}

.b_box .b_box2 h3 {
  font-size: 1.25rem;
  color: #000000;
}

.b_box .b_box2 p {
  color: #666666;
  font-size: 0.92rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 24px;
  height: 50px;
}

.b_box .b_box2 time {
  color: #000000;
  font-size: 1rem;
}

.b_box .b_box2 time img {
  display: inline-block;
  vertical-align: middle;
  vertical-align: sub;
  width: auto;
  margin-right: 0.5em;
}

.b_box .b_box3 {
  width: 200px;
  padding: 1em 2em;
}

.b_box .b_box3 a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D9B965;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #fff;
  width: 130px;
  height: 35px;
  margin: 0.5em auto 1em;
}

.b_box .b_box3 a:hover,
.b_box .b_box3 a:focus {
  background-color: #00375D;
}

.b_box .b_box3 h4 {
  font-size: 1rem;
  color: #000;
  text-align: center;
  font-weight: normal;
}

.b_box .b_box3 time {
  display: block;
  font-size: 0.9rem;
  color: #000;
  text-align: center;
}

.b_radio {
  padding: 2em 5em;
}

.b_radio ul {
  list-style: none;
}

.b_radio ul li {
  margin: 2em auto;
  border-bottom: 1px solid #D9B965;
  padding-bottom: 1em;
}

.b_radio label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 2.5em;
}

.b_radio label h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: normal;
}

.b_radio label h3 span {
  display: block;
  font-size: 0.92rem;
  margin-top: 0.5em;
}

.b_radio label p {
  font-size: 1.25rem;
  margin: 1em 0;
}

.b_radio label::after {
  content: url(../image/icon/radio.png);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.7em;
}

.b_radio input[type="radio"] {
  display: none;
}

.b_radio input[type="radio"]:checked+label::after {
  content: url(../image/icon/radio2.png);
}

.b_radio dl {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 3em;
}

.b_radio dl dd {
  margin: 0 0.8em;
}

.b_radio dl dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 59px;
  background-color: #AAAAAA;
  border-radius: 6px;
  color: #fff;
  font-size: 1.1rem;
}

.b_radio dl dd button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 316px;
  height: 59px;
  background-color: #D9B965;
  border-radius: 6px;
  border: 0;
  font-size: 1.1rem;
  color: #fff;
  outline: none;
}

.b_radio dl dd button:hover,
.b_radio dl dd button:focus {
  background-color: #00375D;
}

.b_radio dl dd p {
  display: block;
  text-align: center;
  color: #000;
  font-size: 0.9rem;
  margin-top: 0.5em;
}

.b_d_title {
  border-bottom: 1px solid #D9B965;
  margin-bottom: 2em;
}

.b_d_title h3 {
  font-size: 1.9rem;
  text-align: center;
  font-weight: normal;
  margin: 1em auto;
}

.b_d_title h4 {
  font-weight: normal;
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1.5em;
}

.b_d_title h4 img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.3em;
}

.b_d_box img {
  margin-bottom: 3em;
}

.b_d_tab {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 4em 5em;
  position: relative;
}

.b_d_tab .nav-tabs {
  position: absolute;
  top: -1.5em;
  left: 0;
  right: 0;
  margin: auto;
  justify-content: center;
  border-bottom: 0;
}

.b_d_tab .nav-tabs .nav-item {
  margin: 0 0.5em;
}

.b_d_tab .nav-tabs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 52px;
  border-radius: 4px;
  border: 1px solid #D9B965;
  background-color: #fff;
  font-size: 1rem;
  color: #000;
}

.b_d_tab .nav-tabs .nav-item a.active {
  background-color: #D9B965;
  color: #fff;
}

.b_d_tab .tab-content img {
  margin-bottom: 2em;
}

.b_d_tab .tab-content p {
  font-size: 1.1rem;
  line-height: 30px;
}

.b_d_tab .tab-content p b {
  display: block;
  font-weight: normal;
  font-size: 1.6rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.s_list {
  margin: 3em auto;
}

.s_list ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.s_list ul:before {
  display: block;
  content: "";
  width: 50%;
  height: 1px;
  background-color: #D9B965;
  position: absolute;
  top: -1.5em;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.s_list ul li {
  font-size: 1.1rem;
  color: #000;
  margin: 0 2em;
}

.s_list ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 127px;
  height: 127px;
  border-radius: 100%;
  background-color: #BBBBBB;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5em;
}

.s_list ul li span.active {
  background-color: #D9B965;
}

.s_title {
  margin: 3em auto 1em;
}

.s_title h3 {
  color: #000;
  text-align: center;
  font-size: 1.9rem;
  font-weight: normal;
}

.s_title p {
  margin: 1em auto;
  font-size: 1.25rem;
  color: #000;
  text-align: center;
}

.s_title p img {
  display: inline-block;
  vertical-align: middle;
}

.s_form {
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 2.5em 3em;
  border-top: 1px solid #D9B965;
  margin-top: 1em;
  margin-bottom: 2em;
}

.s_form h3 {
  color: #D9B965;
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 0.5em;
  margin-top: 1em;
}

.s_form p {
  font-size: 1.1rem;
}

.s_form h4 {
  font-size: 1.1rem;
  margin-top: 2em;
  color: #00488E;
}

.s_form label {
  font-size: 1.1rem;
  margin-top: 0.8em;
}

.s_form .form-control {
  display: block;
  margin-bottom: 0.8em;
  border: 0;
  background-color: #EEEEEE;
  border-radius: 2px;
  height: 53px;
}

.s_form ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.s_form ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 .5em;
}

.s_form ul li label {
  cursor: pointer;
  display: block;
  position: relative;
  margin: 0 auto;
}

.s_form ul li label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #CCCCCC;
  border-radius: 100%;
}

.s_form ul li input[type="radio"] {
  display: none;
}

.s_form ul li input[type="radio"]:checked+label::after {
  content: "";
  border: 4px solid #1990FF;
}

.s_form ul li:nth-child(2) input[type="radio"]:checked+label::after {
  border-color: #FF7373;
}

.s_form ul li:nth-child(3) input[type="radio"]:checked+label::after {
  border-color: #FFD24D;
}

.s_form .custom-control-label::after {
  width: 1.5rem;
  height: 1.5rem;
  top: 0.1rem;
}

.s_form .custom-control-label::before {
  width: 1.5rem;
  height: 1.5rem;
  top: 0.1rem;
}

.s_form dl dd {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
}

.s_form dl dd .custom-control label {
  font-size: 1.1rem;
  padding-left: 0.5em;
}

.s_form dl dt {
  font-weight: normal;
  margin-top: 1em;
}

.s_form dl dt .custom-control {
  display: inline-block;
  vertical-align: middle;
}

.s_form dl dt .custom-control label {
  font-size: 1.1rem;
  margin-top: 0;
  padding-left: 0.5em;
}

.s_form dl dt .form-control {
  display: inline-block;
  vertical-align: middle;
  width: 407px;
  margin-bottom: 0;
  margin-left: 0.8em;
}

.s_form .custom-radio {
  margin-bottom: 0.5em;
}

.s_form .custom-radio label {
  font-size: 1.1rem;
  padding-left: 0.5em;
}

.s_form ol li {
  display: inline-block;
  vertical-align: middle;
}

.s_form ol li .custom-radio {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1em;
}

.s_form ol li .custom-radio label {
  margin-top: 0;
}

.s_box2 ul {
  list-style: none;
}

.s_box2 ul li label {
  cursor: pointer;
  display: block;
  position: relative;
}

.s_box2 ul li label::after {
  content: url(../image/icon/radio.png);
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3em;
}

.s_box2 ul li input[type="radio"] {
  display: none;
}

.s_box2 ul li input[type="radio"]:checked+label::after {
  content: url(../image/icon/radio2.png);
}

.s_table {
  display: block;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 3em 4em 5em;
  border-top: 1px solid #D9B965;
  margin-top: 2em;
}

.s_table h3 {
  color: #D9B965;
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 1em;
}

.s_table table {
  width: 100%;
}

.s_table table tr:last-child td:nth-child(1) {
  border-bottom: 0;
}

.s_table table tr:last-child td:nth-child(2) {
  border-bottom: 0;
}

.s_table table tr td {
  padding: 1em 0;
}

.s_table table tr td:nth-child(1) {
  border-bottom: 1px solid #D9B965;
  border-right: 1px solid #D9B965;
  width: 250px;
  padding-right: 1em;
}

.s_table table tr td:nth-child(2) {
  padding: 1em 2em;
  border-bottom: 1px solid #CDCDCD;
}

.s_box {
  margin: 2em auto;
  border-bottom: 1px solid #D9B965;
  padding-bottom: 2em;
  margin-bottom: 2em;
}

.s_box h3 {
  font-size: 1.25rem;
  text-align: center;
  font-weight: normal;
}

.s_box h4 {
  color: #000000;
  font-size: 1.6rem;
  text-align: center;
  font-weight: normal;
  margin-top: 0.5em;
}

.s_box h4 span {
  color: #D9B965;
  margin-left: 0.5em;
}

.s_box2 {
  margin-bottom: 5em;
}

.s_box2 h3 {
  text-align: center;
  font-size: 1.6rem;
  color: #D9B965;
  font-weight: normal;
}

.s_box2 ul {
  text-align: center;
  margin: 2em auto;
}

.s_box2 ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1em;
}

.s_box2 ul li label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 203px;
  height: 98px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #D9B965;
}

.s_box2 ul li label img {
  display: block;
  margin: 0 auto 0.5em;
}

.s_box3 {
  display: block;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 3em 4em 5em;
  border-top: 1px solid #D9B965;
  margin-top: 2em;
}

.s_box3 h4 {
  text-align: center;
  color: #000;
  font-size: 1.1rem;
  margin-top: 4em;
  font-weight: normal;
  line-height: 28px;
}

.rwd-table {
  overflow: hidden;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:before {
  content: attr(data-th) " ";
  display: inline-block;
}



@media (min-width: 576px) {
  .rwd-table td:before {
    display: none;
  }

  .rwd-table th,
  .rwd-table td {
    display: table-cell;
  }
}

@media (max-width: 1499px) {
  /* .s_form ul li {
    margin: 0 .6em;
  } */
}

@media (max-width: 1440px) {
  .b_box img {
    width: 250px;
  }

  .b_box .b_box2 {
    width: calc(100% - 450px);
    padding-right: 0;
  }

  .b_box .b_box3 {
    width: 200px;
  }

  /* .s_form ul li {
    margin: 0 .3em;
  } */
}

@media (max-width: 1280px) {
  .b_box .b_box2 p {
    line-height: 20px;
    height: 38px;
  }
}

/* @media (max-width: 1203px) {
  .s_form ul li {
    margin: 0 auto;
  }
} */

@media (max-width: 1199px) {
  .b_d_tab {
    padding: 4em 3em 2em;
  }

  .b_radio {
    padding: 2em 3em;
  }

  .b_radio label {
    flex-wrap: wrap;
  }

  .s_list ul:before {
    width: 80%;
  }

}

@media (max-width: 1099px) {
  /* .s_form ul li {
    margin: 0 .2em;
    width: 28%;
  } */

}

@media (max-width: 991px) {
  /* .s_form ul li {
    width: auto;
  } */
}

@media (max-width: 899px) {
  /* .s_form ul li {
    width: 25%;
  } */
}

@media (max-width: 767px) {
  .b_box {
    flex-wrap: wrap;
  }

  .b_box img {
    width: 100%;
  }

  .b_box .b_box2 {
    width: calc(100% - 200px);
  }

  .s_list ul {
    align-items: flex-start;
  }

  .s_list ul:before {
    width: 70%;
    top: -3.5em;
  }

  .s_list ul li {
    margin: 0 0.8em;
  }

  .s_list ul li span {
    width: 100px;
    height: 100px;
  }

  .s_table table tr td:nth-child(1) {
    width: 210px;
  }

  /* .s_form ul li {
    width: 22%;
  } */
  .s_box2 ul li label {
    width: 120px;
  }
}

@media (max-width: 640px) {
  .s_form dl dt .form-control {
    width: 65%;
  }
}

@media (max-width: 576px) {
  .b_radio dl dd button {
    width: 200px;
  }

  .s_table {
    padding: 2em 2em 3em;
  }

  .s_table table tr td:nth-child(1) {
    width: auto;
    border: 0;
    color: #D9B965;
    padding: 0.5em 0;
  }

  .s_table table tr td:nth-child(2) {
    padding: 1em 0.5em;
    padding-top: 0;
  }

  .s_box2 ul li {
    margin: 0 0.2em;
  }

  /* .s_box2 ul li label {
    width: 100px;
  } */

  .s_form ul {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .b_box .b_box2 {
    width: 100%;
    padding: 1em;
    text-align: center;
  }

  .b_box .b_box3 {
    text-align: center;
    width: 100%;
    padding: 0 1em 1em;
  }

  .b_box .b_box3 h4 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5em;
    margin-bottom: 0;
  }

  .b_box .b_box3 time {
    display: inline-block;
    vertical-align: middle;
  }

  .b_bg {
    padding-bottom: 2em;
  }

  .b_d_tab .nav-tabs .nav-item a {
    width: 129px;
  }

  .b_d_tab {
    padding: 4em 1.5em 2em;
  }

  .b_radio {
    padding: 2em 1em;
  }

  .s_form {
    padding: 1em;
  }

  .s_list ul {
    flex-wrap: wrap;
  }

  .s_list ul:before {
    content: normal;
  }

  .s_list ul li {
    margin: 1em;
  }

  .s_box2 {
    margin-bottom: 3em;
  }

  .s_box3 {
    padding: 0 2em 2em;
  }

  .s_box2 ul li label {
    width: 85px;
  }
}

@media (max-width: 400px) {
  .b_radio {
    padding-bottom: 0;
  }

  .b_radio dl {
    margin-bottom: 0;
  }

  .b_radio dl dd {
    margin: 0 0.3em;
  }

  .b_radio dl dd a {
    width: 100px;
  }

  .b_radio dl dd button {
    width: 160px;
  }
}

.m_box {
  background-color: #fff;
  padding: 3em 8em;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin: 3em auto;
}

.m_box h3 {
  font-size: 1.6rem;
  color: #D9B965;
  text-align: center;
}

.m_box p {
  color: #000000;
  text-align: center;
  margin: 1.5em auto 2.5em;
  border-bottom: 1px solid #CDCDCD;
  padding-bottom: 2.5em;
}

.m_box h4 {
  font-size: 1rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 2em;
}

.m_box .form-control {
  background-color: #EEEEEE;
  font-size: 1rem;
  height: 53px;
  border: 0;
  margin: 1em auto;
  color: #000;
}

.m_box img {
  margin-left: 0.5em;
}

.m_box button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 53px;
  background-color: #00498F;
  color: #D9B965;
  font-size: 1.1rem;
  border-radius: 4px;
  border: 0;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

.m_box button:hover,
.m_box button:focus {
  background-color: #D9B965;
  color: #fff;
}

.m_box ul {
  list-style: none;
}

.m_box ul li {
  font-size: 1rem;
  margin-bottom: 0.3em;
}

.m_box ul li a {
  color: #000;
}

.m_box ul li .m_a {
  color: #cc3232;
}

.m_box ul li a:hover,
.m_box ul li a:focus {
  color: #00498F;
}

.m_title {
  margin: 1.5em auto;
}

.m_title h3 {
  color: #D9B965;
  font-size: 1.6rem;
  text-align: center;
  font-weight: normal;
}

.m_form {
  align-items: center;
  border: 0;
}

.m_form label {
  margin: 0 auto 1.3em;
}

.m_form .form-control {
  margin-bottom: 1.3em;
}

.m_form h3 {
  margin-bottom: 1.5em;
}

.m_form2 {
  border: 0;
}

.m_form2 h3 {
  margin-bottom: 1.5em;
}

.m_form2 span {
  display: block;
  text-align: center;
  line-height: 53px;
}

.m_form2 ol {
  display: flex;
  align-items: center;
}

.m_form2 ol li .custom-radio {
  margin-left: 0;
  margin-right: 1.5em;
}

.m_form2 ol li h5 {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  font-weight: normal;
  margin: 0.5em 1.5em;
}

.m_form2 ol li .form-control {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}

.m_box2 .custom-control-label:before,
.m_box2 .custom-control-label:after {
  width: 1.5rem;
  height: 1.5rem;
  top: 0.1rem;
}

.m_box2 .custom-control {
  text-align: center;
}

.m_box2 .custom-control label {
  padding-left: 0.5em;
}

.m_box2 button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2em auto;
  font-size: 1.1rem;
  color: #D9B965;
  background-color: #00498F;
  width: 475px;
  height: 53px;
  border: 0;
  border-radius: 4px;
}

.m_box2 button:hover,
.m_box2 button:focus {
  background-color: #D9B965;
  color: #fff;
}

.m_box3 {
  margin-left: 1.5em;
}

.m_table {
  margin: 2em auto;
  background-color: #fff;
  border-radius: 4px;
  border-top: 1px solid #D9B965;
  padding: 4em 5em 6em;
}

.m_table h3 {
  color: #D9B965;
  font-size: 1.6rem;
  margin-bottom: 1em;
}

.m_table table {
  width: 100%;
}

.m_table table tr {
  border-bottom: 1px solid #CDCDCD;
}

.m_table table tr:nth-child(even) {
  background-color: #F5F5F5;
}

.m_table table tr th {
  padding: 0.8em 1.5em;
  color: #000000;
  font-size: 1.1rem;
  font-weight: normal;
  border-left: 1px solid #D9B965;
  text-align: center;
}

.m_table table tr th:first-child {
  border: 0;
  text-align: left;
}

.m_table table tr td {
  padding: 1.5em 2em;
  border-left: 1px solid #D9B965;
  text-align: center;
  font-size: 1rem;
}

.m_table table tr td:first-child {
  border: 0;
  text-align: left;
}

.m_table table tr td h3 {
  font-size: 1.1rem;
  color: #000;
}

.m_table table tr td h4 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 0;
}

.m_table table tr td h4 span {
  display: inline-block;
  vertical-align: middle;
  color: #D9B965;
  margin-left: 0.5em;
}

.m_table table tr td em {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  width: 103px;
  height: 40px;
  border-radius: 4px;
  background-color: #D9B965;
  margin: 0.5em auto;
  color: #fff;
  font-size: 0.92rem;
}

.m_table table tr td i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  width: 103px;
  height: 40px;
  border-radius: 4px;
  background-color: #FF9326;
  margin: 0.5em auto;
  color: #fff;
  font-size: 0.92rem;
}

.m_table table tr td span {
  color: #D9B965;
}

.m_table table tr td a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  width: 103px;
  height: 40px;
  border-radius: 4px;
  background-color: #fff;
  margin: 0.5em auto;
  color: #000000;
  font-size: 0.92rem;
  border: 1px solid #BBBBBB;
}

.m_table table tr td a:hover,
.m_table table tr td a:focus {
  background-color: #00498F;
  color: #fff;
  border-color: #00498F;
}

.m_box4 {
  margin: 1em auto 3em;
}

.m_box4 h3 {
  background-color: #00498F;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  font-size: 1.5rem;
  font-weight: normal;
}

.m_box5 {
  background-color: #fff;
  border-radius: 4px;
  margin: 0.8em auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 2em;
}

.m_box5 dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.m_box5 dl dd {
  margin-bottom: 0;
}

.m_box5 dl dd h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
  padding-left: 1em;
  font-weight: normal;
  position: relative;
}

.m_box5 dl dd h4 span {
  display: inline-block;
  /* vertical-align: middle; */
  color: #00498F;
  margin: 0 .7em;
}

.m_box5 dl dd h4:before {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #D9B965;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.m_box5 dl .m_box6 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #000000;
  font-size: 1.1rem;
}

.m_box5 dl .m_box6-2 {
  margin-bottom: 1em;
}

.m_box5 dl .m_box6 .form-control {
  background-color: #EEEEEE;
  border: 0;
  width: 100px;
  height: 45px;
  margin: 0 0.5em;
}

.m_sumit {
  display: inline-block;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 45px;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  background-color: #D9B965;
  border-radius: 4px;
  margin: 0 0.75em;
  border: 0;
}

.m_sumit:hover,
.m_sumit:focus {
  background-color: #00498F;
  color: #fff;
}

.m_box7 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  border-radius: 4px;
  margin: 0.8em auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 1.5em 2.5em;
}

.m_box7 h4 {
  margin-bottom: 0;
}

.m_box7 h4 .form-control {
  /* background-color: #EEEEEE; */
  border-radius: 4px;
  padding: 0.8em 0;
  font-size: 1.1rem;
  text-align: center;
  font-weight: normal;
}

.m_box7 h5 {
  font-size: 1.1rem;
  text-align: center;
  font-weight: normal;
  margin: 0 .5em 0;
}

.m_box7 h5 span {
  display: inline-block;
  color: #00498F;
  margin-left: 0.5em;
}

.m_box7 label {
  display: block;
  font-weight: normal;
  color: #000;
  font-size: 1.1rem;
  text-align: center;
  margin: 0 .5em 0;
}

.m_box7 label .form-control {
  display: inline-block;
  vertical-align: middle;
  width: 116px;
  height: 53px;
  border: 0;
  background-color: #EEEEEE;
  margin: 0 0.5em;
}

.m_box7 .m_sumit {
  display: flex;
  /* margin: 0 auto; */
}

.m_table .rwd-table {
  overflow: hidden;
}

.m_table .rwd-table th {
  display: none;
}

.m_table .rwd-table td {
  display: block;
}

.m_table .rwd-table td:before {
  content: attr(data-th) " ";
  display: inline-block;
}

@media (min-width: 880px) {
  .m_table .rwd-table td:before {
    display: none;
  }

  .m_table .rwd-table th,
  .m_table .rwd-table td {
    display: table-cell;
  }
}

@media (max-width: 1399px) {
  .m_box {
    padding: 3em;
  }

  .m_form2 ul li {
    margin: 0 0.5em 0.5em;
  }
}

@media (max-width: 1199px) {
  .m_form2 ol {
    display: flex;
    flex-wrap: wrap;
  }

  .m_form2 ol li .custom-radio {
    margin-bottom: 1em;
  }

  .m_form3 h4 {
    margin-bottom: 1em;
  }

  .m_form3 ol {
    margin-bottom: 2em;
  }

  .m_form3 ol li {
    flex: 1 1 auto;
  }

  .m_form3 ol li:first-child {
    width: 100%;
  }

  .m_form3 ol li h5 {
    margin-left: 0;
  }

  .m_box7 {
    padding: 1.5em;
  }
}

@media (max-width: 1099px) {
  .m_box7 {
    padding: 1.5em 1em;
  }

  .m_box5 dl {
    flex-wrap: wrap;
    /* margin-top: 1em; */
  }

  .m_box5 dl dd {
    width: 100%;
  }

  .m_box5 dl .m_box6 {
    /* margin-top: 1em; */
    justify-content: flex-start;
  }
}

@media (max-width: 899px) {
  .m_box7 {
    flex-wrap: wrap;
  }

  .m_box7 h4 {
    width: 100%;
    margin-bottom: .5em;
  }

  .m_box5 dl .m_box6 {
    flex-wrap: wrap;
  }

  .m_box5 {
    padding: 1em;
  }

}

@media (max-width: 880px) {
  .m_table table tr td {
    padding: 0.5em 1em;
    text-align: left;
    border: 0;
  }

  .m_table table tr td:before {
    display: inline-block;
    vertical-align: middle;
    color: #00498F;
    margin-right: 1em;
    font-weight: 500;
    border-right: 2px solid #D9B965;
    width: 90px;
  }

  .m_table table tr td a,
  .m_table table tr td em,
  .m_table table tr td i {
    display: inline-flex;
  }

  .m_table table tr td h3 {
    margin: 0.5em auto;
  }
}

@media (max-width: 767px) {
  .m_form3 h4 {
    margin-top: 0;
  }

  .m_box5 dl dd h4 {
    width: 100%;
    margin-bottom: .8em;
  }
}

@media (max-width: 576px) {
  .m_box2 button {
    width: 90%;
  }

  .m_form2 ul {
    text-align: center;
  }

  .m_box3 {
    margin: 1em 0 0;
  }

  .m_table {
    padding: 3em 2em 3em;
  }

  .m_box5 {
    padding: 2em 1em;
  }
}

@media (max-width: 480px) {
  .m_box {
    padding: 2em;
  }

  .m_form {
    padding: 1em 1em 2em;
  }

  .m_form .form-control {
    margin-bottom: 0.3em;
  }

  .m_form label {
    margin: 0 auto 0.3em;
  }

  .m_form2 ul {
    text-align: center;
  }

  .m_form2 ol li {
    width: 100%;
  }

  .m_box3 {
    margin: 1em 0 0;
  }

  .m_box5 {
    padding: 1em 1.5em;
  }

  .m_box5 dl dd h4:before {
    top: 7px;
    bottom: auto;
  }

  .m_box5 dl .m_box6 {
    /* display: block; */
    /* text-align: center; */
  }

  .m_box5 dl .m_box6 .form-control {
    margin: 0.5em auto;
    width: 115px;
  }

  .m_box5 dl .m_box6 .m_sumit {
    display: flex;
    margin: 0.5em auto;
    width: 100%;
  }

  .m_box7 .m_sumit {
    width: 100%;
    margin-top: .8em;
  }

  .m_box7 h5 {
    margin-bottom: .5em;
  }
}

@media (max-width: 424px) {
  .m_table .rwd-table td:before {
    display: block;
  }

  .m_table table tr td:before {
    width: 65px;
    border-right: 0;
    border-bottom: 2px solid #D9B965;
  }
}

/* donate */
.s_form .form-control2 {
  display: inline-block;
  vertical-align: middle;
  width: 175px;
  margin-right: .5em;
  font-size: 18px;
  margin-top: .5em;
}

.s_form span {
  display: block;
  font-size: 1rem;
  color: #CC0000;
  /* margin-left: .5em; */
  margin-bottom: 1em;
}

.s_form em {
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  font-size: 1rem;
  color: #CC0000;
  margin-left: .5em;
  /* margin-bottom: 1em; */
}

.s_form .notice {
  display: block;
  margin-top: 1em;
}

.s_form .notice li {
  display: block;
  font-size: 1rem;
  margin-bottom: .6em;
  padding-left: 15px;
  position: relative;
}

.s_form .notice li::before {
  display: block;
  content: '';
  width: 7px;
  height: 7px;
  background-color: #CAAC46;
  position: absolute;
  top: 9px;
  left: 0;
}

.s_form .notice li::marker {
  color: #D9B965;
}


.donate_ol ol {
  margin-top: 3.4em;
}

.donate_ol ol li .custom-radio {
  margin: 0 2em;
  margin-left: 0;
}

.donate_a {
  display: block;
  padding: 1em;
  color: #fff;
  background-color: #AAAAAA;
  text-align: center;
  width: 136px;
  margin: 0 auto;
  margin-top: 1.5em;
  border-radius: 4px;
}

.donate_a:hover,
.donate_a:focus {
  color: #fff;
  background-color: #CAAC46;
}

.donate_link ul {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  list-style: none;
  padding: 0;

}

.donate_link ul li {
  margin: 0 .6em;
}

.donate_link ul li a {
  display: block;
  margin: 0 auto;
  width: 150px;
  background-color: #CAAC46;
  padding: .5em 1em;
  border-radius: 4px;
  color: #fff;
}

.donate_link ul li a:hover,
.donate_link ul li a:focus {
  background-color: #00498F;
}


.donate_link h3 {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  color: #185999;
  font-weight: 500;
  margin-bottom: .8em;
}

.donate_link h4 {
  display: block;
  text-align: center;
  font-size: 1.125rem;
  color: #000;
  letter-spacing: 1px;
  margin: 1em auto .8em;
}

.donate_link h4:before {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  background-color: #D9B965;
  transform: rotate(45deg);
  margin: 0 auto .5em;
}

.donate_link button {
  display: block;
  margin: .5em auto 3em;
  border: 0;
  border-radius: 5px;
  padding: .5em 1em;
  background-color: #D9B965;
  color: #fff;
  text-align: center;
  cursor: pointer;
  width: 180px;

}

.donate_link button:hover,
.donate_link button:focus {
  background-color: #185999;
  outline: none;
}


.donate_link .row .col-lg-4 {
  border-right: 1px solid #ccc;
}

.donate_link .row .col-lg-4:last-child {
  border: 0;
}


@media (max-width: 1360px) {
  .donate_ol ol {
    margin-top: 3em;
  }

  .donate_ol ol li .custom-radio {
    margin: .5em;
  }
}

@media (max-width: 767px) {
  .donate_ol ol {
    margin-top: 0;
  }

  .donate_ol ol li .custom-radio {
    margin: 0 1em .5em;
  }

  .donate_link button {
    width: 100%;
  }

}


@media (max-width: 576px) {
  .donate_link .row .col-lg-4 {
    border-right: 0;
    border-bottom: 1px solid #ccc;
  }

  .donate_link h3 {
    margin-top: 1em;
  }

  .donate_link button {
    width: 180px;
  }
}

@media (max-width: 400px) {

  .donate_link ul li {
    margin: 0 .5em;
  }

  .donate_link ul li a {
    display: block;
    margin: 0 auto;
    width: 135px;
    background-color: #CAAC46;
    padding: .5em 1em;
    border-radius: 4px;
    color: #fff;
  }

}

/* heart */
.heart {
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 99;
}

.heart svg {
  fill: #cc3232;
}

.heart span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  line-height: 20px;
  position: absolute;
  top: -0.7em;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}



@media (max-width: 1199px) {
  .heart {
    position: fixed;
    right: 1em;
    bottom: 8em;
  }
}

@media (max-width: 767px) {
  .heart {
    right: 0.2em;
    bottom: auto;
    top: 3.5em;
  }
}

@media (max-width: 480px) {
  .heart {
    right: 0.5em;
    bottom: auto;
    top: 4.5em;
  }

  .heart svg {
    width: 70px;
  }

  .heart span {
    font-size: 16px;
    line-height: 18px;
  }
}

/* checkbox */

.checkin_title h1 {
  display: block;
  text-align: center;
  font-size: 1.9rem;
  color: #00498F;
}

.checkin_title2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


.check_bg {
  padding: 2em 0;
}

.checkin_box2 {
  margin-bottom: 1em;
}

.checkin_box2 p {
  font-size: 1.125rem;
  text-align: center;
  margin-top: 2em;
}

.checkin_box2 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  letter-spacing: 1px;
}

.checkin_box2 ul li {
  margin: 1em auto;
  font-size: 1.125rem;
  list-style: none;
  width: 33%;
  text-align: center;
  flex: 1 1 auto;
}

.checkin_width ul li:first-child {
  width: 14%;
}

.checkin_box2 ul li b {
  display: block;
  background-color: #CAAC46;
  border: 1px solid #CAAC46;
  color: #fff;
  padding: .5em;
  font-weight: normal;
}

.checkin_box2 ul li span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00498F;
  background-color: #fff;
  padding: .5em 1em;
  border: 1px solid #CAAC46;
  font-size: 1.125rem;
  min-height: 100px;
}

.check_bg .s_table table tr td:nth-child(1) {
  color: #000;
}

.checkin_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.checkin_form .checkin_input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 500px;
}

.checkin_form .b_radio {
  padding: 0;
  flex: 0 0 auto;
  margin: .5em 0 1.5em;
  width: 100%;
}

.checkin_form .b_radio button.disabled,
.checkin_form .b_radio button:disabled {
  background-color: #ddd;
}

.checkin_form .b_radio dl {
  margin: 0;
}

.checkin_form .form-control {
  height: 59px;
  flex: 0 0 auto;
  margin: .5em 0;
  width: calc(100% - 150px);
}

.checkin_form .btn-info {
  height: 59px;
  width: 150px;
  font-size: 1.1rem;
  flex: 0 0 auto;
  margin: .5em 0;
}

.checkin_form .b_radio dl dd {
  margin: 0;
  margin: 0 .8em;
}

.checkin_form .b_radio dl button {
  width: 150px;

}

.checkin_form .b_radio dl button:hover,
.checkin_form .b_radio dl button:focus {
  color: #fff;
}

.check_search {
  /* margin-top: 1em; */
  /* margin-bottom: 1em; */
}

.check_search h3 {
  color: #CAAC46;
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1.5em;
}

.check_search .form-control {
  width: 50%;
}

.check_search button {
  width: 100px;
  margin: 0 .5em;
}


@media (max-width: 1199px) {

  .checkin_form .form-control {
    width: calc(100% - 100px);
  }

  .checkin_form .btn-info {
    width: 100px;
  }

  .check_search .form-control {
    width: auto;
  }
}

@media (max-width: 1099px) {
.checkin_width ul li:first-child {
  width: 8%;}
}

@media (max-width: 991px) {
  .check_bg {
    padding: 2em 1.5em;
  }

}




@media (max-width: 899px) {
  .checkin_form .checkin_input {
    flex-wrap: wrap;
    width: 100%;
  }

  .checkin_form .form-control {
    width: 100%;
  }

  .check_search .form-control {
    width: 90%;
    margin-bottom: .8em;
  }

  .checkin_width ul li span{
    min-height: 150px;
  }

  .checkin_form .btn-info {
    height: 43px;
    width: 100%;
    margin-top: 0;
  }

  .checkin_form .b_radio {
    width: 100%;
  }

  .checkin_form .b_radio dl dd {
    width: 100%;
  }

  .checkin_form .b_radio dl button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .checkin_box {
    margin: 1.5em auto 0;
  }

  .checkin_box2 ul li {
    width: 100%;
    margin: 1em auto 0;
  }

  .check_bg {
    padding: 2em 1em;
  }

  .check_search .form-control {
    width: 90%;
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .checkin_title2 .form-group{
    margin-top: 2em;
  }

  .checkin_width ul li span {
    min-height: auto;
    padding: 1.5em .8em;
  }

  .checkin_form .b_radio dl{
    flex-wrap: wrap;
  }

  .checkin_form .b_radio dl dd {
    margin: 0.5em 0.2em;
  }

  
}