@charset "UTF-8";
/*思源黑體*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/*reset*/
body, header, footer, section, article, picture, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset,
input, textarea, p, blockquote, iframe, button, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  letter-spacing: 0.1px;
  text-decoration: none;
  border: 0;
  word-break: break-all;
}

html,
body {
  height: 100%;
  /*DIV列印表格的背景顏色*/
  -webkit-print-color-adjust: exact;
  /*safari內網頁的字體不會無緣無故變大*/
  -webkit-text-size-adjust: 100%;
  /*safari內網頁滑動起來不會卡卡的*/
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

body {
  color: #1a1b29;
  background-color: #444;
  font: normal 16px/140% "Arial", "Noto Sans TC", "微軟正黑體", sans-serif;
}

input, button, textarea, select, optgroup, option, a, button {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  outline: none;
}

a,
button {
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  /* font-size: 1em;
   line-height: 1.5em;*/
}

ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
ul li {
  padding: 0;
  list-style: none;
}

ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  width: auto;
  border-collapse: collapse;
  border-spacing: 0;
}

:hover {
  transition-duration: 0.3s;
}

a {
  color: #bb1100;
}
a:hover {
  color: #e49347;
}

img {
  max-width: 100%;
  height: auto;
}

/*reset end*/
/*樣式設定
.class {
  @include mid-width() {
  }
}*/
footer .links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsList li:hover h4, .imgbox.radius:hover img, .goTop.hide, .pageMenu-btn .line, #pageMenu .hasSub button, #pageMenu, .page {
  transition: 0.2s;
}

/*color*/
/*font*/
input[type=text],
input[type=password],
select {
  width: 100%;
  min-width: 0;
  height: 36px;
  line-height: 36px;
  border: none;
  border-radius: 5px;
}

input[type=text],
input[type=password] {
  padding: 0 15px;
  background: #fff;
}

input[type=text]:disabled,
input[type=password]:disabled,
input[type=text]:read-only,
input[type=password]:read-only {
  background: #f0f0f0;
  border: none;
}

input::-webkit-input-placeholder {
  color: #c0c0c0;
}

input::-moz-placeholder {
  color: #c0c0c0;
}

input:-ms-input-placeholder {
  color: #c0c0c0;
}

input:-moz-placeholder {
  color: #c0c0c0;
}

select {
  width: 100%;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0 35px 0 15px;
  color: #666;
  background: #fff url(../images/arrow-grey.svg) right 13px center no-repeat;
  background-size: auto 12px;
}

select::-ms-expand {
  display: none;
}

select option {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

select option:hover {
  color: #fff;
  background-color: #666;
}

/*checkbox*/
.checkboxBx {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.checkboxBx + .checkboxBx {
  margin-left: 16px;
}
@media all and (max-width: 768px) {
  .checkboxBx {
    display: inline-block;
  }
}

input[type=checkbox] {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  opacity: 0;
}
input[type=checkbox] + label {
  line-height: 30px;
  height: 30px;
  cursor: pointer;
  color: #666;
  margin: 5px 10px 5px 0;
}
input[type=checkbox] + label span {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: #eee;
  margin-right: 10px;
}
input[type=checkbox]:checked + label span {
  background: #eee url(../images/arw_check.svg) center no-repeat;
  background-size: 20px auto;
}
input[type=checkbox].bgW + label span {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
}
input[type=checkbox].bgW:checked + label span {
  background-color: #fff;
}

input[type=checkbox]:disabled.bgW + label {
  cursor: auto;
}
input[type=checkbox]:disabled.bgW + label span {
  cursor: auto;
  background-color: #f0f0f0;
}

/*radio*/
input[type=radio] {
  display: none;
}
input[type=radio] + label {
  white-space: nowrap;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin: 5px 10px 5px 0;
  cursor: pointer;
}
input[type=radio] + label span {
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: #fff;
  background-size: 100%;
  border-radius: 50%;
  border: 1px solid #a3a3a3;
}
input[type=radio]:checked + label span {
  border-color: #e71a10;
}
input[type=radio]:checked + label span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -5px 0 0 -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e71a10;
}

input[type=radio]:disabled + label {
  cursor: auto;
}
input[type=radio]:disabled + label span {
  border: 1px solid #d2d2d2;
  background-color: #f0f0f0;
  cursor: auto;
}

/* checkbox, radio 的開關元件(toggle switch)*/
.switch-btn {
  height: 26px;
  position: relative;
  outline: 0;
  color: #fefefe;
  user-select: none;
  display: inline-block;
}
.switch-btn .switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}
.switch-btn .switch-paddle {
  position: relative;
  display: block;
  width: 46px;
  height: 26px;
  border-radius: 1rem;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
.switch-btn .switch-paddle::after {
  position: absolute;
  top: 4px;
  left: 1.6rem;
  display: block;
  width: 18px;
  height: 18px;
  transform: translate3d(0, 0, 0);
  border-radius: 1rem;
  background: #d2d2d2;
  transition: left 250ms cubic-bezier(0.34, 1.61, 0.7, 1), transform 250ms cubic-bezier(0.34, 1.61, 0.7, 1);
  content: "";
}
.switch-btn input:checked ~ .switch-paddle::after {
  background: #e71a0f;
}
.switch-btn input:checked ~ .switch-paddle::after {
  left: 0.2rem;
}

/*-------------------------------- 頁面 --------------------------------*/
.page {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  background: #fff;
}

.pagesize {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media all and (max-width: 1024px) {
  .pagesize {
    padding: 0 20px;
    max-width: 1000px;
  }
}
@media all and (max-width: 768px) {
  .pagesize {
    padding: 0 20px;
  }
}

.container {
  position: relative;
}

/*header*/
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 80px;
  padding: 16px 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
header .pagesize {
  max-width: 1390px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  display: block;
  width: 100px;
  height: 47px;
  background: url(../images/logo.png) left center no-repeat;
  background-size: contain;
  position: relative;
}
header .logo a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}
header .topMenu {
  display: flex;
}
header .topMenu ul {
  display: flex;
  justify-content: right;
  align-items: center;
  list-style: none;
}
header .topMenu ul li {
  padding: 10px 0 10px 30px;
  margin-left: 30px;
  border-left: 2px solid #f1efef;
}
header .topMenu ul li a {
  font-size: 1rem;
  font-weight: 500;
  color: #1b1b1b;
  display: block;
  position: relative;
}
header .topMenu ul li a:hover {
  color: #bb1100;
}
header .topMenu ul li.location {
  padding-left: 30px;
  background: url(../images/ic-location.png) 0 4px no-repeat;
  background-size: 30px;
}
header .topMenu ul li.member {
  padding-left: 60px;
  background: url(../images/ic-user.png) 20px center no-repeat;
  background-size: 30px;
}
header .topMenu ul li.member a {
  display: inline-block;
}
header .topMenu ul li.member a.logout {
  border-left: 1px solid #999;
  padding: 0 0 0 10px;
  margin-left: 10px;
}
header .topMenu ul li.member a.logout:hover {
  color: #bb1100;
}
header .topMenu ul > li:first-child {
  border: none;
}
@media all and (max-width: 768px) {
  header .topMenu {
    padding-right: 30px;
  }
  header .topMenu ul {
    border-right: 2px solid #f1efef;
  }
  header .topMenu ul li {
    padding: 0;
    margin: 0;
  }
  header .topMenu ul li a {
    line-height: 0;
    font-size: 0;
    overflow: hidden;
  }
  header .topMenu ul li.location, header .topMenu ul li.member {
    padding: 0;
    margin: 0;
    background-position: center;
  }
  header .topMenu ul li.location a, header .topMenu ul li.member a {
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
  }
}
header .search {
  margin-left: 20px;
}
header .search a.ic {
  width: 40px;
  height: 40px;
  width: 36px;
  height: 36px;
  background: #fff url(../images/ic-search.svg) center no-repeat;
  background-size: 30px;
  filter: grayscale(500%);
  display: block;
}

/*全站搜尋*/
.searchSite {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  z-index: 99;
  background: rgba(0, 0, 0, 0.4);
}
.searchSite.is_hide {
  display: none;
}
.searchSite-Bx {
  background: #f5f5f5;
  color: #313131;
  padding: 32px;
}
.searchSite-Bx .js_search_close {
  background-color: #6e6e6e;
  border-radius: 100%;
  width: 32px;
  height: 32px;
  text-align: center;
  color: #fff;
  margin-left: 24px;
}
.searchSite-Bx .js_search_close::before {
  content: "";
  background: url(../images/ic-close.svg) center no-repeat;
  background-size: 24px;
  filter: grayscale(100%) brightness(1000%);
  width: 32px;
  height: 32px;
  display: block;
}
.searchSite-Bx .js_search_close:hover {
  background-color: #bb1100;
}
.searchSite-Bx .site-go {
  height: 40px;
  line-height: 40px;
  background-color: #bb1100;
  color: #ffffff;
  padding: 0 16px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
}
.searchSite-Bx .site-go:hover {
  background-color: #313131;
}
@media all and (max-width: 768px) {
  .searchSite {
    display: none;
  }
}

/*menu*/
.page_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -2;
}

.openmenu {
  position: fixed;
}

.page.openmenu .page_cover {
  z-index: 1001;
}

/* menu */
#pageMenu {
  position: fixed;
  z-index: 999;
  width: 80%;
  height: 100vh;
  background-color: #444;
  /*background: #1b1b1b;*/
  overflow-y: auto;
}
#pageMenu ul {
  list-style: none;
  position: relative;
}
#pageMenu ul li {
  border-bottom: 1px solid #626262;
}
#pageMenu ul li > a {
  display: block;
  min-height: 50px;
  padding: 16px 50px 16px 20px;
  color: #ffffff;
  /*color: #eb483f;*/
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 500;
}
#pageMenu ul li a.english {
  color: #e49347;
}
#pageMenu .hasSub {
  position: relative;
}
#pageMenu .hasSub ul {
  background-color: #313131;
}
#pageMenu .hasSub ul a {
  color: #fff;
  font-size: 1rem;
  padding-left: 40px;
}
#pageMenu .hasSub ul li ul {
  background-color: #434343;
}
#pageMenu .hasSub ul li ul li {
  border: none;
}
#pageMenu .hasSub ul li ul li a {
  font-size: 0.9rem;
  line-height: 1.2rem;
  font-weight: normal;
  padding: 10px 50px 10px 60px;
  min-height: 40px;
  position: relative;
}
#pageMenu .hasSub ul li ul li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  top: 16px;
  left: 44px;
}
#pageMenu .hasSub button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: url(../images/arrow-w.svg) center center no-repeat;
  background-size: auto 32px;
  cursor: pointer;
  outline: none;
  border: none;
}
#pageMenu .hasSub.open > button {
  transform: scaleY(-1);
}

.openmenu ~ #pageMenu {
  opacity: 1;
}

/* menu_按鈕 */
.pageMenu-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  outline: none;
  border: none;
  display: none;
}
@media all and (max-width: 768px) {
  .pageMenu-btn {
    display: block;
  }
}

.pageMenu-btn .line {
  display: block;
  position: absolute;
  left: 4px;
  width: 20px;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
}

.pageMenu-btn .line01 {
  top: 7px;
}

.pageMenu-btn .line02 {
  top: 14px;
}

.pageMenu-btn .line03 {
  top: 21px;
}

/* menu_按鈕_展開 */
.openmenu .pageMenu-btn .line01 {
  width: 24px;
  top: 14px;
  left: 2px;
  transform: rotate(-45deg);
}

.openmenu .pageMenu-btn .line02 {
  display: none;
}

.openmenu .pageMenu-btn .line03 {
  width: 24px;
  top: 14px;
  left: 2px;
  transform: rotate(45deg);
}

.show-left.openmenu {
  transform: translateX(60%);
}

.show-left ~ #pageMenu {
  top: 0;
  left: -80%;
}

.show-left.openmenu ~ #pageMenu {
  left: 0;
}

.show-right.openmenu {
  transform: translateX(-80%);
}

.show-right ~ #pageMenu {
  left: auto;
  right: -80%;
}

.show-right.openmenu ~ #pageMenu {
  right: 0;
}

.show-up ~ #pageMenu {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.show-up.openmenu ~ #pageMenu {
  top: 0;
}

.show-up.openmenu {
  transform: translateX(0);
}

.memberBx {
  padding: 10px;
  color: #ffffff;
  border-bottom: 1px solid #999;
}

.searchBx {
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #626262;
}
.searchBx_box {
  border-radius: 5px;
  background-color: #404040;
  padding-right: 40px;
  position: relative;
}
.searchBx input[type=text] {
  background-color: transparent;
  color: #fff;
  line-height: 40px;
  height: 40px;
  border: none;
}
.searchBx input::-webkit-input-placeholder {
  color: #fff;
}
.searchBx input::-moz-placeholder {
  color: #fff;
}
.searchBx input:-ms-input-placeholder {
  color: #fff;
}
.searchBx input:-moz-placeholder {
  color: #fff;
}
.searchBx .go {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background: url(../images/ic-search-w.png) center no-repeat;
  background-size: 24px;
}

.bt-btn {
  width: 100%;
  padding: 20px;
}
.bt-btn a {
  border-radius: 4px;
  line-height: 40px;
  background-color: #bb1100;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  display: block;
}

