* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  text-indent: none;
  color: #000;
  font-family: 'AlibabaRegular';
  font-size: 14px;
  line-height: 22px;
}

 a {
  text-decoration: none !important;
 }

 /* 内容区域宽度 */
 .con-width{
  width: 1200px;
  margin: 0 auto;
 }
 
 .nodata{
     font-size: 16px;
     padding: 50px 0;
     text-align: center;
     width: 100%;
 }

 /* 首页标题-start */
 .i-title {
  background-image: url(../img/title-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #000;
  padding-top: 10px;
 }
 .i-title .title {
  font-size: 36px;
  font-family: 'AlibabaBold';
  color: #03004C;
  text-transform: uppercase;
 }
 .i-title .description {
  font-size: 24px;
  line-height: 22px;
  margin-top: 26px;
 }
 .i-title.i-title-white {
  background-image: url(../img/title-bg-1.png);
  color: #fff;
 }
 .i-title.i-title-white .title {
  color: #fff;
  text-transform: uppercase;
 }
 .i-title.i-title-white .description {
  color: #fff;
  text-transform: uppercase;
 }

 .i-title.i-title-2 {
  background-image: url(../img/title-bg-2.png);
 }
 /* 首页标题-end */


/* 二级页面-banner-start */
.sub-banner {
  width: 100%;
  height: 522px;
  position: relative;
  overflow: hidden;
}

/* 二级页面-banner-end */

/* 二级页面-标题-start */
.sub-page-title {
  margin-bottom: 40px;
}
.sub-page-title .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 57.92px;
  color: #12b7a4;
}
.sub-page-title .description {
  font-size: 16px;
  font-weight: 400;
  line-height: 23.17px;
  color: #999999;
  margin-top: 7px;
  margin-bottom: 25px;
}
.sub-page-title .line {
  width: 340px;
  height: 1px;
  background: rgba(204, 204, 204, 1);
  position: relative;
}
.sub-page-title .line::before {
  width: 64px;
  height: 3px;
  background: #12b7a4;
  position: absolute;
  left: 0;
  bottom: 0;
}
/* 二级页面-标题-end */

/* 下拉样式-start */
.select-style {
  display: flex;
  align-items: center;
}
.select-style p{
  font-size: 16px;
  color: #fff;
  margin: 0px !important;
}
.select-style span{
  display: block;
  width: 10px;
  height: 7px;
  margin-left: 20px;
}
.select-style span img{
  display: block;
  width: 100%;
  height: 100%;
}
/* 下拉样式-end */
.title-public .en{
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: center;
  text-transform: uppercase;
  color: #DBF3FF;
}
.title-public h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: center;
}
.title-public span {
  display: block;
  width: 56px;
  height: 6px;
  background-color: #00A895;
  margin: 0 auto;
  margin-top: 10px;
}

