
/*
====== Zoom effect ======
*/

.mfp-zoom-in {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.95;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/*

====== Newspaper effect ======

*/

.mfp-newspaper {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-newspaper .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: scale(0) rotate(500deg);
    -ms-transform: scale(0) rotate(500deg);
    transform: scale(0) rotate(500deg);
}

.mfp-newspaper.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mfp-newspaper.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}

.mfp-newspaper.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-newspaper.mfp-removing .mfp-with-anim {
    -webkit-transform: scale(0) rotate(500deg);
    -ms-transform: scale(0) rotate(500deg);
    transform: scale(0) rotate(500deg);
    opacity: 0;
}

.mfp-newspaper.mfp-removing.mfp-bg {
    opacity: 0;
}

/*

====== Move-horizontal effect ======

*/

.mfp-move-horizontal {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-move-horizontal .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
}

.mfp-move-horizontal.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mfp-move-horizontal.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
}

.mfp-move-horizontal.mfp-removing.mfp-bg {
    opacity: 0;
}

/*

====== Move-from-top effect ======

*/

.mfp-move-from-top {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-move-from-top .mfp-content {
    vertical-align: top;
}

.mfp-move-from-top .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
}

.mfp-move-from-top.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.mfp-move-from-top.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.mfp-move-from-top.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-move-from-top.mfp-removing .mfp-with-anim {
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
}

.mfp-move-from-top.mfp-removing.mfp-bg {
    opacity: 0;
}

/*

====== 3d unfold ======

*/

.mfp-3d-unfold {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-3d-unfold .mfp-content {
    -webkit-perspective: 2000px;
    perspective: 2000px;
}

.mfp-3d-unfold .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(-60deg);
    transform: rotateY(-60deg);
}

.mfp-3d-unfold.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mfp-3d-unfold.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.mfp-3d-unfold.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-3d-unfold.mfp-removing .mfp-with-anim {
    -webkit-transform: rotateY(60deg);
    transform: rotateY(60deg);
    opacity: 0;
}

.mfp-3d-unfold.mfp-removing.mfp-bg {
    opacity: 0;
}

/*

====== Zoom-out effect ======

*/

.mfp-zoom-out {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-out .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
}

.mfp-zoom-out.mfp-removing.mfp-bg {
    opacity: 0;
}

/*

====== "Hinge" close effect ======

*/

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

.mfp-with-fade.mfp-bg, .mfp-with-fade .mfp-content {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
}

.mfp-with-fade.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-with-fade.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-fade.mfp-removing.mfp-bg {
    opacity: 0;
}

.t1 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.t2 {
  font-size: 16px;
  font-weight: 700;
}

.page_title {
  position: relative;
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page_title .t1 {
  margin-right: 30px;
}

.page_title .t1:after {
  content: '';
  right: 0;
  margin-left: 20px;
  background-color: #000;
  width: 1px;
  height: 22px;
}
.page_title .classification {
  position: absolute;
  font-size: 16px;
  color: #8d8d8d;
  top: 0;
  right: 0;
  width: 255px;
  border-bottom: 2px solid #000;
  cursor: pointer;
}

.page_title .ui-selectmenu-button {
  padding-bottom: 10px;
}

.page_title select {
  position: relative;
  width: 100%;
  outline: 0;
  border: 0;
  color: #8d8d8d;
  font-size: 15px;
  background-image: url("../images/s_down.png");
  background-size: 17px;
  background-position: right center;
  background-repeat: no-repeat;
}

p.note {
  font-size: 15px;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  margin-bottom: 65px;
  color: #515151;
}

.ex_page {
  position: relative;
  padding-top: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid #aaa;
  background-color: #fff;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.ex_page .swiper-slide {
  position: relative;
  width: 50%;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.19);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ex_page .swiper-slide:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.19);
}

