﻿@charset "UTF-8";
html,
body {
  width: 100%;
  padding: 0px;
  margin: 0px;
  line-height: 1.4;
  overflow-x: hidden;
  font-family: "Arial","微軟正黑體", "Verdana",  "Microsoft JhengHei", "Geneva", "sans-serif";
}
html{
  font-size:  0.8333vw;
}
@media (max-width: 1440px){
  html{
    font-size:  16px;
  }
}
img {
  max-width: 100%;
  vertical-align: middle;
}
/*可利用*/
.img {
  position: relative;
  font-size: 0;
}
.img > span {
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: center;
}
.img > span:before {
  content: ' ';
  display: inline-block;
  height: 100%;
  width: 0;
  vertical-align: middle;
}
.img > span > img, .img > span > iframe {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
.img > span > iframe {
  width: 100%;
  height: 100%;
}
.clear:after{
  display: block;
  height: 0;
  clear: both;
  content: "";
  visibility: hidden;
}
.img-full img,
.img-full svg{
  width: 100%;
  height: 100%;
}
.line-2 {
  display: -webkit-box!important; 
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.d-flex{
  display: flex;
}
.jc-bettwen{
  justify-content: space-between;
}
.flex-wrap{
  flex-wrap: wrap;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}