@charset "UTF-8";


@font-face {
  font-family: bebas;
  src: url(../fonts/BebasNeue_Bold.ttf) format("truetype");
}

@font-face {
  font-family: 'SourceHanSansCN';
  src: url("../fonts/SourceHanSansCN-Regular.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 400
}

@font-face {
  font-family: 'SourceHanSansCN';
  src: url("../fonts/SourceHanSansCN-Medium.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 500
}

@font-face {
  font-family: 'SourceHanSansCN';
  src: url("../fonts/SourceHanSansCN-Bold.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 700
}


.pic {
  padding-top: 75%;
  position: relative;
  overflow: hidden;
}

.pic::before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  opacity: .25;
  pointer-events: none;
  /* background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .53) 100%); */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 3;
}

.pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 1s;
}

a:hover .pic img {
  transform: scale(1.05);
}

a:hover .pic:before {
  -webkit-animation: shine 1s;
  animation: shine 1s
}

@-webkit-keyframes shine {
  100% {
    left: 125%
  }
}

@keyframes shine {
  100% {
    left: 125%
  }
}

.pic div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  transition: all .8s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

a:hover .pic div {
  width: 110%;
  height: 110%;
}


.modulepic {
  padding-top: 75%;
  position: relative;
  overflow: hidden;
}

.modulepic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 1s;
  object-fit: cover;
}

.modulepic div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all .8s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

a:hover .modulepic img {
  transform: scale(1.05);
}

a:hover .modulepic div {
  transform: scale(1.1);
}


.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;
}


@media (min-width: 1025px) {
  .sec-header__link {
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }

  .sec-header__link:hover {
    opacity: 0.80;
    color: #fd6201;
    transform: translateY(-0.02rem);
  }

  .sec-header__search-btn {
    transition: filter 0.3s ease, box-shadow 0.3s ease;
  }

  .sec-header__search-btn:hover {
    opacity: 0.9;
    filter: brightness(1.10);
    box-shadow: 0 0.04rem 0.08rem rgba(253, 98, 1, 0.40);
  }

  .sec-header__item:hover > .sec-header__navlink::after {
    width: 100%;
  }

  .sec-header__item--active > .sec-header__navlink::after {
    width: 100%;
  }

  .sec-header__submenu > ul > li a:hover {
    color: #fd6201;
  }
}


@media (max-width: 1024px) {
  .sec-header {
    height: auto;
  }

  .sec-header__container {
    display: none;
  }

  .sec-header__bg {
    display: none;
  }

  .sec-header__hamburger {
    display: none;
  }

  /* Show mobile navigation */
  .sec-header__mobile {
    display: block;
  }


  /* Mobile header bar */
  .sec-header__m-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
  }

  .sec-header__m-header {
    padding: 0 0.15rem 0 0.15rem;
    height: 0.70rem;
    background: #013984;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sec-header__m-logo {
    width: calc(100% - 0.80rem);
    padding: 0;
  }

  .sec-header__m-logo img {
    height: auto;
    max-height: 0.50rem;
  }

  .sec-header__m-btn-box {
    position: relative;
    width: 0.70rem;
    height: 0.70rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
  }

  .sec-header__m-btn-box::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #ffffff;
  }

  .sec-header__m-btn {
    cursor: pointer;
    text-align: center;
    z-index: 99999;
    transition: all 0.5s ease;
    outline: none;
  }

  .sec-header__m-point {
    display: inline-block;
    width: 0.40rem;
    height: 22px;
    position: relative;
    outline: none;
  }

  .sec-header__m-navbtn {
    position: absolute;
    top: 12px;
    left: 0;
    display: inline-block;
    width: 18px;
    height: 2px;
    transition: all 0.3s ease-out;
    background: #013984;
  }

  .sec-header__m-navbtn::after,
  .sec-header__m-navbtn::before {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 24px;
    height: 2px;
    content: "";
    transition: all 0.3s ease-out;
    background: #013984;
  }

  .sec-header__m-navbtn::after {
    top: -8px;
  }

  .sec-header__m-navbtn::before {
    top: 8px;
  }

  .sec-header__m-point.on .sec-header__m-navbtn {
    background: transparent;
  }

  .sec-header__m-point.on .sec-header__m-navbtn::after {
    transform: rotate(45deg);
    top: 0;
  }

  .sec-header__m-point.on .sec-header__m-navbtn::before {
    transform: rotate(-45deg);
    top: 0;
  }

  .sec-header__m-nav {
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    right: -105vw;
    top: 0;
    padding: 0.70rem 0.20rem 0.30rem;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #f7f7f7;
    opacity: 0;
    visibility: hidden;
  }

  .sec-header__m-nav.act {
    pointer-events: auto;
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .sec-header__m-close {
    position: absolute;
    top: 0.07rem;
    right: 0.15rem;
    left: 0.15rem;
    font-size: 30px;
    color: #333333;
    z-index: 10000;
    width: auto;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    cursor: pointer;
  }



  .sec-header__m-list > li .list a {
    display: block;
    font-size: 13px;
    color: #666666;
    line-height: 2.5;
  }

  .sec-header__m-quick {
    width: 90%;
    margin: 0.32rem auto 0;
    flex-wrap: wrap;
    display: flex;
  }



  .sec-header__m-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 888;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
  }

  body.overhide {
    height: 100%;
    overflow: hidden;
  }
}

