* {
  margin: 0;
  padding: 0;
}

html {
  --main-bg-color: #f0f0f0;
  --main-color: #2b88dc;
  --nav-active-color: #3fa7e7;
  --main-text-color: #37474f;
}

/* @font-face {
  font-family: Barlow;
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/BarlowSemiCondensed-Italic.ttf");
}

@font-face {
  font-family: Barlow;
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/BarlowSemiCondensed-Light.ttf");
}

@font-face {
  font-family: Barlow;
  font-weight: 300;
  font-style: italic;
  src: url("../fonts/BarlowSemiCondensed-LightItalic.ttf");
}

@font-face {
  font-family: Barlow;
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/BarlowSemiCondensed-Regular.ttf");
}

@font-face {
  font-family: Barlow;
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/BarlowSemiCondensed-Medium.ttf");
}

@font-face {
  font-family: Barlow;
  font-weight: 500;
  font-style: italic;
  src: url("../fonts/BarlowSemiCondensed-MediumItalic.ttf");
}

@font-face {
  font-family: Barlow;
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/BarlowSemiCondensed-SemiBold.ttf");
}

@font-face {
  font-family: Barlow;
  font-weight: 600;
  font-style: italic;
  src: url("../fonts/BarlowSemiCondensed-SemiBoldItalic.ttf");
}

@font-face {
  font-family: Barlow;
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/BarlowSemiCondensed-Bold.ttf");
}

@font-face {
  font-family: Barlow;
  font-weight: 700;
  font-style: italic;
  src: url("../fonts/BarlowSemiCondensed-BoldItalic.ttf");
} */

.ban {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 649px;
  display: flex;
  align-items: center;
  justify-content: center;
 color: var(--main-color);
  margin-bottom: 0;
  font-weight: bold;
    /* 添加以下代码确保移动端适配 */
    width: 100%;
    background-attachment: scroll; /* 防止背景图固定导致的问题 */
}

.ban h1{
	font-size: 48px;
    /* 可选：添加文字阴影提高可读性 */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 针对移动设备的媒体查询 */
@media screen and (max-width: 768px) {
    .ban {
        min-height: 300px; /* 可以调整这个高度以适应移动屏幕 */
        /* 保持背景图覆盖整个区域 */
        background-size: cover;
        background-position: center;
    }
    
    .ban h1 {
        font-size: 32px; /* 调整文字大小以适应移动屏幕 */
    }
}

/* 针对更小屏幕的调整 */
@media screen and (max-width: 480px) {
    .ban {
        min-height: 200px; /* 更小的高度 */
    }
    
    .ban h1 {
        font-size: 24px; /* 更小的文字 */
    }
}



.bann h1 span {
  display: inline-block;
  transform: translate3d(0, 0, 0);
  /* 大字颜色 */
  animation: jump 0.75s cubic-bezier(0.05, 0, 0.2, 1) infinite alternate;
  -webkit-text-fill-color: #0054ac;
}

@keyframes jump {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -0.5em, 0);
  }
}

.ban h1 span:nth-child(1) {
  animation-delay: 0s;
}

.ban h1 span:nth-child(2) {
  animation-delay: 0.0833333333s;
}

.bann h1 span:nth-child(3) {
  animation-delay: 0.1666666667s;
}

.ban h1 span:nth-child(4) {
  animation-delay: 0.25s;
}




html,
body {
  font-size: 16px;
  font-family: 'Arial', 'Microsoft YaHei', sans-serif;
  color: var(--main-text-color);
  font-weight: normal;
  background-color: var(--main-bg-color);
}

.container {
  width: 100% !important;
  max-width: 1400px;
}

section {
  padding: 5rem 0;
  overflow-x: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#fenye {
  clear: both;
  padding-top: 1rem;
  padding-bottom: 2.5rem;
  width: 100%;
}

#fenye a {
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  line-height: 2;
  font-size: 12px;
  margin: 0.25rem;
  border: 1px solid #ddd;
  color: #333;
}

#fenye a.curr {
  border: 1px solid #ff8300;
  color: #ff8300;
}

#fenye span {
  font-size: 12px;
}

.location {
  padding: 1rem 0;
  line-height: 2;
}

.location a {
  color: var(--main-text-color);
  text-decoration: none;
}

.location i {
  margin: 0 0.5rem;
}

.location a>i {
  margin: 0 0.25rem 0 0;
}

.location a:hover,
.location a:first-child {
  color: var(--main-color);
}

.title {
  text-align: center;
  margin-bottom: 3.125rem;
}

.title em {
  font-size: 3.125rem;
  line-height: 3.125rem;
  color: #0085ec;
  font-family: Impact;
  margin-bottom: -36px;
  display: block;
  text-transform: uppercase;
  opacity: 0;
}

