@charset "utf-8";
/*
	CSS Document 
*/

@import url('../fonts/iconfont.css');
@import url('./font-awesome.min.css');

:root {
  --yellow: #fe3612;
  --blue: #1f599e;
  --blue-ss: #057db0;
  --green: #1e9e3b;
  --black: #333333;
  --white: #ffffff;
  --border: #eeeeee;
  --bgadv: #efefef;
  --bgpro: #f9f9f9;
  --light-gray: #c4e8f8;
  --grey: #696866;
  --fonts-one: Arial, Helvetica, sans-serif;
  --fonts-tow: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Safari */
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  zoom: 1;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

li {
  list-style: none;
}

input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  outline: none;
}

input,
button,
textarea,
select {
  *font-size: 100%;
}

input,
select {
  vertical-align: middle;
}

select,
input,
button,
textarea,
button {
  font: 99%;
}

table {
  font-size: inherit;
  font: 100%;
  border-collapse: collapse;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

.iconfont {
  font-weight: normal;
}

html,
body {
  background-color: var(--white);
}

body {
  font-family: var(--fonts-one);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
}

a {
  color: var(--black);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--yellow);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

a:focus {
  outline: thin dotted var(--yellow);
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* 清除浮动 */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
}

.clear {
  clear: both;
  height: 0;
}

.sk-center{
  text-align: center;
}

/* 向左浮动 */
.fl-fix {
  float: left;
}

/* 向右浮动 */
.fr-fix {
  float: right;
}

/* 图片最大100% */
.sk-img img {
  max-width: 100%;
  height: auto !important;
}

/* 鼠标悬浮图片放大 */
.sk-animation-img {
  display: block;
  overflow: hidden;
}

.sk-animation-img img {
  display: block;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}

.sk-animation-img:hover img {
  transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
}

.lazy {
  opacity: 0;
}

/* 100%图片展示 */
.sk-banner-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}

.sk-banner-img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.sk-page-crumb-img{ overflow: hidden; }
.sk-page-crumb-img img{ animation: zoom 20s infinite; }
/* 定义动画 */
@keyframes zoom {
  0%, 100% {
    transform: scale(1); /* 初始状态和结束状态的缩放比例 */
  }
  50% {
    transform: scale(1.2); /* 放大状态的缩放比例 */
  }
}

/* 容器最大大小 */
.sk-main {
  width: 1560px;
  margin: auto;
}

/* pagination */
.sk-pagination {
  margin-top: 32px;
}

.sk-pagination ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.sk-pagination ul li {
  display: block;
  margin: 2px 4px;
  font-size: 0;
}