.smartbanner {
  display: none;
  height: 70px;
  width: 100%;
  background: -webkit-linear-gradient(top, #f4f4f4 0%, #cdcdcd 100%);
  background-image: -ms-linear-gradient(top, #f4f4f4 0%, #cdcdcd 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 0%, #cdcdcd 100%);
}
.smartbanner .sb-bx {
  padding: 10px 10px 10px 36px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.smartbanner .sb-close {
  width: 24px;
  height: 40px;
  position: absolute;
  top: 11px;
  left: 6px;
  background: url(../images/ic-close.svg) center no-repeat;
  background-size: 24px;
  filter: grayscale(100%);
  z-index: 2;
}
.smartbanner .sb-con {
  color: #313131;
  text-align: left;
  padding: 0 0 0 60px;
  height: 50px;
  position: relative;
}
.smartbanner .sb-con .sb-logo {
  width: 50px;
  height: 50px;
  background: url(../images/app-icon.jpg) 0 0 no-repeat;
  background-size: contain;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
.smartbanner .sb-con h3 {
  font-size: 1.1rem;
}
.smartbanner .sb-con p {
  font-size: 0.9rem;
}
.smartbanner .sb-button a {
  padding: 8px 10px;
  color: #ffffff;
  background-color: #bb1100;
  text-align: center;
  font-size: 1rem;
  border-radius: 4px;
}
@media all and (max-width: 1024px) {
  .smartbanner {
    display: block;
  }
}
@media all and (max-width: 340px) {
  .smartbanner {
    height: 60px;
  }
  .smartbanner .sb-bx {
    padding: 10px 10px 10px 36px;
  }
  .smartbanner .sb-con {
    padding: 0 0 0 50px;
    height: 40px;
  }
  .smartbanner .sb-con .sb-logo {
    width: 40px;
    height: 40px;
  }
  .smartbanner .sb-con h3 {
    font-size: 0.9rem;
  }
  .smartbanner .sb-con p {
    font-size: 0.8rem;
  }
}

/*------------------------------------------*/
/*footer*/
footer {
  color: #ffffff;
}
footer a {
  display: block;
}
footer a img {
  vertical-align: top;
}
footer .footer-top {
  background: url(../images/bg-footer-top.jpg) center no-repeat;
  background-size: cover;
  padding: 48px 0;
}
footer .footer-top .serveBx {
  padding: 0 50px 0 100px;
  border-left: 1px solid #fff;
}
footer .footer-top .serveBx.map {
  background: url(../images/ic-ft-location.png) 25px 0 no-repeat;
  background-size: 50px;
}
footer .footer-top .serveBx.call {
  background: url(../images/ic-ft-call.png) 25px 0 no-repeat;
  background-size: 50px;
}
footer .footer-top .serveBx h3 {
  font-size: 1.375rem;
  font-weight: normal;
}
footer .footer-top .serveBx p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 16px;
}
footer .footer-top .serveBx a {
  display: inline-block;
  border-radius: 4px;
  background-color: #bb1100;
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  width: 100px;
  line-height: 1rem;
  padding: 8px 10px 10px;
}
footer .footer-top .serveBx a:hover {
  background-color: #1b1b1b;
}
footer .footer-top .pagesize > .serveBx:first-child {
  border-left: none;
}
@media all and (max-width: 1024px) {
  footer .footer-top .pagesize > div:last-child.web {
    display: none;
  }
  footer .footer-top .serveBx {
    padding: 0 20px 0 100px;
  }
  footer .footer-top .serveBx h3 {
    font-size: 1.25rem;
  }
  footer .footer-top .serveBx p {
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.4rem;
  }
}
@media all and (max-width: 768px) {
  footer .footer-top {
    padding: 32px 0 16px;
  }
  footer .footer-top .serveBx {
    border-left: none;
    border-top: 1px solid #fff;
    padding: 20px 0 20px 50px;
    width: 100%;
  }
  footer .footer-top .serveBx.map {
    background-position-x: 0;
    background-size: 36px;
  }
  footer .footer-top .serveBx.call {
    background-position: 0 20px;
    background-size: 36px;
  }
  footer .footer-top .pagesize > .serveBx:first-child {
    border: none;
    padding-top: 0;
  }
}
footer .footer-sitemap {
  color: #fff;
  background: url(../images/bg-footer-sitemap.jpg) center no-repeat;
  background-size: cover;
  height: 40px;
  overflow: hidden;
}
footer .footer-sitemap.open {
  height: auto;
  overflow: auto;
}
footer .footer-sitemap.open .sitemap-toggle::before {
  content: "收合";
}
footer .footer-sitemap.open .sitemap-toggle::after {
  content: "";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
footer .footer-sitemap .sitemap-toggle {
  position: absolute;
  top: 0;
  right: 20px;
  width: 80px;
  height: 30px;
  background-color: #535353;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
footer .footer-sitemap .sitemap-toggle::before {
  content: "展開";
  width: 80px;
  height: 30px;
  font-size: 0.875rem;
  line-height: 30px;
  color: #fff;
  padding: 0 30px 0 10px;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}
footer .footer-sitemap .sitemap-toggle::after {
  content: "";
  background: url(../images/ic-ft-arw.png) center no-repeat;
  background-size: 14px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
}
footer .footer-sitemap .pagesize {
  padding-top: 48px;
  padding-bottom: 40px;
}
footer .footer-sitemap .pagesize .ft-tit {
  position: absolute;
  top: 0;
  left: 16px;
  line-height: 40px;
  font-size: 0.875rem;
}
footer .footer-sitemap .sitemapBx {
  min-width: 160px;
}
footer .footer-sitemap .sitemapBx h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 16px;
}
footer .footer-sitemap .sitemapBx .sitemap-list a {
  color: #a0a0a0;
  padding: 2px 0;
  display: block;
}
footer .footer-sitemap .sitemapBx .sitemap-list a:hover {
  color: #fff;
}
footer .footer-sitemap .sitemapBx .sitemap-list a.tB {
  font-weight: 800;
  color: #fff;
}
footer .footer-sitemap .sitemapBx .sitemap-list.two-col {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
footer .footer-sitemap .sitemapBx .sitemap-list.two-col li {
  width: 50%;
}
footer .footer-sitemap .sitemapBx .link-list {
  margin-bottom: 16px;
}
footer .footer-sitemap .sitemapBx .link-list li {
  margin-bottom: 10px;
}
footer .footer-sitemap .sitemapBx .link-list li:hover {
  opacity: 0.8;
}
footer .footer-sitemap .sitemapBx .footer-social {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
footer .footer-sitemap .sitemapBx .footer-social li:hover {
  opacity: 0.8;
}
@media all and (max-width: 768px) {
  footer .footer-sitemap .pagesize {
    padding: 38.4px 16px 16px;
  }
  footer .footer-sitemap .sitemapBx {
    min-width: 100%;
    padding-top: 16px;
    text-align: center;
  }
  footer .footer-sitemap .sitemapBx h3 {
    margin-bottom: 10px;
  }
  footer .footer-sitemap .sitemapBx .sitemap-list a {
    font-size: 1rem;
    padding: 6px 0;
  }
  footer .footer-sitemap .sitemapBx .sitemap-list.two-col li {
    width: 100%;
  }
  footer .footer-sitemap .sitemapBx .footer-social {
    justify-content: center;
  }
  footer .footer-sitemap .sitemapBx .footer-social li {
    margin: 0 5px;
  }
}
footer .footer-bottom {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
}
footer .footer-bottom .footer-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
footer .footer-bottom .footer-link li {
  position: relative;
}
footer .footer-bottom .footer-link li::before {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #bfbfbf;
  position: absolute;
  top: 6px;
  left: 0;
}
footer .footer-bottom .footer-link li a {
  font-size: 1rem;
  color: #fff;
  padding: 4px 10px;
}
footer .footer-bottom .footer-link li a:hover {
  color: #bfbfbf;
}
footer .footer-bottom .footer-link > li:first-child::before {
  display: none;
}
footer .footer-bottom p {
  color: #a0a0a0;
  font-size: 0.8rem;
}
footer .links {
  margin-bottom: 10px;
}
footer .links li {
  padding: 0 20px;
}
@media all and (max-width: 768px) {
  footer {
    font-size: 12px;
  }
  footer .links {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .links li {
    padding: 0 10px;
  }
}
@media all and (max-width: 768px) and (max-width: 480px) {
  footer .links li {
    flex: 1 1 33%;
  }
}

/*goTop*/
.goTop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
  opacity: 1;
}
.goTop .goTopBtn {
  position: relative;
  padding-top: 25px;
  color: #ffffff;
  font-size: 1.125rem;
  background-color: rgba(49, 49, 49, 0.9);
  border-radius: 100%;
  width: 60px;
  height: 60px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
  display: block;
}
.goTop .goTopBtn::before {
  content: "";
  background: url(../images/ic-ft-arw.png) center no-repeat;
  background-size: 14px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: 20px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.goTop .goTopBtn:hover {
  background-color: #bb1100;
}
.goTop.hide {
  opacity: 0;
}
@media all and (max-width: 768px) {
  .goTop {
    bottom: 40px;
    right: 20px;
  }
}

/*title*/
.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.title.line {
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 16px;
}
.title.flex-left {
  justify-content: start;
}
.title.noFlex {
  display: block;
}
.title h2 {
  font-size: 1.75rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: #bb1100;
  padding-right: 80px;
  margin-right: 20px;
  display: inline-block;
  position: relative;
}
.title h2::after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #bb1100;
  position: absolute;
  right: 0;
  top: 12px;
}
.title.center {
  justify-content: center;
}
.title.center h2 {
  font-size: 1.5rem;
  margin: 0;
  padding: 0 80px;
}
.title.center h2::before {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #bb1100;
  position: absolute;
  left: 0;
  top: 12px;
}
.title h3 {
  font-size: 1.5rem;
}
.title a.more {
  color: #1a1b29;
  position: relative;
  padding-right: 20px;
  font-weight: 500;
}
.title a.more::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/arrow-more.svg) center no-repeat;
  background-size: 20px;
  filter: brightness(0.2);
  position: absolute;
  top: 0;
  right: 0;
}
.title a.more:hover {
  color: #bb1100;
}
.title a.more:hover::before {
  filter: brightness(1);
}
.title .link a {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  display: inline-block;
}
.title .link a.call {
  background: #e49347 url(../images/ic-link-call.png) center no-repeat;
  background-size: contain;
}
.title .link a.nav {
  background: #e49347 url(../images/ic-link-nav.png) center no-repeat;
  background-size: contain;
}
.title .link a:hover {
  background-color: #bb1100;
}
.title > .link + .link {
  margin-left: 10px;
}
.title .linkTxt {
  display: flex;
  line-height: 20px;
}
.title .linkTxt a {
  color: #e49347;
  font-size: 0.9rem;
  padding: 0 10px;
}
.title .linkTxt a:hover {
  color: #bb1100;
}
.title .linkTxt a + a {
  border-left: 1px solid #e49347;
}
@media all and (max-width: 768px) {
  .title {
    flex-wrap: wrap;
  }
  .title.m-wrap {
    flex-wrap: wrap;
  }
  .title h2 {
    font-size: 1.375rem;
    margin: 0;
    padding-right: 40px;
    text-align: center;
  }
  .title h2::after {
    width: 30px;
  }
  .title.center h2 {
    padding: 0 40px;
  }
  .title.center h2::before {
    width: 30px;
  }
  .title .linkTxt {
    margin-top: 10px;
  }
  .title .linkTxt > a:first-child {
    padding-left: 0;
  }
}
@media all and (max-width: 480px) {
  .title.m-wrap {
    flex-wrap: wrap;
  }
}

.sideTab {
  border: 2px solid #313131;
  height: 40px;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
}
.sideTab li {
  flex: 1 1 auto;
  white-space: nowrap;
  text-align: center;
  line-height: 40px;
  border-left: 2px solid #313131;
}
.sideTab li a {
  padding: 0 20px;
  width: 100%;
  color: #313131;
  line-height: 36px;
  display: block;
}
.sideTab li:hover a, .sideTab li.on a {
  background-color: #313131;
  color: #ffffff;
}
.sideTab > li:first-child {
  border-left: none;
}
.sideTab + .inputBx,
.sideTab .inputBx + .inputBx {
  margin-left: 8px;
}
@media all and (max-width: 768px) {
  .sideTab {
    width: 100%;
    margin-bottom: 16px;
  }
  .sideTab + .inputBx {
    margin-left: 0;
    margin-bottom: 16px;
  }
}

@media all and (max-width: 768px) {
  .popupBx .title h2 {
    width: 100%;
    text-align: left;
    padding-right: 0;
    margin-right: 0;
  }
  .popupBx .title h2.fsize-2xl {
    font-size: 20px !important;
    line-height: 1.4rem;
  }
  .popupBx .title h2::before, .popupBx .title h2::after {
    display: none;
  }
  .popupBx .title h2 + .linkTxt,
  .popupBx .title h2 + .link {
    margin-top: 10px;
  }
}
/*popup*/
.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
}
.popup.is_hide {
  display: none;
}
.popup.open {
  display: block;
}
.popupBx {
  background-color: #fff;
  border-radius: 4px;
  padding: 24px 36px;
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 500px;
  min-height: 140px;
  max-height: calc(100vh - 100px);
  position: relative;
  /* overflow-y: auto;*/
}
.popupBx.wide {
  min-width: 940px;
}
.popupBx .popupCon {
  overflow-y: auto;
  max-height: calc(100vh - 200px);
}
.popupBx .popupCon.h-addbtn {
  max-height: calc(100vh - 260px);
}
.popupBx .printBx {
  overflow-y: auto;
  max-height: 400px;
  /*@include screen-width($mid-width) {
    max-height: 400px;
  }*/
}
.popupBx.overflow-visible {
  overflow: visible;
}
.popup_close {
  position: absolute;
  top: 25px;
  right: 36px;
  width: 24px;
  height: 24px;
  background: url(../images/ic-close.svg) center no-repeat;
  background-size: 30px;
  z-index: 9999;
  filter: grayscale(100%);
}
.popup_close.outside {
  top: -30px;
  right: 0;
  filter: grayscale(100%) brightness(1000%);
}
.popup_close:hover {
  filter: grayscale(0) brightness(1);
}
.popup::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.popup .title {
  padding-right: 20px;
}
@media all and (max-width: 1024px) {
  .popupBx {
    width: 90%;
    max-height: calc(100vh - 40px);
  }
  .popupBx.wide {
    min-width: 90%;
  }
}
@media all and (max-width: 768px) {
  .popupBx {
    width: 90%;
    padding: 16px;
  }
  .popupBx .title {
    position: sticky;
    padding-right: 30px;
  }
  .popupBx .title.paddR-0 {
    padding-right: 0;
  }
  .popup_close {
    top: 16px;
    right: 16px;
  }
}

/*loading*/
.popup .loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

/*新增車輛 - 車輛資訊*/
.car-info {
  width: 100%;
  margin: 0 auto 8px;
  display: inline-block;
}
.car-info li {
  font-size: 1rem;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  text-align: left;
}
.car-info li .tit {
  position: relative;
  padding: 0 10px;
  font-weight: 500;
  width: 200px;
}
.car-info li .tit::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #bb1100;
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 100%;
}
.car-info li .con {
  width: calc(100% - 200px);
}
@media all and (max-width: 768px) {
  .car-info li .tit,
  .car-info li .con {
    width: 100%;
  }
  .car-info li .con {
    padding-left: 10px;
  }
}
.car-info.two-col {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.car-info.two-col li {
  width: 50%;
  align-items: flex-start;
}
.car-info.two-col li .tit {
  width: 120px;
}
.car-info.two-col li .con,
.car-info.two-col li .txt {
  width: calc(100% - 120px);
}
@media all and (max-width: 768px) {
  .car-info.two-col li {
    width: 100%;
  }
  .car-info.two-col li .tit,
  .car-info.two-col li .con,
  .car-info.two-col li .txt {
    width: 100%;
  }
  .car-info.two-col li .con,
  .car-info.two-col li .txt {
    padding-left: 10px;
  }
}

section {
  padding: 0 0 48px 0;
}
section.bg-red {
  background-color: #bb1100;
}
section.bg-grey {
  background-color: #f2f2f2;
}
@media all and (max-width: 1000px) {
  section {
    padding: 0 0 16px 0;
  }
}
@media all and (max-width: 480px) {
  section {
    padding: 0 0 16px 0;
  }
}

/*btn*/
.btnBx {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 99;
}
.btnBx.width-auto a {
  min-width: auto;
}
.btnBx.h-30 a {
  line-height: 30px;
  font-size: 0.9rem;
}
.btnBx > a:last-child {
  background-color: #bb1100;
  color: #ffffff;
}
.btnBx > a:last-child:hover {
  background-color: #000 !important;
  border-color: #000 !important;
}
.btnBx a {
  background-color: #ffffff;
  color: #bb1100;
  border: 2px solid #bb1100;
  text-align: center;
  border-radius: 4px;
  font-size: 1.1rem;
  min-width: 150px;
  line-height: 40px;
  padding: 0 10px;
  display: block;
}
.btnBx a:hover {
  background-color: #000;
  color: #ffffff;
  border-color: #000;
}
.btnBx a.disabled {
  background-color: #eee !important;
  color: #999 !important;
  border: none !important;
  cursor: not-allowed;
}
.btnBx a.disabled:hover {
  background-color: #eee !important;
}
.btnBx a + a {
  margin-left: 16px;
}
@media all and (max-width: 768px) {
  .btnBx {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .btnBx a {
    min-width: calc(50% - 8px);
  }
}
@media all and (max-width: 480px) {
  .btnBx a {
    width: 100%;
  }
  .btnBx a + a {
    margin-top: 10px;
    margin-left: 0;
  }
}

/*輸入欄位*/
.inputBx {
  width: 100%;
  /*overflow: hidden;*/
  position: relative;
}
.inputBx input,
.inputBx select {
  position: relative;
  border: 1px solid #d2d2d2;
  border-radius: 4px;
}
.inputBx input + .warn,
.inputBx select + .warn {
  margin-top: 10px;
}
.inputBx a {
  line-height: 40px;
}
.inputBx.border-dark input {
  border: 2px solid #1a1b29;
}
.inputBx.border-dark select {
  color: #1a1b29;
  font-size: 1.1rem;
  background: #fff url(../images/arrow-dark.svg) right 10px center no-repeat;
  background-size: auto 16px;
}
.inputBx.revise {
  border: none;
  background-color: #f5f5f5;
  line-height: 36px;
  text-align: center;
  padding: 0 15px;
}
.inputBx.revise .sideBtn {
  color: #bb1100;
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -18px;
  background: url(../images/arrow-more.svg) right top 6px no-repeat;
  background-size: 24px;
  padding-right: 26px;
  line-height: 36px;
}
.inputBx.revise .sideBtn:hover {
  background-position: right -4px top 6px;
  filter: brightness(0.2);
}
@media all and (max-width: 768px) {
  .inputBx.revise .sideBtn {
    position: relative;
    width: 100%;
    top: inherit;
    margin-top: inherit;
    right: inherit;
    background-position: right center;
  }
}
.inputBx .eye {
  position: absolute;
  right: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: url(../images/ic_eye_close.svg) center no-repeat;
  background-size: contain;
}
.inputBx .eye.open {
  background: url(../images/ic_eye_open.svg) center no-repeat;
  background-size: contain;
}
.inputBx .warn {
  text-align: left;
  color: #bb1100;
  font-size: 0.875rem;
  line-height: 20px;
  padding-left: 22px;
  background: #fff url(../images/ic-warn.svg) 0 0 no-repeat;
  background-size: 20px;
  margin-top: 10px;
  display: none;
}
.inputBx .warn.show {
  display: block;
}

.warn {
  font-size: 0.875rem;
  color: #bb1100;
  padding-left: 22px;
  line-height: 24px;
  min-height: 24px;
  margin-top: -4px;
  background: url(../images/ic-warn.svg) 0 center no-repeat;
  background-size: 20px;
  display: inline-block;
  vertical-align: middle;
}

.input-warn {
  display: none;
  background-color: rgba(187, 17, 0, 0.8);
  border-radius: 4px;
  padding: 5px 10px 5px 30px;
  color: #ffffff;
  text-align: left;
  font-size: 0.875rem;
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 99;
}
.input-warn::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../images/ic-warn.svg) 0 center no-repeat;
  background-size: 14px;
  position: absolute;
  top: 10px;
  left: 8px;
  filter: grayscale(100%) brightness(1000%);
}
.input-warn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(187, 17, 0, 0.8) transparent transparent transparent;
  position: absolute;
  bottom: -8px;
  left: 8px;
}

.formBx.thin-m .inputBx input,
.formBx.thin-m .inputBx select {
  border: 2px solid #999;
}
.formBx > li {
  margin-bottom: 16px;
}
.formBx li .tit {
  min-width: 100px;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  color: #313131;
  padding: 6px 0;
  /*line-height: 36px;*/
}
.formBx li .tit span.color-red {
  /*必填*/
  font-size: 1.4rem;
  vertical-align: middle;
}
.formBx.formBx-flex {
  /*查詢欄位*/
}
.formBx.formBx-flex li {
  display: flex;
  align-items: center;
}
.formBx.formBx-flex li.align-top {
  align-items: flex-start;
}
.formBx.formBx-flex li .con {
  width: calc(100% - 100px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.formBx.formBx-flex li .con p.tip {
  color: #8f8f8f;
  font-size: 14px;
  margin-top: 6px;
}
.formBx.formBx-flex li .con a.sideBtn {
  color: #e49347;
  border-bottom: 1px solid #e49347;
  display: block;
  margin-left: 16px;
  white-space: nowrap;
  line-height: 36px;
}
.formBx.formBx-flex li .con a.sideBtn:hover {
  color: #bb1100;
  border-color: #bb1100;
}
@media all and (max-width: 768px) {
  .formBx.formBx-flex li .con a.sideBtn {
    margin-left: 0;
  }
}
.formBx.formBx-flex.wideTit li .tit {
  min-width: 230px;
  text-align: right;
  padding-right: 16px;
}
.formBx.formBx-flex.wideTit li .tit .flex {
  float: right;
}
.formBx.formBx-flex.wideTit.wideTit2 .tit {
  width: 230px;
}
@media all and (max-width: 768px) {
  .formBx.formBx-flex li {
    flex-wrap: wrap;
  }
  .formBx.formBx-flex li .tit {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  .formBx.formBx-flex li .con {
    width: 100%;
    flex-wrap: wrap;
  }
  .formBx.formBx-flex.wideTit li .tit {
    min-width: 100%;
    text-align: left;
    padding-right: 0;
  }
  .formBx.formBx-flex.wideTit li .tit .flex {
    float: none;
    display: block;
  }
}
.formBx .inputBx {
  /*width: 100%;*/
  text-align: left;
}
.formBx .inputBx input {
  width: 100%;
  line-height: 36px;
  height: 36px;
  font-size: 1rem;
}
.formBx .inputBx textarea {
  width: 100%;
  min-height: 100px;
  padding: 5px 15px;
  color: #666;
  border: 1px solid #d2d2d2;
}
.formBx .inputBx.thin-red {
  border: 1px solid #e71a0f;
}
.formBx .inputBx.thin-red a {
  color: #e71a0f;
  text-align: center;
  display: block;
  font-size: 1rem;
}
.formBx .inputBx.thin-red a:hover {
  color: #ffffff;
  background-color: #e71a0f;
}
.formBx .inputBx a {
  line-height: 36px;
  padding: 0 10px;
}
.formBx .inputBx a span {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 10px;
}
.formBx .inputBx a.clock span {
  background: url(../images/ic-clock.png) center no-repeat;
  background-size: 20px;
  animation: rotation 2s infinite linear;
}
.formBx .inputBx a:hover span {
  filter: grayscale(100%) brightness(1000%);
}
.formBx .inputBx.w-120 {
  max-width: 120px !important;
}
@media all and (max-width: 1000px) {
  .formBx .inputBx.m-20per {
    max-width: 20%;
  }
  .formBx .inputBx.m-20per input,
  .formBx .inputBx.m-20per select {
    padding: 0 5px;
  }
  .formBx .inputBx.m-40per {
    max-width: 40%;
  }
  .formBx .inputBx.m-40per input,
  .formBx .inputBx.m-40per select {
    padding: 0 5px;
  }
}
@media all and (max-width: 768px) {
  .formBx .inputBx {
    width: 100%;
  }
  .formBx .inputBx.w-120 {
    max-width: 100% !important;
  }
}
.formBx .inputBx + .inputBx {
  margin-left: 10px;
}
@media all and (max-width: 768px) {
  .formBx .inputBx + .inputBx {
    margin: 10px 0 0;
  }
}
.formBx .sideBtn a {
  margin: 0 0 0 10px;
}
.formBx .sideBtn a:hover {
  color: #bb1100;
}
.formBx .verifi-code {
  height: 36px;
  min-width: 100px;
  margin-left: 15px;
}
.formBx .verifi-code img {
  height: 36px;
  vertical-align: bottom;
}
@media all and (max-width: 768px) {
  .formBx .verifi-code {
    height: auto;
    min-width: inherit;
    display: inline-block;
    margin-left: 0;
    text-align: left;
  }
  .formBx .verifi-code img {
    margin: 0;
  }
}
.formBx a.refresh {
  min-width: 36px;
  height: 36px;
  margin-left: 5px;
  background: url(../images/ic-refresh.png) center no-repeat;
  background-size: contain;
  display: block;
}
.formBx a.refresh:hover {
  background-image: url(../images/ic-refresh-on.png);
  animation: rotation 2s infinite linear;
}
@media all and (max-width: 768px) {
  .formBx a.refresh {
    display: inline-block;
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/*紅框按鈕*/
.thin-red {
  border: 1px solid #e71a0f;
  border-radius: 4px;
}
.thin-red a {
  border-radius: 4px;
  color: #e71a0f;
  text-align: center;
  display: block;
  font-size: 1rem;
  background-color: #fff;
}
.thin-red a:hover {
  color: #ffffff;
  background-color: #e71a0f;
}
.thin-red a span {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 10px;
}
.thin-red a.gps {
  /*自動定位*/
}
.thin-red a.gps span {
  background: url(../images/ic-red-gps.svg) center no-repeat;
  background-size: 20px;
}
.thin-red a.sort {
  /*排序*/
}
.thin-red a.sort span {
  background: url(../images/ic-red-sort.svg) center no-repeat;
  background-size: 20px;
}
.thin-red a.filter {
  /*進階查詢*/
}
.thin-red a.filter span {
  background: url(../images/ic-red-filter.svg) center no-repeat;
  background-size: 20px;
}
.thin-red a.inquiry {
  /*查詢案件*/
}
.thin-red a.inquiry span {
  background: url(../images/ic-red-inquiry.svg) center no-repeat;
  background-size: 20px;
}
.thin-red a:hover span {
  filter: grayscale(100%) brightness(1000%);
}

/*灰框按鈕*/
.thin-grey {
  border: 1px solid #a0a0a0;
  border-radius: 4px;
}
.thin-grey a {
  color: #a0a0a0;
  text-align: center;
  display: block;
  font-size: 1rem;
}
.thin-grey a:hover {
  color: #ffffff;
  background-color: #a0a0a0;
}
.thin-grey a span {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 10px;
}
.thin-grey a.no-inquiry {
  /*查詢案件*/
}
.thin-grey a.no-inquiry span {
  background: url(../images/ic-grey-no-inquiry.svg) center no-repeat;
  background-size: 20px;
}
.thin-grey a:hover span {
  filter: grayscale(100%) brightness(1000%);
}

/*資料內容條列*/
.infoBx {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  line-height: 24px;
}
.infoBx.two-col li {
  min-width: 50%;
}
.infoBx.disc-red > li {
  padding-left: 14px;
}
.infoBx.disc-red > li::before {
  content: "";
  border-radius: 100%;
  background-color: #bb1100;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
}
.infoBx li {
  min-width: 100%;
  display: flex;
  margin-bottom: 10px;
  position: relative;
}
.infoBx li .tit {
  font-weight: 500;
  min-width: 70px;
  margin-right: 10px;
}
.infoBx li .con.width-minus {
  width: calc(100% - 80px);
}
@media all and (max-width: 768px) {
  .infoBx li {
    flex-wrap: wrap;
    text-align: left;
  }
  .infoBx li .con.width-minus {
    width: 100%;
  }
}

.radiusBx-g {
  border-radius: 4px;
  padding: 16px 16px 5px;
  background-color: #f5f5f5;
}

/*圓框(選擇類型)按鈕*/
.opt-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.opt-btn a {
  border: 1px solid #e71a0f;
  line-height: 36px;
  height: 36px;
  color: #e71a0f;
  padding: 0 10px;
  min-width: 96px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.opt-btn a span {
  margin-right: 8px;
  width: 22px;
  height: 22px;
  display: inline-block;
}
.opt-btn a span.check {
  background: url(../images/ic-check-r.svg) center no-repeat;
  background-size: contain;
}
.opt-btn a:hover, .opt-btn a.on {
  background-color: #e71a0f;
  color: #ffffff;
}
.opt-btn a:hover span.check, .opt-btn a.on span.check {
  filter: grayscale(100%) brightness(1000%);
}
.opt-btn > span {
  border: 1px solid #e71a0f;
  line-height: 36px;
  height: 36px;
  color: #e71a0f;
  padding: 0 10px;
  min-width: 96px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.opt-btn.mb-1 a {
  margin-bottom: 10px;
}
.opt-btn.a-width-200 a {
  min-width: 200px;
}
.opt-btn.b-none-g {
  /*無框灰底小字*/
}
.opt-btn.b-none-g a {
  background-color: #eeeeee;
  border: none;
  color: #313131;
  font-size: 0.875rem;
  line-height: 30px;
  height: 30px;
  min-width: auto;
}
.opt-btn.b-none-g a:hover, .opt-btn.b-none-g a.on {
  background-color: #a1a1a1;
  color: #ffffff;
}
.opt-btn.small-g {
  /*灰框小字*/
}
.opt-btn.small-g a {
  border-color: #a1a1a1;
  color: #8f8f8f;
  font-size: 0.875rem;
  line-height: 24px;
  height: 24px;
  min-width: auto;
  margin-right: 5px;
}
.opt-btn.small-g a:hover, .opt-btn.small-g a.on {
  background-color: #a1a1a1;
  color: #ffffff;
}
.opt-btn.small-g a + a {
  margin-left: 0;
}
.opt-btn.small-g > span {
  border-color: #a1a1a1;
  color: #8f8f8f;
  font-size: 0.875rem;
  line-height: 24px;
  height: 24px;
  min-width: auto;
  margin-right: 5px;
}
@media all and (max-width: 1000px) {
  .opt-btn a {
    margin-bottom: 10px;
  }
  .opt-btn.a-width-200 {
    justify-content: center;
  }
  .opt-btn.a-width-200 a {
    margin: 0 5px 10px;
  }
}
.opt-btn .checkboxBx {
  margin: 0 0 10px;
}
.opt-btn input[type=checkbox] {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  opacity: 1;
}
.opt-btn input[type=checkbox] + label {
  cursor: pointer;
  margin: 0;
  border: 1px solid #e71a0f;
  line-height: 36px;
  height: 36px;
  color: #e71a0f;
  background-color: #fff;
  padding: 0 10px;
  min-width: 60px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.opt-btn input[type=checkbox]:checked + label {
  background-color: #e71a0f;
  color: #fff;
}

.more-btn {
  display: flex;
}
.more-btn a {
  background-color: #ffffff;
  color: #bb1100;
  border: 1px solid #bb1100;
  text-align: center;
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 24px;
  padding: 0 10px;
  display: block;
}
.more-btn a:hover {
  background-color: #000;
  color: #ffffff;
  border-color: #000;
}
.more-btn a + a {
  margin-left: 10px;
}
@media all and (max-width: 768px) {
  .more-btn {
    flex-wrap: wrap;
  }
  .more-btn a {
    width: 100%;
  }
}

.map-sults .more-btn {
  padding-right: 10px;
}

/*分頁*/
.paging {
  display: flex;
  justify-content: center;
  align-items: center;
}
.paging li {
  margin: 0 4px;
}
.paging li a {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 100%;
  text-align: center;
  color: #8f8f8f;
  font-size: 1rem;
  display: block;
  position: relative;
}
.paging li a::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
}
.paging li.prev a::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.paging li.next a::before, .paging li.prev a::before {
  content: "";
  background: url(../images/arrow-db.svg) center no-repeat;
  background-size: 20px;
}
.paging li.next:hover a::before, .paging li.prev:hover a::before {
  filter: grayscale(100%) brightness(1000%);
}
.paging li:hover a, .paging li.on a {
  background-color: #bb1100;
  color: #ffffff;
}

/*a*/
a.a-all {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}
a.a-ic {
  /*有icon的連結*/
  line-height: 30px;
  display: flex;
  align-items: center;
}
a.a-ic span {
  width: 30px;
  height: 30px;
  display: inline-block;
  filter: brightness(0.2);
}
a.a-ic.setting span {
  background: url(../images/ic-setting.svg) 0 0 no-repeat;
  background-size: contain;
}
a.a-ic:hover {
  color: #bb1100;
}
a.a-ic:hover span {
  filter: inherit;
}
a.now-go {
  line-height: 30px;
  color: #bb1100;
  padding-right: 24px;
  background: url(../images/arrow-right.svg) right center no-repeat;
  background-size: 20px;
}
a.now-go:hover {
  background-position: 0 center;
  padding-left: 24px;
  padding-right: 0;
}

.pst-rlt {
  position: relative;
}

/*hr*/
.dash {
  border-top: 1px dashed #c0c0c0;
  margin-bottom: 10px;
}

/*省略*/
.ellipsis {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*登入欄位*/
.logBx {
  text-align: center;
  padding: 0 36px 10px;
}
.logBx.flex-mid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: space-between;
  min-height: 380px;
}
@media all and (max-width: 768px) {
  .logBx.flex-mid {
    min-height: auto;
  }
}
.logBx p.cap {
  color: #6e6e6e;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.6rem;
  margin-bottom: 22.4px;
}
.logBx .btn {
  margin-bottom: 8px;
  width: 100%;
}
.logBx .btn a {
  height: 40px;
  line-height: 40px;
  color: #fff;
  background-color: #e49347;
  border-radius: 4px;
  display: block;
}
.logBx .btn a:hover {
  background-color: #bb1100;
}
.logBx .logBx-scroll {
  overflow-y: auto;
  max-height: 300px;
  margin-bottom: 20px;
}

a.go-apply {
  color: #e49347;
  font-weight: 500;
  letter-spacing: 2px;
  position: relative;
  height: 40px;
  line-height: 40px;
}
a.go-apply span {
  background: url(../images/ic-go.png) right 0 no-repeat;
  background-size: 18px;
  padding-right: 24px;
}
a.go-apply:hover span {
  background-position-x: left;
  padding: 0 0 0 24px;
}

.main-info .leftBx .logBx-scroll .user-info,
.main-info .leftBx .logBx-scroll .detail-info {
  overflow: visible;
  max-height: initial;
  height: initial;
}

/*列印*/
@media print {
  body {
    background: #fff;
  }
  header {
    position: relative;
  }
  header .topMenu,
  header .pageMenu-btn {
    display: none;
  }
  footer,
  .goTop {
    display: none;
  }
  section {
    padding: 0;
  }
  /*新增車輛 - 車輛資訊*/
  .car-info {
    width: 100%;
  }
  .car-info.two-col li {
    width: 50%;
    align-items: flex-start;
  }
  .car-info.two-col li .tit {
    width: 120px;
  }
  .car-info.two-col li .con,
  .car-info.two-col li .txt {
    width: calc(100% - 120px);
  }
}
.printBx {
  position: relative;
}
.printBx .logoBx {
  display: flex;
  align-items: flex-end;
  margin-bottom: 16px;
}
.printBx .logoBx .logo {
  width: 114px;
  height: auto;
  margin-bottom: 5px;
}
.printBx .logoBx h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: #313131;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #ccc;
}
.printBx .tableBox table th {
  color: #313131;
  background: #ededed;
  padding: 0;
}
.printBx .tableBox table.borderR th {
  border-bottom: #d6d6d6 solid 1px;
}

/*預覽*/
.previe-flex {
  display: flex;
  align-items: stretch;
}
.previe-flex .previewBx {
  border: 1px solid #d2d2d2;
  width: calc(100% - 280px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.previe-flex .previewBx img {
  width: 100%;
  height: auto;
}
.previe-flex .previewBx .iframeBx {
  display: block;
  position: relative;
  height: 600px;
}
.previe-flex .previewBx iframe {
  width: 100% !important;
  height: 100% !important;
}
.previe-flex .print-setting {
  margin-left: 16px;
  width: 260px;
}
.previe-flex .print-setting .printTit {
  font-size: 1.1rem;
  font-weight: 500;
  color: #313131;
  margin-bottom: 16px;
}
.previe-flex .print-setting .printTb {
  overflow-y: auto;
  max-height: 560px;
}
.previe-flex .print-setting .printTb li {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #e5e5e5;
}
.previe-flex .print-setting .printTb li.th {
  background-color: #e5e5e5;
  color: #313131;
  margin-bottom: 10px;
}
.previe-flex .print-setting .printTb li > div {
  min-width: 50%;
}
.previe-flex .print-setting .printTb .checkboxBx + .checkboxBx {
  margin: 0;
}
@media all and (max-width: 768px) {
  .previe-flex {
    flex-wrap: wrap;
  }
  .previe-flex .previewBx {
    width: 100%;
    height: 400px;
  }
  .previe-flex .previewBx .iframeBx {
    display: block;
    overflow: scroll;
    position: relative;
    height: 400px;
  }
  .previe-flex .print-setting {
    width: 100%;
    margin: 0;
    padding-top: 16px;
  }
}

/*專用章*/
.sealBx {
  width: 300px;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  padding: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.sealBx h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
}

/*cookie聲明*/
.cookie-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(187, 17, 0, 0.9);
  color: #ffffff;
  opacity: 0.9;
  z-index: 9999;
}
.cookie-container .pagesize {
  padding: 32px 16px;
  display: flex;
}
.cookie-container .pagesize a {
  border-bottom: 1px solid #fff;
  color: #fff;
}
.cookie-container .pagesize a:hover {
  border-bottom-color: transparent;
}
.cookie-container .cookie-btn {
  border-radius: 4px;
  border: 1px solid #fff;
  padding: 10px;
  color: #ffffff;
  min-width: 80px;
  text-align: center;
  margin-left: 16px;
}
.cookie-container .cookie-btn:hover {
  background-color: #313131;
  border-color: #313131;
}
@media all and (max-width: 1000px) {
  .cookie-container .pagesize {
    padding: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cookie-container .cookie-btn {
    margin: 16px 0 0;
  }
}

/* common use */
.tL {
  text-align: left;
}

.tR {
  text-align: right;
}

.tC {
  text-align: center;
}

.vM {
  vertical-align: middle;
}

.tN {
  font-weight: normal;
}

.tM {
  font-weight: 500;
}

.tLight {
  font-weight: 300;
}

.tB {
  font-weight: bold;
}

.fL {
  float: left;
}

.fR {
  float: right;
}

.clr {
  clear: both;
}

.web {
  display: block;
}

.mobile {
  display: none;
}

.w-break {
  display: block;
}

@media all and (max-width: 768px) {
  .web {
    display: none;
  }
  .mobile {
    display: block;
  }
  .m-tL {
    text-align: left;
  }
  .w-break {
    display: inline-block;
  }
}
/*字體大小*/
.fsize-xs {
  font-size: 12px !important;
}

.fsize-s {
  font-size: 14px !important;
}

.fsize-m {
  font-size: 16px !important;
}

.fsize-ml {
  font-size: 18px !important;
}

.fsize-l {
  font-size: 20px !important;
}

.fsize-xl {
  font-size: 22px !important;
}

.fsize-2xl {
  font-size: 24px !important;
}

.fsize-3xl {
  font-size: 36px;
}

.fsize-4xl {
  font-size: 50px;
  line-height: 50px;
}

/*行高*/
.lineH-2 {
  line-height: 2rem;
}

/*長度*/
.width-70 {
  width: 70px;
}

.width-100 {
  width: 100px !important;
  min-width: 100px !important;
}

.width-150 {
  width: 150px !important;
}

.width-200 {
  width: 200px !important;
  min-width: 200px !important;
}

.width-220 {
  width: 220px !important;
}

.width-500 {
  max-width: 500px !important;
}

.width-half {
  min-width: 50% !important;
}

.width-full {
  width: 100% !important;
}

@media all and (max-width: 768px) {
  .width-70, .width-100, .width-150, .width-200, .width-220, .width-half {
    width: 100% !important;
  }
  img.width-100 {
    width: 100px !important;
  }
}
/*間距*/
.Mb-0 {
  margin-bottom: 0 !important;
}

.Mb-05 {
  margin-bottom: 8px !important;
}

.Mb-08 {
  margin-bottom: 12.8px !important;
}

.Mb-1 {
  margin-bottom: 16px !important;
}

.Mb-15 {
  margin-bottom: 24px !important;
}

.Mb-2 {
  margin-bottom: 32px !important;
}

.Mb-25 {
  margin-bottom: 40px !important;
}

.Mb-3 {
  margin-bottom: 48px;
}

.Mr-0 {
  margin-right: 0 !important;
}

.Mr-05 {
  margin-right: 8px;
}

.Mr-1 {
  margin-right: 16px;
}

.Ml-0 {
  margin-left: 0px !important;
}

.Ml-05 {
  margin-left: 8px;
}

.Mt-05 {
  margin-top: 8px;
}

.M-auto {
  margin: 0 auto;
}

/*內距*/
.padd-0 {
  padding: 0 !important;
}

.padd-1 {
  padding: 16px !important;
}

.Pt-2 {
  padding-top: 32px;
}

.paddL-1 {
  padding-left: 16px !important;
}

.paddRL-05 {
  padding-right: 8px;
  padding-left: 8px !important;
}

.paddRL-1 {
  padding-right: 16px;
  padding-left: 16px !important;
}

.paddRL-2 {
  padding-right: 32px;
  padding-left: 32px !important;
}

.paddRL-3 {
  padding-right: 48px;
  padding-left: 48px !important;
}

.paddB-0 {
  padding-bottom: 0 !important;
}

.paddB-1 {
  padding-bottom: 16px !important;
}

@media all and (max-width: 768px) {
  .m-fsize-xs {
    font-size: 12px !important;
  }
  .m-fsize-s {
    font-size: 14px !important;
  }
  .m-fsize-m {
    font-size: 16px !important;
  }
  .m-Mb-0 {
    margin-bottom: 0 !important;
  }
  .m-Mb-05 {
    margin-bottom: 8px !important;
  }
  .m-Mb-1 {
    margin-bottom: 16px !important;
  }
  .m-Mb-15 {
    margin-bottom: 24px !important;
  }
  .m-Mt-05 {
    margin-top: 8px !important;
  }
  .m-Mr-0 {
    margin-right: 0 !important;
  }
  .m-Ml-0 {
    margin-left: 0 !important;
  }
  /*內距*/
  .m-padd-0 {
    padding: 0 !important;
  }
  .m-padd-1 {
    padding: 16px !important;
  }
  .m-paddT-0 {
    padding-top: 0 !important;
  }
  .m-tC {
    text-align: center;
  }
}
/*-------------------------------- 共用 --------------------------------*/
/*area*/
.mainArea {
  position: relative;
}

/*----------------- element -----------------*/
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex.top {
  align-items: stretch;
}
.flex.s-around {
  justify-content: space-around;
}
.flex.center {
  justify-content: center;
}
.flex.flex-end {
  align-items: flex-end;
}
.flex.noWrap {
  flex-wrap: nowrap;
}
.flex.right {
  justify-content: right;
}
@media all and (max-width: 1000px) {
  .flex {
    flex-wrap: wrap;
  }
  .flex.m-center {
    justify-content: center;
    align-items: center;
  }
  .flex.m-wrap {
    flex-wrap: wrap;
  }
}
@media all and (max-width: 768px) {
  .flex.m-block {
    display: block;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.noFlex {
  display: block;
}

.flex-left {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.noWrap {
  flex-wrap: nowrap !important;
}
.noWrap .tit {
  white-space: nowrap;
}

.align-top {
  align-items: flex-start !important;
}

.imgbox {
  position: relative;
  /*
  &:hover{overflow: hidden;
    img{ transform:scale(1.1,1.1);@extend %transition-time;}
  }*/
}
.imgbox.radius {
  border-radius: 4px;
  overflow: hidden;
}
.imgbox.radius:hover {
  overflow: hidden;
}
.imgbox.radius:hover img {
  transform: scale(1.1, 1.1);
}
.imgbox img {
  display: block;
  max-width: 100%;
}
.imgbox a {
  display: block;
  padding: 0;
}
.imgbox a.cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.imgbox.full img {
  width: 100%;
}
.imgbox.tC img {
  margin: 0 auto;
}

picture a {
  /*
  &:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }*/
}
picture a.cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

hr.line {
  border: none;
  border-bottom: 1px solid #d2d2d2;
}

@media all and (max-width: 768px) {
  .m-hr {
    border-bottom: 1px solid #d2d2d2;
  }
  .m-wrap {
    flex-wrap: wrap;
  }
  .noWrap.m-wrap {
    flex-wrap: wrap !important;
  }
  .m-noflex {
    display: block !important;
  }
  .m-flex-center {
    justify-content: center;
  }
  .m-block {
    display: block;
  }
}
/*color*/
.color-white {
  color: #ffffff;
}

.color-red {
  color: #bb1100 !important;
}

.color-red02 {
  color: #e71a10 !important;
}

.color-lightGrey {
  color: #f5f5f5;
}

.color-grey {
  color: #6e6e6e;
}

.color-dark {
  color: #313131 !important;
}

.color-black {
  color: #000 !important;
}

.color-orange {
  color: #e49347;
}

.color-blue {
  color: #0c6cc8;
}

.color-darkblue {
  color: #04325d;
}

/*bg*/
.bg-white {
  background-color: #ffffff;
}

.bg-red {
  background-color: #bb1100;
}

.bg-red02 {
  background-color: #e71a10;
}

.bg-lightGrey {
  background-color: #f5f5f5;
}

.bg-lightGrey2 {
  background-color: #eee;
}

.bg-grey {
  background-color: #6e6e6e;
}

.bg-orange {
  background-color: #e49347;
}

.bg-lightorange {
  background-color: #fffaf6;
}

.bg-lightorange02 {
  background-color: #fff2e5;
}

/*link*/
.txtlink {
  border-bottom: 1px solid;
  color: #bb1100;
  border-color: #bb1100;
}
.txtlink.ylw {
  color: #e49347;
  border-color: #e49347;
}
.txtlink:hover {
  border-color: transparent;
}

/*a*/
.adBx {
  border-radius: 4px;
  overflow: hidden;
}
.adBx.w-mid {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.adBx a.cover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

p, div, span, a {
  word-break: normal;
}

.formBx li .tit {
  width: 140px;
}

.formBx.formBx-flex li .con {
  width: calc(100% - 140px);
}
@media (max-width: 768px) {
  .formBx.formBx-flex li .con {
    width: 100%;
  }
}

/*內頁*/
section.titSet {
  position: relative;
  overflow: hidden;
  padding: 35px 0;
  background: #f5f5f5;
}
section.titSet::before {
  position: absolute;
  right: 0;
  top: -65px;
  display: block;
  width: 265px;
  height: 230px;
  background: url(../images/ic-logo.png) center center no-repeat;
  background-size: 100% auto;
  content: "";
}
section.conSet {
  padding: 0 0 35px 0;
  margin: -25px 0 0 0;
  z-index: 5;
}
section.conSet .pagesize {
  display: flex;
  align-items: flex-start;
}
section.conSet .pagesize::after {
  display: block;
  clear: both;
  content: "";
}
@media all and (max-width: 768px) {
  section.conSet .pagesize {
    flex-wrap: wrap;
  }
}
section.conNorm {
  padding: 32px 0;
}
@media all and (max-width: 768px) {
  section.titSet {
    padding: 20px 0;
  }
  section.titSet::before {
    right: -50px;
  }
  section.conSet {
    padding: 0 0 15px 0;
  }
  section.conNorm {
    padding: 16px 0;
  }
}
section.conSet.full {
  background-color: #ffffff;
  padding: 30px 0 0.5px;
  box-shadow: 0 -4px 4px rgba(153, 153, 153, 0.2);
  -webkit-box-shadow: 0 -4px 4px rgba(153, 153, 153, 0.2);
  margin: 0;
  position: relative;
}
section.conSet.full .pagesize {
  display: block;
}
section.conSet.full .pagesize::after {
  display: block;
  clear: both;
  content: "";
}
@media all and (max-width: 768px) {
  section.conSet.full {
    padding: 16px 0 0.5px;
  }
}

/*麵包屑*/
.breadcrumb {
  margin: 0 0 20px 0;
}
.breadcrumb li {
  display: inline-block;
  margin: 0 0 0 -6px;
}
.breadcrumb li.index {
  margin: 0;
}
.breadcrumb li.index a {
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url(../images/btn-ic-home.png) center center no-repeat;
  background-size: 100% auto;
  filter: grayscale(100%) brightness(300%);
}
.breadcrumb li.index a:hover {
  filter: none;
}
.breadcrumb li::after {
  transform: rotate(270deg);
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  vertical-align: middle;
  background: url(../images/arrow-grey.svg) center center no-repeat;
  background-size: auto 100%;
  content: "";
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb li a {
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
  color: #a0a0a0;
}
.breadcrumb li a:hover {
  color: #bb1100;
}
@media all and (max-width: 768px) {
  .breadcrumb {
    margin: 0 0 10px 0;
  }
}

/*左側選單*/
.sideMenu {
  flex: 0 0 auto;
  width: 250px;
  margin: 0 40px 0 0;
  box-sizing: border-box;
  border: #d6d6d6 solid 1px;
}
.sideMenu .main {
  min-height: 50px;
  padding: 15px 36px 13px 20px;
  line-height: 20px;
  color: #fff;
  font-size: 18px;
  background: #313131;
}
.sideMenu ul {
  list-style: none;
  display: block;
}
.sideMenu ul > li {
  border-bottom: #d6d6d6 solid 1px;
}
.sideMenu ul > li:last-child {
  border: none;
}
.sideMenu ul > li > a {
  position: relative;
  display: block;
  min-height: 50px;
  padding: 15px 36px 13px 20px;
  line-height: 20px;
  color: #313131;
  font-size: 16px;
  border-left: #fff solid 4px;
}
.sideMenu ul > li > a:hover, .sideMenu ul > li.on > a {
  color: #bb1100;
  border-left: #bb1100 solid 4px;
}
.sideMenu ul > li > a::after {
  display: none;
  position: absolute;
  right: 14px;
  top: 18px;
  width: 15px;
  height: 15px;
  background: url(../images/arrow-grey.svg) center center no-repeat;
  background-size: auto 100%;
  content: "";
}
.sideMenu ul > li.menuThi > a::after {
  display: block;
}
.sideMenu ul > li.on > a::after {
  transform: rotate(180deg);
}
.sideMenu ul > li.on ol {
  display: block;
}
.sideMenu ol {
  display: none;
  padding: 20px 0;
  list-style: none;
  background: #f5f5f5;
  border-top: #d6d6d6 solid 1px;
}
.sideMenu ol li {
  margin: 0 0 15px 0;
  padding: 0 20px 0 30px;
}
.sideMenu ol li:last-child {
  margin: 0;
}
.sideMenu ol li a {
  padding: 0;
}
.sideMenu ol li a:hover, .sideMenu ol li.on a {
  color: #bb1100;
}
@media all and (max-width: 1000px) {
  .sideMenu {
    width: 210px;
    margin: 0 20px 0 0;
  }
}
@media all and (max-width: 768px) {
  .sideMenu {
    width: 100%;
    margin: 0 0 20px;
  }
  .sideMenu .main {
    position: relative;
    padding-right: 50px;
  }
  .sideMenu .main::before {
    content: "";
    width: 50px;
    height: 50px;
    background: url(../images/arrow-grey.svg) center no-repeat;
    background-size: 24px;
    position: absolute;
    top: 0;
    right: 0;
    filter: grayscale(100%) brightness(1000%);
    transition-duration: 0.3s;
  }
  .sideMenu ul {
    display: none;
  }
  .sideMenu .main.menu-open + ul {
    display: block;
  }
  .sideMenu .main.menu-open::before {
    transform: rotate(180deg);
    transition-duration: 0.3s;
  }
}

/*右側內容*/
.sideMenu + .conTxt {
  flex: 1 1 auto;
  width: 870px;
}
@media all and (max-width: 1024px) {
  .sideMenu + .conTxt {
    width: calc(100% - 300px);
  }
}
@media all and (max-width: 768px) {
  .sideMenu + .conTxt {
    width: 100%;
  }
}

/*編輯器*/
.editTxt ul, .editTxt ol {
  margin-left: 20px;
  list-style: disc;
}
.editTxt ul li, .editTxt ol li {
  list-style: disc;
}

.conTxt {
  width: 100%;
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  box-sizing: border-box;
  /*select, input{ height:40px; line-height:40px; border:#d6d6d6 solid 1px; border-radius:4px;}*/
}
.conTxt .titSec {
  margin: 0 0 10px 0;
  font-weight: bold;
}
.conTxt .img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
  line-height: 0;
}
.conTxt .videobox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 24px;
}
.conTxt .videobox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.conTxt select {
  font-weight: normal;
  font-size: 1rem;
  position: relative;
}
.conTxt .comTxt {
  padding: 30px 40px;
}
.conTxt .comTxt .title {
  margin: 0 0 25px 0;
  line-height: 36px;
  color: #bb1100;
  font-weight: bold;
  font-size: 1.1rem;
  /*display: flex; justify-content: space-between; flex-wrap: wrap;*/
}
.conTxt .comTxt .title .functionR {
  display: inline-block;
}
.conTxt .comTxt ol {
  list-style: decimal;
  margin-left: 20px;
}
.conTxt .functionR {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.conTxt .boxSet {
  margin: 0 0 25px 0;
}
.conTxt .boxSet:last-child {
  margin: 0;
}
.conTxt .refundSet {
  text-align: center;
}
.conTxt .refundSet .btn {
  display: inline-block;
  padding: 0 50px;
  text-align: center;
  border-right: 1px solid #d2d2d2;
}
.conTxt .refundSet .btn::before {
  display: block;
  content: "";
  width: 200px;
  height: 95px;
  margin: 0 auto 10px auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
.conTxt .refundSet .btn:last-child {
  border: none;
}
.conTxt .refundSet .btn p {
  margin: 0 0 10px 0;
}
.conTxt .refundSet .btn a {
  display: block;
  width: 150px;
  height: 30px;
  margin: 0 auto;
  text-align: center;
  line-height: 30px;
  color: #e71a10;
  border: 1px solid #e71a10;
  border-radius: 30px;
}
.conTxt .refundSet .sty01::before {
  background-image: url(../images/logo_FBM_02.gif);
}
.conTxt .refundSet .sty02::before {
  background-image: url(../images/logo.png);
  background-size: 60% auto;
}
@media all and (max-width: 1024px) {
  .conTxt .comTxt {
    padding: 20px;
  }
  .conTxt .refundSet .btn {
    display: block;
    padding: 0 0 30px 0;
    border-right: none;
    border-bottom: 1px solid #d2d2d2;
  }
  .conTxt .refundSet .btn:last-child {
    padding: 0;
  }
}
@media all and (max-width: 768px) {
  .conTxt {
    width: 100%;
    box-sizing: border-box;
  }
  .conTxt .title,
  .conTxt img {
    margin-bottom: 10px;
  }
  .conTxt .comTxt {
    padding: 20px 15px;
  }
  .conTxt .comTxt .title {
    margin-bottom: 10px;
  }
  .conTxt .functionR {
    float: none;
    width: auto;
    justify-content: center;
  }
}

/*日曆icon*/
.cal {
  position: relative;
}
.cal select,
.cal input {
  padding-left: 30px;
  font-weight: normal;
  font-size: 1rem;
}
.cal select::-webkit-input-placeholder,
.cal input::-webkit-input-placeholder {
  color: #666;
}
.cal::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/ic-cal.svg) 0 0 no-repeat;
  background-size: 20px;
  position: absolute;
  top: 9px;
  left: 5px;
}

/*右側內容-董事長的話*/
.ceoTxt .tit {
  display: block;
  text-align: center;
}
.ceoTxt p {
  margin: 0 0 25px 0;
  line-height: 30px;
  text-align: justify;
  font-size: 15px;
}
.ceoTxt p:last-child {
  margin: 0;
}
@media all and (max-width: 768px) {
  .ceoTxt p {
    margin: 0 0 10px 0;
  }
}

/*表格-icon說明*/
.side-info {
  margin-bottom: 16px;
}
.side-info.flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media all and (max-width: 768px) {
  .side-info {
    margin-bottom: 10px;
  }
  .side-info.flex-end.-center {
    justify-content: center;
  }
}

/*表格樣式 - 小網scrollbar*/
.tableBox table {
  width: 100%;
  /* white-space: nowrap; 不換行*/
}
@media all and (max-width: 1000px) {
  .tableBox table {
    width: 1000px;
  }
}
.tableBox table th {
  padding: 10px 15px;
  text-align: center;
  color: #fff;
  background: #313131;
  border-bottom: #bb1100 solid 2px;
  font-weight: 500;
}
.tableBox table td {
  padding: 10px 15px;
  border-bottom: #d6d6d6 solid 1px;
  position: relative;
  z-index: 99;
}
.tableBox table td.padd-0 {
  padding: 0;
  border-bottom: none;
}
.tableBox table.borderR th {
  border-bottom: #626262 solid 1px;
  border-right: #bb1100 solid 2px;
}
.tableBox tr.border th {
  border-right: 1px solid #626262;
}
.tableBox tr.border td {
  border-right: 1px solid #d2d2d2;
  padding: 10px 5px;
}
.tableBox tr.border > th:first-child {
  border-left: 1px solid #626262;
}
.tableBox tr.border > td:first-child {
  border-left: 1px solid #d2d2d2;
}
.tableBox tr.tC td {
  text-align: center;
}
.tableBox tr.tC td img {
  vertical-align: middle;
}
.tableBox tr.veritcar-lr td {
  vertical-align: top;
  text-align: center;
  border-bottom: none;
  line-height: 1rem;
  padding-bottom: 25px;
}
.tableBox tr.veritcar-lr td .eng-txt {
  display: block;
  line-height: 1rem;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: bold;
}
.tableBox tr.veritcar-lr td .note {
  text-align: center;
  font-size: 0.875rem;
  position: absolute;
  bottom: 5px;
  right: 0;
  left: 0;
}
.tableBox tr.tr-focus {
  box-shadow: 0 0 5px rgba(187, 17, 0, 0.6);
  z-index: 9;
  position: relative;
}
.tableBox .details-tb {
  background-color: #fffaf6;
  padding: 10px 30px;
  position: relative;
}
.tableBox .details-tb th {
  color: #434343;
  font-size: 1.1rem;
  background: transparent;
  border: none;
  font-weight: 500;
  position: relative;
  text-align: left;
  padding: 10px;
}
.tableBox .details-tb th::before {
  content: "";
  height: 1px;
  left: 10px;
  right: 10px;
  bottom: 1px;
  background-color: #d2d2d2;
  position: absolute;
}
.tableBox .details-tb td {
  font-size: 1rem !important;
  padding: 5px 10px;
  border: none;
  color: #626262;
}
.tableBox .details-tb tr {
  position: relative;
}
.tableBox .details-tb tr.line-top {
  border-top: none;
}
.tableBox .details-tb tr.line-top::before {
  content: "";
  height: 1px;
  left: 10px;
  right: 10px;
  top: 1px;
  background-color: #d2d2d2;
  position: absolute;
}
.tableBox .open-tb {
  /*次層tr開合*/
  width: 20px;
  height: 20px;
  display: block;
  background: url(../images/arrow-dark.svg) center center no-repeat;
  background-size: auto 100%;
  margin: 0 auto;
}
.tableBox .open-tb:hover {
  transform: rotate(-180deg);
}
.tableBox .hide-tb {
  display: none;
}
.tableBox tr {
  position: relative;
}
.tableBox tr.current {
  background-color: #fff2e5;
  border-bottom: 2px solid #e49347;
}
.tableBox tr.current .open-tb {
  transform: rotate(-180deg);
}
.tableBox tr.current + .hide-tb {
  display: contents;
  width: 100%;
  position: relative;
}
.tableBox tr.current + .hide-tb:hover::after {
  display: none;
}
.tableBox tr.line-top {
  border-top: 1px solid #d2d2d2;
}
.tableBox tr.line-top td {
  padding-top: 15px;
}
.tableBox tr.paddB-1 td {
  padding-bottom: 15px;
}
.tableBox tr.paddTB-12 td {
  padding: 19.2px 10px;
}
.tableBox > table > tbody > tr:hover {
  box-shadow: 0 0 5px rgba(187, 17, 0, 0.6);
  z-index: 999;
  position: relative;
}
.tableBox > table > tbody > tr:first-child:hover {
  box-shadow: none;
}
.tableBox .sideBtn {
  color: #bb1100;
  font-size: 1.1rem;
  line-height: 20px;
  padding-right: 20px;
  background: url(../images/arrow-more.svg) right 0 no-repeat;
  background-size: 20px;
  display: block;
}
.tableBox .sideBtn:hover {
  background-position: left 0;
  padding: 0 0 0 20px;
}
@media print {
  .tableBox {
    overflow: hidden;
  }
  .tableBox table {
    width: 100%;
    /*white-space: nowrap; 不換行*/
    font-size: 1rem;
  }
  .tableBox table th {
    padding: 5px;
    min-width: 4.4rem;
  }
  .tableBox table td {
    padding: 5px;
  }
  .tableBox table tr.paddTB-12 td {
    padding: 5px !important;
  }
  .tableBox table tr.fsize-ml {
    font-size: 1rem !important;
  }
  .tableBox table p.fsize-ml {
    font-size: 1rem !important;
  }
  .tableBox table .details-tb {
    padding: 10px;
  }
}
@media print and (max-width: 1000px) {
  .tableBox table {
    width: 100%;
  }
}
@media all and (max-width: 1024px) {
  .tableBox {
    overflow: auto;
  }
}

/*表格樣式 - RWD*/
.tableRwd table {
  width: 100%;
}
.tableRwd th {
  padding: 10px 15px;
  text-align: center;
  color: #fff;
  background: #313131;
  border-bottom: #bb1100 solid 2px;
  font-weight: 500;
}
.tableRwd td {
  padding: 10px 15px;
  border-bottom: #d6d6d6 solid 1px;
  text-align: center;
  position: relative;
  word-break: break-all;
  word-wrap: break-word;
}
.tableRwd tr {
  position: relative;
}
.tableRwd tr.border th {
  border-right: 1px solid #626262;
}
.tableRwd tr.border td {
  border-right: 1px solid #d2d2d2;
  padding: 10px 5px;
}
.tableRwd tr.border > th:first-child {
  border-left: 1px solid #626262;
}
.tableRwd tr.border > td:first-child {
  border-left: 1px solid #d2d2d2;
}
.tableRwd tr.tC td {
  text-align: center;
}
.tableRwd tr.tC td img {
  vertical-align: middle;
}
.tableRwd tr.web {
  display: table-row;
}
.tableRwd tr td {
  position: relative;
  z-index: 99;
}
.tableRwd tr.tr-focus {
  box-shadow: 0 0 5px rgba(187, 17, 0, 0.6);
  z-index: 9;
  position: relative;
}
.tableRwd > table > tbody > tr:hover {
  box-shadow: 0 0 5px rgba(187, 17, 0, 0.6);
  z-index: 9;
  position: relative;
}
@media all and (max-width: 768px) {
  .tableRwd table thead {
    display: none;
  }
  .tableRwd table tbody > tr:first-child > td:first-child {
    padding-top: 0;
  }
  .tableRwd table tr {
    border-bottom: 1px solid #d2d2d2;
  }
  .tableRwd table tr > td {
    padding-left: 10px;
    padding-right: 10px;
  }
  .tableRwd table tr::after {
    display: none;
  }
  .tableRwd table tr.bg-lightGrey {
    background-color: #fff;
  }
  .tableRwd table tr > td:first-child {
    padding-top: 20px;
  }
  .tableRwd table tr > td:last-child {
    padding-bottom: 20px;
  }
  .tableRwd table tr.web {
    display: none;
  }
  .tableRwd table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
    position: relative;
    border-bottom: none;
    text-align: left;
  }
  .tableRwd table td::before {
    content: attr(data-title);
    display: inline-block;
    width: auto;
    min-width: 20%;
    padding-left: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1b29;
    word-break: break-all;
    background: url(../images/ic-dot-r.svg) 0 5px no-repeat;
    background-size: 10px;
  }
  .tableRwd > table > tbody > tr:hover {
    box-shadow: none;
  }
}

/*無資料*/
.no-data {
  background-color: #f4f4f4;
  text-align: center;
  padding: 16px;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.no-data p {
  color: #6e6e6e;
  font-size: 1.1rem;
}
.no-data .warn {
  filter: grayscale(100%) brightness(200%);
  margin: 0 5px 0 0;
}
@media all and (max-width: 768px) {
  .no-data {
    text-align: left;
  }
}

/*按鈕樣式*/
.btn_download {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 auto;
  background: url(../images/btn-ic-download.png) center center no-repeat;
  background-size: 100% auto;
}
.btn_download:hover {
  opacity: 0.5;
}

/*活動紀錄樣式*/
.activityBox {
  position: relative;
}
.activityBox img {
  object-fit: cover;
  margin: 0;
}
.activityBox .swiperOn {
  overflow: hidden;
  margin: 0 0 20px 0;
}
.activityBox .swiperOn .txt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 20px;
  color: #fff;
  background: rgba(49, 49, 49, 0.7);
}
.activityBox .swiperOn .txt .date {
  width: 100px;
  height: 30px;
  margin: 0 0 10px 0;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  background: #000;
  border-radius: 30px;
}
.activityBox .swiperOn .txt p {
  line-height: 26px;
  text-align: justify;
}
.activityBox .swiperOn .swiper-button-next,
.activityBox .swiperOn .swiper-button-prev {
  top: auto;
  bottom: 55px;
}
.activityBox .swiperOn .swiper-button-next {
  right: -20px;
}
.activityBox .swiperOn .swiper-button-prev {
  left: -20px;
}
.activityBox .swiperAll {
  position: relative;
  overflow: hidden;
}
.activityBox .swiperAll .date {
  height: 28px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  background: #000;
  z-index: 1;
}
.activityBox .swiperAll .swiper-slide {
  border-bottom: #000 solid 2px;
  cursor: pointer;
}
.activityBox .swiperAll .swiper-slide::before {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: "";
}
.activityBox .swiperAll .swiper-slide-thumb-active {
  border-bottom: #bb1100 solid 2px;
}
.activityBox .swiperAll .swiper-slide-thumb-active::before {
  display: none;
}
@media all and (max-width: 768px) {
  .activityBox .swiperOn {
    margin: 0;
  }
  .activityBox .swiperOn .txt {
    position: static;
    padding: 15px 0;
    color: #313131;
    background: #fff;
  }
}

/*問題QA樣式*/
.qaTxt {
  margin: 0;
}
.qaTxt .list {
  padding: 15px 0 0 0;
  border-bottom: #d6d6d6 solid 1px;
}
.qaTxt .list > div {
  position: relative;
  margin: 0 0 15px 0;
}
.qaTxt .list > div::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  background: #cccccc;
  border-radius: 100%;
}
.qaTxt .list .q {
  padding: 5px 40px 0 40px;
  cursor: pointer;
}
.qaTxt .list .q::before {
  content: "Q";
}
.qaTxt .list .q::after {
  position: absolute;
  right: 0;
  top: 10px;
  display: block;
  width: 15px;
  height: 15px;
  background: url(../images/arrow-grey.svg) center center no-repeat;
  background-size: auto 100%;
  content: "";
}
.qaTxt .list .a {
  display: none;
  padding: 5px 0 0 40px;
}
.qaTxt .list .a .img {
  margin: 0 0 20px 0;
  border: #d6d6d6 solid 1px;
}
.qaTxt .list .a p {
  margin: 0 0 10px 0;
  line-height: 30px;
  text-align: justify;
  font-size: 15px;
}
.qaTxt .list .a p:last-child {
  margin: 0;
}
.qaTxt .list .a::before {
  content: "A";
}
.qaTxt .list.on .q {
  color: #e49347;
}
.qaTxt .list.on .q::before {
  background: #e49347;
}
.qaTxt .list.on .q::after {
  transform: rotate(180deg);
}
.qaTxt .list.on .a::before {
  background: #efbe91;
}
@media all and (max-width: 768px) {
  .qaTxt .list {
    padding: 10px 0 0 0;
  }
}

/*網站導覽開合樣式*/
.siteTxt {
  margin: 0;
}
.siteTxt .list {
  padding: 15px 0 0 0;
  border-bottom: #d6d6d6 solid 1px;
}
.siteTxt .list > div {
  position: relative;
  margin: 0 0 15px 0;
}
.siteTxt .list > div::before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  background: #cccccc;
  border-radius: 100%;
}
.siteTxt .list .site-tit {
  font-size: 1.25rem;
  font-weight: 500;
  color: #bb1100;
  padding: 5px 40px 0 0;
  width: 100%;
  cursor: pointer;
}
.siteTxt .list .site-tit::after {
  position: absolute;
  right: 0;
  top: 10px;
  display: block;
  width: 15px;
  height: 15px;
  background: url(../images/arrow-grey.svg) center center no-repeat;
  background-size: auto 100%;
  content: "";
}
.siteTxt .list .site-con {
  display: none;
  padding: 5px 0 0;
}
.siteTxt .list .site-con .img {
  margin: 0 0 20px 0;
  border: #d6d6d6 solid 1px;
}
.siteTxt .list .site-con p {
  margin: 0 0 10px 0;
  line-height: 30px;
  text-align: justify;
  font-size: 15px;
}
.siteTxt .list .site-con p:last-child {
  margin: 0;
}
.siteTxt .list.on .site-tit::after {
  transform: rotate(180deg);
}
@media all and (max-width: 768px) {
  .siteTxt .list {
    padding: 10px 0 0 0;
  }
}

/*紅點標題列表*/
.dot-red li {
  position: relative;
}
.dot-red .dot-tit {
  padding-left: 10px;
  color: #313131;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  margin-bottom: 10px;
}
.dot-red .dot-tit a {
  color: #313131;
}
.dot-red .dot-tit a:hover {
  color: #bb1100;
}
.dot-red .dot-tit::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #bb1100;
  position: absolute;
  top: 8px;
  left: 0;
}
.dot-red .sub-con {
  padding-left: 10px;
}
.dot-red .sub-link {
  display: flex;
  align-items: center;
}
.dot-red .sub-link a {
  display: inline-block;
  margin-right: 10px;
  padding-left: 10px;
  color: #313131;
  position: relative;
}
.dot-red .sub-link a::before {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #8f8f8f;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
}
.dot-red .sub-link a:hover {
  color: #bb1100;
}
.dot-red .sub-link > a:first-child {
  padding-left: 0;
}
.dot-red .sub-link > a:first-child::before {
  display: none;
}
@media all and (max-width: 768px) {
  .dot-red .sub-link {
    flex-wrap: wrap;
  }
  .dot-red .sub-link a {
    display: block;
    line-height: 2rem;
  }
}
.dot-red li + li {
  margin-top: 10px;
}
.dot-red.line {
  margin-bottom: 16px;
}
.dot-red.line li {
  border-bottom: 1px solid #dcdcdc;
  padding: 16px 0;
  margin-bottom: 0;
}
.dot-red.line li:hover {
  background-color: #fafafa;
}
@media all and (max-width: 768px) {
  .dot-red.line li:hover {
    background-color: transparent;
  }
}
.dot-red.line li + li {
  margin-top: 0;
}
.dot-red b {
  font-weight: bold;
  color: #bb1100;
}

/*表單樣式*/
.visTxt {
  overflow: hidden;
  padding: 30px 0;
  min-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 20px;
  background-repeat: no-repeat;
  background-position: 0 96%;
  background-size: 100% auto;
  border-radius: 4px 4px 0 0;
}
.visTxt.sty01 {
  /*聯絡我們*/
  background-image: url(../images/bg-visTxt_1.jpg);
}
.visTxt.sty02 {
  /*Email服務申請*/
  background-image: url(../images/bg-visTxt_2.jpg);
}
.visTxt.sty03 {
  /*帳號設定*/
  background-image: url(../images/bg-visTxt_3.jpg);
  background-position: center 0;
}
.visTxt.sty04 {
  /*發票查詢*/
  background-image: url(../images/bg-visTxt_4.jpg);
  background-position: center 0;
}
.visTxt.sty05 {
  /*eTag自助*/
  background-image: url(../images/bg-visTxt_5.jpg);
  background-position: center 0;
}
@media all and (max-width: 768px) {
  .visTxt {
    padding: 20px 15px;
    font-size: 20px;
    line-height: 30px;
    background-size: cover;
  }
  .visTxt br {
    display: none;
  }
}

.inputSet {
  width: 700px;
  margin: 0 auto;
}
.inputSet img {
  max-width: 100%;
  height: auto;
}
.inputSet.wide {
  width: 100%;
}
.inputSet .add-code {
  background-color: #fffaf6;
  border-radius: 4px;
  border: 1px solid #e49347;
  padding: 10px;
  margin-bottom: 16px;
}
@media all and (max-width: 768px) {
  .inputSet {
    width: 100%;
  }
}

.popupBx .inputSet {
  width: 100%;
}
.popupBx form {
  position: relative;
}

/*最新消息 - 內容*/
.newsList li {
  padding: 17.6px 0;
  position: relative;
  display: flex;
  border-bottom: 1px solid #ddd;
  width: 100%;
}
.newsList li .date {
  color: #6e6e6e;
  font-size: 1rem;
  margin-right: 10px;
  min-width: 100px;
}
.newsList li h4 {
  color: #1a1b29;
  font-size: 1.125rem;
  width: 100%;
}
.newsList li h4.focus {
  color: #bb1100;
}
.newsList li .img {
  margin-right: 20px;
  min-width: 200px;
}
.newsList li .img img {
  margin: 0;
}
.newsList li .txt h4 {
  margin-bottom: 16px;
}
.newsList li a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
}
.newsList li:hover h4 {
  color: #e49347;
}
@media all and (max-width: 768px) {
  .newsList li {
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .newsList li .date {
    margin-bottom: 6px;
    margin-right: 0;
    width: 100%;
  }
  .newsList li .txt h4 {
    margin-bottom: 10px;
  }
  .newsList li .img {
    margin: 0 0 10px;
    width: 100%;
    min-width: 100%;
  }
}
.newsList > li:first-child {
  padding-top: 0;
}

.newsTxt {
  margin-bottom: 16px;
}
.newsTxt .tit {
  margin: 0 0 10px;
}
.newsTxt .date {
  font-size: 0.9rem;
  color: #8f8f8f;
}

/*欄位排列*/
.m-two-col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.m-two-col li {
  padding-right: 10px;
}
.m-two-col img {
  vertical-align: middle;
}
@media all and (max-width: 768px) {
  .m-two-col {
    flex-wrap: wrap;
  }
  .m-two-col li {
    min-width: calc(50% - 10px);
    margin-bottom: 10px;
  }
}

/*服務據點 - popup*/
.half-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
}
.half-col > div {
  width: calc(50% - 8px);
}
@media all and (max-width: 768px) {
  .half-col > div {
    width: 100%;
  }
}

.e-tag {
  width: 60px;
  height: 60px;
  background: url(../images/map_pin_etag.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: 165px;
  right: 10px;
  z-index: 999;
}
@media all and (max-width: 768px) {
  .e-tag {
    width: 40px;
    height: 40px;
  }
}

.feeBx {
  width: 100%;
}
.feeBx-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1.4rem;
}
.feeBx-cost {
  background-color: #d7effb;
  text-align: center;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.feeBx-cost span {
  width: 50%;
}
.feeBx-day {
  font-size: 0.8rem;
}

.depot-info {
  border: 1px solid #d2d2d2;
  padding: 16px;
}
.depot-info .depot-type {
  color: #e49347;
  border: 1px solid #e49347;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 56px;
  margin-right: 10px;
  font-weight: 500;
}
.depot-info .depot-floor {
  background-color: #f5f5f5;
  color: #313131;
  padding: 0 10px;
  line-height: 34px;
  height: 34px;
  display: inline-block;
}

.depot-img {
  position: relative;
  width: 426px;
  height: 240px;
  overflow: hidden;
  background: #fff url(../images/img-default-car.png) center no-repeat;
  border: 1px solid #eee;
}
.depot-img .swiper-wrapper {
  display: flex;
  align-items: center;
}
.depot-img .swiper-slide {
  position: relative;
  width: 426px;
  height: 240px;
}
.depot-img .swiper-slide .slide-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.depot-img .swiper-slide img {
  transform: scale(1, 1);
  transition: all 0.5s ease-out;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 20%;
  object-position: center 20%;
  width: 100%;
  height: 100%;
  vertical-align: inherit;
}
.depot-img .swiper-slide img:hover {
  transform: scale(1.1, 1.1);
}
.depot-img .swiper-pagination-fraction,
.depot-img .swiper-pagination-custom,
.depot-img .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  margin-left: -25%;
  text-align: center;
}
.depot-img .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border: transparent;
}
.depot-img .swiper-pagination-bullet-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
}
.depot-img .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
@media all and (max-width: 768px) {
  .depot-img .swiper-slide {
    width: 100%;
  }
  .depot-img .swiper-pagination-fraction,
  .depot-img .swiper-pagination-custom,
  .depot-img .swiper-container-horizontal > .swiper-pagination-bullets {
    margin-left: 0;
  }
}

.infoTitle {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}
.infoTitle span {
  background-color: #fff;
  padding: 0 20px;
  color: #313131;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
}
.infoTitle::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #d2d2d2;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

/*據點地圖*/
.mapBlock {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 560px;
  /*左邊區塊*/
  /*右邊區塊*/
}
.mapBlock_left {
  width: calc(100% - 440px);
}
.mapBlock_left .mapBx {
  position: relative;
  padding: 0;
  margin: 0;
  height: 100%;
}
.mapBlock_right {
  width: 440px;
  padding: 24px 30px 0;
  position: relative;
  /*上下陰影*/
}
.mapBlock_right .sults-more {
  color: #ffffff;
  background-color: #a0a0a0;
  text-align: center;
  line-height: 40px;
  border-radius: 20px;
  margin-bottom: 16px;
  display: block;
}
.mapBlock_right .sults-more:hover {
  background-color: #000;
}
.mapBlock_right .sultsBx {
  height: 480px;
  overflow-y: auto;
}
.mapBlock_right .sultsBx .map-sults li {
  padding: 16px 0;
  border-bottom: 1px solid #d2d2d2;
}
.mapBlock_right .sultsBx .map-sults li.focus-on {
  background-color: #fffaf6;
  padding-left: 10px;
}
.mapBlock_right .sultsBx .map-sults li.focus-on h4 a {
  background-position: left 0;
  padding: 0 0 0 20px;
}
.mapBlock_right .sultsBx .map-sults > li:last-child {
  border-bottom: none;
}
.mapBlock_right .sultsBx .map-sults h4 {
  margin-bottom: 10px;
}
.mapBlock_right .sultsBx .map-sults h4 a {
  color: #bb1100;
  font-size: 1.1rem;
  line-height: 20px;
  padding-right: 20px;
  background: url(../images/arrow-more.svg) right 0 no-repeat;
  background-size: 20px;
  display: block;
}
.mapBlock_right .sultsBx .map-sults h4 a:hover {
  background-position: left 0;
  padding: 0 0 0 20px;
}
.mapBlock_right .sultsBx .map-sults p {
  font-size: 0.875rem;
  color: #8f8f8f;
  line-height: 1.4rem;
}
.mapBlock_right .sultsBx .map-sults p.call {
  color: #e49347;
  padding-right: 20px;
  background: url(../images/ic-call.svg) right 2px no-repeat;
  background-size: 16px;
  display: inline-block;
}
.mapBlock_right::before, .mapBlock_right::after {
  content: "";
  width: 100%;
  height: 16px;
  position: absolute;
  left: 0;
  right: 0;
}
.mapBlock_right::before {
  top: 0;
  background: -moz-linear-gradient(top, rgba(221, 221, 221, 0.5) 0%, rgba(221, 221, 221, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(221, 221, 221, 0.5) 0%, rgba(221, 221, 221, 0) 100%);
}
.mapBlock_right::after {
  bottom: 0;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.01) 0%, rgba(211, 211, 211, 0.5) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.01) 0%, rgba(211, 211, 211, 0.5) 100%);
}
@media all and (max-width: 768px) {
  .mapBlock {
    flex-wrap: wrap;
    height: auto;
  }
  .mapBlock_left {
    width: 100%;
  }
  .mapBlock_left .mapBx {
    max-height: 200px;
  }
  .mapBlock_left iframe {
    max-height: 200px;
  }
  .mapBlock_right {
    width: 100%;
    padding: 20px 10px 0;
  }
  .mapBlock_right .sults-more {
    margin-bottom: 10px;
  }
  .mapBlock_right::before, .mapBlock_right::after {
    display: none;
  }
  .mapBlock_right .sultsBx {
    border-bottom: 1px solid #d2d2d2;
  }
}

.map-pin {
  width: 40px;
  height: 40px;
  position: absolute;
}
.map-pin img {
  width: 100%;
  height: auto;
}

/*文字內容 - 貼心提醒 注意事項*/
.wordBx {
  color: #313131;
}
.wordBx.bg-lightGrey {
  padding: 16px 32px;
  background-color: #f5f5f5;
}
.wordBx.bg-lightorange {
  padding: 16px 32px;
  background-color: #fffaf6;
  border-radius: 4px;
  border: 1px solid #e49347;
}
.wordBx-tit {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.wordBx-txt {
  padding-left: 14px;
  font-size: 1rem;
  line-height: 1.75rem;
}
.wordBx-txt + .wordBx-tit {
  margin-top: 16px;
}
.wordBx a {
  color: #bb1100;
  border-bottom: 1px solid #bb1100;
}
.wordBx a:hover {
  border-color: transparent;
}
.wordBx ol {
  list-style: decimal;
  margin-left: 20px;
}
@media all and (max-width: 768px) {
  .wordBx.bg-lightGrey, .wordBx.bg-lightorange {
    padding: 16px;
  }
  .wordBx-txt {
    padding-left: 0;
  }
}

/*搜尋結果*/
.search-go {
  width: 36px;
  height: 36px;
  background: #fff url(../images/ic-search.svg) center no-repeat;
  background-size: 30px;
  display: block;
}
.search-go:hover {
  filter: grayscale(500%);
}

.inputBx .search-go {
  position: absolute;
  top: 0;
  right: 0;
}

.searchpageTitle {
  color: #313131;
  padding: 0 0 24px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid #dcdcdc;
  text-align: center;
  font-size: 1.25rem;
}
@media all and (max-width: 768px) {
  .searchpageTitle {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}

.redTitle {
  color: #bb1100;
  margin-bottom: 16px;
}
.redTitle h3 {
  font-size: 1.25rem;
}

/*申請步驟*/
.apply-step {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 600px;
  margin: 32px auto 24px auto;
  position: relative;
}
.apply-step::before {
  content: "";
  height: 1px;
  background-color: #ebebeb;
  position: absolute;
  top: 24px;
  left: 50px;
  right: 50px;
}
.apply-step > .step:first-child::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 40px;
}
.apply-step > .step:last-child::before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 40px;
}
.apply-step .step {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.apply-step .step .sort {
  font-size: 1.5rem;
  line-height: 44px;
  width: 44px;
  height: 44px;
  background-color: #ebebeb;
  border-radius: 100%;
  margin-bottom: 10px;
  position: relative;
}
.apply-step .step p {
  font-size: 1rem;
  width: 100%;
  color: #1b1b1b;
}
.apply-step .step.on .sort {
  color: #fff;
  width: 50px;
  height: 50px;
  background-color: #e59347;
  line-height: 50px;
  font-weight: bold;
}
.apply-step .step.on p {
  color: #e59347;
  font-size: 1.125rem;
  font-weight: bold;
}
.apply-step .step.ed .sort {
  line-height: 0;
  font-size: 0;
  background: #fff url(../images/ic-check-o.svg) center no-repeat;
  background-size: 20px;
  border: 2px solid #e59347;
}
.apply-step .step.ed p {
  color: #e59347;
  font-size: 1rem;
  font-weight: 500;
}
@media all and (max-width: 768px) {
  .apply-step {
    width: 100%;
  }
}

/*其他設定*/
.other-setting {
  display: flex;
  justify-content: space-between;
}
.other-setting li {
  position: relative;
  border-radius: 4px;
  border: 1px solid #e71a10;
  max-width: 48%;
  padding: 10px 16px;
  text-align: left;
}
.other-setting li h3 {
  color: #e71a10;
  padding-left: 40px;
  font-size: 1.125rem;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}
.other-setting li h3.car {
  background: url(../images/ic-car-r.svg) 0 center no-repeat;
  background-size: 30px;
}
.other-setting li h3.user {
  background: url(../images/ic-user-r.png) 0 center no-repeat;
  background-size: 30px;
}
.other-setting li p {
  font-size: 1rem;
  font-weight: 500;
}
.other-setting li:hover {
  background-color: #e71a10;
  color: #ffffff;
}
.other-setting li:hover h3 {
  color: #ffffff;
}
.other-setting li:hover h3.car, .other-setting li:hover h3.user {
  filter: grayscale(100%) brightness(1000%);
}
@media all and (max-width: 768px) {
  .other-setting {
    flex-wrap: wrap;
  }
  .other-setting li {
    max-width: 100%;
    width: 100%;
  }
  .other-setting li + li {
    margin-top: 16px;
  }
}

/*帳號設定頁籤*/
.tab-setting {
  margin-bottom: 40px;
}
.tab-setting .swiper-wrapper {
  display: flex;
  justify-content: center;
}
.tab-setting .swiper-wrapper .swiper-slide {
  padding: 0 10px;
  position: relative;
  width: auto;
}
.tab-setting .swiper-wrapper .swiper-slide::before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #d2d2d2;
  top: 0;
  left: 0;
  position: absolute;
}
.tab-setting .swiper-wrapper .swiper-slide a {
  color: #6e6e6e;
  font-size: 1.375rem;
  text-align: center;
  min-width: 200px;
  line-height: 40px;
  padding-bottom: 20px;
  display: block;
}
.tab-setting .swiper-wrapper .swiper-slide a::before {
  content: "";
  height: 4px;
  background-color: #bb1100;
  bottom: 8px;
  left: 20px;
  right: 20px;
  position: absolute;
  display: none;
}
.tab-setting .swiper-wrapper .swiper-slide a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 10px 0 10px;
  border-color: #bb1000 transparent transparent transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  display: none;
}
.tab-setting .swiper-wrapper .swiper-slide.on a, .tab-setting .swiper-wrapper .swiper-slide:hover a {
  color: #bb1100;
  border-bottom-color: #bb1100;
}
.tab-setting .swiper-wrapper .swiper-slide.on a::before, .tab-setting .swiper-wrapper .swiper-slide.on a::after, .tab-setting .swiper-wrapper .swiper-slide:hover a::before, .tab-setting .swiper-wrapper .swiper-slide:hover a::after {
  display: block;
}
.tab-setting .swiper-wrapper > .swiper-slide:first-child {
  border-left: none;
}
.tab-setting .swiper-wrapper > .swiper-slide:first-child::before {
  display: none;
}
@media all and (max-width: 1000px) {
  .tab-setting {
    margin-bottom: 16px;
  }
  .tab-setting .swiper-wrapper {
    justify-content: start;
  }
  .tab-setting .swiper-wrapper .swiper-slide a {
    min-width: auto;
    padding: 0 20px 20px;
  }
}

/*車輛清單*/
.car-infolist li {
  border-radius: 4px;
  border: 1px solid #d2d2d2;
  padding: 5px 20px;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.car-infolist li p {
  font-size: 1.1rem;
  font-weight: 500;
}
.car-infolist li .car-name {
  display: flex;
  align-items: center;
}
.car-infolist li .ic-car {
  width: 50px;
  height: 50px;
  display: inline-block;
  filter: grayscale(100%) brightness(0.1);
  opacity: 0.4;
  margin-right: 10px;
}
.car-infolist li .ic-car.type01 {
  background: url(../images/ic-car-type01.svg) center no-repeat;
  background-size: contain;
}
.car-infolist li .ic-car.type02 {
  background: url(../images/ic-car-type02.svg) center no-repeat;
  background-size: contain;
}
.car-infolist li .ic-car.type03 {
  background: url(../images/ic-car-type03.svg) center no-repeat;
  background-size: contain;
}
.car-infolist li .ic-car.type04 {
  background: url(../images/ic-car-type04.svg) center no-repeat;
  background-size: contain;
}
.car-infolist li .sideBtn {
  font-weight: 500;
  color: #1a1b29;
  padding-right: 26px;
  background: url(../images/arrow-more.svg) right 0 no-repeat;
  background-size: 22px;
  filter: grayscale(100%) brightness(0.1);
}
.car-infolist li:hover {
  border-color: #e71a10;
  color: #e71a10;
}
.car-infolist li:hover .ic-car {
  filter: none;
  opacity: 1;
}
.car-infolist li:hover .sideBtn {
  color: #bb1100;
  filter: none;
  opacity: 1;
}
.car-infolist li a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
}
@media all and (max-width: 768px) {
  .car-infolist li {
    padding: 10px;
  }
  .car-infolist li .ic-car {
    width: 30px;
    height: 30px;
  }
}

/*新增車輛單*/
/*車輛清單*/
.car-addlist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.car-addlist li {
  border-radius: 4px;
  border: 1px solid #d2d2d2;
  padding: 5px 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: calc(20% - 16px);
  margin: 0 8px 16px;
}
.car-addlist li p {
  font-size: 1.1rem;
  font-weight: 500;
}
.car-addlist li .car-name {
  display: flex;
  align-items: center;
}
.car-addlist li .ic-car {
  width: 50px;
  height: 50px;
  display: inline-block;
  filter: grayscale(100%) brightness(0.1);
  opacity: 0.4;
  margin-right: 10px;
}
.car-addlist li .ic-car.type01 {
  background: url(../images/ic-car-type01.svg) center no-repeat;
  background-size: contain;
}
.car-addlist li .ic-car.type02 {
  background: url(../images/ic-car-type02.svg) center no-repeat;
  background-size: contain;
}
.car-addlist li .ic-car.type03 {
  background: url(../images/ic-car-type03.svg) center no-repeat;
  background-size: contain;
}
.car-addlist li .ic-car.type04 {
  background: url(../images/ic-car-type04.svg) center no-repeat;
  background-size: contain;
}
.car-addlist li:hover, .car-addlist li.on {
  border-color: #e71a10;
  color: #e71a10;
}
.car-addlist li:hover .ic-car, .car-addlist li.on .ic-car {
  filter: none;
  opacity: 1;
}
.car-addlist li a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
}
@media all and (max-width: 1000px) {
  .car-addlist li {
    width: calc(33% - 16px);
  }
}
@media all and (max-width: 768px) {
  .car-addlist li {
    padding: 10px;
    min-width: 100%;
    margin: 0 0 16px;
  }
  .car-addlist li .ic-car {
    width: 30px;
    height: 30px;
  }
}

/*車號資訊*/
.vehicleBx {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  font-weight: 500;
}
.vehicleBx > div {
  flex: 1 1 auto;
}
.vehicleBx .leftBx {
  width: 820px;
  margin-right: 60px;
}
.vehicleBx .leftBx .inputBx {
  border: 1px solid #1b1b1b;
  border-radius: 4px;
  overflow: hidden;
}
.vehicleBx .leftBx .inputBx input {
  border: none;
}
.vehicleBx .leftBx .inputBx .search-go {
  filter: grayscale(500%);
}
.vehicleBx .leftBx .inputBx .search-go:hover {
  filter: none;
}
.vehicleBx .rightBx {
  width: calc(100% - 870px);
  padding-top: 6px;
}
.vehicleBx .rightBx .car-total {
  color: #e49347;
  font-size: 1.25rem;
}
.vehicleBx .rightBx .car-total span {
  font-size: 1.875rem;
  font-weight: bold;
  margin-left: 10px;
}
.vehicleBx .rightBx .member-funcMenu {
  margin-top: 30px;
}
@media all and (max-width: 1440px) {
  .vehicleBx .leftBx {
    width: calc(100% - 370px);
    margin-right: 60px;
  }
  .vehicleBx .rightBx {
    width: 320px;
    padding-top: 0;
  }
  .vehicleBx .rightBx .member-funcMenu {
    margin-top: 36px;
  }
}
@media all and (max-width: 768px) {
  .vehicleBx {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .vehicleBx .leftBx,
  .vehicleBx .rightBx {
    width: 100%;
  }
  .vehicleBx .leftBx {
    margin: 16px 0;
  }
  .vehicleBx .rightBx {
    margin: 0;
  }
  .vehicleBx .rightBx .member-funcMenu {
    margin-top: 16px;
  }
}

/*會員資料*/
.memBx {
  display: flex;
  align-items: stretch;
  position: relative;
  width: 100%;
}
.memBx.flex-three > div {
  width: 370px;
  margin-left: 30px;
}
.memBx.flex-three > div:first-child {
  margin-left: 0;
}
.memBx.flex-three .txtinfo {
  min-height: 100px;
}
.memBx .memInfo {
  min-width: 370px;
  max-width: 370px;
  margin-right: 24px;
}
.memBx .memInfo + .memBx_box {
  width: calc(100% - 394px);
}
.memBx .memBx_ad {
  width: calc(100% - 394px);
}
@media all and (max-width: 768px) {
  .memBx .memBx_ad {
    width: 100%;
  }
}
.memBx .txtinfo,
.memBx .txtbox {
  padding: 20px 16px;
}
.memBx .car-calc {
  font-size: 1.1rem;
}
.memBx .car-fee {
  font-size: 2.6rem;
  font-weight: bold;
}
.memBx .car-fee .unit {
  font-size: 1rem;
  font-weight: normal;
}
.memBx .car-num {
  position: relative;
  font-size: 1.75rem;
  line-height: 1.75rem;
  margin-bottom: 16px;
}
.memBx .car-num .a-park {
  position: relative;
  width: 24px;
  height: 24px;
  background: url(../images/ic-park-p.svg) 0 center no-repeat;
  background-size: 20px;
  display: block;
}
.memBx .car-user {
  font-size: 1.2rem;
}
.memBx .car-user .warn {
  margin-left: 8px;
}
.memBx .car-user + p {
  margin-top: 10px;
  font-size: 1.1rem;
}
.memBx .txtbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.memBx .txtbox.tR {
  justify-content: flex-end;
}
.memBx .txtbox.color-red .car-fee {
  color: #bb1100;
}
.memBx_list {
  /*輪播*/
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  width: 260px;
  /*min-width: 254px;*/
}
.memBx_list.wide {
  width: 100%;
}
.memBx_list .txtbox,
.memBx_list .txtinfo {
  color: #6e6e6e;
}
.memBx_list .txtbox .car-fee,
.memBx_list .txtinfo .car-fee {
  color: #c8c8c8;
}
.memBx_list.focus-on {
  box-shadow: 0 0 10px rgba(187, 17, 0, 0.4);
}
.memBx_list.focus-on .txtinfo {
  color: #fff;
  background-color: #bb1100;
  transition-duration: 0.3s;
}
.memBx_list.focus-on .txtinfo .warn,
.memBx_list.focus-on .txtinfo .a-park {
  filter: grayscale(100%) brightness(1000%);
  color: #fff;
}
.memBx_list.focus-on .txtbox {
  color: #1a1b29;
  transition-duration: 0.3s;
}
.memBx_list.focus-on .txtbox .car-fee {
  color: #1a1b29;
}
.memBx_list.focus-on .txtbox .car-fee .unit {
  color: #1a1b29;
}
.memBx_list:hover {
  box-shadow: 0 0 10px rgba(49, 49, 49, 0.4);
}
@media all and (max-width: 768px) {
  .memBx_list {
    box-shadow: 0 0 10px #c6cfd7;
  }
  .memBx_list .txtinfo,
  .memBx_list .txtbox {
    padding: 16px 40px;
  }
}
.memBx_list > a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
@media all and (max-width: 1000px) {
  .memBx_list {
    width: auto;
    min-width: auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
}
.memBx_box {
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media all and (max-width: 1440px) {
  .memBx.flex-three > div {
    width: calc(33% - 18px);
  }
  .memBx .memInfo + .memBx_box {
    width: calc(100% - 400px);
  }
}
@media all and (max-width: 1024px) {
  .memBx .txtbox {
    flex-wrap: wrap;
  }
  .memBx .car-fee {
    font-size: 2rem;
    line-height: 2rem;
    width: 100%;
    text-align: right;
  }
  .memBx .car-fee .unit {
    font-size: 0.8rem;
  }
  .memBx .car-user {
    /* .warn{ margin-top: 10px; }*/
  }
  .memBx .car-user + p {
    font-size: 1rem;
  }
}
@media all and (max-width: 1000px) {
  .memBx .car-user .warn {
    margin-left: 0;
  }
}
@media all and (max-width: 768px) {
  .memBx {
    flex-wrap: wrap;
  }
  .memBx.flex-three > div {
    width: 100%;
    margin-left: 0;
  }
  .memBx.flex-three > div + div {
    margin-top: 16px;
  }
  .memBx.flex-three .txtinfo {
    min-height: auto;
  }
  .memBx .memInfo {
    width: 100%;
    min-width: inherit;
    max-width: inherit;
    margin-right: 0;
  }
  .memBx .memInfo + .memBx_box {
    width: 100%;
  }
  .memBx .car-fee {
    font-size: 2.4rem;
  }
  .memBx .car-fee .unit {
    font-size: 1rem;
  }
  .memBx .car-user .warn {
    margin-left: 8px;
  }
}

.swiper-space .swiper-container {
  margin: 16px -10px;
  padding: 10px 10px;
  position: relative;
  min-width: 100%;
}
.swiper-space .swiper-button-next,
.swiper-space .swiper-container-rtl .swiper-button-prev {
  right: -50px;
}
.swiper-space .swiper-button-prev,
.swiper-space .swiper-container-rtl .swiper-button-next {
  left: -50px;
}
@media all and (max-width: 1024px) {
  .swiper-space .swiper-button-next,
  .swiper-space .swiper-container-rtl .swiper-button-prev {
    top: 100px;
  }
  .swiper-space .swiper-button-prev,
  .swiper-space .swiper-container-rtl .swiper-button-next {
    left: inherit;
    right: -50px;
    top: 150px;
  }
}
@media all and (max-width: 768px) {
  .swiper-space .swiper-container {
    margin: 16px -5px 0;
    padding: 10px 5px;
  }
  .swiper-space .swiper-button-next,
  .swiper-space .swiper-container-rtl .swiper-button-prev {
    right: -10px;
    top: 120px;
  }
  .swiper-space .swiper-button-prev,
  .swiper-space .swiper-container-rtl .swiper-button-next {
    left: -10px;
    right: inherit;
    top: 120px;
  }
}

/*會員功能選單*/
.member-funcMenu {
  padding: 4px 16px;
  background-color: #fffaf6;
  border-radius: 4px;
  border: 1px solid #e49347;
}
.member-funcMenu ul {
  list-style: none;
}
.member-funcMenu li {
  border-top: 1px solid #d2d2d2;
}
.member-funcMenu li.home {
  background: url(../images/ic-memfunc-home.svg) 0 center no-repeat;
  background-size: 32px;
}
.member-funcMenu li.car {
  background: url(../images/ic-memfunc-car.svg) 0 center no-repeat;
  background-size: 32px;
}
.member-funcMenu li.sort {
  background: url(../images/ic-memfunc-sort.svg) 0 center no-repeat;
  background-size: 32px;
}
.member-funcMenu li a {
  padding: 10px 0;
  display: block;
  font-size: 1.25rem;
  padding-left: 40px;
  line-height: 40px;
  position: relative;
}
.member-funcMenu li a::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/arrow-more.svg) center no-repeat;
  background-size: 30px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -15px;
}
.member-funcMenu li a:hover {
  color: #bb1100;
}
.member-funcMenu li a:hover::before {
  right: -10px;
  transition-duration: 0.3s;
}
.member-funcMenu ul > li:first-child {
  border-top: none;
}

/*會員詳細資料*/
.memInfo {
  color: #1a1b29;
}
.memInfo .memTit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.memInfo .memTit h3 {
  font-size: 1.75rem;
}
.memInfo .memTit .edit {
  color: #bb1100;
  font-size: 1rem;
}
.memInfo .memTit .edit:hover {
  color: #313131;
}
@media all and (max-width: 768px) {
  .memInfo .memTit {
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .memInfo .memTit h3 {
    font-size: 1.25rem;
    font-weight: 500;
  }
}

/*圓框icon連結列表*/
.ic-radius-link {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  padding-top: 16px;
  margin: 0 40px;
  list-style: none;
}
.ic-radius-link li {
  position: relative;
  text-align: center;
  width: 25%;
  margin-bottom: 16px;
}
.ic-radius-link li .ic-bg {
  width: 70px;
  height: 70px;
  background-color: #f2f2f2;
  border-radius: 100%;
  margin: 0 auto 10px;
}
.ic-radius-link li:hover .ic-bg {
  color: #bb1100;
  background-color: #bb1100;
  transition-duration: 0.3s;
}
.ic-radius-link li:hover .ic-bg img {
  filter: grayscale(100%) brightness(1000%);
}
.ic-radius-link li:hover p {
  color: #bb1100;
}
.ic-radius-link li a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
}
@media all and (max-width: 1024px) {
  .ic-radius-link {
    margin: 0 20px;
  }
}
@media all and (max-width: 768px) {
  .ic-radius-link {
    margin: 0;
  }
  .ic-radius-link li {
    width: 33%;
    padding: 0 10px;
  }
}

/*繳費方式*/
.choose-pay li {
  border-radius: 4px;
  border: 1px solid #d2d2d2;
  padding: 10px 20px;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.choose-pay li::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  right: 10px;
  top: 50%;
  margin-top: -15px;
  background: url(../images/arrow-more.svg) right 0 no-repeat;
  background-size: 30px;
  filter: grayscale(100%) brightness(0.1);
}
.choose-pay li p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 30px;
}
.choose-pay li .car-name {
  display: flex;
  align-items: center;
}
.choose-pay li .ic-way {
  width: 30px;
  height: 30px;
  display: inline-block;
  filter: grayscale(100%) brightness(0.1);
  opacity: 0.8;
  margin-right: 10px;
}
.choose-pay li .ic-way.card {
  background: url(../images/ic-red-card.svg) center no-repeat;
  background-size: contain;
}
.choose-pay li .ic-way.download {
  background: url(../images/ic-red-download.svg) center no-repeat;
  background-size: contain;
}
.choose-pay li .ic-way.store {
  background: url(../images/ic-red-store.svg) center no-repeat;
  background-size: contain;
}
.choose-pay li .ic-way.bill {
  background: url(../images/ic-red-bill.svg) center no-repeat;
  background-size: contain;
}
.choose-pay li:hover {
  border-color: #e71a10;
  color: #e71a10;
}
.choose-pay li:hover .ic-way {
  filter: none;
  opacity: 1;
}
.choose-pay li:hover::before {
  filter: inherit;
}
.choose-pay li a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
}
@media all and (max-width: 768px) {
  .choose-pay li {
    padding: 10px 30px 10px 10px;
  }
  .choose-pay li::before {
    right: 0;
  }
  .choose-pay li .ic-way {
    width: 30px;
    height: 30px;
  }
}

