/*========================
*
* 基本
*
========================*/
@import url(https://fonts.googleapis.com/css?family=Fira+Sans:400,300,700);
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, dl, dt, dd, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; }

*   { box-sizing: border-box; margin: 0; padding: 0; font-size: 100%; }
html{
  color: #4c5768;
  background-color: #fff;
  /*font-size: 62.5%;*/
  overflow: auto;
}
body {
  font-family: PingFangTC,'Fira Sans', sans-serif;
  font-size: 13px;
  color: #4c5768;
}
hr, legend  { display: none; }
img   { border: none; vertical-align: bottom; }
article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, main { display: block; }
div, dl, dt, dd, form, input, ul, ol, li, p, select, textarea, span, th, td, figure, figcaption { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, address, th, caption, em, strong, dfn { font-style: normal; font-weight: normal; }
input, select     { vertical-align: middle; }
input, select, textarea { font-size: 100%; font-family: inherit; font-weight: inherit; }
sup   { vertical-align: top; font-size: 72%; }
sub   { vertical-align: bottom; font-size: 72%; }
del   { text-decoration: line-through; }
ol, ul  { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; font-size: 100%; font-size: inherit; }
caption { text-align: left; }
fieldset{ border: 0; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content:''; content: none; }
a {
  color: inherit;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

.btn-white {
  color: #4c5768;
  background-color: #fff;
  border-color: #fff;
  border-radius: 0;
  border: 1px solid #c0c6cf;
}
.btn-red {
  color: #fff;
  background-color: #cf000e;
  border-color: #cf000e;
  border-radius: 0;
}
.btn-darkgray {
  color: #fff;
  background-color: #4c5768;
  border-color: #4c5768;
  border-radius: 0;
}
.btn-white:hover {
  color: #fff;
  background-color: #4c5768;
  border-color: #4c5768;
}
.btn-red:hover,
.btn-darkgray:hover {
  color: #4c5768;
  border: 1px solid #c0c6cf;
  background-color: #fff;
}
.background {
  border-top: 2px solid #bdbdbd;
}

.mar-top5 {
  margin-top: 5px;
}

@media (max-width: 414px) {
  .mar-top5 {
    margin-top: 0px;
  }
}
/*========================
*
* layout 基本佈局
*
========================*/
*   { box-sizing: border-box; }
html  { -webkit-text-size-adjust: 100%; }
body  { font-size: 0.875vw; }
main  { margin-top: 75px;padding: 0px 50px ; }
strong  { font-weight: bold; }

table { width: 100%; }
th    { padding: 15px 20px; border-bottom: 0px solid #c0c6cf; text-align: center; vertical-align: middle; }
th.bg { padding: 10px 20px; border-bottom: 0; background: #c0c6cf; color: #fff; }
td    { padding: 15px 20px; border-bottom: 0px solid #c0c6cf; vertical-align: top; }
td.bg { background: #f8f9fa; }
tr:first-child th,
tr:first-child td{ border-top: 0px solid #c0c6cf; }
tr td             { border-left: 0px solid #dfe2e7; }
tr td:first-of-type { border-left: 0; }
.table-striped tbody tr:nth-of-type(odd) {background-color: #f2f4f5}
.table {
  font-size: 15px;
  color: #4c5768;
  text-align: left;
}
.table th {
  width: 40%;
}
.table td {
  width: 60%;
}
.table td, .table th {
  padding: 7px 10px;
  border-top: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  text-align: left;
}

.pc { display: inherit; }
.sp { display: none !important; }

.border-red {
  line-height: 23px;
  padding: 6px 8px 0;
  margin: 0 15px;
  border-left: 4px solid #cf000e;
}
.border-gray {
  border-left: 0.25vw solid #83919c;
}
.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,0);
}
.btn-clipboard {
  padding: 2px 10px;
  font-size: 65%;
  color: #4c5768;
  background-color: #fff;
  border: 1px solid;
  border-radius: .25rem;
  margin-bottom: 5px;
}
.gray-background{
  background-color: #f2f4f5;
}
.title-area {
  margin-bottom: 30px;
}
.title-area h3 {
  font-size: 32px;
  color: #4c5768;
}
.title-area h3 span {
  font-size: 21px;
}
.title-area h3 span.horizontal-line {
  padding: 0 5px;
}

input:focus {
  outline: 0px;
}

@media (max-width: 767px) {
  body{
    font-size: 1.2rem;
  }
  main{
    padding: 0px 20px 45px;
    margin-top: 60px;
    overflow-x: hidden;
  }


  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }

  .border-red   {
    padding: 0 3.24vw;
    border-left: 2px solid #cf000e;
    /*font-size: 4.3vw;*/
    font-size: 1.6rem;
  }
  .border-gray  {
    padding: 0 3.24vw;
    border-left: 2px solid #83919c;
    /*font-size: 3.5vw;*/
    font-size: 1.6rem;
  }
  .title-area .border-red {
    padding: 0.125vw 1.5625vw;
    border-left: 4px solid #cf000e;
  }
  .title-area h3 {
    font-size: 28px;
  }
}
@media (max-width: 414px) {
  main {
    padding-bottom: 0px;
  }
  .title-area .border-red {
    margin: 0.125vw 3.3625vw;
  }
  .table th,
  .table td {
    width: 50%;
  }
}
/*========================
*
* header
*
========================*/
header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 75px;
  padding: 0 50px;
  background: #fff;
  transition: .3s;
  line-height: 1.5;
}
header .logo{
  float: left;
  margin-bottom: 0px;
}
header .logo img{
  width: 130px;
  height: auto;
  transition: .3s;
}
header .logo a:hover{
  opacity: 1;
}
header .ctrl              { float: right; width: 240px; font-family: neue-haas-grotesk-display, sans-serif; font-size: 1.4rem; }
header .ctrl > ul > li          { position: relative; float: left; width: 80px; text-align: center; }
header .ctrl > ul > li a        { display: block; padding-top: 18px; color: #6d7888; text-decoration: none !important; }
header .ctrl > ul > li > a:hover    { opacity: 0.7; }
header .ctrl > ul > li:last-child   { height: 80px; }
header .ctrl > ul > li:before     { left: 0; }
header .ctrl > ul > li:last-child:after { right: 0; }
header .ctrl > ul > li.active + li:before{ content: none; }
header .ctrl > ul > li img        { margin-bottom: 8px; padding: 0 10px; }
header:after,
header .ctrl ul:after         { content: ""; clear: both; display: block; height: 0; }

header.english .ctrl > ul > li:first-child *    { visibility: hidden !important; }
header.english .ctrl > ul > li:first-child:before { content: none; }

#ham-menu {
  display: none;
  position: absolute;
  top: 75px;
  z-index: 11;
  transition: .3s;
}
.menu.active #ham-menu.menuContent {
    display: block;
    opacity: 1;
}

_::-webkit-full-page-media,_:future, :root #ham-menu { left: calc(100% - 100vw + 100px); width: calc(100vw - 100px); }/* safari */
_:lang(x)::-ms-backdrop, #ham-menu { left: calc(100% - 100vw + 116px); width: calc(100vw - 116px); }/* IE11 */
@supports (-ms-ime-align:auto) {
  #ham-menu { left: calc(100% - 100vw + 116px); width: calc(100vw - 116px); }/* Edge */
}

.navbar .input-group.sp .svg-inline--fa {
  color: #8791a0;
  font-size: 1.5em;
}
.navbar .input-group.sp .svg-inline--fa.fa-w-16 {
  width: 2em;
}
#search-menu  { display: none; position: absolute; top: 80px; left: calc(100% - 100vw + 277px); z-index: 2; width: calc(100vw - 117px); height: 5.5vw; padding: 1.15vw 1.5625vw; background-color: #f2f4f5; opacity: 0; transition: .3s; }
_::-webkit-full-page-media,_:future, :root #search-menu { left: calc(100% - 100vw + 260px); width: calc(100vw - 100px); }/* safari */
_:lang(x)::-ms-backdrop, #search-menu { left: calc(100% - 100vw + 276px); width: calc(100vw - 116px); }/* IE11 */

#search-menu .iSearchAssist { /*width: calc(100vw - 117px - 30px);*/ width: 100%; height: 3vw; padding: 0 4vw 0 10px; line-height: 3vw; border: 0; }
#search-menu #hsearch   { position: relative; }
#search-menu .btn-submit  { position: absolute; top: 50%; right: 18px; margin-top: -0.9375vw; color: #6d7888; }
#search-menu .btn-submit i  { position: relative; z-index: 2; margin: 0; font-size: 1.875vw; }
_:lang(x)::-ms-backdrop, #search-menu .btn-submit i { top: 2px; left: 1px; }/* IE11 */

#search-menu .submit {
  appearance: button;
  border: none;
  border-radius: 0;
  background: none;
  color: #c0c7cf;
  cursor: pointer;
}

#menu-cb          { display: none; }
#menu-cb:checked ~ #ham-menu{ display: block; opacity: 1; }

#menu-search                    { display: none; }
#menu-search-icon                 { display: block; position: relative;cursor: pointer; }
#menu-search:checked ~ #ham-menu          { display: none; }
#menu-search:checked ~ #search-menu         { display: block; opacity: 1; }

#menu-search-icon .fa-search {
  visibility: visible;
  color: #c0c6cf;
  font-size: 22px;
}
#menu-search:checked ~ #menu-search-icon          { background: #f2f4f5; }
#menu-search:checked ~ #menu-search-icon .fa-search     { visibility: hidden; }
#menu-search:checked ~ #menu-search-icon span{
  display: block;
  position: absolute;
  top: 23px;
  left: 16px;
  width: 25px;
  height: 2px;
  background: #c0c7cf;
  font-size: 21px;
}
#menu-search:checked ~ #menu-search-icon span:nth-of-type(1){
  transform: translateY(6px) rotate(-315deg);
}
#menu-search:checked ~ #menu-search-icon span:nth-of-type(2){
  transform: translateY(6px) rotate(315deg);
}

