﻿@charset "utf-8";

.g-text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.g-line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.g-line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* ---------- PC hover 交互（规则118 移动端隔离） ---------- */
@media (min-width: 1025px) {
  .sec-header__nav-item:hover > a {
    /* color: #00849a; */
  }

  .sec-header__nav-item:hover > .sec-header__submenu {
    opacity: 1;
    visibility: visible;
  }

  .sec-header__submenu a:hover {
    color: #00849a;
    background: #f2fafa;
  }

  .sec-header__search-trigger:hover {
    opacity: 0.75;
    transform: scale(1.08);
  }
}

/* ---------- 移动端 ---------- */

.sec-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.sec-header::after{
 content: "";
 position: absolute;
 width: 100%;
 top: 0;
 left: 0;
 height: 2rem;
 z-index: -1;
 background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 91%);
 }
.sec-header.scrolled:after{
  background: #00849A;height:100%;
}
.sec-header__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 0.54rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 1.2rem;
}
.sec-header__logo {
  display: block;
  /* margin-top: 0.32rem; */
  flex-shrink: 0;
}
.sec-header__logo img {
  display: block;
  width: 4.54rem;
  height: 0.77rem;
}
.sec-header__right {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-end;
  /* margin-top: 0.18rem; */
  flex: 1;
  min-width: 0;
  padding-left: 10%;
}
.sec-header__utils {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.sec-header__lang {
  font: 400 0.16rem/0.21rem 'Microsoft YaHei';
  color: #ffffff;
}
.sec-header__util-divider {
  display: block;
  width: 1px;
  height: 0.25rem;
  margin: 0 0.16rem;
  background: #ffffff;
}
.sec-header__search-trigger {
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s;
}
.sec-header__search-trigger img {
  display: block;
  width: 0.25rem;
  height: 0.25rem;
}
.sec-header__nav {
  margin-top: 0.15rem;
  width: 100%;
}
.sec-header__nav > ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.sec-header__nav-item {
  position: relative;
}
.sec-header__nav-item + .sec-header__nav-item {
}
.sec-header__nav-item:first-child + .sec-header__nav-item {
  /* margin-left: 0.47rem; */
}
.sec-header__nav-item > a {
  display: block;
  font: 700 0.2rem 'Microsoft YaHei';
  color: #ffffff;
  position: relative;
  padding-bottom: 0.04rem;
}

.sec-header__nav-item > a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0.02rem;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.3s ease, left 0.3s ease;
}
.sec-header__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.04rem);
  min-width: 1.6rem;
  padding: 0.08rem 0;
  background: #ffffff;
  box-shadow: 0 0.06rem 0.2rem rgba(0, 0, 0, 0.1);
  border-radius: 0 0 0.04rem 0.04rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 101;
}
.sec-header__submenu a {
  display: block;
  padding: 0.09rem 0.24rem;
  font: 400 0.16rem/0.24rem 'Microsoft YaHei';
  color: #333333;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}
.sec-header__burger {
  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 0.36rem;
  height: 0.26rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: absolute;
  right: .2rem;
  top: .25rem;
}
.sec-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
}




.sec-header__search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(0.12rem);
}

.sec-header__search-overlay.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.sec-header__search-close {
  position: absolute;
  top: 0.3rem;
  right: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  border: 0;
  background: transparent;
  font: 400 0.36rem/0.5rem Arial, sans-serif;
  color: #ffffff;
  cursor: pointer;
}
.sec-header__search-form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 9rem;
  max-width: 88%;
  box-sizing: border-box;
}
.sec-header__search-input {
  flex: 1;
  height: 0.66rem;
  padding: 0 0.2rem;
  box-sizing: border-box;
  border: 0;
  border-bottom: 0.02rem solid rgba(255, 255, 255, 0.4);
  background: transparent;
  font: 400 0.24rem/0.66rem 'Microsoft YaHei';
  color: #ffffff;
  transition: border-color 0.3s ease;
}

