@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700&display=swap&subset=chinese-traditional");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+TC:300,400,500,600,700,900&display=swap&subset=chinese-traditional");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500&display=swap");
body {
  font-family: "Noto Sans TC", "Helvetica Neue", "Helvetica", "Arial", "STHeitiTC-Light", "Microsoft JhengHei", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
  color: #000;
  position: relative;
  background-color: #F1E6D3;
  background-image: url(../images/bg.png);
  background-attachment: fixed;
}
body.open {
  overflow: hidden;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif TC", serif;
  -webkit-font-smoothing: antialiased;
}

ul, ol {
  list-style: none;
}

input[type=button]::-moz-focus-inner, button::-moz-focus-inner {
  border: none;
}

a {
  text-decoration: none;
  color: #000;
}

footer {
  text-align: right;
  font-size: 0.9em;
}

.flex_con {
  display: flex;
  flex-direction: row;
}

.btn {
  display: flex;
  flex-direction: row;
  width: fit-content;
  justify-content: flex-start;
}
.btn a {
  border-radius: 30px;
  padding: 0.6em 2.6em 0.6em 1em;
  margin: 1em;
  cursor: pointer;
  font-size: 1.1em;
  letter-spacing: 0.05em;
  position: relative;
  display: block;
  color: #fff;
}
.btn a.rbtn {
  background-image: linear-gradient(to left, #ca2e34 0%, #e83830 40%, #f97c10 90%);
}
.btn a.rbtn:after {
  content: "";
  border: 2px solid #ca660e;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  position: absolute;
  z-index: -1;
  top: 5px;
  left: 2px;
}
.btn a.pbtn {
  background-image: linear-gradient(to right, #541280 0%, #8F0E82 40%, #DB0B81 100%);
}
.btn a.pbtn:after {
  content: "";
  border: 2px solid #DB0B81;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  position: absolute;
  z-index: -1;
  top: 5px;
  left: 2px;
}
.btn a::before {
  content: "";
  font-weight: 800;
  width: 40px;
  height: 40px;
  text-align: center;
  background-image: url(../images/arrow_right.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  transition: 0.2s;
}
.btn a:hover::before {
  right: 4px;
}

.btnTop {
  position: absolute;
  bottom: 70px;
  right: 30px;
  z-index: 99;
  cursor: pointer;
  transition: 0.7s;
}
@media screen and (max-width: 600px) {
  .btnTop {
    bottom: 100px;
  }
  .btnTop img {
    width: 100px;
    display: block;
    margin: auto;
  }
}
.btnTop.show {
  bottom: 1080px;
  opacity: 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
nav.open {
  width: 100%;
}
nav.open .menu {
  display: block;
}
nav.open .follow {
  display: flex;
}
nav .menu {
  padding-top: 90px;
  background-color: #ffe9c6;
  max-width: 280px;
  margin-top: 100px;
  margin-left: 50px;
  border-radius: 150px;
  padding: 1em 2em;
  text-align: center;
  display: none;
}
nav .follow {
  padding: 1em 1em 0 1em;
  display: none;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  border-top: 1px solid #000;
}
nav .follow span {
  font-weight: 800;
  font-size: 0.8em;
  margin-right: 1em;
}
nav .follow div {
  margin-right: 0.5em;
}
nav ul li {
  padding: 0.7em;
}
nav ul li a {
  font-size: 1.1em;
  color: #000;
  display: block;
  font-family: "Noto Serif TC", serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 800;
}

.nav_btn {
  padding: 1em 0.5em;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .nav_btn {
    padding: 0.5em 0.3em;
  }
}
.nav_btn div {
  background-repeat: no-repeat;
  background-position: center;
  background-color: #c50808;
  margin-left: 0.75em;
  border-radius: 25px;
}
.nav_btn div.map_btn {
  background-image: url(../images/icon_map.png);
  background-position: 15px center;
}
@media screen and (max-width: 600px) {
  .nav_btn div.map_btn {
    background-size: 20px;
  }
}
.nav_btn div.map_btn a {
  display: block;
  height: 100%;
  color: #fff;
  padding: 0.5em 1em 0.5em 2.5em;
}
.nav_btn div.info_btn {
  background-image: url(../images/icon_info.png);
  background-position: 15px center;
}
.nav_btn div.info_btn a {
  display: block;
  height: 100%;
  color: #fff;
  padding: 0.5em 1em 0.5em 2.5em;
}
.nav_btn div.menu_btn {
  width: 75px;
  height: 75px;
  cursor: pointer;
  border-radius: 50%;
}
@media screen and (max-width: 820px) {
  .nav_btn div.menu_btn {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 600px) {
  .nav_btn div.menu_btn {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 320px) {
  .nav_btn div.menu_btn {
    width: 40px;
    height: 40px;
  }
}

.menu_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to left, #ca2e34 0%, #e83830 40%, #f97c10 90%);
  position: relative;
}
.menu_btn:after {
  content: "";
  border: 2px solid #ca660e;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 2px;
  left: 2px;
  transition: 0.5s;
}
.menu_btn:hover:after {
  left: -2px;
}
.menu_btn span {
  display: block;
  width: 40px;
  height: 5px;
  border-radius: 60px;
  background: #fff;
  margin: 4px auto;
  backface-visibility: hidden;
  transition-duration: 0.3s;
}
@media screen and (max-width: 820px) {
  .menu_btn span {
    width: 30px;
    height: 4px;
  }
}
@media screen and (max-width: 320px) {
  .menu_btn span {
    width: 25px;
    height: 2px;
    margin: 2 auto;
  }
}
.menu_btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu_btn.open span:nth-child(2) {
  display: none;
}
.menu_btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

.nav_btn.back_title {
  margin-top: -1em;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 620px) {
  .nav_btn.back_title {
    margin-top: 0;
  }
}
.nav_btn.back_title figure {
  padding-left: 1em;
  padding-top: 1.5em;
}
@media screen and (max-width: 620px) {
  .nav_btn.back_title figure img {
    width: 95%;
  }
}
.nav_btn.back_title .menu_btn {
  width: 65px;
  height: 65px;
}
.nav_btn.back_title .menu_btn:after {
  width: 65px;
  height: 65px;
}
@media screen and (max-width: 330px) {
  .nav_btn.back_title .menu_btn {
    width: 50px;
    height: 50px;
  }
  .nav_btn.back_title .menu_btn:after {
    width: 50px;
    height: 50px;
  }
}

.words .nav_btn {
  position: relative;
}

@media screen and (max-width: 1152px) {
  .page_first {
    flex-direction: column;
  }
}
.page_first main {
  position: relative;
  padding-bottom: 6%;
  min-height: 880px;
  width: 50%;
  box-sizing: border-box;
  background-image: url(../images/words/wordsbg.png), url(../images/words/main_bg.jpg);
  background-repeat: no-repeat;
  background-position: left bottom, left center;
}
@media screen and (max-width: 1530px) {
  .page_first main {
    width: 40%;
    min-height: auto;
    background-size: 50%, auto;
  }
}
@media screen and (max-width: 1360px) {
  .page_first main {
    width: 50%;
  }
}
@media screen and (max-width: 1152px) {
  .page_first main {
    position: static;
    width: 100%;
    padding-bottom: 3%;
    padding: 0;
    background-image: url(../images/words/main_bg.jpg);
    background-position: center;
    background-size: cover;
  }
}
.page_first main img {
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 1530px) {
  .page_first main img {
    width: 90%;
  }
}
@media screen and (max-width: 1152px) {
  .page_first main img {
    width: fit-content;
    position: static;
  }
}
@media screen and (max-width: 820px) {
  .page_first main img {
    width: 90%;
    margin: auto;
  }
}

.lan_con {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: space-between;
  width: 50%;
}
@media screen and (max-width: 1530px) {
  .lan_con {
    width: 60%;
  }
}
@media screen and (max-width: 1360px) {
  .lan_con {
    width: 50%;
  }
}
@media screen and (max-width: 1152px) {
  .lan_con {
    width: 100%;
  }
}

.lan_con div, .lan_full div {
  width: 31.3333333333%;
  margin: 0 1%;
  padding: 1% 0;
  box-sizing: border-box;
  position: relative;
  margin-top: 1.5em;
  height: 250px;
}
@media screen and (max-width: 1360px) {
  .lan_con div, .lan_full div {
    width: 47%;
    height: 185px;
  }
}
@media screen and (max-width: 1152px) {
  .lan_con div, .lan_full div {
    width: 25%;
    margin: 0;
    margin-top: 1.5em;
    margin-bottom: 2em;
    height: 250px;
  }
}
@media screen and (max-width: 820px) {
  .lan_con div, .lan_full div {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 620px) {
  .lan_con div, .lan_full div {
    width: 50%;
    height: 200px;
  }
}
@media screen and (max-width: 330px) {
  .lan_con div, .lan_full div {
    height: auto;
    padding-bottom: 50px;
  }
}
.lan_con div a, .lan_full div a {
  display: block;
  height: 100%;
}
.lan_con div a:after, .lan_full div a:after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 100px;
  width: 80px;
  height: 20px;
  transition: 0.5s;
  opacity: 0;
  background-image: url(../images/words/arrow_into.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .lan_con div a:after, .lan_full div a:after {
    opacity: 1;
    left: 60%;
    bottom: 30px;
  }
}
@media screen and (max-width: 620px) {
  .lan_con div a:after, .lan_full div a:after {
    bottom: 10px;
  }
}
@media screen and (max-width: 330px) {
  .lan_con div a:after, .lan_full div a:after {
    width: 55px;
  }
}
.lan_con div a:hover:after, .lan_full div a:hover:after {
  left: 70%;
  opacity: 1;
}
@media screen and (max-width: 820px) {
  .lan_con div a:hover:after, .lan_full div a:hover:after {
    left: 60%;
  }
}
.lan_con div h4, .lan_full div h4 {
  padding-left: 1em;
  padding-right: 1em;
}
@media screen and (max-width: 620px) {
  .lan_con div h4, .lan_full div h4 {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
.lan_con div h3, .lan_full div h3 {
  font-size: 1.8em;
  margin-top: -1.15em;
  padding-left: 0.5em;
  margin-bottom: 0.25em;
}
.lan_con div h3.fzl, .lan_full div h3.fzl {
  font-size: 1.5em;
}
@media screen and (max-width: 620px) {
  .lan_con div h3, .lan_full div h3 {
    padding-left: 0;
    margin-top: -1em;
  }
  .lan_con div h3.fzl, .lan_full div h3.fzl {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 380px) {
  .lan_con div h3, .lan_full div h3 {
    font-size: 1.5em;
  }
  .lan_con div h3.fzl, .lan_full div h3.fzl {
    font-size: 1.3em;
  }
}
.lan_con div h4, .lan_full div h4 {
  font-size: 1.1em;
  line-height: 1.25;
}
@media screen and (max-width: 620px) {
  .lan_con div h4, .lan_full div h4 {
    font-size: 1em;
  }
}
.lan_con div p, .lan_full div p {
  display: none;
  font-size: 0.9em;
  padding-top: 0.5em;
}
.lan_con div.imgs, .lan_full div.imgs {
  background: inherit !important;
  position: relative;
}
.lan_con div.imgs img, .lan_full div.imgs img {
  position: absolute;
  z-index: 2;
  max-width: 110%;
}
@media screen and (max-width: 1360px) {
  .lan_con div.imgs img, .lan_full div.imgs img {
    max-width: 100%;
  }
}
.lan_con div.imgs.d01 img, .lan_full div.imgs.d01 img {
  top: 30px;
  left: -20px;
}
@media screen and (max-width: 1360px) {
  .lan_con div.imgs.d01, .lan_full div.imgs.d01 {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .lan_con div.imgs.d01, .lan_full div.imgs.d01 {
    display: block;
    top: 40px;
    left: 20px;
  }
}
@media screen and (max-width: 620px) {
  .lan_con div.imgs.d01, .lan_full div.imgs.d01 {
    display: none;
  }
}
.lan_con div.imgs.d02 img, .lan_full div.imgs.d02 img {
  top: 50px;
  right: 0;
}
@media screen and (max-width: 1360px) {
  .lan_con div.imgs.d02 img, .lan_full div.imgs.d02 img {
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 820px) {
  .lan_con div.imgs.d02 img, .lan_full div.imgs.d02 img {
    right: auto;
    left: 0;
    top: auto;
    bottom: 10px;
    transform: rotateY(-180deg);
  }
}
@media screen and (max-width: 620px) {
  .lan_con div.imgs.d02, .lan_full div.imgs.d02 {
    display: none;
  }
}
.lan_con div.imgs.d03 img, .lan_full div.imgs.d03 img {
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1360px) {
  .lan_con div.imgs.d03, .lan_full div.imgs.d03 {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  .lan_con div.imgs.d03, .lan_full div.imgs.d03 {
    display: block;
  }
}
@media screen and (max-width: 620px) {
  .lan_con div.imgs.d03, .lan_full div.imgs.d03 {
    display: none;
  }
}
.lan_con div.imgs.d04 img, .lan_full div.imgs.d04 img {
  bottom: 0;
}
.lan_con div.imgs.d05 img, .lan_full div.imgs.d05 img {
  bottom: 0;
  left: -40px;
}
@media screen and (max-width: 620px) {
  .lan_con div.imgs.d05 img, .lan_full div.imgs.d05 img {
    left: 10px;
  }
}

.lan_full {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: space-between;
  width: 100%;
  margin-bottom: 2em;
}
@media screen and (max-width: 1530px) {
  .lan_full {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1360px) {
  .lan_full {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 620px) {
  .lan_full {
    margin-bottom: 0;
  }
}
.lan_full div {
  width: 15.6666666667%;
  margin: 0 0.5%;
  margin-top: 3em;
}
.lan_full div h3 {
  margin-top: -1.5em;
}
@media screen and (max-width: 1530px) {
  .lan_full div {
    width: 18.8%;
  }
}
@media screen and (max-width: 1360px) {
  .lan_full div {
    width: 23.75%;
  }
}
@media screen and (max-width: 1152px) {
  .lan_full div {
    width: 25%;
    margin: 0;
    margin-top: 1.5em;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 820px) {
  .lan_full div {
    width: 33.3333333333%;
  }
  .lan_full div h3 {
    margin-top: -1.25em;
  }
}
@media screen and (max-width: 620px) {
  .lan_full div {
    width: 50%;
  }
  .lan_full div h3 {
    margin-top: -1em;
  }
}

.lan_con div:nth-child(8n+1), .lan_full div:nth-child(8n+1) {
  background-color: #eb8362;
}

.lan_con div:nth-child(8n+2), .lan_full div:nth-child(8n+2) {
  background-color: #f39b48;
}

.lan_con div:nth-child(8n+3), .lan_full div:nth-child(8n+3) {
  background-color: #d17a51;
}

.lan_con div:nth-child(8n+4), .lan_full div:nth-child(8n+4) {
  background-color: #de998b;
}

.lan_con div:nth-child(8n+5), .lan_full div:nth-child(8n+5) {
  background-color: #f2ca8a;
}

.lan_con div:nth-child(8n+6), .lan_full div:nth-child(8n+6) {
  background-color: #cb6761;
}

.lan_con div:nth-child(8n+7), .lan_full div:nth-child(8n+7) {
  background-color: #f7d1ae;
}

.lan_con div:nth-child(8n+8), .lan_full div:nth-child(8n+8) {
  background-color: #f4ac6c;
}

.words_footer {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 600px;
  height: 220px;
  background-image: url(../images/words/dfooter.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
@media screen and (max-width: 1530px) {
  .words_footer {
    position: relative;
    width: 100%;
    margin-top: 2em;
  }
}
@media screen and (max-width: 1360px) {
  .words_footer {
    position: absolute;
    bottom: -120px;
  }
}
@media screen and (max-width: 620px) {
  .words_footer {
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 0;
  }
}
.words_footer p {
  padding-top: 190px;
  padding-right: 10px;
  font-size: 0.9em;
}
@media screen and (max-width: 620px) {
  .words_footer p {
    padding-top: 170px;
  }
}

.page {
  position: relative;
}
.page header {
  min-height: 600px;
  background-image: url(../images/page_topbanner.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  box-sizing: border-box;
}
.page header h2 {
  text-align: center;
  padding-top: 250px;
}
.page .con {
  width: 80%;
  margin-left: 5%;
  max-width: 1170px;
}
.page .con figure {
  margin: 1%;
}
.page .con figure.left {
  float: left;
  margin: 2% 3%;
}
.page .con figure.right {
  float: right;
  margin: 2% 3%;
}
.page .con.pray_con {
  flex-direction: column;
  align-items: center;
  padding-bottom: 12em;
  border-radius: 270px 270px 0 0;
  color: #fff;
  max-width: 960px;
  margin: 6em 7% 0 7%;
  background-image: url(../images/nycon_bg2.jpg);
  background-repeat: repeat;
  background-position: left top;
}
.page .con.pray_con figure {
  margin-top: -8em;
}
.page .con.pray_con .text h4, .page .con.pray_con .text h5 {
  text-align: center;
}
.page .con.pray_con .text h4 {
  font-size: 1.5em;
}
.page .con.pray_con .text h4 em {
  font-style: normal;
  display: block;
}
.page .con.pray_con .text h5 {
  font-size: 1.2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #fff;
  margin-bottom: 1em;
}
.page .txt {
  padding: 0 2em;
}
.page .txt p {
  margin-top: 1em;
  width: 90%;
  text-align: justify;
  text-indent: 2em;
}
.page .txt h3 {
  font-size: 1.5em;
}
.page .txt .light_list {
  background: #fff;
  width: 80%;
  border-radius: 30px;
  margin: 2em 1em;
  padding: 1em 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
.page .txt .light_list::after {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 30px;
  position: absolute;
  background-color: #c82d33;
  display: block;
  position: absolute;
  z-index: -1;
  top: -10px;
  left: -10px;
}
.page .txt .light_list li {
  width: 50%;
  line-height: 2;
}
.page .txt .light_list li i {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-style: normal;
  border: 1px solid #000;
  display: inline-block;
  margin-right: 10px;
  font-size: 0.9em;
}
.page .txt .light_list.en li {
  width: 45%;
  margin-left: 3%;
  line-height: 1.5;
  display: flex;
  flex-direction: row;
  padding-bottom: 0.5em;
}
.page .txt .light_list.en li span {
  width: calc(100% - 30px);
}
.page aside {
  margin-left: 7%;
}
.page footer {
  min-height: 440px;
  margin-top: 0;
  background-image: url(../images/page_footer.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.page footer p {
  padding-top: 350px;
  text-align: center;
  color: #fff;
}
.page footer.pray_con {
  position: relative;
  z-index: 9;
  margin-top: -20em;
}
.page footer.themes {
  background-image: url(../images/page_footer.png), url(../images/nycon_bg.jpg);
  background-repeat: no-repeat, repeat;
  background-position: center top, left top;
  background-size: cover, 100%;
}

.submenu {
  background: #ca2e34;
  border-radius: 30px;
  padding: 2em 1em;
  height: fit-content;
}
.submenu ul li.sel {
  background: #932226;
  border-radius: 30px;
}
.submenu ul li a {
  display: block;
  padding: 0.5em 1em;
  color: #fff;
}

.themes_con {
  margin-top: 2em;
  padding-top: 2em;
  background-image: url(../images/nycon_bg.jpg);
  background-position: left top;
  background-size: 100%;
  counter-reset: num;
}
.themes_con .themes {
  width: 95%;
  max-width: 1080px;
  margin: auto;
  color: #fff;
  padding: 4em 2em;
  position: relative;
}
.themes_con .themes::before {
  counter-increment: num;
  content: "0" counter(num);
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  font-size: 1.5em;
  font-family: "Noto Serif TC", serif;
  background-image: url(../images/arrow_01.png), url(../images/arrow_02.png);
  background-repeat: no-repeat;
  background-position: 47% 10px, 53% 10px;
}
.themes_con .themes.noti {
  padding: 1em;
}
.themes_con .themes.noti::before {
  content: "";
  background: none;
}
.themes_con .themes h3 {
  font-size: 1.5em;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.themes_con .themes h3 span {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #ca2e34;
  margin-left: -5px;
  border-radius: 50%;
}
.themes_con .themes.qa {
  background: #fff;
  height: fit-content;
  border-radius: 0px 120px 0px 120px;
  padding: 3em;
  color: #000;
  width: 50%;
}
.themes_con .themes.qa + .qa {
  margin-top: 2em;
}
.themes_con .themes.qa::after {
  content: "Q";
  width: 65px;
  height: 65px;
  border-radius: 50%;
  text-align: center;
  background: #ca2e34;
  color: #fff;
  position: absolute;
  top: -30px;
  left: -30px;
  font-size: 2em;
}

.lan_btn {
  display: flex;
  flex-direction: row;
  margin-left: 3%;
}
.lan_btn a {
  color: #f97c10;
  background-color: #fff;
  border: 1px solid #f97c10;
  padding: 0.5em 2em;
  cursor: pointer;
}
.lan_btn a.sel {
  background-color: #f97c10;
  color: #fff;
}
.lan_btn a:first-child {
  border-radius: 30px 0 0 30px;
}
.lan_btn a:last-child {
  border-radius: 0 30px 30px 0;
}/*# sourceMappingURL=style_words.css.map */