.border-gray:checked ~ .acd-menu dt svg     { visibility: hidden; }


/*網頁下滑時處理*/
.js-device_pc.thin header,
.js-device_tablet.thin header {
  height: 60px;
  padding-top: 0;
}
.js-device_pc.thin header .logo img,
.js-device_tablet.thin header .logo img {
  width: 120px;
  vertical-align: top;
}
.js-device_pc.thin header .ctrl > ul > li:before,
.js-device_pc.thin header .ctrl > ul > li:after,
.js-device_tablet.thin header .ctrl > ul > li:before,
.js-device_tablet.thin header .ctrl > ul > li:after {
  content: none;
}
.js-device_pc.thin header .ctrl > ul > li:first-child,
.js-device_pc.thin header .ctrl > ul > li:last-child,
.js-device_tablet.thin header .ctrl > ul > li:first-child,
.js-device_tablet.thin header .ctrl > ul > li:last-child,
.js-device_tablet.thin #menu-icon,
.js-device_tablet.thin #menu-search-icon {
  height: 60px;
}

#menu-cb:checked ~ #menu-icon {
  background: #f2f4f5;
  /*width: 60px;*/
}

#menu-cb:checked ~ .menu-trigger span:nth-of-type(1)  { transform: translateY(9px) rotate(-315deg); }
#menu-cb:checked ~ .menu-trigger span:nth-of-type(2)  { opacity: 0; }
#menu-cb:checked ~ .menu-trigger span:nth-of-type(3)  { transform: translateY(-9px) rotate(315deg); }