.title b {
  font-size: 2.5rem;
  line-height: 3.125rem;
  color: #000;
  text-transform: uppercase;
}

.title b span {
  color: #000;
}

.title p {
  line-height: 2.25rem;
  color: #999;
  font-size: 14px;
  margin-bottom: 0.625rem;
}

.title i {
  height: 30px;
}

/* header */
header .top {
  padding: 0.625rem 0;
}

header .top ul {
  margin-bottom: 0;
}

header .top ul li {
  padding: 0 1.25rem;
  position: relative;
}

header .top ul li:first-child {
  padding-left: 0;
}

header .top ul li:last-child {
  padding-right: 0;
}

header .top ul li+li::before {
  content: '|';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  color: var(--main-text-color);
  transform: translateY(-50%);
}

header .top ul li a {
  color: var(--main-text-color);
  text-decoration: none;
  margin-top: 1px;
}

header .top ul li a:hover {
  color: var(--main-color);
}

header .mid {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

header .mid .logo {
  width: 15.875rem;
}

header .mid .slogan {
  margin-left: 1.25rem;
  position: relative;
  padding-left: 1.25rem;
}

header .mid .slogan::before {
  content: '';
  display: block;
  width: 2px;
  height: 100%;
  background: -webkit-linear-gradient(bottom, #fff -4%, #ccc 50%, #fff 100%);
  background: -ms-linear-gradient(bottom, #fff -4%, #ccc 50%, #fff 100%);
  background: linear-gradient(bottom, #fff -4%, #ccc 50%, #fff 100%);
  position: absolute;
  left: 0;
  top: 0;
}

header .mid .slogan h5 {
  font-size: 1.5rem;
  color: #000;
  margin-top: 0;
  margin-bottom: 0.625rem;
  text-transform: capitalize;
}

header .mid .slogan p {
  margin-bottom: 0;
  font-weight: lighter;
  color: var(--main-text-color);
}

header .mid .slogan p span {
  color: var(--main-color);
}

header .mid .slogan p span+span {
  margin-left: 0.5rem;
}

header .mid .tel{background:url("../img/tel.png")left center no-repeat;padding-left:52px; height:60px;}
header .mid .tel h5{color:#868686;font-size: 1.25rem;margin-top:0;}
header .mid .tel p{margin-bottom:0;color:#3173ce;font-size: 1.5rem; font-weight: bold; line-height:1;white-space: nowrap;}


header .mid .contact p {
  margin-bottom: 0;
  line-height: 2;
  color: #f60;
}

header .mid .contact p+p {
  margin-left: 1.25rem;
}

header .bot {
  background-color: #2b88dc;
}

header .bot .navbar {
  padding: 0;
}

header .bot .navbar .navbar-brand {
  color: #fff;
}

header .bot .navbar .navbar-toggler {
  color: #fff;
  padding: 0;
  border: 0;
  font-size: 2rem;
}

header .bot .navbar .navbar-nav .nav-item {
  width: calc(100%/7);
  text-align: center;
}

header .bot .navbar .navbar-nav .nav-item.active,
header .bot .navbar .navbar-nav .nav-item:hover {
  background-color: var(--nav-active-color);
}
/*调整菜单的高度*/
header .bot .navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
    padding: 0.825rem 0;
    font-size: 16px;
   /* font-weight: bold;*/
}

header .bot .navbar .navbar-nav .nav-item .dropdown-menu {
  top: 100%;
  border: 0;
  min-width: 100%;
  margin-top: 1px;
  border-radius: 0;
  background-color: #2b88dc;
  padding: 0;
}

header .bot .navbar .navbar-nav .nav-item .dropdown-menu a {
  line-height: 2.5;
  color: #fff;
  text-transform: capitalize;
  padding: 0 1rem;
  white-space: nowrap;
  text-decoration: none;
  display: block;
}

header .bot .navbar .navbar-nav .nav-item .dropdown-menu a:hover {
  background-color: var(--nav-active-color);
}

.carousel-indicators li {
  background-color: var(--main-color);
}

/* index */


.index .section-1 .img {
  width: 50%;
}

.index .section-1 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index .section-1 .img video {
  width: 100%;
  height: 100% !important;
  background-color: #000;
}

.index .section-1 .info {
  width: 48.5%;
  padding-top: 1%;
}

.index .section-1 .info .Htitle {
  font-size: 1.875rem;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
}

.index .section-1 .info .Htitle span {
  font-size: 1rem;
  color: #37474f;
  text-transform: uppercase;
}

.index .section-1 .Habout_info h4 {
  font-size: 1.25rem;
  color: var(--main-color);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.index .section-1 .Habout_info .p {
  color: #666666;
  font-size: 1.25rem;
  line-height: 1.875;
}

.index .section-1 .Habout_num {
  background: #f7f8fa;
  margin: 11.5% 0;
}

.ytable {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.ytable_cell {
  display: table-cell;
  vertical-align: middle;
}

.index .section-1 .Habout_num li {
  width: 25%;
  text-align: center;
  vertical-align: top;
  padding: 4% 0;
  border-right: 1px solid #edeff2;
  position: relative;
}

.index .section-1 .Habout_num li * {
  z-index: 5;
  position: relative;
  transition: all 0.5s;
  line-height: 50px;
  font-size: 50px;
}

.index .section-1 .Habout_num li:before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  background: #ff5a00;
  left: -5%;
  top: -5%;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s;
}

.index .section-1 .Habout_num .num b {
  color: #ff5a00;
  margin-right: 0.5rem;
}

.index .section-1 .Habout_num .num sup {
  font-style: normal;
  vertical-align: top;
  color: #ff5a00;
  font-size: 12px;
  line-height: 1;
}

.index .section-1 .Habout_num p {
  max-width: 120px;
  margin: 0 auto;
  line-height: 3rem;
  color: #999999;
  height: 3rem;
  overflow: hidden;
  font-size: 14px;
}

.index .section-1 .Habout_num li:hover * {
  color: #fff;
}

.index .section-1 .Habout_num li:hover:before {
  opacity: 1;
}

.more_iocn {
  font-size: 1.25rem;
  width: 180px;
  line-height: 55px;
  border: 1px solid #ff5a00;
  color: #ff5a00;
  text-align: center;
  display: block;
  transition: all 0.5s;
  text-decoration: none;
}

.more_iocn:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 34px;
  height: 10px;
  margin-top: -2px;
  background: url("../img/more_icon.png") no-repeat center;
  margin-left: 20px;
}

.more_iocn:hover {
  background: #ff5a00;
  color: #fff;
  text-decoration: none;
}

.more_iocn:hover:after {
  background-image: url("../img/more_icon2.png");
}

.adv {
  padding: 0;
}

.adv h4 {
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 1.875rem;
}

.adv ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.adv ul li {
  background-color: #fff;
  margin: 0 0.5rem;
  color: #0467c4;
  padding: 5px 15px;
  border-radius: 0.25rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
  margin-bottom: 1rem;
}

.index .section-2 .list {
  display: grid;
  grid: auto/repeat(4, 1fr);
  gap: 2.625rem;
}

.index .section-2 .list .item {
  background-color: #fff;
  color: #37474f;
  transition: transform linear 0.4s;
}

.index .section-2 .list .item .img {
  background-color: #fff;
  overflow: hidden;
  text-align: center;
  padding: 0.5rem;
}

.index .section-2 .list .item .info {
  padding: 1.25rem;
  font-size: 0.875rem;
  border-top: 1px dashed #ddd;
}

.index .section-2 .list .item .info h5 {
  margin-bottom: 0.75rem;
}

.index .section-2 .list .item .info ul {
  margin-bottom: 0;
}

.index .section-2 .list .item .info ul li {
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.index .section-2 .list .item:hover {
  background-color: var(--main-color);
  color: #fff;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .45);
  transform: translateY(-0.5rem);
}

.more {
  padding-top: 1.875rem;
}

.index .section-3 .list {
  display: grid;
  grid: auto/repeat(4, 1fr);
  gap: 1.25rem;
}

.index .section-3 .list .item {
  text-align: center;
}

.index .section-3 .list .item .img {
  overflow: hidden;
  border: 1px solid #ddd;
}

.index .section-3 .list .item .img img {
  transition: all linear 0.4s;
}

.index .section-3 .list .item p {
  line-height: 2;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.index .section-3 .list .item p a {
  color: var(--main-text-color);
  text-decoration: none;
}

.index .section-3 .list .item:hover .img img {
  transform: scale(1.1);
}

.index .section-3 .list .item:hover p a {
  color: var(--main-color);
}

.index .section-4::after {
  clear: both;
  display: table;
  content: " ";
}

.index .section-5 {
  background: url('../img/adv_bg.png') center repeat-y;

}

.index .section-5 .panel {
  padding-top: 5.25rem;
  margin-bottom: 0;
  background-color: transparent;
  border: 0;
  box-shadow: 0 0 0 transparent;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.index .section-5 .panel::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #0f7bf9;
  display: block;
}

.index .section-5 .panel:last-child {
  padding-bottom: 3.125rem;
}

.index .section-5 .panel .img {
  width: 43.5%;
  text-align: center
}

.index .section-5 .panel .img img {
  max-width: 100%;
}

.index .section-5 .panel .label {
  display: block;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  max-width: 7.5rem;
  padding: 0;
}

.index .section-5 .panel .label span {
  display: block;
  background-color: #0f7bf9;
  padding: 10px 15px;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  font-weight: normal;
  color: #fff;
}

.index .section-5 .panel .info {
  width: 43.5%
}

.index .section-5 .panel .info h3 {
  height: 3.1875rem;
  line-height: 3.1875rem;
  font-size: 1.5rem;
  margin-bottom: 1.875rem;
  margin-top: 0;
}

.index .section-5 .panel .info h3 span {
  display: inline-block;
  width: 3.1875rem;
  height: 3.1875rem;
  background: url(../img/201881810398171.png) no-repeat;
  font-family: Impact;
  font-style: italic;
  font-size: 2.0625rem;
  color: #fff;
  padding-left: 0.9375rem;
  margin-right: 0.625rem;
}

.index .section-5 .panel .info p {
  padding-left: 2em;
  line-height: 200%;
  background: url(../img/201881810398516.png) 10px 8px no-repeat;
  margin-bottom: 1.25rem;
}

.index .section-5 .panel .info a {
  display: inline-block;
  width: 6.875rem;
  height: 2.6875rem;
  line-height: 2.6875rem;
  text-align: center;
  border-radius: 5px;
  background-color: #0f7bf9;
  color: #fff;
  margin-left: 1.125rem;
}



.index .section-16{padding-bottom:0;}
.index .section-16 .list{display:flex;flex-wrap: wrap;border-top: 1px solid #cecece;border-left:1px solid #cecece;}
.index .section-16 .list .item{border-right:1px solid #cecece;border-bottom:1px solid #cecece;width: 20%;padding: 1rem;display: flex;align-items: center;justify-content: center; }
.index .section-16 .list .item img{max-width:100%;max-height: 100%;}
.index .section-16 .list .item:hover{box-shadow:0 0 1rem rgba(0,0,0,.1);}



.index .section-13 .list {
  display: grid;
  grid: auto/repeat(3, 1fr);
  gap: 1.25rem;
}

.index .section-13 .list .item {
  text-align: center;
}

.index .section-13 .list .item .img {
  overflow: hidden;
  border: 1px solid #ddd;
}

.index .section-13 .list .item .img img {
  transition: all linear 0.4s;
}

.index .section-13 .list .item p {
  line-height: 2;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.index .section-13 .list .item p a {
  color: var(--main-text-color);
  text-decoration: none;
}

.index .section-13 .list .item:hover .img img {
  transform: scale(1.1);
}

.index .section-13 .list .item:hover p a {
  color: var(--main-color);
}




@media (min-width:992px) {

  .index .section-5 .panel:nth-child(odd) {
    flex-direction: row-reverse;
  }
}

.index .section-6 .list {
  display: grid;
  grid: auto/repeat(4, 1fr);
  gap: 1.25rem;
  padding-bottom: 1.25rem;
}

.index .section-6 .list .item {
  text-align: center;
  min-width: 0;
}

.index .section-6 .list .item .img {
  overflow: hidden;
  position: relative;
}

.index .section-6 .list .item a {
  text-decoration: none;
}

.index .section-6 .list .item .img img {
  transition: all linear 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index .section-6 .list .item p {
  padding: 0.5rem 1rem;
  color: #000;
  margin-bottom: 0;
  line-height: 2;
  font-size: 1.25rem;
  text-transform: capitalize;
}

.index .section-6 .list .item:hover .img img {
  transform: scale(1.1);
}

.index .section-6 .list .item:hover p {
  color: var(--main-color);
}

.index .section-7 .list {
  display: grid;
  grid: auto/11fr 15fr;
  gap: 1.25rem;
}

.index .section-7 .list .info dl {
  display: grid;
  align-items: center;
  border: 1px solid #cecece;
  margin-bottom: 0;
  grid: auto/7.25rem auto;
}

.index .section-7 .list .info dl+dl {
  margin-top: 1.25rem;
}

.index .section-7 .list .info dl dt {
  text-align: center;
  padding: 1rem;
  font-weight: normal;
  min-width: 7.25rem;
}

.index .section-7 .list .info dl dt b {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
}

.index .section-7 .list .info dl dt span {
  font-size: 12px;
}

.index .section-7 .list .info dl dd {
  padding: 1rem;
  border-left: 1px solid #cecece;
  overflow: hidden;
  margin-bottom: 0;
}

.index .section-7 .list .info dl dd h5 {
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 0.625rem;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.index .section-7 .list .info dl dd h5 a {
  color: #000;
}

.index .section-7 .list .info dl dd p {
  font-size: 0.875REM;
  line-height: 2em;
  margin-bottom: 0;
  color: #777;
  overflow: hidden;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.index .section-7 .list .info dl dd h5 a:hover {
  color: var(--main-color);
}

/* footer */
footer {
    background-color: #000000;
    color: #fff;
}

footer .footNav {
  display: grid;
  grid: auto/repeat(4, 1fr);
  gap: 3.125rem;
  padding-top: 3.125rem;
  padding-bottom: 1.25rem;
}


footer .footNav dl {
  margin-bottom: 1.25rem;
  min-width: 0;
}

footer .footNav dl dt {
  font-weight: normal;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
}

footer .footNav dl dt::after {
  width: 2rem;
  height: 3px;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffc001;
}

footer .footNav dl dd {
  line-height: 2;
  font-size: 0.875rem;
}

footer .footNav dl dd>a,
footer .footNav dl dd p {
  color: #fff;
  display: block;
  color: #cfcfcf;
}

footer .footNav dl dd a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  text-decoration: none;
}

footer .footNav dl dd a:hover {
  color: #ffc001;
}


footer .footNav dl dd p {
  margin-bottom: 0;
}

footer .footNav dl dd p a {
  color: #fff;
  text-decoration: none;
}

footer .footNav dl dd p a:hover {
  color: #ffc001;
}

footer .footNav .rightContact {
  display: grid;
  grid: auto/repeat(2, auto);
  gap: 1.25rem;
  margin-left: 10%;
}

footer .footNav .rightContact .wx img {
  max-width: 9.375rem;
}

footer .copyright {
  text-align: center;
  padding: 1.25rem;
  line-height: 2;
  font-size: 0.875rem;
  border-top: 2px solid #403f3f;
}

footer .copyright .links {
  margin-bottom: 0.5rem;
}

footer .copyright .links a {
  color: #fff;
  margin: 0 1rem;
}

footer .copyright p {
  margin-bottom: 0;
}

footer .copyright p span+span {
  margin-left: 1rem
}

footer .copyright p a {
  color: #fff;
}

/* main */
.main {
  margin-bottom: 3.125rem;
}

.main .content {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
padding: 30px;
	font-size: 1rem;
}

.main .content>h5 {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
  color: var(--main-color);
}

.main .content form {
  padding: 0 1rem 1.25rem;
}

.main .content #MyContent {
  padding: 1rem 1.25rem;
  color: #666;
}

.main .content #MyContent p {
  font-size: 1.05rem;
  color: #000;
}

.main .content #MyContent p img {
  max-width: 100%;
}

.main .content #MyContent table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}

.main .content #MyContent table tr td {
  border: 1px solid #ddd !important;
  padding: 0.5rem !important;
}

.main .content #MyContent table tr td p {
  margin-bottom: 0;
}

.main .box {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}

.main .box+.box {
  margin-top: 1.25rem;
}

.main .box>h5 {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
  background-color: var(--main-color);
  text-transform: capitalize;
}

.main .box ul {
  margin-bottom: 0;

}

.main .box ul li {
  list-style: none;
}

.main .box ul li a {
  display: block;
  padding: 1rem 1.25rem;
  border-bottom: 1px dashed #f0f0f0;
  color: var(--main-text-color);
  text-decoration: none;
}

.main .box ul li a i {
  margin-right: 0.5rem;
}


.main .box ul li a:hover {
  color: var(--main-color);
  background-color: #f6f6f6;
}

.main .box ul li p {
  padding: 1rem 1.25rem;
  border-bottom: 1px dashed #f0f0f0;
  color: var(--main-text-color);
  margin-bottom: 0;
  font-size: 0.875rem;
}

.main .box>dl {
  margin-bottom: 0;
  padding: 1rem 1.25rem
}

.main .box>dl+dl {
  padding-top: 0;
}

.main .box>dl dt {
  background-color: var(--main-color);
  border-radius: 0.25rem;
}

.main .box>dl dt a {
  text-align: center;
  text-decoration: none;
  display: block;
  color: #fff;
  font-weight: normal;
  text-transform: capitalize;
  padding: 0.5rem;
}

.main .box>dl dt:hover {
  background-color: var(--nav-active-color);
}

.main .box>dl dd {
  margin-bottom: 0;
  display: none;
}

.main .box>dl dd a {
  display: block;
  color: #2b88dc;
  text-decoration: none;
  border-bottom: 1px dashed #ddd;
  line-height: 2;
  text-transform: capitalize;
  padding: 0.75rem 0 0.5rem;
}

.main .box>dl dd a:hover {
  color: #000;
}

.my-map {
  margin: 0 auto;
  width: 100%;
  height: 35vh;
  margin-top: 1rem;
  padding: 0 1.25rem;
}

.my-map .amap-container {
  border: 1px solid #ddd;
}

.my-map .icon {
  background: url(//a.amap.com/lbs-dev-yuntu/static/web/image/tools/creater/marker.png) no-repeat;
}

.my-map .icon-cir {
  height: 31px;
  width: 28px;
}

.my-map .icon-cir-blue {
  background-position: -11px -55px;
}

.amap-container {
  height: 100%;
}

.myinfowindow {
  width: 240px;
  min-height: 50px;
}

.myinfowindow h5 {
  height: 20px;
  line-height: 20px;
  overflow: hidden;
  font-size: 14px;
  font-weight: bold;
  width: 220px;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: nowrap;
}

.myinfowindow div {
  margin-top: 10px;
  min-height: 40px;
  line-height: 20px;
  font-size: 13px;
  color: #6f6f6f;
}

.main .list {
  padding: 1rem 1.25rem;
  display: grid;
  grid: auto/repeat(3, 1fr);
  gap: 1.25rem;
}

.main .list .item {
  text-align: center;
}

.main .list .item .img {
  overflow: hidden;
  border: 1px solid #ddd;
}

.main .list .item .img img {
  transition: all linear 0.4s;
}

.main .list .item p {
  margin-top: 0.5rem;
  line-height: 2;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main .list .item p a {
  color: var(--main-text-color);
}

.main .list .item:hover .img img {
  transform: scale(1.1);
}

.main .list .item:hover p a {
  color: var(--main-color);
}

.productShow {
  padding: 1rem 0;
  margin-bottom: 1.875rem;
}

.productShow .img {
  overflow: hidden;
  border: 1px solid #ddd;
}

.productShow .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.productShow .info {
  line-height: 2;
}

.productShow .info h5 {
  margin-top: 1rem;
}

.productShow .info p {
  color: #868686;
}

.news-list {
  padding: 1rem 1.25rem;
}

.news-list dl {
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed #ddd;
  margin-bottom: 0rem;
}

.news-list dl+dl {
  margin-top: 1.25rem;
}

.news-list dl dt {
  width: 7.5rem;
  min-width: 7.5rem;
  height: 5rem;
  margin-right: 1rem;
}

.news-list dl dd {
  margin-bottom: 0;
}

.news-list dl dd h5 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.875rem;
  margin-bottom: 0.5rem;
}

.news-list dl dd h5 a {
  color: var(--main-text-color);
}

.news-list dl dd h5 a:hover {
  color: var(--main-color);
}

.news-list dl dd span {
  color: #797979;
  font-size: 12px;
}

.news-list dl dd p {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #868686;
  font-size: 0.875rem;
  line-height: 1.625rem;
  margin-top: 0.5rem;
}

.main ul.redirect {
  margin-bottom: 0;
  list-style: none;
  padding: 0 1.25rem 1rem;
}

.main ul.redirect li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2rem;
  line-height: 2rem;
  font-size: 0.875rem;
}

.main ul.redirect li a {
  color: var(--main-text-color);
}

.main ul.redirect li a:hover {
  color: var(--main-color);
}

.main .flist {
  padding: 1rem 1.25rem;
}

.main .flist dl {
  margin-bottom: 0;
  display: grid;
  grid: auto/auto 4.5rem;
  gap: 1.25rem;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 1rem;
  align-items: center;
}

.main .flist dl+dl {
  margin-top: 1.25rem;
}

.main .flist dl dt {
  font-weight: normal;
}

.main .flist dl dd {
  margin-bottom: 0;
  padding: 0.375rem 0.5rem;
  border-radius: 0.25rem;
  background-color: var(--main-color);
}

.main .flist dl dd a {
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  display: block;
}

.main .flist dl dd:hover {
  background-color: var(--nav-active-color);
}

/* 2023/02/17 */
.index .section-8 .list {
  display: grid;
  grid: auto/repeat(4, 1fr);
  gap: 1.875rem;
}

.index .section-8 .list .item {
  text-align: center;
  transition: all linear 0.4s;
}

.index .section-8 .list .item p {
  line-height: 2.5;
  margin-bottom: 0;
}

.index .section-8 .list .item:hover {
  transform: scale(1.05);
}

.index .section-9 {
  background: url("../img/9-bg.jpg") top center/cover no-repeat;
}

.index .section-9 .title b {
  color: #fff;
}

.index .section-9 .title p {
  color: #fff;
}

.index .section-9 .list {
  display: grid;
  grid: auto/repeat(5, 1fr);
  gap: 1.875rem;
}

.index .section-9 .list .item {
  text-align: center;
  color: #fff;
}

.index .section-9 .list .item h5 {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.index .section-9 .list .item p {
  margin-bottom: 0;
}

.enquiryFormBox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 9999999;
  align-items: center;
  justify-content: center;
  display: none;
}

.enquiryForm {
  width: 61.8%;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 0.25rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}

.enquiryFormTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #ddd;
}

.enquiryFormTitle h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #000;
}

.enquiryFormTitle a.closeBtn {
  color: #000;
}

.enquiryFormTitle a.closeBtn:hover {
  color: red;
}

.enquiryForm form {
  padding: 1.25rem;
}

@media (max-width:576px) {
  .enquiryForm {
    width: 100%;
  }
}

.descriptions .content>h5 a {
  color: #000;
  text-decoration: none;
  position: relative;
}

.descriptions .content>h5 a::before {
  content: '';
  display: none;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  top: 100%;
}

.descriptions .content>h5 a.active {
  color: var(--main-color);
}

.descriptions .content>h5 a.active::before {
  display: block;
}

.descriptions .content>h5 a+a {
  margin-left: 1.25rem;
}

.descriptions .content .details,
.descriptions .content .video {
  display: none;
}

.descriptions .content .details.active,
.descriptions .content .video.active {
  display: block;
}

.descriptions .content .details,
.descriptions .content .video {
  padding: 1rem 1.25rem;
}

.descriptions .content .details p {
  font-size: 1.25rem;
  color: #000;
}

.descriptions .content .details p img {
  max-width: 100%;
}

.descriptions .content .details table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}

.descriptions .content .details table tr td {
  border: 1px solid #ddd !important;
  padding: 0.5rem !important;
}

.descriptions .content .details table tr td p {
  margin-bottom: 0;
}

.descriptions .content .video video {
  width: 100%;
  background-color: #000;
}

#bot {
  background-color: var(--main-color);
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, .15);
  display: grid;
  grid: auto/repeat(2, 1fr);
}

#bot a {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-decoration: none;
}

.index .video .list {
  display: grid;
  grid: auto/repeat(4, 1fr);
  gap: 1.875rem;
}

.list#video {
  display: grid;
  grid: auto/repeat(2, 1fr);
  gap: 1.875rem;
}

