@charset "UTF-8";
.color01 {
  color: #263787 !important;
}

.color02 {
  color: #5b5b5b;
}

.color03 {
  color: #2aaadd;
}

.color04 {
  color: #000;
}

.fz01 {
  font-size: 0.9rem !important;
}

.fz02 {
  font-size: 1rem !important;
}

.fz03 {
  font-size: 1.6rem !important;
}

.bg01 {
  background: #ececec;
}

.w-md-20 {
  width: 20%;
}

.w-md-30 {
  width: 30%;
}

.w-md-40 {
  width: 40%;
}

.w-md-50,
.w-lg-50 {
  width: 50%;
}

.w-md-70 {
  width: 70%;
}

.w-lg-30 {
  width: 30%;
}

.w-lg-40 {
  width: 40%;
}

.fw400 {
  font-weight: 400 !important;
}

.border-md-right {
  border-right: 1px solid #dee2e6;
}

.lineh01 {
  line-height: 2rem;
}

@media (max-width: 991px) {
  .w-lg-30,
  .w-lg-40,
  .w-lg-50 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .w-md-20,
  .w-md-30,
  .w-md-50,
  .w-md-70 {
    width: 100%;
  }
  .border-md-right {
    border-right: none;
  }
}
.modal-btn {
  cursor: pointer;
}

* {
  box-sizing: border-box;
  transition: all 0.1s ease;
  font-weight: 400;
}

body {
  margin: 0;
  padding: 0;
  font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 15px;
  line-height: 1.6rem;
  color: #676767;
}

a {
  color: #263787;
}
a:hover {
  color: #263787;
  text-decoration: none;
}
a:focus {
  outline: none;
}

figure {
  margin-bottom: 0;
}

.header {
  box-shadow: 0em 0em 10px rgba(0, 0, 0, 0.3);
  background: #fff;
}
.header .logo {
  width: 150px;
}