.sec-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.sec-header:after{
  position: absolute;
  content:"";
  left: 0;
  top: 0;
  width: 100%;
  height: 2.46rem;
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0.9;
  background: linear-gradient(180deg, #000000 0%, #00000000 100%);
}
.sec-header.sec-header--scrolled:after{
  display:none;
}
.sec-header__container {
  position: relative;
  z-index: 1;
  max-width: 16.08rem;
  margin: 0 auto;
  padding: 0 0.16rem 0 0.15rem;
  box-sizing: border-box;
}
.sec-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 0.80rem;
  margin-top: 0.20rem;
}
.sec-header__logo {
  display: block;
  flex-shrink: 0;
}
.sec-header__logo-img {
  display: block;
  width: 4.49rem;
  height: 0.80rem;
}
.sec-header__tools {
  display: flex;
  align-items: center;
}
.sec-header__links {
  display: flex;
  align-items: center;
}
.sec-header__link {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.16rem;
  line-height: 0.22rem;
  font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
  font-weight: 400;
  letter-spacing: 0.0000em;
  transition: opacity 0.3s ease;
}
.sec-header__link-icon {
  width: 0.27rem;
  height: 0.27rem;
  margin-right: 0.06rem;
}
.sec-header__link + .sec-header__link {
  margin-left: 0.30rem;
}
.sec-header__search {
  display: flex;
  align-items: center;
  width: 2.41rem;
  height: 0.38rem;
  margin-left: 0.30rem;
  background: #ffffff;
  border-radius: 0.02rem;
  box-sizing: border-box;
}
.sec-header__search-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 0.15rem;
  font-size: 0.14rem;
  line-height: 0.14rem;
  color: #666666;
  font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
  font-weight: 350;
  outline: none;
  box-sizing: border-box;
}
.sec-header__search-input::-ms-input-placeholder,
.sec-header__search-input::placeholder {
  color: #666666;
}
.sec-header__search-btn {
  flex-shrink: 0;
  width: 0.60rem;
  height: 100%;
  border: none;
  background: #fd6201;
  border-radius: 0 0.02rem 0.02rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.3s ease;
}
.sec-header__search-icon {
  width: 0.22rem;
  height: 0.22rem;
}
.sec-header__divider {
  width: 100%;
  height: 0.01rem;
  background: #ffffff;
  opacity: 0.30;
  margin: 0.23rem 0;
}
.sec-header__nav {
  margin: 0.24rem 0;
}
.sec-header__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}
.sec-header__item {
  position: relative;
}
.sec-header__item + .sec-header__item {
  margin-left: 0.50rem;
}

.sec-header__navlink {
  display: block;
  font-size: 0.20rem;
  line-height: 0.26rem;
  font-family: 'Microsoft YaHei', sans-serif;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.0000em;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
}
.sec-header__item--active .sec-header__navlink {
  font-weight: 700;
}

.sec-header__submenu {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  min-width: 2.30rem;
  padding: 0.15rem 0.20rem 0.22rem 0.20rem;
  background: #ffffff;
  border-top: 0.04rem solid #fd6201;
  box-shadow: 0 0.10rem 0.10rem rgba(0, 0, 0, 0.20);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
  z-index: 9999;
}
.sec-header__submenu.is-show {
  opacity: 1;
  visibility: visible;
  
}
.sec-header__submenu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}
.sec-header__submenu > ul > li + li {
  border-top: 0.01rem solid #c6cee5;
}
.sec-header__submenu > ul > li a {
  display: block;
  text-align: center;
  font-size: 0.18rem;
  line-height: 0.60rem;
  white-space: nowrap;
  color: #333333;
  transition: color 0.3s ease;
}
.sec-header__hamburger {
  display: none;
}
.sec-header--scrolled {
  background-color: #013F8F;
  box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.10);
  height: auto;
  padding-bottom: 0.23rem;
}