.index .video .list .item video,
#video .item video,
#MyContent video {
  background-color: #000;
  width: 100%;
}

#video .item {
  text-align: left;
}

.index .video .list .item p,
#video .item p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 2;
  text-transform: capitalize;
  margin-bottom: 0;
}

.index .video .list .item p a,
#video .item p a {
  color: #2b88dc;
  text-decoration: none;
}

.productShow .swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.productShow .swiper-slide {
  padding: 2px;
}

.productShow .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.productShow .gallery-top {
  width: 100%;
  border: 1px solid #ddd;
}

.productShow .gallery-thumbs {
  box-sizing: border-box;
  padding: 10px 0 0;
}

.productShow .gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.4;
  border: 1px solid #ddd;
  cursor: pointer;
}

.productShow .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #e62129;
}

.main .content>nav,
.productShow nav {
  background-color: var(--main-bg-color);
  margin: 0 0 1.25rem 0;
  padding: 0.5rem;
  border-radius: 0.25rem;
}

.main .content>nav a,
.productShow nav a {
  color: #2b88dc;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 0.25rem;
}

.main .content>nav a:hover,
.productShow nav a:hover {
  background-color: #fff;
  color: #000;
}

.main .content>nav {
  margin: 1.25rem 1.25rem 0 1.25rem;
}