.banner .slider-item {
  position: relative;
  height: 100vh;
  background-size: cover;
}
.banner .slider-item .txt {
  position: absolute;
  right: 5%;
  bottom: 10%;
  transform: translateY(-50%);
  color: #fff;
  letter-spacing: 0.7rem;
  text-align: right;
}
.banner .slider-item .txt h1 {
  position: relative;
  font-size: 3rem;
  line-height: 4rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.7rem;
}
.banner .slider-item .txt p {
  position: relative;
  font-size: 2rem;
  line-height: 1rem;
}
.banner .slider-item .txt p span {
  font-weight: 300;
}
.banner .slick-active .txt h1 {
  animation-delay: 0s;
  animation: slick-txt 2s;
  -webkit-animation: slick-txt 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.banner .slick-active .txt p {
  animation: slick-txt 2s;
  -webkit-animation: slick-txt 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  opacity: 0;
}
.banner .down {
  position: absolute;
  left: 50%;
  top: 90%;
  width: 2px;
  background: #fff;
  height: 0px;
  animation: down 2s;
  -webkit-animation: down 2s;
  animation-iteration-count: infinite;
}

.page.banner {
  position: relative;
  padding-top: 45px;
  height: 350px;
  background-size: cover;
}
.page.banner .txt {
  position: absolute;
  bottom: 5%;
  color: #fff;
}
.page.banner .txt h1 {
  font-weight: 300;
  letter-spacing: 0.7rem;
}
.page.banner:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="rgba(0,0,0,.8)", endColorstr="rgba(0,0,0,.3 )",GradientType=1 );
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0.5rem;
}
.breadcrumb li {
  margin: 0;
}
.breadcrumb li a {
  color: #fff;
}
.breadcrumb li.active {
  color: #fff;
  font-weight: 400;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

@keyframes slick-txt {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  100% {
    transform: translate3d(0, 0px, 0);
    opacity: 1;
  }
}
@keyframes down {
  0% {
    height: 0;
  }
  50% {
    height: 50px;
    top: 90%;
  }
  65% {
    height: 0px;
    top: 98%;
  }
  100% {
    top: 90%;
  }
}
.main .title {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  position: relative;
}
.main .title .title-h1 {
  position: relative;
  margin-bottom: 1rem;
  color: #263787;
}
.main .title .title-h1::before {
  content: "";
  background: #263787;
  position: absolute;
  left: 48%;
  top: -10px;
  height: 1px;
  width: 4%;
}
.main .title .title-h1::after {
  content: "";
  background: #263787;
  position: absolute;
  left: 48%;
  bottom: -10px;
  height: 1px;
  width: 4%;
}
.main .title span {
  font-size: 1.2rem;
  display: block;
}
.main .title p {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.8rem;
  color: #656565;
}

.services-block .services-item {
  overflow: hidden;
  border-radius: 40px 0 40px 0;
  position: relative;
}
.services-block .services-item a {
  display: block;
  height: 100%;
}
.services-block .services-item a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
}
.services-block .services-item a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: #263787;
  opacity: 0;
  transition: all 0.2s;
}
.services-block .services-item a:hover .txt {
  transform: translateY(-50%);
}
.services-block .services-item a:hover .txt .detail {
  opacity: 0.9;
  height: auto;
  transform: translateY(0%);
  transition: all 0.5s ease-in;
}
.services-block .services-item a:hover .pic {
  transform: scale(1.1);
  transition: all 0.5s ease-in;
}
.services-block .services-item a:hover:after {
  background: rgba(0, 0, 0, 0);
}
.services-block .services-item a:hover:before {
  opacity: 0.7;
}
.services-block .services-item a .more {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  display: block;
  position: relative;
}
.services-block .services-item a .more span {
  color: #263787;
  background: #fff;
  padding: 0.2rem 0.5rem;
}
.services-block .services-item .txt {
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0 auto;
  width: 100%;
  padding: 0 4rem;
  transform: translateY(-20%);
  z-index: 999;
  color: #fff;
  text-align: center;
  transition: transform 0.5s ease-in;
}
@media (max-width: 1200px) {
  .services-block .services-item .txt {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .services-block .services-item .txt {
    padding: 0 1.5rem;
  }
}
@media (max-width: 767px) {
  .services-block .services-item .txt {
    padding: 0 1rem;
  }
}
.services-block .services-item .txt h5 {
  font-weight: 400 !important;
}
.services-block .services-item .txt .detail {
  opacity: 0;
  transform: translateY(50%);
  transition: all 0.5s ease-in;
  color: #fff;
}
.services-block .services-item .pic {
  transform: scale(1);
  transition: all 0.5s ease-in;
}
.services-block .cs-bottom .txt {
  padding: 0 0.5rem !important;
}
.services-block .cs-bottom:before {
  margin: 0 !important;
}
.services-block .cs-bottom .services-item {
  border-radius: 0;
}

.core-box {
  position: relative;
}
.core-box:before {
  content: "";
  position: absolute;
  height: 50%;
  width: 1px;
  left: 50%;
  top: 0%;
  background: #263787;
}
.core-box .txt {
  background: #fff;
  padding: 1rem 0;
}
.core-box .box1 {
  margin-top: 7%;
  position: relative;
}
.core-box .box1 .tit:before {
  content: "";
  position: absolute;
  width: 50%;
  right: -12%;
  top: 70%;
  background: #263787;
  height: 1px;
}
.core-box .box2 {
  margin-top: 7%;
  position: relative;
}
.core-box .box2 .tit:before {
  content: "";
  position: absolute;
  width: 50%;
  left: -12%;
  top: 70%;
  background: #263787;
  height: 1px;
}
.core-box .box3 {
  margin-top: 3rem;
  position: relative;
}
.core-box .box3 .item {
  width: 20%;
}
.core-box .box3:before {
  content: "";
  position: absolute;
  height: 120%;
  width: 1px;
  left: 50%;
  top: -124%;
  background: #263787;
}
.core-box .tit {
  margin: 1.5rem 0 2rem;
  font-size: 1.2rem;
  text-align: center;
  position: relative;
}
.core-box .tit span {
  background: #263787;
  color: #fff;
  padding: 0.5rem 0.8rem;
  position: relative;
}
.core-box .tit span:after {
  content: "";
  position: absolute;
  border: 1px solid #263787;
  left: 5px;
  right: -5px;
  top: 5px;
  bottom: -5px;
}

.contact-box .contact-bg {
  color: #fff;
  background-size: cover;
  min-height: 320px;
}
.contact-box .contact-bg.bg1 {
  background-image: url(../_img/contact-pic1.jpg);
  background-position: 70% 0;
}
.contact-box .contact-bg.bg2 {
  background-image: url(../_img/contact-pic2.jpg);
  background-position: 70% 0;
}

.service-box {
  background-image: url(../_img/about-bg-1.jpg);
  background-position: 50% 50%;
  background-size: cover;
}
.service-box .h1 {
  font-size: 4rem !important;
  font-weight: 400 !important;
}

.logo-box img {
  height: 50px;
}

.news-box a {
  color: #676767;
}
.news-box a:hover .detailed {
  color: #263787;
}

.scrollTop {
  position: fixed;
  bottom: 15%;
  right: 4%;
  border: 2px solid #263787;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  opacity: 0;
  z-index: 1031;
}
.scrollTop i {
  position: absolute;
  transform: rotate(90deg);
  font-weight: bold;
  left: 10px;
  top: 10px;
}

.tip {
  border-radius: 5px;
  font-size: 0.8rem;
  line-height: 1;
  background: #263787;
  color: #fff;
  padding: 0.3rem 0.5rem;
}

.tc-wrap > button {
  display: block;
  background-color: transparent;
  border: 1px solid #263787;
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  width: 100%;
  text-align: left;
  color: #263787;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.tc-wrap > button:focus {
  outline: none;
  box-shadow: none;
}
.tc-wrap > button::after {
  content: "";
  border: solid #263787;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  position: absolute;
  right: 10px;
  top: 18px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: all 0.2s;
}
.tc-wrap > button.collapsed {
  border-color: #ddd;
}
.tc-wrap > button.collapsed:hover {
  border-color: #263787;
}
.tc-wrap > button.collapsed::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.tc-wrap > div {
  background-color: #f6f6f6;
  padding: 1rem;
  color: black;
}
.tc-wrap > div h6 {
  font-size: 15.9px;
}

@media (max-width: 991px) {
  * {
    font-size: 14px;
    line-height: 24px;
  }
  .header .logo {
    width: 100px;
  }
  .banner .slider-item .txt {
    right: 10%;
    bottom: 40%;
  }
  .banner .slider-item .txt h1 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.3rem;
  }
  .banner .slider-item .txt p {
    font-size: 1.3rem;
    margin: 1.3rem 2.8rem 1.3rem;
  }
  .banner .slider-item .txt span {
    font-size: 1.3rem;
  }
  .banner .slider-item .txt span:before {
    display: none;
  }
  .page.banner {
    height: 250px;
  }
  .core-box .tit span {
    font-size: 1.2rem;
  }
  .core-box .box3:before {
    display: none;
  }
  .core-box .box3 .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .page.banner {
    height: 150px;
  }
  .page.banner .txt h1 {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.3rem;
  }
  .core-box:before {
    content: "";
    height: 100%;
  }
  .core-box .box1 .tit:before,
  .core-box .box2 .tit:before {
    display: none;
  }
}
@media (max-width: 375px) {
  .banner .slider-item .txt p {
    font-size: 1.3rem;
    margin: 1.3rem 0;
  }
}
.slick-prev,
.slick-next {
  height: auto;
  width: auto;
}