.ex_page .swiper-slide:after {
  content: '';
  position: absolute;
  left: 0;
  top: -60px;
  width: 100%;
  height: 5px;
  background-color: #9b9b9b;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.ex_page .swiper-slide.active:after {
  background: -moz-linear-gradient(left, #8e488f 19%, #2b599f 36%, #ecb831 48%, #15957c 50%);
  background: -webkit-linear-gradient(left, #8e488f 19%, #2b599f 36%, #ecb831 48%, #15957c 50%);
  background: -webkit-gradient(linear, left top, right top, color-stop(19%, #8e488f), color-stop(36%, #2b599f), color-stop(48%, #ecb831), color-stop(50%, #15957c));
  background: -o-linear-gradient(left, #8e488f 19%, #2b599f 36%, #ecb831 48%, #15957c 50%);
  background: linear-gradient(to right, #8e488f 19%, #2b599f 36%, #ecb831 48%, #15957c 50%);
}

@media only screen and (max-width: 1150px) {
  p.note {
    width: 100%;
    margin-bottom: 65px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .ex_page {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  .ex_page .swiper-slide:after {
    top: -30px;
  }
}

@media only screen and (max-width: 650px) {
  .page_title .t1 {
    width: 100%;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .page_title .t1:after {
    width: 11px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 0;
    background-color: rgba(0, 0, 0, 0.18);
  }
  .page_title .classification {
    position: relative;
    margin-top: 45px;
    padding-bottom: 20px;
    width: 100%;
  }
  p.note {
    padding-right: 33px;
    padding-left: 33px;
    margin-bottom: 35px;
  }
  .ex_page {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ex_page .swiper-slide {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 15px;
  }
  .ex_page .swiper-slide:after {
    top: -20px;
    height: 3px;
  }
}

.gotopage {
  display: none;
}

@media only screen and (max-width: 650px) {
  .gotopage {
    position: relative;
    width: calc(100% - 66px);
    display: block;
    margin: 0 auto 55px;
    padding-top: 50px;
    border-top: 1px solid #dedede;
  }
  .gotopage select {
    width: 100%;
    border: 0;
    font-size: 16px;
    color: #8d8d8d;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
    outline: 0;
    background-image: url("../images/selectsign.png");
    background-size: 13px;
    background-position: right center;
    background-repeat: no-repeat;
  }
  .gotopage option {
    outline: 0;
  }
}

.page_content > * {
  /* opacity: 0; */
}

p.note {
  margin-bottom: 35px;
  width: 690px;
  letter-spacing: 0.05em;
  font-size: 15px;
  line-height: 1.4em;
}

.slide_prev {
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  z-index: 5;
  background-color: #fff;
  background-image: url("../images/arrow.png");
  background-position: center;
  background-size: 15px;
  background-repeat: no-repeat;
  cursor: pointer;
  outline: 0;
  -webkit-transform: rotateY(180deg) translateY(-50%);
  transform: rotateY(180deg) translateY(-50%);
  width: 40px;
  height: 40px;
}

.swiper-button-disabled {
  opacity: 0.3;
}

.slide_next {
  position: absolute;
  top: calc(50% + 5px);
  right: 0;
  z-index: 5;
  background-color: #fff;
  background-image: url("../images/arrow.png");
  background-position: center;
  background-size: 15px;
  background-repeat: no-repeat;
  cursor: pointer;
  outline: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
}

.ex_page .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20%;
  height: 30px;
}

.ex_page .swiper-slide > span {
  position: relative;
  display: inline-block;
  width: 70%;
}

.ex_page .swiper-slide:first-child {
  border-left: 0;
}

.ex_page .swiper-slide:last-child {
  border-right: 0;
}

.map {
  margin: 35px auto;
  width: 100%;
}

.countryblk {
  position: relative;
  margin-top: 60px;
  margin-bottom: 120px;
}

.countryblk .listtitle {
  margin-bottom: 80px;
  font-weight: 700;
  font-size: 20px;
}

.countryblk .country {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 70px;
  padding-bottom: 50px;
  border-bottom: 1px solid #c8c8c8;
  opacity: 0;
}

.countryblk .country:last-child {
  margin-bottom: 50px;
}

.countryblk .cityinfo {
  position: relative;
  padding-right: 40px;
  width: 56%;
  font-size: 15px;
}

.countryblk .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 12px;
  padding-bottom: 10px;
  width: 100%;
  border-bottom: 1px solid #c8c8c8;
}

.countryblk .line:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.countryblk .cname {
  width: 22%;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25em;
}

.countryblk .info_name {
  min-width: 115px;
  font-weight: 700;
}

.countryblk .info_ct {
  color: #515151;
  line-height: 1.5em;
}

.item_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 22%;
  border-left: 1px solid #c4c4c4;
}

.morebtn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  color: #000;
  font-size: 15px;
  width: 115px;
  height: 115px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.morebtn:hover {
  color: #fff;
}

.morebtn span {
  position: relative;
}

.morebtn:before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/circle_btn.png");
  background-position: center;
  background-size: cover;
  content: '';
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.morebtn:after {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid #727272;
  border-radius: 50%;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.morebtn:hover:before {
  opacity: 1;
}

.morebtn:hover:after {
  opacity: 0;
}

@media only screen and (max-height: 800px) and (min-width: 1300px){
    .morebtn{
        width: 90px;
        height: 90px;
    }
    .item_btn{
        width: 19%;
    }
    .countryblk .cityinfo{
        padding-right: 20px;
        padding-left: 20px;
    }
    .countryblk .cityinfo{
        width: 59%;
        flex: 2 1 auto;
    }
}

@media only screen and (max-width: 1150px) {
  p.note {
    width: 100%;
  }
  .page_title {
    padding-right: 40px;
    padding-left: 40px;
  }
  .countryblk {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media only screen and (max-width: 650px) {
  .page_title {
    padding-right: 33px;
    padding-left: 33px;
  }
  .item_btn {
    margin-top: 30px;
    width: 100%;
    border-left: 0;
  }
  .countryblk {
    margin-top: 45px;
    margin-bottom: 0;
    padding-right: 0;
    padding-left: 0;
  }
  .countryblk .listtitle {
    margin-bottom: 25px;
    padding-right: 33px;
    padding-left: 33px;
  }
  .countryblk .info_name {
    margin-bottom: 5px;
    width: 100%;
  }
  .countryblk .country {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 33px;
    padding-left: 33px;
  }
  .countryblk .country:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .countryblk .cname {
    margin-bottom: 30px;
    padding-bottom: 25px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.19);
  }
  .countryblk .cityinfo {
    width: 100%;
  }
  .countryblk .line {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 0;
  }
  .ex_page .swiper-slide {
    width: 50%;
  }
  .ex_page .swiper-slide > span {
    width: 65%;
  }
  .slide_next, .slide_prev {
    width: 30px;
    height: 30px;
    background-size: 10px;
  }
}


#contact_area, #contact_ok {
    top: 0;
    left: 0;
    z-index: 999;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    DISPLAY: FLEX;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#contact_area .button, #contact_ok .button {
    position: relative;
    overflow: hidden;
    width: 190PX;
    height: 46PX;
    cursor: pointer;
    FONT-SIZE: 14PX;
    MARGIN: 50px AUTO;
}

#contact_area .button .send, #contact_ok .button .send {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 100%;
    color: #808080;
    text-align: center;
    font-family: Myriad Pro, Microsoft JhengHei, Myriad, Aria, sans-serif;
    line-height: 46PX;
    WIDTH: 100%;
    BACKGROUND-COLOR: TRANSPARENT;
    FONT-WEIGHT: BOLD;
    LETTER-SPACING: 2PX;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#contact_area .button .send:BEFORE, #contact_ok .button .send:BEFORE {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    content: '';
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#contact_form_ok {
    position: relative;
    display: block;
    padding: 80px 80px 80px;
    color: white;
    font-family: Microsoft JhengHei, Myriad Pro, Myriad, Aria, sans-serif;
}

#contact_form_ok .send {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 100%;
    text-align: center;
    font-family: Myriad Pro, Microsoft JhengHei, Myriad, Aria, sans-serif;
    line-height: 46PX;
    WIDTH: 100%;
    BACKGROUND-COLOR: TRANSPARENT;
    FONT-WEIGHT: BOLD;
    LETTER-SPACING: 2PX;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#contact_form_ok .send:BEFORE {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    content: '';
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#contact_form_ok .name {
    text-align: center;
    font-size: 30px;
    line-height: 1.4em;
}

#contact_form {
    position: relative;
    display: block;
    padding-top: 125px;
    padding-right: 80px;
    padding-left: 80px;
    width: 1003px;
    height: 660px;
    color: white;
    font-family: Microsoft JhengHei, Myriad Pro, Myriad, Aria, sans-serif;
}

#contact_form .boder_line {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

#contact_form .name {
    position: relative;
    margin-bottom: 85px;
    font-weight: bold;
    font-size: 30px;
    font-family: Myriad Pro, Microsoft JhengHei, Myriad, Aria, sans-serif;
}

#contact_form .tip {
    position: absolute;
    top: 138px;
    right: 80px;
    color: #a8a8a8;
    font-size: 12px;
}

#contact_form .tip:before {
    margin-right: 9px;
    color: #cabc8f;
    content: '*';
}

#contact_form .form_block {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#contact_form .form_block .box {
    position: relative;
    width: 380px;
}

#contact_form .form_block .box .field {
    position: relative;
    display: inline-block;
    margin-bottom: 18px;
    width: 100%;
    height: auto;
    border-bottom: 1px solid gray;
    color: #c5c5c5;
    font-size: 14px;
    line-height: 40px;
    -webkit-transition: border-color 0.6s;
    -o-transition: border-color 0.6s;
    transition: border-color 0.6s;
}