.sec-header--scrolled .sec-header__bg {
  opacity: 0;
}
.sec-header--scrolled .sec-header__navlink,
.sec-header--scrolled .sec-header__link {
  color: #ffffff;
}
.sec-header--scrolled .sec-header__divider {
  background: #e0e0e0;
}
.sec-header--scrolled .sec-header__item + .sec-header__item::before {
  background: rgba(0, 0, 0, 0.15);
}
.sec-header__mobile {
  display: none;
}
.sec-footer {
  position: relative;
  width: 100%;
  height: 2.60rem;
  overflow: hidden;
  background-image: url('../images/sec_div.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sec-footer__container {
  position: relative;
  width: 100%;
  height: 100%;
}
.sec-footer__logo {
  display: block;
  width: 4.49rem;
  height: 0.80rem;
  margin: 0 auto;
  padding-top: 0.24rem;
  box-sizing: content-box;
  transition: opacity 0.3s ease;
}
.sec-footer__logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-footer__copyright {
  text-align: center;
 
  padding-top: 0.24rem;
  font-family: 'Microsoft YaHei', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  border-top: 1px solid hsl(0deg 0% 85% / 20%);
  margin-top: 0.24rem;
}
.sec-footer__copyright p{
   font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.28rem;
}
.sec-footer__copyright p span{
  padding:0 0.15rem;
}
@media (min-width: 1025px) {
.sec-header__link {
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
.sec-header__link:hover {
    opacity: 0.80;
    color: #fd6201;
    transform: translateY(-0.02rem);
  }
.sec-header__search-btn {
    transition: filter 0.3s ease, box-shadow 0.3s ease;
  }
.sec-header__search-btn:hover {
    opacity: 0.9;
    filter: brightness(1.10);
    box-shadow: 0 0.04rem 0.08rem rgba(253, 98, 1, 0.40);
  }
.sec-header__item:hover > .sec-header__navlink::after {
    width: 100%;
  }
.sec-header__item--active > .sec-header__navlink::after {
    width: 100%;
  }
.sec-header__submenu > ul > li a:hover {
    color: #fd6201;
  }
.sec-footer__logo:hover {
    opacity: 0.8;
  }
}
@media (max-width: 1024px) {
.sec-header, .sec-header:after {
    display: none;
  }
.sec-header__container {
    display: none;
  }
.sec-header__bg {
    display: none;
  }
.sec-header__hamburger {
    display: none;
  }
/* Show mobile navigation */
  .sec-header__mobile {
    display: block;
  }
/* Mobile header bar */
  .sec-header__m-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
  }
.sec-header__m-header {
    padding: 0 0.15rem 0 0.15rem;
    height: 0.70rem;
    background: #013F8F;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
.sec-header__m-logo {
    width: calc(100% - 0.80rem);
    padding: 0;
  }
.sec-header__m-logo img {
    height: auto;
    max-height: 0.50rem;
  }
.sec-header__m-btn-box {
    position: relative;
    width: 0.70rem;
    height: 0.70rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
    right: -0.15rem;
  }
.sec-header__m-btn-box::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #ffffff;
  }
.sec-header__m-btn {
    cursor: pointer;
    text-align: center;
    z-index: 99999;
    transition: all 0.5s ease;
    outline: none;
  }
.sec-header__m-point {
    display: inline-block;
    width: 0.40rem;
    height: 22px;
    position: relative;
    outline: none;
  }
.sec-header__m-navbtn {
    position: absolute;
    top: 12px;
    left: 0;
    display: inline-block;
    width: 18px;
    height: 2px;
    transition: all 0.3s ease-out;
    background: #013984;
  }
.sec-header__m-navbtn::after,
  .sec-header__m-navbtn::before {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 24px;
    height: 2px;
    content: "";
    transition: all 0.3s ease-out;
    background: #013984;
  }
.sec-header__m-navbtn::after {
    top: -8px;
  }
.sec-header__m-navbtn::before {
    top: 8px;
  }
.sec-header__m-point.on .sec-header__m-navbtn {
    background: transparent;
  }
.sec-header__m-point.on .sec-header__m-navbtn::after {
    transform: rotate(45deg);
    top: 0;
  }
.sec-header__m-point.on .sec-header__m-navbtn::before {
    transform: rotate(-45deg);
    top: 0;
  }
.sec-header__m-nav {
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    right: -105vw;
    top: 0;
    padding: 0.70rem 0.20rem 0.30rem;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.3s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #f7f7f7;
    opacity: 0;
    visibility: hidden;
  }
.sec-header__m-nav.act {
    pointer-events: auto;
    right: 0;
    opacity: 1;
    visibility: visible;
  }
.sec-header__m-close {
    position: absolute;
    top: 0.07rem;
    right: 0.15rem;
    left: 0.15rem;
    font-size: 30px;
    color: #333333;
    z-index: 10000;
    width: auto;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    cursor: pointer;
  }
.sec-header__m-search {
    font-size: 0.16rem;
    width: 100%;
    height: 0.60rem;
    display: block;
    margin: 0.10rem 0;
  }
.sec-header__m-search-form {
    height: 0.50rem;
    background: #ffffff;
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: block;
    border: 1px solid #013f8f;
  }
.sec-header__m-search-input {
    font-size: 0.16rem;
    color: #333333;
    height: 0.50rem;
    line-height: 0.50rem;
    padding: 0 0.15rem;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    float: left;
    border-right: 0;
    background: none;
    width: calc(100% - 0.50rem);
    box-sizing: border-box;
    border: none;
    outline: none;
  }
.sec-header__m-search-btn {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    width: 0.50rem;
    height: 0.50rem;
    line-height: 0.50rem;
    border: 0;
    background: #013984 url(../images/sec_div_23.png) no-repeat center;
  }
.sec-header__m-search-input::-ms-input-placeholder,
.sec-header__m-search-input::placeholder {
    color: #999999;
  }
.sec-header__m-list {
    width: 100%;
    padding: 0 0 0.10rem;
    overflow: auto;
    margin: 0;
    scrollbar-width: none;
    list-style: none;
  }
.sec-header__m-list > li {
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    margin: 0 auto;
    list-style: none;
  }
.sec-header__m-list > li .con {
    position: relative;
    display: flex;
    align-items: center;
  }
.sec-header__m-list > li .a {
    width: 100%;
    border-bottom: 1px solid #e2e2e2;
    line-height: 0.64rem;
    color: #333333;
    padding: 0;
    font-size: 16px;
    display: flex;
    position: relative;
    transition: all 0.5s ease;
  }
.sec-header__m-list > li i {
    opacity: 1;
    width: 0.06rem;
    height: 0.06rem;
    background-image: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #013F8F;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    right: 0;
    top: 50%;
    background-size: 15px 15px;
    cursor: pointer;
  }
.sec-header__m-list > li.on1 i {
    transform: rotate(-90deg);
  }
.sec-header__m-list > li .list {
    padding: 0.10rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    display: none;
  }
.sec-header__m-list > li .list a {
    display: block;
    font-size: 13px;
    color: #666666;
    line-height: 2.5;
  }
.sec-header__m-quick {
    width: 100%;
    margin: 0.2rem 0;
    flex-wrap: wrap;
    display: flex;
  }
.sec-header__m-quick .li {
    line-height: 0.32rem;
    text-align: center;
    color: #013984;
    font-size: 0.16REM;
    list-style: none;
    margin-right: 0.15rem;
    padding: 0 0.15rem;
    text-align: center;
  }
.sec-header__m-quick .li a {
    background: none;
    color: #013f8f;
    text-align: center;
  }
.sec-header__m-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 888;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
  }
.sec-footer {
    height: auto;
  }
.sec-footer__container {
    width: 100%;
    padding: 0 0.20rem 0.30rem;
    box-sizing: border-box;
  }
.sec-footer__logo {
    max-width: 80%;
    height: auto;
    padding-top: 0.24rem;
  }
.sec-footer__logo-img {
    width: 100%;
    height: auto;
  }
.sec-footer__copyright {
    font-size: 0.14rem;
    line-height: 0.24rem;
  }
/* 多列容器统一改单列堆叠 */
  .sec-header__top,
  .sec-notice__body {
    flex-direction: column !important;
    align-items: stretch !important;
  }
}