.menuContent ul > li.menu-mega a {
  display: block;
  position: relative;
  height: auto;
}
.menu-secondlevel {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  overflow-y: auto;
}
.menu-mega .menu-secondlevel {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  /*height: 100vh;
  padding-bottom: 100px;*/
}
.menu-mega:hover .menu-secondlevel {
  top: 70px;
  z-index: -1;
  visibility: visible;
  opacity: 1;
  cursor: default;
  transition: .3s;
  background-color: rgb(255 255 255 / 58%);
}
.menu-mega .menu-secondlevel ul {
  background-color: #ffffff9c;
}
.menu-mega .menu-secondlevel ul.nav-fill {
  margin-top: 0;
  padding: 0px 60px; /*2_25調NAV*/
  height: 60px;  /*2_25調NAV*/
  background: none;
  display: flex !important;
}
.menu-mega .menu-secondlevel ul .nav-link,
.menu-mega .menu-secondlevel ul .nav-link .dropdown-item {
  text-align: left;
  padding: 0;
  height: 100%;
  width: 160px;
  flex: initial !important;
}
.menu .menuContent .menu-secondlevel ul li:hover {
  background: initial;
}

.menu-mega .menu-secondlevel ul li a span {
  border-left: 2px solid #4c5768;
  width: auto;
  height: 18px; /*2_25調NAV*/
  position: initial;
  padding-left: 10px; /*2_25調NAV*/
  background: initial;
}
.menu-mega .menu-secondlevel ul li a:hover span {
  border-left: 2px solid #cf000f;
}


header .navbar {
  padding: 0 50px;
  height: 75px;
}

.bg-light {
  background-color: #fff!important;
}
.navbar .form-control{
  border: 0px solid #ced4da;
  background-color: #f2f4f5;
  height: 50px;
  font-family: PingFangTC;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  color: #8791a0;
  width: 100%;
}
.navbar .btn-secondary {
  color: #8791a0;
  background-color: inherit;
  border-color: inherit;
  border: 0px solid transparent;
  margin-left: -40px;
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
  color: #545b62;
  background-color: #c0c7cf;
  border-color: #c0c7cf;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-secondary.focus, .btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgb(130 138 145 / 0%);
}
.btn-secondary:not(:disabled):not(.disabled):active:focus{
  box-shadow: 0 0 0 0.2rem rgb(130 138 145 / 0%);
}
.navbar .input-group {
  width: 250px;
  height: 50px;
  margin-right: 113px;
  position: absolute;
      right: 0;
}
.navbar .input-group form {
  width: 100%;
  align-items: initial;
}

input:-internal-autofill-selected {
  background-color: #f2f4f5 !important;
}

.menu {
  height: 70px;
  width: 70px;
  right: 0px;
  margin-right: 50px;
  text-align: center;
  position: absolute;
  /*background: #f2f4f5;*/
  /*overflow: hidden;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;*/
  z-index: 999;
}
.menu.active {
  /*width: 100%;*/
  height: 75px;
  /*margin-right: 0;*/
}
.menu.active .menuContent {
  opacity: 1;
}
.menu.active span i:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
          transform: rotate(-45deg) translate(-50%, -50%);
  top: 42%;
}
.menu.active span i:nth-child(2) {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}
.menu.active span i:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
          transform: rotate(45deg) translate(-50%, -50%);
  top: 72%;
}
.menu span {
  width: 60px;
  height: 70px;
  position: absolute;
  right: 0;
  cursor: pointer;
  background: #fff;
  z-index: 1;
  transition: all 0.3s linear 0s;
}
.menu.active span {
  /*background: #f2f4f5;*/
}
.menu span i {
  position: absolute;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 48%;
  height: 2px;
  /*left: 0;*/
  right: 0;
  margin: auto;
  background-color: #c0c6cf;
  -webkit-transition: opacity .1s ease .1s, -webkit-transform .3s ease;
  transition: opacity .1s ease .1s, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .1s ease .1s;
  transition: transform .3s ease, opacity .1s ease .1s, -webkit-transform .3s ease;
}
.menu.active span i {
  left: initial;
}
.menu span i:nth-child(1) {
  top: 40%;
}
.menu span i:nth-child(2) {
  top: 50%;
}
.menu span i:nth-child(3) {
  top: 60%;
}
.menu .menuContent {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0px;
  text-align: center;
  top: 75px;
  width: calc(100vw - 100px);
  left: calc(100% - 100vw + 100px);
}
.menu .menuContent {
  opacity: 0;
  /*top: 70px;
  z-index: 3;
  transition: .3s;*/
}
.menu .menuContent ul {
  display: table !important;
  width: 100%;
  /*height: 60px;*/
  background: #f2f4f5a6;
}
.menu .menuContent ul > li.menu-mega {
    display: table-cell;
    width: 16.66%;
    color: #4c5768;
    font-size: 1vw;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}
.menu .menuContent ul li {
  /*display: inline-block;
  width: 13.1%;*/
  height: 70px;
  font-family: PingFangTC;
  /*font-size: 15px;
  color: #4c5768;
  -webkit-transition: opacity .3s ease .3s;
  transition: opacity .3s ease .3s;
  cursor: pointer;
  position: relative;*/
}
.menu .menuContent ul li:hover {
  background: #fff;
}
.menu .menuContent ul li.show {
  background: #fff;
}
.menu .menuContent ul li a {
  display: block;
  font-size: 18px; /*2_25調NAV*/
}

 /*2_25調NAV*/
 .menu .menuContent ul li.active a {
  height: 100%;
  font-size: 18px;
  display: flex;
  align-items: center;
 }

.dropdown-menu {
  background-color: #ffffffb0;
  border: 0px solid rgba(0,0,0,.15);
  margin:0;
  width: 100%;
  height: 85px;
  padding: 0 11%;
}
.dropdown-menu h3 {
  font-size:28px;
  border-left: 4px solid #F44336;
  padding-left: 17px;
  margin-top: 48px;
  color: #475065;
}
.menu .dropdown-menu ul li {
  color: #475065;
  border-left: 2px solid #475065;
  height: inherit;
  line-height: .5;
}
.menu .dropdown-menu ul li:hover {
  border-left: 2px solid #F44336;
  background: inherit;
}
.dropdown-menu .nav {
  margin-left: 27px;
  margin-top: 26px;
}
.dropdown-menu .dropdown-item {
  padding: 0;
  color: #475065;
  width: inherit;
}