#wmkc {
  position: fixed;
  right: 10px;
  top: 40%;
  transform: translateY(-50%);
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif !important;
  padding-bottom: 80px;
  z-index: 99999;
}

#wmkc * {
  box-sizing: border-box;
  font-size: 12px
}

.wmkc-list {
  padding: 0;
  border: 1px solid #EEE;
  background-color: #FFF;
  max-width: 78px;
  overflow-x: hidden;
  border-radius: 4px;
  margin: 0
}

.wmkc-icon {
  display: inline-block;
  background: url(../img/wmkc-ico.png) no-repeat;
  width: 32px;
  height: 32px
}

.wmkc-list>li {
  width: 100%;
  line-height: 115%;
  border-bottom: 1px solid #EEE;
  list-style: none;
  text-align: center;
  padding: 5px;
  transition: all .2s ease-in-out
}

.wmkc-list>li p {
  margin: 2px 0 0;
  font-size: 11px;
}

.wmkc-list>li a {
  color: #555;
  text-decoration: none;
  font-size: 12px;
  display: block;
}

.wmkc-email .wmkc-icon {
  background-position: -6px -6px
}

.wmkc-whatsapp .wmkc-icon {
  background-position: -50px -50px;
}

.wmkc-skype .wmkc-icon {
  background-position: -50px -6px
}

