/* CSS Document */

body,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
label {
  font-weight: normal;
}
ul {
  list-style: none;
}
ol {
  margin-left: 1.2em;
}
a,
button,
a img,
img {
  transition: all 0.5s;
}
a {
  text-decoration: none;
  cursor: pointer;
}
a.underline {
  text-decoration: underline;
}
a:hover img {
  /* transform:scale(0.95); */
  transition: all 0.9s;
  opacity: 0.8;
}
a:hover,
a:focus {
  color: #ffae00;
  text-decoration: none;
}

li a:hover {
  text-decoration: none;
}
b {
  font-weight: 500;
}

span {
  display: inline-block;
}
img {
  max-width: 100%;
  max-height: 100%;
}

input,
select,
button,
img,
i {
  vertical-align: middle;
  display: inline-block;
}
input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0 2px;
}
input[type="button"],
input[type="reset"] {
  padding: 5px 8px;
}
table th input[type="radio"]:checked + label {
  color: #faff50;
}

input:focus {
  outline: none;
}

select,
textarea,
input[type="text"],
input[type="email"],
input[type="telephone"] {
  width: 100%;
  /* line-height:1; */
  padding: 0.7em 1em;
  resize: none;
  background: #fff;
  letter-spacing: 0.1em;
  border: 1px solid #cbcbcb;
  font-size: 15px;
  border-radius: 0;
  -webkit-appearance: none;
}

select {
  background: #fff url(../images/icon_arrow.png) no-repeat 95% center;
  color: #000;
}
::-webkit-input-placeholder,
select {
  font-weight: normal;
}
::-webkit-input-placeholder {
  font-size: 15px;
}

button {
  border: none;
  outline: none;
  background-color: #ccc;
  line-height: 3;
  font-size: 1.2em;
  padding: 0 0.8em;
}
button:hover {
  opacity: 0.9;
}

.btn-radius {
  font-size: 17px;
  border-radius: 1.5em;
  font-weight: 400;
  padding: 0.5em 1.5em;
}
.btn-radius:hover {
}

.btnAll .Btn {
  width: 48%;
}

.btn-default {
  background-color: #ccc;
}
.input-group {
  max-width: 400px;
}

.orgBtn {
  background: #ff5900;
  color: #fff;
}
.grayBtn {
  background: #ececec;
  color: #000;
}
.darkBtn {
  background: #9b9b9b;
  color: #fff;
}
.greenBtn {
  background: #20b6b8;
  color: #fff;
}
.blueBtn {
  background: #3a97ff;
  color: #fff;
}

/* 三角形 */

.tringle,
.tringleArea *:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px; /* 下右上左 */
  border-color: #007bff transparent transparent transparent; /* 下右上左 */
}

/* disc-list */

.disc-list {
  list-style: disc;
  margin-left: 1.5em;
}
.disc-list li {
  margin-bottom: 0.5em;
}
.disc-list b {
  color: #ff4200;
}

/* videoCover */

.videoCover {
  background: no-repeat center center;
  background-size: cover;
  text-align: center !important;
  position: relative;
  overflow: hidden;
}
.videoCover a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(193, 214, 0, 0.2);
  transform: translateY(100%);
  content: "";
  transition: all 0.5s;
  z-index: 0;
}
.videoCover a:hover:before {
  transform: translateY(0);
}

.videoCover a {
  position: absolute;
  z-index: 10;
  display: block;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.videoCover a img {
  position: absolute;
  left: calc(50% - 45px);
  top: calc(50% - 45px);
}
.videoCover a:hover img {
  transform: scale(0.9);
}

/* yt */

.yt {
  padding-bottom: 52.5%;
  position: relative;
}
.yt iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/* imgCover */

.imgCover {
  padding-bottom: 52.75%;
  position: relative;
  display: block;
}
.imgCover > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}

/* maps */

.maps {
  position: relative;
  padding-bottom: 30%;
}
.maps iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* tableStyle */

.display-table,
.display-table > li,
.display-table > dl {
  display: table;
  width: 100%;
  margin: auto;
}
.display-table dt,
.display-table dd,
.display-table aside,
.display-table article {
  display: table-cell;
  vertical-align: middle;
  font-weight: normal;
}

/* 手機時回歸原位 */

.display-table-xs-none {
}

@media (max-width: 767px) {
  .display-table-xs-none,
  .display-table-xs-none > li,
  .display-table-xs-none > dl,
  .display-table-xs-none dt,
  .display-table-xs-none dd,
  .display-table-xs-none aside,
  .display-table-xs-none article {
    display: block !important;
    width: 100% !important;
  }
}

.flex {
  display: flex;
}
.flex-wp {
  flex-wrap: wrap;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* fancybox */

.fancybox-slide {
  padding: 10px;
}

/* 手機尺吋 */

@media (max-width: 767px) {
  .flex-xs-colum {
    flex-direction: column;
  }
}

/* table */

table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
  border: 0;
  text-align: center;
}

table th {
  padding: 0.5em;
  background: #a6b3e0;
  color: #fff;
  text-align: center;
}
table td {
  padding: 0.5em;
  text-align: center;
}

table tr:nth-child(even) {
}
table tr:nth-child(odd) {
  background: #dcdcdc;
}

/* list */

.inlineBlock {
  font-size: 0;
  /* [;font-size:12px;]; */
  /* *font-size:0; */
  /* [;letter-spacing:-3px;]; */
  /* *letter-spacing:normal; */
  /* *word-spacing:-1px; */
}

.inlineBlock > li {
  display: inline-block;
  /* *display:inline; */
  /* *zoom:1; */
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  font-size: 15px;
}
.inlineBlock > li a {
  display: block;
}

.list-inline {
}
.list-inline > li {
  display: inline-block;
  margin-right: 10px;
}

.listTypeNone {
  list-style: none !important;
}

/* noboder */

.noborder {
  border: none;
}
.noMargin {
  margin: 0px;
}

/* display */

.hidden {
  display: none;
}
.show {
  display: block;
}
.showInlineBlock {
  display: inline-block;
}

.relative {
  position: relative !important;
}
.absolute {
  position: absolute !important;
}
.fixed {
  position: fixed !important;
}

/* bgimg */

.bg {
  background-repeat: no-repeat;
  background-position: center center;
}
.bg-cover {
  background-size: cover;
}
.bg-contain {
  background-size: contain;
}

/* bg-color */

.bg-blue {
  background-color: #a9e0e0;
}
.bg-blue2 {
  background-color: #bfeded;
}
.bg-blue3 {
  background-color: #aee7e7;
}

/* bootstrap */

.bg-warning td {
  background: #ffc;
}

/* color */

.orangeColor {
  color: #f3733b;
}
.blackColor {
  color: #333;
}
.brownColor {
  color: #a48b78;
}
.redColor {
  color: #e60012;
}
.grayColor {
  color: #898989;
}
.blueColor {
  color: #1ca2a4;
}
.greenColor {
  color: #25ccce;
}

/* align */

.alignCenter {
  text-align: center;
}
.alignLeft {
  text-align: left;
}
.alignRight {
  text-align: right;
}

/* aline-middle */

.aline-middle:before {
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

/* font */

.bold {
  font-weight: bold;
}
.numberFonts {
  font-family: "Arial Black", Gadget, sans-serif;
  min-width: 20px;
  background: #d8dce4;
  color: #4c5976;
}

/* swipeBtn */

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next,
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: none;
}

/* position */

.po-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
}