.slick-next {
  right: 25px;
}
.slick-next:before {
  font-family: "icofont";
  content: "\e901";
  font-size: 2rem;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 25px;
  position: absolute;
  z-index: 999;
}
.slick-prev:before {
  font-family: "icofont";
  content: "\e900";
  font-size: 2rem;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots {
  bottom: 18px;
  text-align: left;
  padding: 0 11%;
}
.slick-dots li {
  width: auto;
  height: auto;
  font-size: 1rem;
}
.slick-dots li.slick-active button:before {
  color: #fff;
  background: #fff;
  opacity: 1;
}
.slick-dots li button {
  width: auto;
  height: auto;
  font-size: 1rem;
}
.slick-dots li button:before {
  content: "";
  border: 2px solid #fff;
  border-radius: 100%;
  width: 12px;
  height: 12px;
}

@media (max-width: 767px) {
  .slick-next:before,
  .slick-prev:before {
    font-size: 1.4rem;
  }
  .slick-next {
    right: 10px;
  }
  .slick-prev {
    left: 10px;
  }
  .slick-dots {
    bottom: 5px;
    padding: 0 13%;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
  .slick-dots li button:before {
    width: 10px;
    height: 10px;
  }
}
.nav-tabs {
  border: none;
  overflow: hidden;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover,
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  border: none;
}
.nav-tabs .nav-link, .nav-tabs .nav-link:hover {
  background: #ddd;
  color: #888;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.nav-tabs .nav-link.active, .nav-tabs .nav-link.active:hover {
  color: #555;
  background: #fff;
  font-size: 1.1rem !important;
  border-top: 2px solid #263787;
  border-radius: 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  border-bottom: 1px solid rgb(255, 255, 255);
}

.accordion .qa-list {
  border-bottom: 1px solid #f0f0f0;
}
.accordion .qa-list .card-header {
  border-radius: 0 !important;
  background: #fff;
  font-size: 1.2rem;
  padding: 0;
  border: none;
}
.accordion .qa-list .card-header a {
  display: flex;
  text-align: left;
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem 1.2rem 2.4rem;
  position: relative;
}
.accordion .qa-list .card-header a::after {
  content: " Q、 ";
  position: absolute;
  left: 0;
  top: 14px;
}
.accordion .qa-list .card-header button {
  outline: none;
  -webkit-appearance: none; /* Safari 和 Chrome，常用於iOS下移除內建樣式 */
  -moz-appearance: none; /* FireFox */
  appearance: none;
  border: none;
  background: transparent;
  position: relative;
  width: 100%;
  border-radius: 0;
}
.accordion .qa-list .card-header button.collapsed {
  color: #000 !important;
}
.accordion .qa-list .card-header button.btn {
  padding: 1.2rem 2.5rem 1.2rem 1.2rem;
  font-size: 1.4rem;
  text-align: left;
  color: #263787;
  margin: 0;
}
.accordion .qa-list .card-header button.btn:focus {
  font-size: 1.4rem;
  box-shadow: none;
}
.accordion .qa-list .card-header [aria-expanded=true] {
  color: #263787;
}
.accordion .qa-list .card-header [aria-expanded=true]:hover {
  color: #263787;
}
.accordion .qa-list .card-header [aria-expanded=true]:before {
  content: "\e90b";
  font-family: "icofont";
  position: absolute;
  right: 10px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
.accordion .qa-list .card-header [aria-expanded=false]:before {
  content: "\e90b";
  font-family: "icofont";
  position: absolute;
  right: 10px;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}
.accordion .qa-list .card-body {
  position: relative;
  padding-left: 70px !important;
}
.accordion .qa-list .card-body:after {
  content: " A、 ";
  position: absolute;
  left: 40px;
  top: 0;
}
.accordion .item-list .card-header {
  background: none;
  border-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0;
  position: relative;
}
.accordion .item-list .card-header [aria-expanded=true] {
  border-top: 1px solid #263787;
  display: block;
}
.accordion .item-list .card-header [aria-expanded=true] .tit {
  border-top: 2px solid #263787;
}
.accordion .item-list .card-header [aria-expanded=true]:hover {
  color: #263787;
}
.accordion .item-list .card-header [aria-expanded=true]:before {
  content: "\e90b";
  font-family: "icofont";
  position: absolute;
  right: 10px;
  top: 10px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
  color: #263787;
}
.accordion .item-list .card-header [aria-expanded=false]:before {
  content: "\e90b";
  font-family: "icofont";
  position: absolute;
  right: 10px;
  top: 10px;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}
.accordion .item-list .card-body {
  padding: 0;
  padding-left: 25%;
  position: relative;
}
.accordion .item-list .card-body .card-body-tit {
  position: sticky;
  left: 0;
  top: 100px;
  height: 0;
  width: 25%;
  opacity: 0;
  transform: translateX(-125%);
}
.accordion .item-list .card-body .card-body-tit.active {
  top: 100px;
  height: auto;
  opacity: 1;
  padding: 0.7rem 0.5rem;
  border-top: 3px solid #263787;
  color: #000;
}
.accordion .item-list .tit {
  border-top: 2px solid rgba(0, 0, 0, 0.125);
  width: 25%;
  color: #000 !important;
}
.accordion .item-list .content {
  position: relative;
  left: 30px;
  width: calc(70% - 10px);
}
.accordion .item-list .content:after {
  content: "";
  position: absolute;
  left: -10px;
  top: 20px;
  width: 5px;
  height: 5px;
  background: #C4C4C4;
}
.accordion .item-list .item > div {
  padding: 0.7rem 0.5rem;
  color: #676767;
}

.list-style01 {
  list-style-type: square;
  color: #676767;
  padding-left: 1.9rem;
  position: relative;
}
.list-style01 li {
  line-height: 1.6rem;
  position: relative;
  list-style-type: none;
  padding: 0.6rem 0.5rem;
}
.list-style01 li:after {
  content: "";
  position: absolute;
  left: -10px;
  top: 20px;
  width: 5px;
  height: 5px;
  background: #C4C4C4;
}

@media (max-width: 991px) {
  .accordion .qa-list .card-header a {
    display: block;
  }
  .accordion .qa-list .card-body {
    padding: 0.25rem;
  }
  .accordion .qa-list .card-body {
    position: relative;
    padding-left: 30px !important;
  }
  .accordion .qa-list .card-body:after {
    content: " A、 ";
    position: absolute;
    left: 3px;
    top: 0;
  }
  .accordion .item-list .tit {
    width: 30%;
  }
  .accordion .item-list .content:after {
    left: -10px;
    top: 18px;
  }
  .accordion .item-list .card-body {
    padding: 0;
    padding-left: 29.2%;
  }
  .accordion .item-list .card-body ul {
    padding-left: 2.3rem;
  }
  .accordion .item-list .card-body ul li:after {
    left: -10px;
    top: 16px;
  }
  .accordion .item-list .card-body .card-body-tit {
    width: 40%;
    transform: translateX(-110%);
  }
  .accordion .item-list .content {
    width: calc(70% - 30px);
  }
  .list-style01 li:after {
    left: -10px;
    top: 16px;
  }
}
ol li,
ul li {
  line-height: 1.8rem;
}

.list-inline {
  margin: 0;
  padding: 0;
  margin: 0;
  padding: 0;
}
.list-inline li {
  list-style-type: none;
  display: inline-block;
}

ol {
  margin: 0;
  padding: 0;
}
ol > li {
  list-style-type: cjk-ideographic;
  margin-left: 50px;
}
ol > li > ol > li {
  list-style-type: decimal;
  margin-left: 25px;
}
ol > li > ol > li > ol > li {
  position: relative;
  list-style-type: decimal;
}
ol > li > ol > li > ol > li:after {
  content: ")";
  position: absolute;
  left: -3px;
  top: 0;
}
ol > li > ol > li > ol > li:before {
  content: "(";
  position: relative;
  left: -25px;
}
ol > li > ol > li > ol > li:nth-child(1n+10):before {
  left: -32px;
}
ol > li > ol > li > ol > li > ol > li {
  list-style-type: upper-alpha;
}
ol > li > ol > li > ol > li > ol > li:after, ol > li > ol > li > ol > li > ol > li:before {
  content: "";
}
ol > li > ol > li > ol > li > ol > li > ol > li {
  position: relative;
  list-style-type: lower-alpha;
}
ol > li > ol > li > ol > li > ol > li > ol > li:after {
  content: ")";
  right: -3px;
}
ol > li > ol > li > ol > li > ol > li > ol > li:before {
  content: "(";
  left: -25px;
}

.table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  border-spacing: 0;
}
.table thead th {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  vertical-align: middle;
}
.table thead th:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.table thead th:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.table td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  vertical-align: middle;
}
.table tbody th {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  vertical-align: middle;
}

.table-style01 {
  border: none;
}
.table-style01 th, .table-style01 td {
  padding: 0.5rem;
}
.table-style01 tbody tr {
  background: white;
  border-bottom: 1px solid #dfdfdf;
}
.table-style01 tbody tr:nth-child(even) {
  background: #f6f6f6;
}
.table-style01 tbody tr:hover {
  background-color: rgba(38, 55, 135, 0.05);
}
.table-style01 td {
  border: none;
}
.table-style01 thead th {
  color: #263787;
  font-weight: 500;
  background-color: transparent;
  border-bottom: 3px solid #ddd;
  border-top-width: 0;
  border-right-width: 0 !important;
  border-left-width: 0 !important;
  vertical-align: bottom;
}
.table-style01 tbody th {
  background: rgba(38, 55, 135, 0.8);
  color: white;
}
.table-style01 .bg-point {
  background-color: rgba(14, 168, 255, 0.05);
}
.table-style01.traffic-style tbody tr td:nth-child(4n) {
  border-left: 1px solid #dfdfdf;
}
.table-style01.traffic-style tbody tr td:nth-child(4n+1) {
  border-right: 1px solid #dfdfdf;
}
.table-style01.traffic-style tbody tr td:last-child {
  border-right: none;
}
.table-style01.rent-style.table-rwd.th-xxl td[data-title]::before {
  min-width: 180px;
}

.table-style02 {
  border-width: 0px;
}
.table-style02 tr {
  border-bottom: 1px solid #dfdfdf;
  border-top: 1px solid #dfdfdf;
}
.table-style02 td {
  border: none;
}
.table-style02 thead th {
  background: transparent;
  color: #000;
  border-width: 3px 0 0 0px;
}
.table-style02 thead th:first-child, .table-style02 thead th:last-child {
  border-right: none;
  border-left: none;
}
.table-style02 tbody th {
  background: #f5f5f5;
  color: #000;
}

.rwd-hide {
  display: none;
}

@media (max-width: 991px) {
  .table {
    font-size: 0.9rem;
  }
  .table td,
  .table th {
    padding: 0.5rem 0.75rem;
  }
  .table-rwd {
    min-width: 100%;
  }
  .table-rwd thead {
    display: none;
  }
  .table-rwd th,
  .table-rwd td {
    text-align: left;
    overflow: hidden;
    width: 100%;
    display: block;
  }
  .table-rwd tr {
    border-bottom: 1px solid #dfdfdf;
  }
  .table-rwd tr.rwd-hide {
    display: block;
  }
  .table-rwd td {
    border: none;
    padding: 0.4rem 0.75rem 0.1rem;
  }
  .table-rwd td:last-child {
    padding: 0.4rem 0.75rem;
  }
  .table-rwd td.rwd-d-none {
    display: none !important;
  }
  .table-rwd td[data-title]:before {
    content: attr(data-title);
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 10px;
  }
  .table-rwd.table-style01 tbody tr th {
    text-align: left;
    background: transparent;
    border-top-width: 0;
    border-bottom: 3px solid #ddd;
    color: #263787;
    font-weight: 500;
    font-size: 15.9px;
  }
  .table-rwd.table-style01 tbody tr:nth-child(even) {
    background: white;
  }
  .table-rwd.table-style01 tbody tr:not(:first-child) th:first-child,
  .table-rwd.table-style01 tbody tr:not(:first-child) td:first-child {
    margin-top: 0.5rem;
  }
  .table-rwd.table-style01 tbody tr td.rwd-mt-0 {
    margin-top: 0 !important;
    border-top-width: 0 !important;
  }
  .table-rwd.table-style01 td,
  .table-rwd.table-style01 td[data-title] {
    display: flex;
    align-items: center;
    padding: 0;
    border-top: solid 1px #dfdfdf;
    border-right: solid 1px #dfdfdf;
    padding-right: 0.5rem;
  }
  .table-rwd.table-style01 td[data-title]:before {
    font-weight: normal;
    background-color: rgba(38, 55, 135, 0.8);
    color: white;
    padding: 0.3rem 0.5rem;
    min-width: 100px;
    text-align: right;
    align-self: stretch;
  }
  .table-rwd.table-style01.rent-style.table-rwd.th-xxl td[data-title]::before {
    min-width: 105px;
    max-width: 105px;
  }
  .table-rwd.table-style01.th-lg td[data-title]:before {
    min-width: 120px;
  }
  .table-rwd.table-style01.th-xxl td[data-title]:before {
    min-width: 130px;
  }
  .table-rwd.table-style01.traffic-style tbody tr td:nth-child(4n) {
    border-left: none;
  }
  .table-rwd.table-style01.traffic-style tbody tr td:last-child {
    border-right: 1px solid #dfdfdf;
  }
  .table-rwd.table-style01.traffic-style tbody tr td:nth-child(2) {
    margin-top: 0;
  }
  .table-rwd.table-style01.traffic-style tbody tr td:nth-child(2n+1) {
    border-bottom: 1px solid #dfdfdf;
  }
}
input:focus, textarea:focus, button:focus, button {
  touch-action: manipulation;
}

.form-check {
  padding-left: 28px;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label {
  position: relative;
}

input[type=checkbox]:disabled + label:before {
  border: 2px solid #676767;
  opacity: 0.5;
}

input[type=checkbox] + label:before {
  content: "";
  display: block;
  position: absolute;
  left: -25px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #fff;
  border: 2px solid #2aaadd;
}

input[type=checkbox]:checked + label:before {
  background: #fff;
  border: 2px solid #2aaadd;
}

input[type=checkbox]:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  left: 8px;
  top: 5px;
  width: 7px;
  height: 14px;
  pointer-events: none;
  border: solid #2aaadd;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

input[type=radio] {
  display: none;
}

input[type=radio] + label {
  position: relative;
  line-height: 2.5rem;
}

input[type=radio]:disabled + label:before {
  border: 2px solid #676767;
  opacity: 0.5;
}

input[type=radio] + label:before {
  content: "";
  display: block;
  position: absolute;
  left: -25px;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #2aaadd;
}

input[type=radio]:checked + label:before {
  background: #fff;
  border: 2px solid #2aaadd;
}

input[type=radio]:checked ~ .checkmark {
  position: absolute;
  left: 12px;
  top: 0;
}

input[type=radio]:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  left: -5px;
  top: 16px;
  width: 8px;
  height: 8px;
  pointer-events: none;
  background: #2aaadd;
  border-radius: 10px;
}

.icon {
  font-size: 1.3rem;
}
.icon:before {
  position: relative;
  top: 5px;
  margin-right: 6px;
}

.btn {
  border-radius: 0px;
  background: #fff;
  color: #263787;
  padding: 0.7rem 1.5rem;
}
.btn .icon:before {
  color: #263787;
}
.btn:hover {
  background: #263787;
  color: #fff;
}
.btn:hover .icon:before {
  color: #fff;
}
.btn.more {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: #fff;
  position: relative;
  background: #263787;
  padding: 0.7rem 1rem;
}
.btn.more i {
  font-size: 1.3rem;
  width: 30px;
  height: 10px;
  overflow: hidden;
  display: inline-block;
  transition: all 0.3s ease-in;
  position: relative;
}
.btn.more i:before {
  color: #fff;
  position: absolute;
  top: -5px;
  left: 0;
  transform: translateX(-50px);
  transition: all 0.3s ease-in;
}
.btn.more:hover:after {
  width: 100%;
}
.btn.more:hover i {
  font-size: 1.3rem;
  width: 80px;
}
.btn.more:hover i:before {
  transition: all 0.3s ease-in;
  transform: translateX(0px);
}
.btn.more.border {
  border: 1px solid #263787 !important;
  background: transparent;
  color: #263787;
}
.btn.more.border i:before {
  color: #263787;
}
.btn.style01 {
  background: #263787;
  border: 1px solid #263787;
  min-width: 150px;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.6rem 0.8rem;
}
.btn.style01 i {
  font-size: 1.1rem;
  margin: 0 0.5rem 0 0;
}
.btn.style01:hover {
  border: 1px solid #263787;
  background: #fff;
  color: #263787;
}
.btn.style02 {
  background: #263787;
  min-width: auto;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.6rem 2.2rem;
  border: none;
}
.btn.style02:hover {
  background: #151f4b;
}
.btn.style03 {
  color: #676767;
}
.btn.style03:hover {
  color: #fff;
}
.btn.disabled, .btn:disabled {
  background: #aaa;
}
.btn.disabled:hover, .btn:disabled:hover {
  background: #aaa;
}

.btn-shadow {
  box-shadow: 0px 3px 5px 1px rgba(0, 0, 0, 0.4);
}

.navbar-toggler {
  z-index: 999;
  display: block;
  padding: 6px;
  height: 35px;
  width: 40px;
  margin: 0px;
  top: 0px;
  right: 0px;
  position: relative;
}
.navbar-toggler .hamburger {
  position: relative;
}
.navbar-toggler .hamburger .menui {
  transition: 0.6s ease;
  transition-timing-function: cubic-bezier(0.75, 0, 0.29, 1.01);
  margin-top: 10px;
  position: absolute;
  top: 10px;
  width: 25px;
  height: 2px;
  border-radius: 10px;
  background-color: #000;
  opacity: 0;
  margin-top: 0;
}
.navbar-toggler .hamburger .menui:first-child {
  transform: rotate(45deg);
  opacity: 1;
}
.navbar-toggler .hamburger .menui:last-child {
  transform: rotate(-225deg);
  opacity: 1;
}
.navbar-toggler.collapsed .hamburger .menui {
  opacity: 1;
}
.navbar-toggler.collapsed .hamburger .menui:first-child {
  top: 2px;
  transform: rotate(0deg);
}
.navbar-toggler.collapsed .hamburger .menui:last-child {
  top: 18px;
  transform: rotate(0deg);
}

.navbar-brand {
  margin-right: 0rem;
}

.navbar-nav li {
  margin: 0 0rem 0 1.6rem;
  padding: 1.2rem 0;
  font-size: 1rem;
  position: relative;
  z-index: 99999;
}
.navbar-nav li > a {
  color: #676767;
}
.navbar-nav li > a:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 0px;
  height: 3px;
  background: #263787;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.3s ease-in;
}
.navbar-nav li > a:hover {
  color: #263787;
}
.navbar-nav li > a:hover:before {
  width: 80px;
}
.navbar-nav li > a.btn-logout {
  color: #fff;
  background: #263787;
  font-weight: 400;
  border-radius: 5px;
  font-size: 0.85rem;
  padding: 0.3rem 0.6rem;
  transition: all 0.3s ease-in;
}
.navbar-nav li > a.btn-logout:hover {
  background: #151f4b;
  color: #fff;
}
.navbar-nav li > a.btn-logout:hover:before {
  display: none;
}
.navbar-nav li.dropdown:hover .dropdown-menu {
  display: block;
}
.navbar-nav li:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  display: block;
  visibility: visible;
}
.navbar-nav li .dropdown-menu {
  border-radius: 0rem;
  border: none;
  margin: 1px 0 0;
  padding: 0;
  transform: translateX(-50%);
  left: 50%;
  top: 130%;
  opacity: 0;
  display: block;
  visibility: hidden;
}
.navbar-nav li .dropdown-item {
  padding: 0.5rem 1rem;
  color: #676767;
}
.navbar-nav li .dropdown-item:hover {
  background: #263787;
  color: #fff;
}