.wmkc-list li:hover a {
  color: #FFF
}

.wmkc-email:hover {
  background-color: #F90
}

.wmkc-whatsapp:hover {
  background-color: #2CB740
}

.wmkc-skype:hover {
  background-color: #0091DF
}

.wmkc-email:hover .wmkc-icon {
  background-position: -94px -6px;
}

.wmkc-whatsapp:hover .wmkc-icon {
  background-position: -50px -94px
}

.wmkc-skype:hover .wmkc-icon {
  background-position: -94px -50px;
}

.wmkc-list>li:first-child {
  border-radius: 4px 4px 0 0
}

.wmkc-list>li:last-child {
  border-radius: 0px 0px 4px 4px;
  border: none
}

.wmkc-top {
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 1px solid #EEE;
  background-color: #FFF;
  padding: 5px 4px;
  border-radius: 4px;
  transition: all .2s ease-in-out;
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%
}

.wmkc-top .wmkc-icon {
  background-position: -6px -50px
}

.wmkc-top p {
  color: #777;
  margin: 2px 0 0;
  font-size: 14px
}

.wmkc-top:hover {
  background-color: #BBB;
}

.wmkc-top:hover p {
  color: #FFF
}

.wmkc-top:hover .wmkc-icon {
  background-position: -6px -94px;
}

