@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;
}

.eventBx_list li:hover p, .newsBx_list li:hover p, .actBx_list:hover .imgbox img, .focus-info .focusBx:hover, .main-info .rightBx .parking-link li:hover img, .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 {
  color: #e71a0f;
  text-align: center;
  display: block;
  font-size: 1rem;
}
.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;
}

/*title*/
.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.title h2 {
  font-size: 1.75rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: #bb1100;
  padding-right: 70px;
  margin-right: 20px;
  display: inline-block;
  position: relative;
}
.title h2::before {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #bb1100;
  position: absolute;
  right: 0;
  top: 12px;
}
.title p {
  line-height: 30px;
}
.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.toLeft {
  justify-content: start;
}
@media all and (max-width: 768px) {
  .title {
    margin-bottom: 16px;
  }
  .title.m-wrap {
    flex-wrap: wrap;
  }
  .title h2 {
    font-size: 1.375rem;
  }
}
@media all and (max-width: 480px) {
  .title.m-wrap {
    flex-wrap: wrap;
  }
  .title h2 {
    font-size: 1.1rem;
  }
}

.pagesize.two-col {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.pagesize.two-col > div {
  width: calc(50% - 20px);
  margin-left: 40px;
}
.pagesize.two-col > div:first-child {
  margin-left: 0;
}
@media all and (max-width: 1000px) {
  .pagesize.two-col > div {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .pagesize.two-col > div:last-child {
    margin: 0;
  }
}

/*主要資訊*/
section.main-info {
  padding: 0 0 32px;
}
@media all and (max-width: 768px) {
  section.main-info {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}

.main-info {
  margin-bottom: 48px;
  position: relative;
  z-index: 999;
}
.main-info .leftBx {
  width: 450px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  min-height: 480px;
  margin-top: -100px;
}
.main-info .leftBx .midBx {
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.main-info .leftBx .midBx .imgbox {
  width: 100%;
  padding-top: 20px;
}
.main-info .leftBx .txtBx {
  color: #fff;
  line-height: 70px;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
  background-color: #bb1100;
  position: relative;
}
.main-info .leftBx .txtBx::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: #bb1000 transparent transparent transparent;
  position: absolute;
  bottom: -12px;
  left: 50%;
  margin-left: -10px;
}
@media all and (max-width: 768px) {
  .main-info .leftBx .txtBx {
    background-color: #eb483f;
  }
  .main-info .leftBx .txtBx::after {
    border-color: #eb483f transparent transparent transparent;
  }
}
.main-info .leftBx .user-info {
  width: 100%;
  max-height: 290px;
  overflow-y: auto;
  margin-bottom: 16px;
}
.main-info .leftBx .user-info li {
  padding: 12px 8px;
  border-top: 1px solid #d2d2d2;
  color: #1a1b29;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.1rem;
  position: relative;
}
.main-info .leftBx .user-info li.line {
  border-bottom: 1px solid #d2d2d2;
}
.main-info .leftBx .user-info li .tit {
  font-weight: 500;
  letter-spacing: 1px;
  text-align: left;
}
.main-info .leftBx .user-info li .tit .car-num {
  font-size: 1.75rem;
  line-height: 1.75rem;
  padding: 10px 0;
}
@media all and (max-width: 768px) {
  .main-info .leftBx .user-info li .tit .car-num {
    padding: 0;
  }
}
.main-info .leftBx .user-info li .txt {
  text-align: right;
}
.main-info .leftBx .user-info li .txt .fsize-3xl {
  line-height: 2.25rem;
}
.main-info .leftBx .user-info li a:hover {
  background-color: rgba(187, 17, 0, 0.05);
}
.main-info .leftBx .user-info > li:first-child {
  border: none;
}
@media all and (max-width: 480px) {
  .main-info .leftBx .user-info li {
    justify-content: center;
  }
  .main-info .leftBx .user-info li .txt {
    width: 100%;
    text-align: center;
    padding-top: 10px;
  }
}
.main-info .leftBx .detail-info {
  width: 100%;
  height: 186px;
  background-color: #f5f5f5;
  padding: 6px 20px;
  margin-bottom: 16px;
  overflow-y: auto;
}
.main-info .leftBx .detail-info li {
  padding: 10px 0;
  border-top: 1px solid #d2d2d2;
  color: #1a1b29;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.1rem;
}
.main-info .leftBx .detail-info li .tit {
  font-weight: 500;
  letter-spacing: 1px;
  color: #bb1100;
}
.main-info .leftBx .detail-info li .txt {
  text-align: right;
  font-size: 1rem;
}
.main-info .leftBx .detail-info > li:first-child {
  border: none;
}
.main-info .rightBx {
  width: calc(100% - 500px);
  margin-top: -30px;
  font-size: 1.1rem;
}
.main-info .rightBx .whiteBx {
  background: #fff;
  border-radius: 4px;
  margin-bottom: 16px;
  padding: 20px;
  font-weight: 500;
}
.main-info .rightBx .whiteBx p {
  letter-spacing: 1px;
}
.main-info .rightBx .marquee {
  height: 60px;
  overflow: hidden;
  padding: 0;
}
.main-info .rightBx .marquee li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 60px;
  background: #fff url(../images/ic-marquee.png) 10px 10px no-repeat;
  background-size: 40px;
  padding-left: 50px;
}
.main-info .rightBx .marquee li a {
  padding: 10px 0;
  color: #1a1b29;
}
@media all and (max-width: 768px) {
  .main-info .rightBx .marquee li {
    background-position: 8px center;
  }
}
.main-info .rightBx .parking-link {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.main-info .rightBx .parking-link li {
  text-align: center;
  position: relative;
  width: 33%;
  border-left: 1px solid #ece8e8;
}
.main-info .rightBx .parking-link li .imgbox {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
}
.main-info .rightBx .parking-link li h3 {
  color: #1a1b29;
  font-size: 1.1rem;
  line-height: 1.4rem;
}
.main-info .rightBx .parking-link li a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
}
.main-info .rightBx .parking-link li:hover img {
  transform: scale(1.1, 1.1);
}
.main-info .rightBx .parking-link li:hover h3 {
  color: #bb1100;
}
.main-info .rightBx .parking-link > li:first-child {
  border: none;
}
.main-info .rightBx .adBx {
  border-radius: 4px;
  overflow: hidden;
}
.main-info .rightBx .adBx a.cover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
@media all and (max-width: 1024px) {
  .main-info .leftBx {
    width: 380px;
    margin-top: -20px;
  }
  .main-info .leftBx .logBx {
    padding: 0 16px;
  }
  .main-info .rightBx {
    width: calc(100% - 400px);
  }
}
@media all and (max-width: 768px) {
  .main-info .topBx {
    width: 100%;
    margin-top: -20px;
    margin-bottom: 16px;
  }
  .main-info .topBx a {
    background-color: #eb483f;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border-radius: 4px;
    display: block;
  }
  .main-info .leftBx {
    width: 100%;
    margin-bottom: 16px;
    min-height: auto;
  }
  .main-info .leftBx .midBx {
    min-height: auto;
  }
  .main-info .leftBx .midBx .imgbox {
    padding-top: 0;
  }
  .main-info .rightBx {
    width: 100%;
    margin-top: 0;
    font-size: 1.1rem;
  }
  .main-info .rightBx .marquee {
    height: 50px;
  }
  .main-info .rightBx .marquee li {
    height: 50px;
    line-height: 50px;
  }
}

/*重點資訊*/
.focus-info {
  margin-top: -10px;
}
.focus-info .focusBx {
  padding: 16px 10px 10px;
  background-color: #fff;
  border-radius: 4px;
  position: relative;
}
.focus-info .focusBx::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: -1;
}
.focus-info .focusBx h3 {
  color: #6e6e6e;
  font-size: 1.25rem;
  text-align: center;
}
.focus-info .focusBx .ic-focus {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.focus-info .focusBx .ic-focus img {
  width: 60px;
  height: 60px;
}
.focus-info .focusBx_list li {
  border-top: 1px solid #eee;
  font-weight: 500;
}
.focus-info .focusBx_list li a {
  padding: 10px;
  color: #6e6e6e;
  display: block;
}
.focus-info .focusBx_list li a:hover {
  color: #e49347;
}
.focus-info .focusBx_list > li:first-child {
  border: none;
}
@media all and (max-width: 1000px) {
  .focus-info .focusBx_list {
    padding: 0 10px;
  }
  .focus-info .focusBx_list li a {
    text-align: center;
  }
}
@media all and (max-width: 768px) {
  .focus-info .focusBx_list {
    padding: 0 20px;
  }
}
.focus-info .focusBx:hover::before {
  box-shadow: 0 0 10px #c6cfd7;
}
.focus-info .focusBx:hover h3 {
  color: #04325d;
}
.focus-info .focusBx:hover .focusBx_list li a {
  color: #000;
}
.focus-info .focusBx:hover .focusBx_list li a:hover {
  color: #e49347;
}
.focus-info .swiper-container {
  width: 1280px;
  margin: 0 auto;
  padding: 10px 60px;
  position: relative;
}
.focus-info .swiper-container::before {
  content: "";
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 9;
}
.focus-info .swiper-container::after {
  content: "";
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: 9;
}
@media all and (max-width: 1000px) {
  .focus-info .swiper-container {
    width: 100%;
    max-width: inherit;
    padding: 10px 10px;
  }
  .focus-info .swiper-container::before, .focus-info .swiper-container::after {
    display: none;
  }
}
.focus-info .swiper-wrapper > .swiper-slide:nth-child(n+1) .ic-focus {
  background: url(../images/ic-focus-clip-1.png) center no-repeat;
}
.focus-info .swiper-wrapper > .swiper-slide:nth-child(2n+1) .ic-focus {
  background: url(../images/ic-focus-clip-2.png) center no-repeat;
}
.focus-info .swiper-wrapper > .swiper-slide:nth-child(3n+1) .ic-focus {
  background: url(../images/ic-focus-clip-3.png) center no-repeat;
}
.focus-info .swiper-wrapper > .swiper-slide:nth-child(4n+1) .ic-focus {
  background: url(../images/ic-focus-clip-4.png) center no-repeat;
}
@media all and (max-width: 768px) {
  .focus-info {
    margin: 0 10px;
  }
}

.swiper-space .swiper-container {
  /*max-width: 1280px;*/
  width: 1280px;
  margin: 0 auto;
  padding: 10px 60px;
  position: relative;
}
.swiper-space .swiper-container::before {
  content: "";
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 9;
}
.swiper-space .swiper-container::after {
  content: "";
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: 9;
}
@media all and (max-width: 1440px) {
  .swiper-space .swiper-container {
    width: 100%;
  }
}
@media all and (max-width: 1024px) {
  .swiper-space .swiper-container {
    width: 100%;
    padding: 10px 10px;
  }
  .swiper-space .swiper-container::before, .swiper-space .swiper-container::after {
    display: none;
  }
}

/*活動資訊*/
.event-more .swiper-container {
  overflow: visible;
}
.event-more .swiper-slide {
  width: auto;
}
.event-more .swiper-slide a {
  padding: 0 20px 0 0;
  color: #6e6e6e;
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
}
.event-more .swiper-slide a.all {
  color: #000;
}
.event-more .swiper-slide a:hover {
  color: #bb1100;
}
@media all and (max-width: 768px) {
  .event-more {
    width: 100%;
    margin-top: 10px;
  }
  .event-more .swiper-container {
    overflow: hidden;
  }
}

.actBx {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}
.actBx_list {
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.actBx_list:hover {
  box-shadow: 0 0 10px #c6cfd7;
}
.actBx_list:hover .imgbox {
  overflow: hidden;
}
.actBx_list:hover .imgbox img {
  transform: scale(1.1, 1.1);
  opacity: 0.8;
}
.actBx_list:hover h3 {
  color: #bb1100;
}
.actBx_list a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.actBx_list .txtbox {
  padding: 16px;
}
.actBx_list .txtbox .act-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.actBx_list .txtbox .act-tag .act-name {
  color: #04325d;
}
.actBx_list .txtbox .act-tag .act-date {
  color: #c0c0c0;
}
.actBx_list .txtbox h3 {
  font-size: 1.1rem;
}
@media all and (max-width: 768px) {
  .actBx {
    flex-wrap: wrap;
  }
  .actBx_list .txtbox {
    padding: 10px;
    margin: 0;
  }
  .actBx_list .txtbox .act-date {
    font-size: 0.6rem;
  }
}

/* 新聞、活動列表 */
.newsBx {
  position: relative;
}
.newsBx_list li {
  padding: 22.4px 0;
  position: relative;
  display: flex;
  border-bottom: 1px solid #ddd;
}
.newsBx_list li .date {
  color: #6e6e6e;
  font-size: 1rem;
  margin-right: 10px;
  min-width: 100px;
}
.newsBx_list li p {
  color: #1a1b29;
  font-size: 1.125rem;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.newsBx_list li p.focus {
  color: #bb1100;
}
.newsBx_list li a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
}
.newsBx_list li:hover p {
  color: #e49347;
}
@media all and (max-width: 768px) {
  .newsBx_list li {
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .newsBx_list li .date {
    margin-bottom: 6px;
    margin-right: 0;
    width: 100%;
  }
}

.eventBx .title {
  margin-bottom: 24px;
}
.eventBx_list li {
  position: relative;
  border-radius: 4px;
  border: 1px solid #ddd;
  margin-bottom: 24px;
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
}
.eventBx_list li p {
  color: #1a1b29;
  font-size: 1.125rem;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.eventBx_list li p.focus {
  color: #bb1100;
}
.eventBx_list li a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
}
.eventBx_list li:hover p {
  color: #e49347;
}
@media all and (max-width: 768px) {
  .eventBx .title {
    margin-bottom: 16px;
  }
  .eventBx_list li {
    margin-bottom: 16px;
  }
}

/*今日路況、油價*/
.today-info {
  padding-top: 48px;
}
@media all and (max-width: 1024px) {
  .today-info {
    padding: 32px 0;
  }
}

.today {
  padding: 0 40px 0 200px;
  min-height: 160px;
}
.today.road {
  background: url(../images/ic-today-road.png) 20px center no-repeat;
  border-right: 1px solid #ddd;
  min-width: 480px;
}
.today.road a.check-traffic {
  background-color: #bb1100;
  color: #ffffff;
  text-align: center;
  font-size: 1.125rem;
  line-height: 50px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.today.road a.check-traffic .ic {
  width: 30px;
  height: 30px;
  background: url(../images/btn-ic-traffic.png) center no-repeat;
  display: inline-block;
  margin-right: 10px;
}
.today.road a.check-traffic:hover {
  background-color: #000;
}
.today.oil {
  background: url(../images/ic-today-oil.png) 20px center no-repeat;
}
.today.oil .oil-price {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.today.oil .oil-price li {
  display: flex;
  justify-content: start;
  align-items: flex-end;
  width: 48%;
  min-height: 40px;
  margin-top: 20px;
}
.today.oil .oil-price li > div {
  padding-right: 10px;
}
.today.oil .oil-price li > div:last-child {
  padding-right: 0;
}
.today.oil .oil-price li .txt {
  color: #6e6e6e;
  line-height: 1rem;
}
.today.oil .oil-price li .name {
  color: #000;
  font-size: 2.5rem;
  line-height: 2rem;
  font-weight: bold;
}
.today.oil .oil-price li .name.s-width {
  font-size: 1.375rem;
  line-height: 1.375rem;
  padding-top: 10px;
  padding-right: 10px;
}
.today.oil .oil-price li .price {
  color: #bb1100;
  font-size: 1.875rem;
  font-weight: bold;
}
.today.oil .oil-price li .line {
  border-right: 1px dashed #999;
  margin-right: 10px;
}
@media all and (max-width: 1024px) {
  .today {
    padding: 0 20px 0 120px;
  }
  .today.road {
    min-width: 360px;
    background-size: 100px;
    background-position: 0 bottom;
  }
  .today.oil {
    background-size: 100px;
    background-position: 10px bottom;
  }
}
@media all and (max-width: 1000px) {
  .today {
    padding: 0 20px 0 160px;
  }
  .today.road {
    min-width: 100%;
    background-size: 100px;
    background-position: 10px center;
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
  }
  .today.road a.check-traffic {
    margin-bottom: 20px;
  }
  .today.oil {
    background-size: 100px;
    background-position: 10px center;
  }
}
@media all and (max-width: 768px) {
  .today {
    padding: 0 0 0 120px;
  }
  .today.road {
    min-width: 100%;
    background-size: 100px;
    background-position: 10px center;
    border-right: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
  }
  .today.oil {
    background-size: 100px;
    background-position: 0 center;
  }
  .today.oil .oil-price li {
    width: 100%;
    margin-top: 10px;
  }
  .today.oil .oil-price li .txt {
    font-size: 0.6rem;
  }
  .today.oil .oil-price li .name {
    font-size: 2rem;
    line-height: 2rem;
  }
  .today.oil .oil-price li .name.s-width {
    font-size: 1.25rem;
    line-height: 1.25rem;
    padding-right: 8px;
  }
  .today.oil .oil-price li .price {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=index.css.map */