@media (max-width: 1200px) {
  .navbar-nav li {
    margin: 0 0rem 0 0.8rem;
  }
}
@media (max-width: 991px) {
  .navbar-nav {
    margin-bottom: 5px;
  }
  .navbar-nav li {
    padding: 7px 5px;
    margin: 0;
  }
  .navbar-nav li > a {
    width: 100%;
    display: block;
    position: relative;
    padding-bottom: 5px;
  }
  .navbar-nav li > a:hover:before {
    height: 2px;
    width: 100%;
  }
  .navbar-nav li .btn-logout {
    background: #263787;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 0.4rem;
  }
  .navbar-nav li .btn-logout:hover {
    color: #fff;
    background: #151f4b;
  }
  .navbar-nav li.dropdown:hover .dropdown-menu {
    display: none;
  }
  .navbar-nav li.dropdown.show .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  .navbar-nav li .dropdown-menu {
    position: static;
    transform: translateX(0%);
    left: 0%;
    background: #f5f5f5;
    transition: all 0.3s ease-in;
    display: none;
  }
  .navbar-nav li:hover .dropdown-menu {
    height: auto;
    opacity: 1;
  }
}
/*日期jq*/
.dtp div.dtp-picker-month {
  padding: 0px 0 15px !important;
}
.dtp div.dtp-time,
.dtp div.dtp-date {
  background: #263787;
  opacity: 0.6;
  padding-bottom: 7px;
}
.dtp div.dtp-time > div:last-child,
.dtp div.dtp-date > div:last-child {
  margin-top: 0.3rem !important;
}
.dtp div.dtp-time > div:last-child i,
.dtp div.dtp-date > div:last-child i {
  margin-top: 0.1rem;
}
.dtp div.dtp-time .p10 > a,
.dtp div.dtp-date .p10 > a {
  color: #fff;
}
.dtp .year-picker-item:hover,
.dtp .year-picker-item.active {
  color: #263787;
  font-size: 1.2rem;
}
.dtp .year-picker-item {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
}
.dtp div.dtp-actual-year {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
}
.dtp table.dtp-picker-days tr > th {
  background: transparent;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-width: 1px;
}
.dtp .dtp-content > .dtp-date-view > header.dtp-header,
.dtp table.dtp-picker-days tr > td > a.selected {
  background: #263787;
}
.dtp div.dtp-picker {
  padding-bottom: 0.2em;
}
.dtp .btn-default {
  padding: 0 !important;
}
.dtp .dtp-close {
  right: 0;
}
.dtp .dtp-close a {
  padding: 10px;
}
.dtp .btn-flat {
  margin: 0.1rem 0 0 0.3rem;
  font-size: 0.8rem;
  border: 1px solid #263787;
  padding: 0.375rem 0.75rem;
  border-radius: 5px;
  background: #fff;
}
.dtp .btn-flat:hover {
  background: #263787;
  color: #fff;
}