.cover > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* 限制一行 */
.text-line-clamp1{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 限制两行 */
.text-line-clamp2{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 分页 */
.pagination {
  display: flex;
  margin: 0 auto;
  margin-top: 27px;
  display: flex;
  justify-content: center;
}
.pagination .pagination-con {
  display: flex;
}
.pagination .item{
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  padding: 10px 40px;
  border: 1px #B4B6B8 solid;
  margin: 0 16px;
  color: #626466;
  
}
.pagination .item.num {
  padding: 10px 16px;
}
.pagination .item.active {
  background-color: #00A895;
  border: 1px #00A895 solid;
  color: #fff;
}
.pagination .item.no-data {
  color: #B4B6B8;
}
.pagination .item:hover {
  border: 1px #00A895 solid;
  color: #00A895;
}
.pagination .item.active:hover {
  background-color: #00A895;
  border: 1px #00A895 solid;
  color: #fff;
}
.pagination .item.no-data:hover {
  border: 1px #B4B6B8 solid;
  color: #B4B6B8;
}

/* 按钮样式 */
.btn-style {
  display: flex;
  width: 170px;
  line-height: 32px;
  background-color: #03004C;
  color: #fff;
  text-align: center;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
}
.btn-style::after {
  width: 20px;
  height: 20px;
  background-image: url(../img/btn-jiantou.png);
  background-repeat: no-repeat;
  display: inline-block;
  background-position: center;
  content: '';
  margin-left: 10px;
  transition: all 0.5s;
}
.btn-black {
  background-color: #03004C;
  color: #fff;
}
.btn-black::after {
  background-image: url(../img/btn-jiantou.png);
}
.btn-white {
  background-color: #F5F5F5;
  color: #000000;
}
.btn-white::after {
  background-image: url(../img/btn-jiantou-b.png);
}
.btn-back {
  background-color: #D9D9D9;
  color: #000000;
  flex-direction: row-reverse;
  width: 114px;
}
.btn-back::after {
  background-image: url(../img/back.png);
  margin-right: 10px;
}
.btn-back-black {
  background-color: #03004C;
  color: #fff;
  flex-direction: row-reverse;
  width: 114px;
}
.btn-back-black::after {
  background-image: url(../img/btn-jiantou.png);
  margin-right: 10px;
  transform: rotate(180deg);
}

/* 间隔线 */
.septalline {
  width: 100%;
  height: 12px;
  background-image: url(../img/line.png);
  background-repeat: repeat-x;
}


/* 下拉 */
.select {
  position: relative;
}
.select .sub-nav {
  display: none;
  position: absolute;
}
.select:hover .sub-nav {
  display: flex;
}
.select {
  padding: 27px 0;
}
.select .sub-nav a {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: center;
  display: block;
  padding: 15px 0;
  color: #333;
}
.select .sub-nav-style {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 16px 0;
  flex-direction: column;
  width: 240px;
  top: 76px;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 4px;
  border: 2px #00A895 solid;
}
.select .sub-nav.sub-nav-style a {
  text-align: center;
  color: #333 !important;
  position: relative;
}
.select .sub-nav.sub-nav-style a:hover {
  /* background-color: #00A895; */
  color: #00A895 !important;
}
.select .sub-nav a:hover::before {
  /* width: 80%;
  height: 2px;
  background-color: #00A895;
  content: '';
  display: block;
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translate(-50%, 0); */
}
.select:hover span {
  transform: rotate(180deg);
}
.select span {
  transition: all 0.5s;
}

.animation {
  opacity: 0;
  transform: translate(0, 100%);
}
.animation.active {
  opacity: 1;
  transform: translate(0, 0%);
  transition: all 1s;
}
.animation-top {
  opacity: 0;
  transform: translate(0, -100px);
}
.animation-top.active {
  opacity: 1;
  transform: translate(0, 0%);
  transition: all 1s;
}

.index-title {
  /** 文本1 */
  font-size: 58px;
  font-weight: 700;
  line-height: 83.98px;
  color: #03004C;
  text-align: left;
}

/* 单行 */
.single-line {
  white-space: nowrap;      /* 禁止换行 */
  overflow: hidden;         /* 溢出内容隐藏 */
  text-overflow: ellipsis;  /* 溢出部分显示省略号 */
}

/* 两行 */
.multi-line {
  display: -webkit-box;      /* 必须是webkit-box */
  -webkit-box-orient: vertical; /* 垂直排列子元素 */
  -webkit-line-clamp: 2;     /* 限制显示的行数 */
  overflow: hidden;          /* 溢出内容隐藏 */
  text-overflow: ellipsis;   /* 溢出部分显示省略号 */
}

/* 图片盒子 */
.imgbox {
  width: 100%;
  overflow: hidden;
}
.imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.3s;
}
.imgbox-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.imgbox-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imgbox:hover img {
  transform: scale(1.1);
}

@media (max-width: 1250px) {
	.con-width {
		width: 90%;
	}
}
@media (max-width: 640px) {
  .title-public .en {
    font-size: 26px;
    line-height: 26px;
  }
  .title-public h2 {
    font-size: 30px;
    line-height: 30px;
  }
  .index-title {
    font-size: 40px;
    line-height: 60px;
    word-break: break-all;
  }
}


/* 分页 */
.pagination>li {
  margin: 0 4px;
}
.pagination>li>a:hover {
  /*background: #03004C;*/
  /*color: #fff;*/
}
.pagination>li>a:focus {
  background: #03004C;
  color: #fff;
}
.pagination>li>a {
  padding: 8px 16px;
  border: 1px solid rgba(233, 233, 233, 1);
  color: rgba(160, 160, 160, 1);
  background: #fff;
}
.pagination>li.active>a {
  border-color: #03004C !important;
  background: #03004C !important;
  color: #fff !important;
}
.pagination>li>a.prev {
  width: 40px;
  height: 37px;
  display: block;
  background-image: url(../img/p-prev.png);
  background-repeat: no-repeat;
  background-position: center;
}
.pagination>li>a.next {
  width: 40px;
  height: 37px;
  display: block;
  background-image: url(../img/p-next.png);
  background-repeat: no-repeat;
  background-position: center;
}

.sj {
  display: none;
}

@media (max-width: 960px) {
  .pc {
    display: none;
  }
  .sj {
    display: block;
  }
}


/* 留言 */
.liuyan.contact-from  .contact-us-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.liuyan.contact-from  .single-input-box {
  width: 48%;
  margin-bottom: 20px;
  display: flex;
}
.liuyan.contact-from .all-box {
  width: 100%;
}
.liuyan.contact-from  .single-input-box input {
  padding: 4px 10px;
  line-height: 32px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  background-color: #F2F2F2;
  flex: 1;
  outline: none;
}
.liuyan.contact-from  .single-input-box textarea {
  padding: 4px 10px;
  line-height: 32px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  background-color: #F2F2F2;
  height: 158px;
  outline: none;
}
.liuyan.contact-from .all-box button {
  width: 172px;
  line-height: 40px;
  background-color: #03004C;
  color: #fff;
  border-radius: 6px;
  font-size: 20px;
}

/* 加盟-留言 */
.sq .contact-from  .contact-us-form {
  display: grid;
  grid-template-columns: repeat(3, calc(33.33% - 20px));
  grid-gap: 10px 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sq .contact-from  .single-input-box {
  margin-bottom: 20px;
  display: flex;
}
.sq .contact-from  .single-input-box.row2 {
  grid-column: span 2;
}
.sq .contact-from .all-box {
  grid-column: span 3;
}
.sq .contact-from  .single-input-box input {
  padding: 4px 10px;
  line-height: 32px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  background-color: rgba(242, 242, 242, 0.3);
  flex: 1;
  color: #fff;
  outline: none;
}
.sq .contact-from  .single-input-box input::placeholder {
  color: #fff;
}
.sq .contact-from  .single-input-box textarea {
  padding: 4px 10px;
  line-height: 32px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  background-color: rgba(242, 242, 242, 0.3);
  height: 114px;
  color: #fff;
  outline: none;
}
.sq .contact-from  .single-input-box textarea::placeholder {
  color: #fff;
}
.sq .contact-from .all-box button {
  width: 324px;
  line-height: 40px;
  background-color: #fff;
  color: #03004C;
  border-radius: 6px;
  font-size: 20px;
  margin: 0 auto;
  display: block;
}

.icontent .liuyan {
  margin-top: 24px;
}
.icontent .liuyan.contact-from  .single-input-box input {
  background-color: #fff;
}
.icontent .liuyan.contact-from  .single-input-box textarea {
  background-color: #fff;
}

.sj {
  display: none !important;
}

.ksdh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}
.ksdh video {
    width: 100%;
    height: 100%;
}

/* 视频容器样式 */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000; /* 确保视频在最上层 */
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-out;
}