#contact_form .form_block .box .field.error {
    border-color: red;
}

#contact_form .form_block .box .field .title {
    position: absolute;
}

#contact_form .form_block .box .field .title:after {
    margin-left: 10px;
    color: #cabc8f;
    content: '*';
}

#contact_form .form_block .box .field .must {
    position: absolute;
}

#contact_form .form_block .box .field .inputbox {
    position: relative;
    float: right;
    width: 62%;
    height: 40px;
    outline: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    color: white;
}

#contact_form .form_block .box .field .textarea {
    position: relative;
    float: right;
    padding-top: 9px;
    width: 75%;
    height: 101px;
    outline: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    color: white;
    line-height: 18px;
}

#contact_form .form_block .box .field .select {
    position: relative;
}

#contact_form .form_block .box .field .select select {
    position: relative;
    float: right;
    width: 66%;
    height: 40px;
    outline: none;
    border: 0;
    background-color: transparent;
    color: white;
    font-family: Microsoft JhengHei, Myriad Pro, Myriad, Aria, sans-serif;
    -webkit-appearance: none;
}

#contact_form .form_block .box .field option {
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-appearance: none;
}

#contact_form .form_block .box .code_field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#contact_form .form_block .box .code_field .title {
    position: relative;
    width: 42%;
}