.side {
  position: sticky;
  top: 0;
  z-index: 1020;
  min-height: 450px;
}
.side .dropdown-menu {
  position: relative !important;
  width: 100%;
  top: 0;
  border: none;
  border-top: 3px solid #263787;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 0;
  display: block;
}
.side .dropdown-menu ul {
  display: block !important;
}
.side .dropdown-menu .nav-item {
  margin: 0;
}
.side .dropdown-menu a {
  border-top: 1px solid #ddd;
  line-height: 1.5rem;
  padding: 1rem;
  background: #F6F6F6;
  border-bottom: 0 !important;
  color: #000;
  font-size: 1rem;
}
.side .dropdown-menu a:hover {
  color: #263787;
  background: #fff;
  box-shadow: none !important;
  border-top: 1px solid #ddd !important;
  border-bottom: 0 !important;
  font-size: 1rem !important;
}
.side .dropdown-menu a.active {
  color: #263787;
  background: #fff;
  box-shadow: none;
  border-bottom: none;
  border-top: 1px solid #ddd;
  font-size: 1rem !important;
}
.side .dropdown-menu a.active:hover {
  font-size: 1rem !important;
  color: #263787;
}
.side .dropdown-menu .submenu {
  padding-left: 1.8rem;
}
.side .dropdown-menu .submenu .dropdown-item-submenu {
  display: block;
  padding: 0.5rem;
  background: none;
  border-top: 0;
  font-size: 0.9rem;
  position: relative;
  color: #676767;
}
.side .dropdown-menu .submenu .dropdown-item-submenu:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 18px;
  width: 5px;
  height: 5px;
  background: #C4C4C4;
}
.side .dropdown-menu .submenu .dropdown-item-submenu:hover, .side .dropdown-menu .submenu .dropdown-item-submenu.active {
  color: #263787;
  border-top: none !important;
}
.side .dropdown-menu.show {
  transform: translate3d(0px, 0px, 0px) !important;
}
.side .submenu .dropdown-item-submenu {
  display: block;
}