.sk-pagination li a,
.sk-pagination li span {
  position: relative;
  display: inline-block;
  height: 32px;
  width: 32px;
  line-height: 32px;
  font-size: 14px;
  color: var(--black);
  text-align: center;
  padding: 0px;
  background-color: transparent;
  border: 1px solid var(--border);
  background-color: var(--white);
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.sk-pagination li a:hover,
.sk-pagination li.active span,
.sk-pagination li.active span:hover {
  color: var(--white);
  background: var(--yellow);
  border-color: var(--yellow);
}

.sk-pagination li.disabled a,
.sk-pagination li.disabled span {
  background-color: var(--border);
  cursor: no-drop;
}

.sk-mask {
  position: fixed;
  background-color: rgb(0, 0, 0, .6);
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  display: none;
}

.sk-overflow {
  overflow: hidden !important;
  width: 100%;
}

.sk-display-none {
  display: none !important;
}

.sk-display-block {
  display: block !important;
}

.sk-button{
  transition: all .8s;
  background: transparent;
  border: 1px solid var(--yellow);
  border-radius: 3px;
}

.sk-button:hover{
  background: var(--yellow);
}

.sk-arrow .owl-nav{
  margin: 0px 0 0 !important;
  padding: 0 !important;
}
.sk-arrow .owl-nav .owl-prev span,
.sk-arrow .owl-nav .owl-next span {
  display: none;
}

.sk-arrow .owl-nav .owl-prev,
.sk-arrow .owl-nav .owl-next {
  padding: 0;
  margin: 0;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  opacity: 1;
  z-index: 50;
  background-color: var(--bgadv) !important;
  box-shadow: 2px 2px 10px 0px var(--border);
  position: absolute;
  top: calc((100% - 42px)/2);
  left: -50px;
  transition: all .8s;
}

.sk-arrow .owl-nav .owl-prev::after,
.sk-arrow .owl-nav .owl-next::after {
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  content: "\e779";
  font-family: 'iconfont';
}

.sk-arrow .owl-nav .owl-next {
  transform: scaleX(-1);
  left: unset;
  right: -50px;
}

.sk-arrow .owl-nav .owl-prev:hover,
.sk-arrow .owl-nav .owl-next:hover {
  color: var(--white);
  background-color: var(--blue) !important;
}

.sk-arrow .owl-nav .owl-prev.disabled,
.sk-arrow .owl-nav .owl-next.disabled {
  cursor: default;
}

/* 箭头二 */
.sk-arrow-down .owl-nav{
  margin: 20px 0 0 !important;
  padding: 0 !important;
}
.sk-arrow-down .owl-nav .owl-prev span,
.sk-arrow-down .owl-nav .owl-next span {
  display: none;
}

.sk-arrow-down .owl-nav .owl-prev,
.sk-arrow-down .owl-nav .owl-next {
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  opacity: 1;
}

.sk-arrow-down .owl-nav .owl-prev::after,
.sk-arrow-down .owl-nav .owl-next::after {
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  content: "\e64e";
  font-family: 'iconfont';
}

.sk-arrow-down .owl-nav .owl-next {
  transform: scaleX(-1);
}

.sk-arrow-down .owl-nav .owl-prev:hover,
.sk-arrow-down .owl-nav .owl-next:hover {
  color: var(--blue);
  background-color: transparent;
}

.sk-arrow-down .owl-nav .owl-prev.disabled,
.sk-arrow-down .owl-nav .owl-next.disabled {
  cursor: default;
}

/* 表格 */
.sk-content-page-main table{ max-width: 100% !important; width: 100% !important; table-layout: fixed; margin: 10px 0; }
.sk-content-page-main table td,.sk-content-page-main table th{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #eeeeee;
  padding: 5px 8px;
  font-size: 14px;
  line-height: 25px;
  background-color: #f9f9f9;
  color: #000000;
  font-weight: 400;
  word-wrap: break-word;
  word-break:break-all;
}
.sk-content-page-main table tr:nth-child(odd) td{
  background-color: #ffffff;
}

/* product detail title */
.all-title-box{ margin-bottom: 25px; }
.all-title-box li a{ display: flex; justify-content: flex-start; align-items: flex-start; }
.all-title-box li a::before{ content: ''; background-color: #eeeeee; width: 5px; height: 5px; margin-top: 10px; transition: all .8s; margin-right: 8px; display: inline-block; overflow: hidden; border-radius: 50%; }
.all-title-box li a span{ font-size: 16px; color: #333333; line-height: 26px; font-weight: 600; transition: all .8s; }
.all-title-box .title-hgroup-h2{ padding-left: 20px; }
.all-title-box .title-hgroup-h3{ padding-left: 40px; }
.all-title-box .title-hgroup-h4{ padding-left: 60px; }
.all-title-box .title-hgroup-h5{ padding-left: 80px; }
.all-title-box li a:hover span{ color: #fc0000; }
.all-title-box li a:hover::before{ background-color: #fc0000; }

/* 地图 */
.sk-content-contact-map{ display: block; width: 100%; margin-top: 80px; }
.sk-content-contact-map iframe{ display: block; width: 100%; height: 500px; border: 0; }
.sk-content-contact-map p{ text-align: center; font-size: 18px; margin-block-end: 25px; padding-block: 10px; }

/* 侧边栏 */
.sk-sideedge{ position: fixed; right: 0; bottom: calc((100vh - 365px) / 2); z-index: 99; }
.sk-sideedge-box{ display: block; margin-bottom: 5px; position: relative; }
.sk-sideedge-item{ position: relative; transition: all .8s; }
.sk-sideedge-item-icon{ width: 100%; padding: 10px; display: block; overflow: hidden; text-align: center; background-color: var(--bgcolor); color: var(--fontcolor) !important; cursor: pointer; transition: all .8s; }
.sk-sideedge-item-icon i{ font-size: 20px; display: block; line-height: 21px; }
.sk-sideedge-item-icon span{ display: block; font-size: 12px; line-height: 18px; }
.sk-sideedge-item:first-child .sk-sideedge-item-icon{ border-top-left-radius: 3px; }
.sk-sideedge-item:last-child .sk-sideedge-item-icon{ border-bottom-left-radius: 3px; }

.sk-sideedge-item-float{ position: absolute; right: 100%; top: 0; background-color: #fff; box-shadow: 0 0px 5px rgb(18 18 18 / 10%); padding: 20px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: all ease .5s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  white-space: nowrap;
}
.sk-sideedge-item-float a{ font-size: 16px; color:var(--fontcolor); transition: all .3s; }
.sk-sideedge-item-float{ background-color: var(--bghovercolor); }
.sk-sideedge-item-float a:hover{ color: var(--fontcolor); }
.sk-sideedge-item-float img{ display: block; width: 120px; height: auto; }
.sk-sideedge-item:hover .sk-sideedge-item-icon{ background-color: var(--bghovercolor); color: var(--fontcolor); }
.sk-sideedge-item:hover .sk-sideedge-item-float{ opacity: 1; pointer-events: visible; }
.sk-sideedge-right,.sk-sideedge-left{ width: auto; height: 45px; line-height: 45px; display: block; overflow: hidden; border-top-left-radius: 3px; border-bottom-left-radius: 3px; text-align: center; background-color: var(--bgcolor); color: var(--fontcolor); cursor: pointer; transition: all .8s; }
.sk-sideedge-right i,.sk-sideedge-left i{ font-size: 20px; display: block; }
.sk-sideedge-right:hover{ background-color: var(--bghovercolor); }
.sk-sideedge-left{ position: fixed; right: 0; bottom: calc((100vh - 365px) / 2); z-index: 99; transition: all .8s; height: 32px; line-height: 32px; width: 32px; background-color: #02a3e9; color: #ffffff; }
.sk-show-hide{ right: -45px !important; transition: all .8s; }

/* pagination */
.sk-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.sk-pagination a,
.sk-pagination span {
  display: block;
  line-height: 32px;
  font-size: 12px;
  color: var(--black);
  text-align: center;
  padding: 0 12px;
  margin: 0 3px;
  background-color: transparent;
  border: 1px solid var(--border);
  background-color: var(--white);
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.sk-pagination a:hover,
.sk-pagination a.active span,
.sk-pagination a.active span:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.sk-pagination a.page-num-current,
.sk-pagination li.disabled span {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  cursor: no-drop;
}