#contact_form .form_block .box .code_field .inputbox {
    position: relative;
    width: 26%;
}

#contact_form .form_block .box .code_field img {
    position: relative;
    top: -7px;
    width: 132px;
    height: 34px;
}

.form_close {
    position: absolute;
    top: 24px;
    right: 26px;
    z-index: 10;
    overflow: hidden;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.form_close:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: #808080;
    content: '';
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.form_close:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 1px;
    background-color: #808080;
    content: '';
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.form_close span {
    position: relative;
}

#right_btn{
    opacity: 1;
}

.section_location {
  width: 100%;
  min-width: 180px;
  background-color: #ccc;
  padding: 50px 80px;
  /* display: none; */
}
.location_search_title {
  color: #000;
  font-size: 22px;
  margin-bottom: 15px;
  width: 250px;
}
.location_search_area{
  max-width: 320px;
}
.lan_sel{
  font-size: 18px;
  display: block;
  padding: 10px 5px;
  border-bottom: 2px solid #000;
  background-image: url(../images/s_down.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  font-weight: 600;
  background-size: 20px;
}
.lan_sel_box {
  display: none;
  list-style: none !important;
  padding: 0 !important;
}
/* .lan_sel_box li {
  padding-left: 15px;
} */
.lan_sel_box li a{
  padding: 6px 0;
  border-bottom: 1px solid #888;
  width: 100%;
  display: block;
  font-weight: 600;
  padding-left: 15px;
}
@media only screen and (max-width:600px){
  .section_location{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 25px;
  }
  .location_search_area {
    margin: 0 auto;
    width: 100%;
  }
  .location_search_title {
    text-align: center;
    width: 100%;
  }
}

@media only screen and (min-width: 1025px) {

    #right_btn .contact_form:hover {
        -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
        transform: scale(1.03);
    }

    #contact_form .form_close:hover:before {
        top: 12px;
        left: -14px;
        background-color: white;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transform-origin: 70% 70%;
        -ms-transform-origin: 70% 70%;
        transform-origin: 70% 70%;
    }
    #contact_form .form_close:hover:after {
        top: 30px;
        right: -8px;
        background-color: white;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: 70% 70%;
        -ms-transform-origin: 70% 70%;
        transform-origin: 70% 70%;
    }

    #contact_form .button:hover .send:BEFORE {
        border-color: transparent;
        color: white;
    }
    #contact_area .button .send:hover, #contact_ok .button .send:hover{
        color: #fff;
    }

    #contact_form .button:hover:after {
        top: 0;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}



@media only screen and (max-width: 1024px) {
    #contact_area {
        padding: 24px;
    }
    #contact_form {
        padding: 80px 30px 40px;
        width: 100%;
        height: 80%;
    }
    #contact_form .name {
        font-size: 24px;
    }
    #contact_form .form_block {
        height: calc(100% - 200px);
    }
    #contact_form .form_block .box {
        width: 100%;
    }
    #contact_form .form_block .box .code_field .title {
        width: 100%;
    }
    #contact_form .form_block .box .code_field {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

}


@media only screen and (max-width: 650px) {
    #contact_form .form_block .box .code_field {
        padding-bottom: 0;
        border-bottom: 0;
        text-align: center;
    }
    #contact_form .form_block .box .code_field .inputbox {
        margin-bottom: 10px;
        padding-bottom: 5px;
        width: 100%;
        border-bottom: 1px solid gray;
    }
    #contact_form .form_block .box .code_field img {
        top: 0;
        margin: 0 auto;
    }
    #contact_form .form_block .box .field {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #contact_form .form_block .box .field .textarea {
        width: 100%;
    }
    #contact_form .form_block .box .field .must {
        position: relative;
        margin-right: 15px;
    }
    #contact_form .form_block .box .field .inputbox.cpname {
        width: 100%;
    }
    #contact_form .form_block .box .field .select {
        -webkit-box-flex: 2;
        -ms-flex: 2 1 auto;
        flex: 2 1 auto;
    }
    #contact_form .form_block .box .field .select select {
        width: 100%;
    }

}


.ui-menu li:first-child { display: none;}