@media (max-width: 767px) {
  header { 
    height: 60px;
    padding: 0 20px;
  }
  header .navbar {
    height: 60px;
    padding: 0 20px;
  }
  header .logo {
    margin-top: 4px;
  }
  header .logo img {
    width: 120px;
    vertical-align: top;
  }

  header .ctrl {
    width: 120px;
    font-size: 1rem;
    margin-right: -20px;
  }
  header .ctrl > ul > li {
    width: 60px;
  }
  header .ctrl > ul > li a {
    display: block;
    height: 58px;
    padding-top: 12px;
  }
  header .ctrl > ul > li:before     { top: 38px; height: 9px; }
  header .ctrl > ul > li:first-child,
  header .ctrl > ul > li:last-child {
    height: 50px;
  }
  header .ctrl > ul.sp {
    height: 60px;
  }
  header .ctrl > ul > li:last-child:after { top: 38px; height: 9px; }
  header .ctrl > ul > li img  { box-sizing: content-box; width: 13px; height: auto; margin-bottom: 9px; padding: 0 5px; }
  #menu-cb:checked ~ .menu-trigger span:nth-of-type(1){
    transform: translateY(10px) rotate(-315deg);
  }
  #menu-cb:checked ~ .menu-trigger span:nth-of-type(3){
    transform: translateY(-10px) rotate(315deg);
  }
  #ham-menu {
    display: none;
    top: 60px;
    left: calc(100% - 100vw + 0px);
    width: 100vw;
    background-color: #f2f4f5;
  }
  _::-webkit-full-page-media, _:future, :root #ham-menu {
    left: calc(100% - 100vw + 0px);
    width: 100vw;
  }
  .navbar {
    height: 50px;
  }

  #search-menu {
    top: 60px;
    left: calc(100% - 100vw + 60px);
    width: calc(100vw - 40px);
    height: auto;
    padding: 5px;
    font-size: 15px;
    margin: 0 20px;
  }
  _::-webkit-full-page-media,_:future, :root #search-menu { left: calc(100% - 100vw + 60px); width: calc(100vw - 40px); }/* safari */
  #search-menu .btn-submit            { margin-top: -0.8rem; }
  #search-menu .iSearchAssist {
    width: 100%;
    height: auto;
    padding: 5px 40px 5px 10px;
    line-height: 1.5;
    background-color: #f2f4f5;
  }
  #search-menu .btn-submit i            { font-size: 1.6rem; }

  /*ヘッダーが縮まったときの処理*/
  .js-device_sp.thin header {
    height: 40px;
    padding-top: 0;
  }
  .js-device_sp.thin header .logo {
    margin-top: 13px;
  }
  .js-device_sp.thin header .logo img {
    width: 100px;
  }
  .js-device_sp.thin header .ctrl > ul > li:before,
  .js-device_sp.thin header .ctrl > ul > li:after{
    content: none;
  }
  .js-device_sp.thin header .ctrl > ul > li:first-child,
  .js-device_sp.thin header .ctrl > ul > li:last-child{
    height: 50px;
  }


  .acd-menu {
    height: calc(100vh);
    padding: 20px 17px 60px 20px;
    text-align: left;
    overflow-y: auto;
  }
  .acd-menu li {
    margin-bottom: 34px;
  }
  .acd-menu dt {
    position: relative;
    cursor: pointer;
    font-size: 18px;
    color: #4c5768;
  }
  .acd-menu dt.border-gray {
    border-left: 0px solid #83919c;
    padding: 0;
  }
  .acd-menu dt .fa-angle-up {
    display: none;
  }
  .acd-menu dt.rotate .fa-angle-up {
    display: inline;
  }
  .acd-menu dt.rotate .fa-angle-down {
    display: none;
  }
  .acd-menu dt svg              { position: absolute; top: 50%; right: 0px; margin-top: -0.6rem !important; color: #6d7888; }
  .acd-menu dt svg.fa-external-link-square  { right: 17px; }
  .acd-menu dt.border-gray.active     { border-color: #cf000e; }
  .acd-menu .inner            { display: none; }
  .acd-menu .inner dl           { margin-left: 10px; }
  .acd-menu .inner dt {
    display:inline-block;
    width: 100%;
    margin-top: 20px;
    padding-right: 30px;
    font-size: 15px;
    border-left: 2px solid #4c5768;
    height: inherit;
    line-height: 14px;
    padding-left: 6px;
  }
  .acd-menu .inner dt.border-gray.active  { border-color: #83919c; }
  .acd-menu .inner dt a         { height: auto; padding-top: 0; }
  .acd-menu .inner dd           { display: none; margin: 20px 0 0 40px; font-size: 1.4rem; }
  .acd-menu .inner dd svg         { display: inline-block !important; margin-left: 0.5em; }
  .acd-menu .inner dd li          { margin-bottom: 10px; padding-right: 30px; }
  .acd-menu .inner dd li a        { height: auto; padding-top: 0; }
  .acd-menu .inner dd li a.active     { font-weight: bold; }
  .acd-menu .close:after          { content: ""; clear: both; display: block; height: 0; }
  .acd-menu .close label          { float: right; margin-right: 12px; font-size: 1rem; }
  .acd-menu .close svg            { color: #6d7888; font-size: 1.4rem; text-align: center; }
  header.english .acd-menu dt#menu-product dfn{ margin-right: 10px; }
  header.english .acd-menu dt#menu-product.active em { display: inline-block; margin-left: 0; }

  #menu-search-icon {
    height: 60px;
    padding-top: 20px;
  }
  #menu-icon {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    padding-top: 35px;
    color: #c0c6cf;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s linear 0s;
    z-index: 3;
  }
  .menu-trigger span {
    position: absolute;
    left: 16px;
    width: 25px;
    height: 2px;
    background-color: #c0c6cf;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 20px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 30px;
  }
  .menu-trigger span:nth-of-type(3) {
    top: 40px;
  }
}
/*========================
*
* 底部滿版
*
========================*/

.full-version {
  background-color: #f2f4f5;
  padding: 34px 0 ;
  font-size: 14px;
  margin: 55px -50px 0px;
}
.full-version .filter-box {
  display: initial;
  align-items: initial;
  margin-top: 0;
}
.full-version h5 {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 24px;
}
.full-version .full-but {
  margin: 12px;
}
.full-version .full-but .btn {
  margin-right: 5px;
  margin-left: 5px;
  padding-right: 25px;
  padding-left: 25px;
}
.full-version .full-but .btn.btn-darkgray {
  color: #4c5768;
  background-color: #fff;
  border-color: #c0c6cf;
  border-radius: 1px;
}
.full-version .full-but .btn.btn-darkgray:hover {
  color: #fff;
  background-color: #4c5768;
  border-color: #4c5768;
  border-radius: 1px;
}


@media only screen and (max-width:1024px) {
  .full-version {
    /*margin-bottom: -18px;*/
  }
}
@media only screen and (max-width:767px) {
  .full-version {
    margin-bottom: -47px;
  }
}
@media only screen and (max-width:659px) {
  .full-version {
    margin: 56px -20px -47px;
  }
  .full-version .filter-box {
    width: 73%;
  }
  .full-version .full-but {
    margin: initial;
  }
  .full-version .full-but .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .full-version .full-but .btn {
    margin-left: 0px;
  }
}
@media only screen and (max-width:414px) {
  .full-version {
    margin: 50px -20px 0;
  }
}

/*========================
*
* 分頁數按鈕列
*
========================*/
.pagination {
  margin-top: -30px;
  margin-bottom: 100px;
}

@media (max-width: 414px) {
  .pagination {
    margin-top: -50px;
    margin-bottom: 60px;
  }
}
/*========================
*
* 內頁Banner
*
========================*/

.ad-banner .img-fluid {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* position: relative; */
  /* width: 100%; */
  height: 500px;
  display: block;
}

@media only screen and (max-width:1024px) {
  .ad-banner .img-fluid {
    height: 375px;
  }
}
@media only screen and (max-width:991px) {
  .ad-banner .img-fluid {
    height: 365px;
  }
}
@media only screen and (max-width:768px) {
  .ad-banner .img-fluid {
    height: 280px;
  }
}

@media only screen and (max-width:667px) {
  .ad-banner .img-fluid {
    height: 245px;
  }
}
@media only screen and (max-width:568px) {
  .ad-banner .img-fluid {
    height: 208px;
  }
}
@media only screen and (max-width:515px) {
  .ad-banner .img-fluid {
    height: 189px;
  }
}
@media only screen and (max-width:414px) {
  .ad-banner .img-fluid {
    height: 152px;
  }
}
@media only screen and (max-width:375px) {
  .ad-banner .img-fluid {
    height: 132px;
  }
}

/*========================
*
* 標題
*
========================*/
.titlebox {
  margin-top: 50px;
}
.titlebox h5 {
  font-size: 26px;
  line-height: 38px;
}
.title-area {
  text-align: left;
}
.title-area.t-29 {
  margin-top: 13px;
}
.title-area.t-51 {
  margin-top: 35px;
}
.title-area.t-55 {
  margin-top: 55px;
}
.title-area.b-20 {
  margin-bottom: 20px;
}
.title-area.b-26 {
  margin-bottom: 26px;
}
.title-area.b-29 {
  margin-bottom: 29px;
}
.title-area.b-39 {
  margin-bottom: 39px;
}
.title-area.b-51 {
  margin-bottom: 51px;
}
.title-area h3 {
  font-size: 40px;
  color: #4c5768;
  display: flex;
  align-items: center;
}
.title-area h3.index {
  font-size: 32px;
}
.title-area p {
  margin-top: 19px;
  margin-left: 15px;
  font-size: 21px;
  line-height: 25px;
}
.title-area p.memo {
  font-size: 15px;
  line-height: 25px;
  color: #cf000e;
  margin-top: 5px;
}
.title-area .memo .memo-but {
  font-size: 13px;
  line-height: 26px;
  padding: 5px 21px;
  margin: 0 10px;
  border: solid 1px #c0c6cf;
  color: #4c5768;
}
.title-area .memo .memo-but:hover {
  background-color: #4c5768;
  border: solid 1px #4c5768;
  color: #fff;
}
.border-red {
  line-height: 38px;
  padding: 0 8px;
  margin: 0 15px;
  border-left: 4px solid #cf000e;
}
.index.border-red {
  line-height: 32px;
}
@media only screen and (max-width: 414px) {
  .title-area.t-29 {
    margin-top: 23px;
  }
  .title-area.t-51 {
    margin-top: 13px;
  }
  .title-area.t-55 {
    margin-top: 37px;
  }
  .title-area.b-20 {
    margin-bottom: 9px;
  }
  .title-area.b-26 {
    margin-bottom: 16px;
  }
  .title-area.b-29 {
    margin-bottom: 25px;
  }
  .title-area.b-39 {
    margin-bottom: 19px;
  }
  .title-area.b-51 {
    margin-bottom: 35px;
  }
  .title-area h3 {
    font-size: 28px;
  }
  .title-area p {
    font-size: 18px;
    margin-top: 9px;

  }
  .title-area .border-red {
    margin: 0;
    padding: 0 8px;
  }
  .top-titlebox .title-area .border-red {
    margin: 0 15px;
  }
  .title-area .memo span {
    display: table;
    margin-top: 6px;
  }
  .title-area .memo .memo-but {
    margin: 0;
  }
}


/*========================
*
* 跳出提示ＢＯＸ
*
========================*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: hsl(0deg 0% 100% / 80%);
}

/* using :target */
.modal-container:target {
  display: flex;
}

.modal-box {
  width: 600px;
  padding: 40px;
  border-radius: .8rem;
  background: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 14px 4px rgb(0 0 0 / 11%);
  left: 30%;
}

.modal__details {
  text-align: center;
}

.modal__title {
  font-size: 26px;
  line-height: 38px;
}


.modal__description {
  margin-top: 2rem;
  font-size: 1.6rem;

}

.modal__text {
  padding: 0 4rem;
  margin-bottom: 4rem;
  font-size: 1.6rem;
  line-height: 2;
}

.modal__text::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 18rem;
  height: 18rem;
  border: 1px solid hsla(0, 0%, 100%, .2);
  border-radius: 100rem;
  pointer-events: none;
}