.title + .choose-pay {
  padding-top: 16px;
}

/*etag條碼*/
.etagBx {
  border: 1px solid #d2d2d2;
  border-radius: 4px;
  margin-bottom: 32px;
}
.etagBx .etagTit {
  background-color: #eeeeee;
  border-bottom: 1px solid #d2d2d2;
  padding: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}
.etagBx .etagTit .date {
  font-size: 0.875rem;
  font-weight: normal;
  float: right;
}
.etagBx .etagCon {
  padding: 16px;
}

/*繳費明細*/
.paymentBx {
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-around;
  margin-bottom: 32px;
}
.paymentBx_box {
  flex: 1 1 auto;
  text-align: center;
  margin: 24px 0;
  padding: 0 10px;
}
.paymentBx_box .tit {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
.paymentBx_box p {
  font-size: 1.1rem;
  color: #6e6e6e;
}
.paymentBx > div {
  border-left: 1px solid #ccc;
}
.paymentBx > div:first-child {
  border: none;
}
@media all and (max-width: 1000px) {
  .paymentBx_box .tit {
    font-size: 1.2rem;
  }
  .paymentBx_box p {
    font-size: 1rem;
  }
}
@media all and (max-width: 768px) {
  .paymentBx_box .tit {
    font-size: 1.2rem;
  }
  .paymentBx_box p {
    font-size: 1rem;
  }
}
@media all and (max-width: 480px) {
  .paymentBx {
    padding: 0 16px;
    flex-wrap: wrap;
  }
  .paymentBx_box {
    width: 100%;
    padding: 16px;
    margin: 0;
  }
  .paymentBx > div {
    border-bottom: 1px solid #ccc;
    border-left: none;
  }
  .paymentBx > div:nth-child(odd) {
    border-bottom: 1px solid #ccc;
  }
  .paymentBx > div:last-child {
    border-bottom: none;
  }
}

/*銀行清單*/
.bankBx {
  background-color: #f5f5f5;
  padding: 10px 10px 0;
  max-height: 300px;
  overflow-y: auto;
}
.bankBx .bankList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bankBx .bankList li {
  flex: 1 1 calc(50% - 10px);
  border-radius: 4px;
  border: 1px solid #eee;
  margin: 0 10px 10px 0;
}
.bankBx .bankList a {
  padding: 10px;
  display: block;
  background-color: #ffffff;
}
.bankBx .bankList a:hover {
  background-color: #bb1100;
  color: #ffffff;
}
@media all and (max-width: 1024px) {
  .bankBx .bankList li {
    flex: 1 1 100%;
    margin: 0 0 10px;
  }
}

/*交通部高速公路局*/
.FBM header .logo {
  width: 275px;
  background-image: url(../images/logo_FBM_01.jpg);
}
.FBM section.titSet::before {
  display: none;
}

/*提醒*/
.noticeBx {
  color: #0c6cc8;
  font-weight: 500;
  text-align: center;
  padding: 10px 20px;
  border: 1px solid #0c6cc8;
  font-size: 1rem;
  margin-bottom: 32px;
}

/*user old code*/
.text-right {
  text-align: right;
}

/*開立發票*/
.invoice {
  border: #e71a10 1px solid;
  padding: 4px 10px;
  color: #e71a10 !important;
  font-weight: bold;
  float: right;
}
.invoice::after {
  content: "";
  display: block;
  clear: both;
}/*# sourceMappingURL=inner-en.css.map */