@media (max-width: 767px) {
  .side {
    position: relative;
    top: 0 !important;
    min-height: auto;
    margin: 0 0 1rem 0;
  }
  .side .dropdown-toggle {
    width: 100%;
    border-color: #ccc;
  }
  .side .dropdown-menu {
    position: relative;
    top: 100%;
    z-index: 2;
    display: none;
    margin-bottom: 1rem;
  }
  .side .dropdown-menu.show {
    display: block;
  }
  .side .dropdown-menu.show .dropdown-toggle {
    background: #263787;
    color: #fff;
  }
  .side .dropdown-menu.show .dropdown-toggle:active {
    background: #263787;
    color: #fff;
  }
  .side .dropdown-menu.show .dropdown-toggle:focus, .side .dropdown-menu.show .dropdown-toggle .btn:focus {
    outline: none;
    box-shadow: none;
  }
  .side .dropdown-menu .submenu .dropdown-item-submenu:before {
    content: "";
    top: 13px;
  }
}
.login {
  background-image: url(../_img/member-bg.jpg);
  background-position: 0% 100%;
  background-size: cover;
  background-attachment: fixed;
}
.login .box {
  padding: 2rem;
  margin: 12rem auto 9rem;
  background: #fff;
}
.login .box .title hr {
  border-top: 3px solid #263787;
  width: 100px;
}
.login .box .title p {
  letter-spacing: 0.4rem;
  font-weight: 300;
  font-size: 1.4rem;
}
.login.bg2 {
  background-image: url(../_img/member-bg2.jpg);
  background-position: 50% 100%;
}