.modal__btn {
  width: 180px;
  padding: 8px 0px;
  margin-top: 20px;
  margin-right: 5px;
  margin-left: 5px;
  color: inherit;
  background: transparent;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: .1rem;
  transition: .2s;
  cursor: pointer;
  color: #fff;
  background-color: #cf000e;
  border: 1px solid #cf000e;
}

.modal__btn:hover,
.modal__btn:focus {
  border: 1px solid #c0c6cf;
  background-color: #fff;
  color: #4c5768;
}

.modal__btn.class-one {
  width: 360px;
}
.modal__btn.white {
  background-color: #fff;
  color: #4c5867;
  font-size: 13px;
  line-height: 26px;
  border: 1px solid #c0c6cf;
  padding: 0 10px;
}
.modal__btn.white:hover {
  border: 1px solid #4c5768;
  color: #fff;
  background-color: #4c5768;
}

h1.tipu-one {
  font-size: 32px;
  margin-bottom: 10px;
}
h3.tipu-two {
  font-size: 21px;
  line-height: 25px;
  margin-bottom: 15px;
}
.modal__details p {
  font-size: 15px;
  line-height: 25px;
  margin-top: 5px;
}
.modal__details span {
  margin: 0 15px;
}
/* 外部人員自寫 */
/*需要大一點，所以用 lg*/
.modal-box.modal-lg {
  width: 100%;
}
.store-list {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid #C0C6CF;
}
.store-list:nth-child(even) {
  background:#F2F4F5;
}
.store-list h3 {
  font-size: 1.25rem;
  margin-bottom: .25rem;
}