@media(max-width:768px) {
  #wmkc {
    display: none
  }
}

/*---电话---*/

#wmkc .wmkc-list>li.wmkc-phone .fa {
  font-size: 20px;
  margin: 6px;
  color: var(--main-color);
}

#wmkc .wmkc-list>li.wmkc-phone:hover {
  background-color: var(--main-color);
}

#wmkc .wmkc-list>li.wmkc-phone:hover .fa {
  color: #fff;
}

#wmkc .wmkc-list>li.wmkc-phone:hover p {
  color: #fff;
}

/* 移动端电话图标 - 只在移动端显示 */
.mobile-phone-icon {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--main-color);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(43, 136, 220, 0.4);
  z-index: 9999;
  animation: phoneIconPulse 2s infinite;
}

.mobile-phone-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}

.mobile-phone-icon:hover {
  background-color: var(--nav-active-color);
  transform: scale(1.1);
}

@keyframes phoneIconPulse {
  0% {
    box-shadow: 0 4px 12px rgba(43, 136, 220, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(43, 136, 220, 0.8);
  }
  100% {
    box-shadow: 0 4px 12px rgba(43, 136, 220, 0.4);
  }
}

/* 只在移动端显示电话图标 */
@media (max-width: 768px) {
  .mobile-phone-icon {
    display: block;
  }
}

/* 证书滚动区域样式优化 */
#demo {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 0;
}