@media (max-width: 767px) {
  .login {
    background-image: url(../_img/member-bg.jpg);
    background-position: 0% 100%;
    background-size: cover;
    background-attachment: fixed;
  }
  .login .box {
    padding: 2rem;
    margin: 7rem auto 3rem;
    background: #fff;
  }
}
.pro-name {
  font-size: 27px;
  line-height: 33px;
  padding: 0 10px;
  color: #2e2e2e;
}

.slider-for .slick-slide {
  min-height: 517px;
  align-items: center !important;
  display: flex !important;
  justify-content: center !important;
  border: 1px solid #D4D4D4;
  margin-bottom: 10px;
}
.slider-for .slick-slide > div {
  line-height: 0;
}
.slider-for .pic img {
  max-height: 517px;
}

.slider-nav {
  margin: 0 0.5rem;
}
.slider-nav .slick-slide {
  min-height: 115px;
  align-items: center !important;
  display: flex !important;
  justify-content: center !important;
  margin: 0.6rem;
  border: 1px solid #D4D4D4;
}
.slider-nav .slick-slide > div {
  line-height: 0;
}
.slider-nav .pic img {
  max-height: 115px;
}
.slider-nav .slick-next {
  right: 0;
}
.slider-nav .slick-prev {
  left: 0;
}
.slider-nav .slick-arrow:before {
  color: #000;
}

.product-detail p {
  margin-bottom: 0;
}
.product-detail label {
  color: #2e2e2e;
}
.product-detail .price .full-price {
  margin: 0 0.5rem;
}
.product-detail .price .full-price b {
  text-decoration: line-through;
}
.product-detail .specs span {
  border: 1px solid #c3c3c3;
  padding: 5px 10px;
  background: transparent;
  border-radius: 0;
  margin: 0.2rem 0.2rem 0.2rem 0;
  display: inline-block;
  cursor: pointer;
}
.product-detail .specs span.active {
  border-color: #263787;
  background: #263787;
  color: #fff;
}
.product-detail .specs span:focus {
  outline: 1px dotted;
  outline: 0px auto -webkit-focus-ring-color;
}