.sec-header__search-input:focus {
  border-bottom-color: #00849a;
}
.sec-header__search-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.sec-header__search-submit {
  flex-shrink: 0;
  width: 0.72rem;
  height: 0.66rem;
  border: 0;
  background: transparent;
  font: 400 0.22rem/0.66rem 'Microsoft YaHei';
  color: #ffffff;
  cursor: pointer;
}
.sec-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 140;
  display: none;
}
.sec-header__overlay.show {
  display: block;
}
.sec-header__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 4.2rem;
  max-width: 82%;
  height: 100%;
  padding: 0.2rem 0.24rem;
  box-sizing: border-box;
  background: #ffffff;
  z-index: 150;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -0.06rem 0 0.24rem rgba(0, 0, 0, 0.1);
}
.sec-header__panel.open {
  transform: translateX(0);
}
.sec-header__panel-head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.sec-header__panel-close {
  width: 0.4rem;
  height: 0.4rem;
  border: 0;
  background: transparent;
  font: 400 0.4rem/0.4rem Arial, sans-serif;
  color: #333333;
  cursor: pointer;
}
.sec-header__panel-search {
  margin-top: 0.12rem;
  align-items: center;
   height: 0.56rem;
  padding: 0 0.16rem;
  border: 1px solid #dddddd;
}
.sec-header__panel-search input {
  font: 400 0.16rem/0.56rem 'Microsoft YaHei';
  color: #333333;
  flex: 1;
  min-width: 0;
}
.sec-header__panel-search button{font-size:.16rem;}
.sec-header__panel-nav {
  margin-top: 0.12rem;
}
.sec-header__panel-nav > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.sec-header__panel-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.sec-header__panel-item > a {
  flex: 1;
  padding: 0.16rem 0;
  font: 400 0.18rem/0.24rem 'Microsoft YaHei';
  color: #333333;
}
.sec-header__panel-arrow {
  flex-shrink: 0;
  padding: 0.16rem 0.04rem;
  font: 400 0.16rem/0.24rem Arial, sans-serif;
  color: #999999;
  cursor: pointer;
}
.sec-header__panel-sub {
  display: none;
  padding-bottom: 0.08rem;
}
.sec-header__panel-sub.open {
  display: block;
}
.sec-header__panel-sub a {
  display: block;
  padding: 0.1rem 0 0.1rem 0.32rem;
  font: 400 0.16rem/0.22rem 'Microsoft YaHei';
  color: #666666;
}
/* footer */
.sec-footer {position: relative;
  width: 100%;overflow: hidden;background: url('../images/sec_div.png') no-repeat center/cover;}
.foot-t {padding: 0.33rem 0 0.2rem;}
.select{width: 2.8rem;position: relative;cursor: pointer;margin: 0rem 0.8rem 0.1rem 0;}
.select h2{font-size: 0.18rem;height: 0.42rem;align-items: center;padding: 0 .2rem;justify-content: space-between;border: 1px solid rgba(255, 255, 255, 0.5);}
.select h2 p{color: #fff;white-space: nowrap;}
.select ul{background: #f8f8f8;/*height: 2rem;*/position: absolute;width: auto;left: 0;right: 0;padding: .15rem 0rem;z-index: 5;top: 100%;display: none;overflow-y: auto;}
.select li{font-size: 0.16rem;line-height: 0.32rem;color: #333;transition:0.5s;padding: 0 .15rem;text-align: left;}
.select li a{color:#333;}
.select h2 img{width: 0.14rem;}
.select li:hover{background:#00849A;color:#fff;}
.select li:hover a{color:#fff;}

.sec-footer__bottom {
 
  padding: 0.44rem 0 0.4rem;border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sec-footer__bottom .g-container{display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}

.sec-footer__logo {
  display: block;
  flex-shrink: 0;
}

.sec-footer__info {
  font: 400 0.16rem/0.26rem 'Microsoft YaHei';
  color: #fff;
  letter-spacing: 0.01rem;
}

@media (max-width: 1024px) {
  .m-head{height:.7rem;}
  .sec-header__inner{height:.7rem;background: #00849A;padding: 0 .15rem;}
.sec-header {display: block;height: .7rem;}
.sec-header__nav,
  .sec-header__utils {
    display: none;
  }
.sec-header__burger {
    display: flex;
  }
.sec-header__submenu {
    display: none;
  }
.sec-header__search-close {
    display: block;
  }
.sec-header__logo img {
    width: auto;
    height: 0.44rem;
    max-width: none;
  }
.sec-footer{background: #00849A;}
  .select{margin:0 .2rem .1rem 0}
}
@media (min-width: 1025px) {
.sec-header__nav-item:hover > a {
    /* color: #00849a; */
  }
.sec-header__nav-item:hover > .sec-header__submenu {
    opacity: 1;
    visibility: visible;
  }
.sec-header__submenu a:hover {
    color: #00849a;
    background: #f2fafa;
  }
.sec-header__search-trigger:hover {
    opacity: 0.75;
    transform: scale(1.08);
  }


  
}
@media (max-width: 768px) {
  .foot-t{justify-content:space-between}
  .select{margin:0 0% .1rem 0;width:32%;}
  .select:last-child{margin-right:0;}
  .sec-footer__bottom{padding:.25rem 0}
.sec-footer__logo{width:100%;text-align:center;}
  .sec-footer__info{width:100%;text-align:center;margin-top:.25rem;}
  
}
@media (max-width: 600px) {
   .select{width:49%;}
}