#indemo {
  width: 100%;
  overflow: hidden;
}

#demo1, #demo2 {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}

#demo1 .box, #demo2 .box {
  display: inline-block;
  margin: 0 15px;
  vertical-align: top;
  width: 200px;
  height: 280px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#demo1 .box:hover, #demo2 .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--main-color);
}

#demo1 .box img, #demo2 .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

#demo1 .box:hover img, #demo2 .box:hover img {
  transform: scale(1.05);
}

/* 暂停动画当鼠标悬停 */
#demo:hover #demo1,
#demo:hover #demo2 {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 移动端证书滚动优化 */
@media (max-width: 768px) {
  #demo {
    padding: 15px 0;
    border-radius: 6px;
  }
  
  #demo1, #demo2 {
    animation: scroll-left-mobile 15s linear infinite;
  }
  
  #demo1 .box, #demo2 .box {
    width: 150px;
    height: 210px;
    margin: 0 10px;
    border-radius: 6px;
  }
  
  @keyframes scroll-left-mobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* 移动端触摸滚动支持 */
  #demo {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
  #demo1 .box, #demo2 .box {
    width: 120px;
    height: 168px;
    margin: 0 8px;
  }
  
  #demo1, #demo2 {
    animation: scroll-left-small 12s linear infinite;
  }
  
  @keyframes scroll-left-small {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}



/* 2025/02/26 start 
* related products css
*/
.related-product-container {
  overflow: hidden;
}

.related-product-container .related-product-swiper {
  overflow: hidden;
  position: relative;
  margin: 0 1.25rem;
}

.related-product-container .swiper-btn {
  color: var(--main-color);
}

.related-product-container .swiper-btn.swiper-button-disabled {
  opacity: .35;
  color: gray;
}

.related-product-container .item {
  text-align: center;
}

.related-product-container .item .img {
  overflow: hidden;
  border: 1px solid #ddd;
}

.related-product-container .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: all linear 0.4s;
}

.related-product-container .item {
  overflow: hidden;
}

.related-product-container .item h5 {
  padding: 0.75rem 0;
  margin-bottom: 0;
}

.related-product-container .item h5 a {
  color: #333;
  text-decoration: none;
}

.related-product-container .item:hover .img {
  border-color: var(--main-color);
}

.related-product-container .item:hover .img img {
  transform: scale(1.05);
}

.related-product-container .item:hover h5 a {
  color: var(--main-color);
}

/* end */