/* 视频样式 */
#splash-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持视频比例并覆盖整个容器 */
}

/* 主内容样式 */
.main-content {
    min-height: 100vh;
    padding: 2rem;
    display: none; /* 初始隐藏主内容 */
}

/* 加载提示样式 */
.loading-indicator {
    position: absolute;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
        
@media (max-width: 960px) {
  .sj {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .btn-style {
    font-size: 12px;
    width: 128px;
    height: 30px;
    line-height: 30px;
  }
  .septalline {
    background-image: url(../img/line-sj.png);
  }
  .i-title .title {
    font-size: 24px;
  }
  .i-title .description {
    font-size: 16px;
    margin-top: 7px;
  }
  .i-title {
    background-size: 60px;
  }
  .icontent .liuyan.contact-from .single-input-box input {
    background-color: #F5F5F5;
    line-height: 28px;
  }
  .icontent .liuyan.contact-from .single-input-box textarea {
    background-color: #F5F5F5;
    height: 70px;
  }
  .icontent .liuyan {
    margin-top: 10px;
  }
  .liuyan.contact-from .single-input-box {
    margin-bottom: 8px;
  }
  .liuyan.contact-from .all-box button {
    line-height: 30px;
    margin: 0 auto;
  }
  .liuyan.contact-from .all-box {
    display: flex;
  }
  .sub-banner {
    height: 190px;
  }
  .sub-banner .imgbox {
    height: 100%;
  }


  .sq .contact-from .contact-us-form {
    display: block;
  }
  .sq .contact-from .single-input-box {
    margin-bottom: 10px;
  }
    
  .contact1 .liuyan.contact-from .single-input-box {
    width: 100%;
  }
  .contact1 .liuyan.contact-from .all-box button {
    margin: 0 auto;
    margin-top: 21px;
    font-size: 16px;
  }
}