.main .product-list a {
  border-radius: 8px;
  box-shadow: 0 4px 0 0 rgba(204, 204, 204, 0.5);
  border: solid 1px #c3c3c3;
  background-color: #f8f8f8;
  margin: 0px 10px 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}
.main .product-list a .text {
  background: #f8f8f8;
  padding: 10px;
  color: #676767;
  font-weight: bold;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.main .product-list a .text span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #2aaadd;
}
.main .product-list a .text span.usetimes {
  margin-top: auto;
  color: #2aaadd;
  border-top: 1px solid #ccc;
  padding-top: 0.25rem;
}
.main .product-list a .pic {
  min-height: 255px;
  align-items: center !important;
  display: flex !important;
  justify-content: center !important;
  background-color: #fff;
}
.main .product-list a .pic img {
  max-height: 255px;
  flex-shrink: 0;
}
.main .product-list a:hover {
  transform: translateY(-10px);
}

.page {
  background-color: #fff;
}
.page .content {
  background: #fff;
  padding: 0.8rem 1rem;
  text-align: left;
  position: relative;
}
.page .content .box {
  padding: 0.5rem 1rem 0.5rem 2.5rem;
}
.page .content .tit {
  position: relative;
  padding-left: 2.5rem;
  margin: 1rem 0 0 0;
  color: #263787;
  position: relative;
}
.page .content .tit i {
  position: absolute;
  left: 8px;
  top: 5px;
  color: #676767;
}
.page .content .title {
  border-bottom: 1px solid #f0f0f0;
  margin: 0 -16px;
  padding: 5px 16px 20px;
}
.page .content .title-2 {
  border-left: 5px solid #263787;
  padding: 2px 1rem 0;
  margin: 1rem 0.5rem 0.5rem;
}
.page .content .tel span {
  background: #fffdad;
  padding: 0.2rem 0.5rem;
  margin-left: 0.5rem;
}
.page .content .tel a {
  margin: 1.5rem 0.5rem;
  line-height: 15px;
}
.page .content .tel p {
  color: #979797;
  margin: 0 0 0 0.5rem;
  font-size: 14px;
}

.total {
  background-color: rgba(38, 55, 135, 0.08);
  padding: 1.5rem 1rem;
}

.after_dash:after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1px;
  background-color: #2d2d2d;
  position: absolute;
  right: -2px;
  top: 50%;
}

.shopping-link {
  position: relative;
  padding-right: 1rem;
}
.shopping-link span {
  position: absolute;
  top: -1px;
  left: 15px;
}
.shopping-link:before {
  content: "";
  display: none;
}

.btn-del {
  width: 100%;
}
.btn-del button {
  background: transparent;
  border: none;
  width: 100%;
}

@media (max-width: 1200px) {
  .main .product-list a .pic {
    min-height: 210px;
  }
  .main .product-list a .pic img {
    max-height: 210px;
  }
  .slider-for .slick-slide {
    min-height: 427px;
  }
  .slider-for .pic img {
    max-height: 427px;
    margin: 0 auto;
  }
  .slider-nav .slick-slide {
    min-height: 98px;
  }
  .slider-nav .slick-slide > div img {
    max-height: 98px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .slider-for .slick-slide {
    min-height: 308px;
  }
  .slider-for .pic img {
    max-height: 308px;
    margin: 0 auto;
  }
  .slider-nav .slick-slide {
    min-height: 100px;
  }
  .slider-nav .slick-slide > div img {
    max-height: 100px;
    margin: 0 auto;
  }
  .btn-del button {
    background: #263787;
    color: #fff;
    padding: 0.3rem 0.6rem;
  }
}
@media (max-width: 767px) {
  .main .product-list a .pic {
    min-height: 233px;
  }
  .main .product-list a .pic img {
    max-height: 233px;
  }
  .main .product-list a:hover {
    transform: translateY(-10px);
  }
  .send {
    box-shadow: 0px -4px 0px rgba(0, 0, 0, 0.062745098);
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    background: #fff;
    box-sizing: border-box;
    padding: 0.5rem;
  }
  .send .btn {
    width: 100%;
    margin: 0;
  }
  .slider-for .slick-slide {
    min-height: 427px;
  }
  .slider-for .pic img {
    max-height: 427px;
    margin: 0 auto;
  }
  .slider-nav .slick-slide {
    min-height: 98px;
  }
  .slider-nav .slick-slide > div img {
    max-height: 98px;
    margin: 0 auto;
  }
}
@media (max-width: 414px) {
  .main .product-list a .pic {
    min-height: 170px;
  }
  .main .product-list a .pic img {
    max-height: 170px;
  }
  .slider-for .slick-slide {
    min-height: 345px;
  }
  .slider-for .pic img {
    max-height: 345px;
    margin: 0 auto;
  }
  .slider-nav .slick-slide {
    min-height: 100px;
  }
  .slider-nav .slick-slide > div img {
    max-height: 100px;
    margin: 0 auto;
  }
}
@media (max-width: 375px) {
  .main .product-list a .pic {
    min-height: 150px;
  }
  .main .product-list a .pic img {
    max-height: 150px;
  }
  .page .content .box {
    padding: 0.5rem 0rem 0.5rem 2.5rem;
  }
  .page .content .tel a {
    margin: 1.5rem 0;
    width: 100%;
    display: block;
    line-height: 32px;
  }
}/*# sourceMappingURL=style.css.map */