/* links */
/* =============================================== 
.link-1 {
  color: var(--light);
  background: var(--background); 
  transition: .2s;
}

.link-1:hover,
.link-1:focus {
  transform: translateY(-.2rem);
}*/

.link-2 {
  width: 22px;
  height: 22px;
  color: inherit;
  font-size: 2.2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;

  
}
.link-2::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 2px;
  right: 6px;
  top: 20px;
  background-color: #c0c6cf;
    -webkit-transform: rotate(132deg) translate(-50%, -50%);
  transform: rotate(132deg) translate(-50%, -50%);
}
.link-2::before {
  content: '';
  position: absolute;
  width: 28px;
  height: 2px;
  right: -13px;
  top: 21px;
  background-color: #c0c6cf;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
}

.modal-content {
  border: 0px solid rgba(0,0,0,.2);
}
.modal__details .link-2 {
  top: 0rem;
  right: 0rem;
}

@media only screen and (max-width: 768px) {
  .modal-box {
    width: 80%;
    padding: 30px;
  }
}
@media only screen and (max-width: 551px) {
  .modal__btn.class-one {
    width: 100%;
  }
  h1.tipu-one {
    font-size: 28px;
    line-height: 38px;
  }
  h3.tipu-two{
    margin-bottom: 10px;
  }
  .modal__details p {
    text-align: left;
  }
  .modal__btn.class-one {
    margin-top: 10px;
  }
  .modal__btn.white {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 414px) {
  .modal-box {
    width: 90%;
    margin: -110px;
  }
  .modal__title {
    font-size: 21px;
  }
  .modal__btn {
    margin-top: 10px;
    letter-spacing: .1rem;
  }
  /* 外部人員自寫 */
  .modal-box.modal-lg {
    width: auto;
    margin: 20px;
  }
}

/*========================
*
* 浮動選單   0715修改
*
========================*/
.floating-menu-wrapper {
  position: fixed;
  z-index: 999999;
  top: 40%;
  right: 3.6%;
  height: 200px;
  -webkit-transform: translateY(-50%); 
      -ms-transform: translateY(-50%); 
          transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.floating-menu-item {
  white-space: nowrap;
  position: absolute;
}
/* 20211013 Alvin */
.floating-menu {
  position: relative;
  z-index: 20;
  width: 40px;
  height: 100%;
  border-radius: 0.6em;
  box-shadow: 0px 0px 14px 4px rgb(0 0 0 / 11%);
  background-color: #fff;
}
.floating-menu li {
  font-size: 15px;
  line-height: 40px; 
  display: block;
  /*padding-right: 18px;*/
  text-decoration: none;
  color: #4c5768;
  display: inline-block;
  width: 40px;
  height: 40px;
  content: ''; 
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-menu li:hover {
  background-color: #c0c7cf;
}

/* 修理按鈕 */
.floating-menu-wrench {
  display: inline-block;
  max-width: 40px;
  right: 0;
  background-color: #fff;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}
/* 信箱按鈕 */
.floating-menu-envelope {
  top:  20%;
  right: 0;
  max-width: 40px;
  background-color: #fff;
  border-top: 1px solid #c0c7cf52;
  border-bottom: 1px solid #c0c7cf52;
}
/* 建築按鈕 */
.floating-menu-building {
  top:  40%;
  right: 0;
  max-width: 40px;
  background-color: #fff;
  border-bottom: 1px solid #c0c7cf52;
}
/* 建築按鈕 */
.floating-menu-facebook {
  top:  60%;
  right: 0;
  max-width: 40px;
  background-color: #fff;
  border-bottom: 1px solid #c0c7cf52;
}
/* youtube */
.floating-menu-youtube {
  top:  80%;
  right: 0;
  max-width: 40px;
  background-color: #fff;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}



.floating-menu-building ul {
  list-style: none;
}

/* 20211015 Alvin */
.floating-menu-btn {
  display: none;
  background-color: #f2f4f5;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: -35px;
  border-radius: 50% 0 0 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 19;
  box-shadow: 0px 0px 14px 4px rgb(0 0 0 / 11%);
}

.floating-menu-btn svg {
position: relative;
left: -10px;
transition: 0.5s ease-in-out;
transform-origin: center;
}

@media only screen and (max-width: 768px) {
  .floating-menu-wrapper {
    right: 8px;
    transform: translate(48px, -50%);
  }
  .floating-menu-btn {
    display: flex;
  }


  .floating-menu-wrapper.active {
    transform: translate(0, -50%);
  }
  .floating-menu-wrapper.active .floating-menu-btn svg{
    transform: rotate(180deg);
  }
}
/* 20211013 Alvin end*/


/*========================
*
* footer
*
========================*/
footer {
  /*margin-top: 30px;*/
  padding: 0 50px 50px;
}
/* Main Footer */
footer .main-footer{
  padding: 20px 0;
  border-top: 1px solid #c0c6cf;
}
footer ul{  padding-left: 0;  list-style: none;}

.footer-logo {
  /*text-align: left;*/
  display:flex;
  align-items:center;
  justify-content:center;
}
.footer-logo img {
  width: 90px;
}
/* Copy Right Footer */
.main-footer .container {
  max-width: inherit;
}
.main-footer .col-sm-3 {
  border-left: 1px solid #c0c6cf;
}
.footer-copyright {
  background: #f2f4f5;
  padding: 5px 0;
}
.footer-copyright .container {
  max-width: inherit;
  padding: 20px;
}
.footer-copyright .logo {    display: inherit;}
.footer-copyright nav {    float: right;    margin-top: 5px;}
.footer-copyright nav ul {  list-style: none; margin: 0;  padding: 0;}
.footer-copyright nav ul li { border-left: 1px solid #505050; display: inline-block;  line-height: 12px;  margin: 0;  padding: 0 8px;}
.footer-copyright nav ul li a{  color: #969696;}
.footer-copyright nav ul li:first-child { border: medium none;  padding-left: 0;}
.footer-copyright p {
  color: #475065;
  margin: 2px 0 0;
  line-height: 26px;
  font-size: 13px;
}
/* 0714修改 */
.footer-copyright p .br {
  margin-left: 7px;
}

.footer-copyright .text-right {
  position: relative;
  width: 100%;
}
.footer-copyright .text-right p {
  position: absolute;
  bottom: 0;
  width: 91%;
}
.main-footer .col-sm-2.footer-logo,
.footer-copyright .col-sm-2 {
  -ms-flex: 0 0 11.666667%;
  flex: 0 0 11.666667%;
  max-width: 11.666667%;
}
.footer-copyright .col-sm-10 {
  -ms-flex: 0 0 88.333333%;
  flex: 0 0 88.333333%;
  max-width: 88.333333%;
}
.footer-copyright .col-sm-2,
.footer-copyright .col-sm-10 {
  padding: 0 1px;
}
.footer-copyright-container {
  margin-right: 15px;
}
/* Footer Top */
.footer-top{  background: #252525;  padding-bottom: 30px; margin-bottom: 30px;  border-bottom: 3px solid #222;}

/* Footer transparent */
footer.transparent .footer-top, footer.transparent .main-footer{  background: transparent;}
footer.transparent .footer-copyright{ background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3) ;}

/* Footer light */
footer.light .footer-top{ background: #f9f9f9;}
footer.light .main-footer{  background: #f9f9f9;}
footer.light .footer-copyright{ background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3) ;}

footer .follow p {
  margin-bottom: 5px;
}
.follow {
  text-align: left;
  margin-left: 30px;
}
.follow a {
  font-size: 15px;
  color: #4c5768;
  line-height: 36px;
}
.follow a:hover {
  cursor: pointer;
  opacity: 0.7;
}
.follow .d-inline-block {
  background-color: #f2f4f5;
  margin-right: 8px;
}


@media only screen and (max-width: 991px) {
  footer .main-footer .col-sm-7 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .footer-logo {
    justify-content: initial;
  }
  .main-footer .col-sm-2.footer-logo {
    -ms-flex: 0 0 0%;
        flex: 0 0 0%;
        max-width: 0%;
  }
  .footer-copyright .col-sm-2,
  .footer-copyright .col-sm-10 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
  }
}
@media only screen and (max-width: 850px) {
  footer .main-footer .col-sm-7 {
    flex: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width:768px) {
  footer .main-footer {
    padding-top: 0;
  }
  .footer-logo {
    text-align: left;
  }
  .footer-menu {
    margin-top: 15px;
  }
  .footer-menu .col-sm-2 {
    width: 33%;
  }
  .main-footer .col-sm-7 {
    padding-right: 0;
  }
  .main-footer .col-sm-3 {
    border-left: 0px solid #c0c6cf;
    border-top: 1px solid #c0c6cf;
    padding: 0;
  }
  .follow {
    margin-left: 0;
    margin-right: 0;
    margin-top: 25px;
  }
  .footer-copyright p {
    font-size: 13px;
  }
  .footer-copyright .text-right p {
    position: inherit;
    text-align: left;
  }
  .footer-logo img {
    margin: -10px 20px 0;
  }
}
@media only screen and (max-width:767px) {
  footer {
    padding: 0 20px 20px;
  }
  .footer-copyright-container {
    padding: 0 20px;
    margin-right: 0;
  }
}
@media only screen and (max-width:414px) {
  footer .footer-logo img {
    /*width: 120px;*/
  }
}
@media only screen and (max-width:375px) {
  .footer-copyright .container {
    padding: 20px 15px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  footer .main-footer .col-sm-3 {
    border-left: 0px solid #c0c6cf;
    border-top: 1px solid #c0c6cf;
    position: relative;
    width: 100%;
    padding-top: 25px;
    padding-right: 15px;
    padding-left: 0px;
    flex: 100%;
    max-width: 100%;
  }
  footer .follow {
    margin-left: 0;
  }
  footer .follow p {
    width: 50%;
    float: left;
  }
}

/*==================== 
  Widgets 
====================== */
.widget{  padding: 20px;  margin-bottom: 40px;}
.widget.widget-last{  margin-bottom: 0px;}
.widget.no-box{
  padding: 0;
  background-color: transparent;
  margin-bottom: 0px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
}
.widget.subscribe p{  margin-bottom: 18px;}
.widget li a{
  color: #4c5768;
  font-size: 13px;
  /*line-height: 26px;*/
}
.widget li a:hover{
  cursor: pointer;
  opacity: 0.7;
}

.typo-light h1, 
.typo-light h2, 
.typo-light h3, 
.typo-light h4, 
.typo-light h5, 
.typo-light h6,
.typo-light p,
.typo-light div,
.typo-light span,
.typo-light small{  color: #000;}

.typo-light h5 {
  font-size: 15px;
  line-height: 26px;
  height: 33px;
  color: #4c5768;
  font-weight: bold;
}

.thumbnail-widget li {
  height: 30px;
}
.main-footer .col-sm-2, .main-footer .col-sm-7 {
  padding-left: 1px;
  padding-right: 1px;
}
.main-footer .col-sm-7 {
  padding-right: 30px;
}
ul.widget-title li {
  margin-bottom: 7px;
  font-weight: bold;
}
ul.widget-title li a {
  font-size: 15px;
}
.widget-title li {
  height: 40px;
}


.page-link {
  color: #4c5768;
  border: 0px solid #dee2e6;
}

@media (max-width: 414px) {
  .page-link {
    font-size: 15px;
    line-height: 26px;
  }
}

/*========================
*
* 按鈕單變化
*
========================*/
.switch {
  position: relative;
  width: 120px;
  height: 36px;
  font-size: 15px;
  line-height: 26px;
  margin: 0 5px;
  background-color: #c2c8cf;
  color: #fff;
}
.switch span {
  position: absolute;
  width: 13px;
  height: 3px;
  top: 54%;
  right: 10px;
  margin: -2px 0px 0px -4px;
  background: #c2c9cf;
  display: block;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 2px;
}
.switch span:after {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 5px;
  margin-top: -5px;
  background: #c2c9cf;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 2px;
}
form input[type=checkbox] {
  display: none;
}
.switch label {
  cursor: pointer;
  width: 120px;
  position: absolute;
  padding: 5px 20px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
/* 國產 */
label[for=nati] {
  left: 0px;
}
#nati:checked ~ .switch {
  border: 1px solid #c0c6cf;
  background-color: #fff;
}
#nati:checked ~ .switch span {
  background: #cf000e;
  margin-left: -8px;
}
#nati:checked ~ .switch span:after {
  background: #cf000e;
}
#nati:checked ~ .switch label[for=nati] {
  color: #4c5768;
}
/* 進口 */
label[for=port] {
  left: 0px;
}
#port:checked ~ .switch {
  border: 1px solid #c0c6cf;
  background-color: #fff;
}
#port:checked ~ .switch span {
  background: #cf000e;
  margin-left: -8px;
}
#port:checked ~ .switch span:after {
  background: #cf000e;
}
#port:checked ~ .switch label[for=port] {
  color: #4c5768;
}
/* 商用 */
label[for=commer] {
  left: 0px;
}
#commer:checked ~ .switch {
  border: 1px solid #c0c6cf;
  background-color: #fff;
}
#commer:checked ~ .switch span {
  background: #cf000e;
  margin-left: -8px;
}
#commer:checked ~ .switch span:after {
  background: #cf000e;
}
#commer:checked ~ .switch label[for=commer] {
  color: #4c5768;
}

@media (max-width: 414px) {
  .switch,
  .switch label {
    width: 92px;
  }
  .switch label {
    padding: 5px 10px;
  }
}

/*0410增加*/
.modal-content {
  border: 0
}
.modal-header {
  padding: 0;
}
.wrong-page {
  margin-top: 3rem;
  background-image: url(../img/404_bg.jpg);
  background-size: cover;
  background-position: bottom left;
  padding: 7.5rem;
}
.wrong-page .wrong-pagebox {
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}
.wrong-page .wrong-pagebox h3 {
  font-size: 2rem;
}
.wrong-page .wrong-pagebox h4 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.wrong-page .wrong-pagebox p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.wrong-page .wrong-pagebox li {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.wrong-page .wrong-pagebox .baseline {
  border-bottom: 3px solid #C8000E;
  width: 46px;
  margin: 12px auto 0;
}
@media only screen and (max-width:768px) {
  .wrong-page {
    padding: 3rem;
  }
  .wrong-page .wrong-pagebox h3 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width:480px) {
  .wrong-page {
    padding: 2rem;
    background-position: 10% bottom;
  }

  .wrong-page .wrong-pagebox h4 {
    font-size: 1.15rem;
  }
}
@media only screen and (max-width:480px) {
  .full-version h5 {
    font-size: 1rem;
  }
  .full-version .filter-box {
    width: 88%;
  }
}

/* 0714修改 */
@media only screen and (max-width:414px) {
  .full-version h5 {
    font-size: 17px;
  }
  .footer-copyright p .ol {
    display: block;
  }
  .footer-copyright p .br {
    margin-left: 0;
  }
}

.fa-facebook-square{
  color: blue;
}

.fa-youtube{
  color: red;
}

