html {
  min-width: 1025px;
}
@media screen and (max-width: 1025px) {
    html {
        font-size: 65px !important;
    }
}

.page-header .top{
  background: #C70400;
  background-image: url(../images/2025/header-bg.png);
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: contain;
}
.page-header .top .container {
  padding-top: .4rem;
  padding-bottom: .36rem;
  box-sizing: border-box;
}
.logo img {
  max-height: 1rem;
}
.logo .site-title {
  font-size: .66rem;
  border-left: solid 1px #fff;
  padding-left: .36rem;
  margin-left: .36rem;
}
.to-main {
  font-size: 0.17rem;
  color: #f2f2f2;
  transition: all ease .3s;
}
.to-main:hover {
  color: #fff;
}
.page-header .search-box {
  margin-top: .22rem;
  display: flex;
}
.search-box {
  width: 3.2rem;
  background: #fff;
  overflow: hidden;
  font-size: 0;
}
.search-box .input{
  display: inline-block;
  vertical-align: top;
  width: calc(100% - .7rem);
  height: .5rem;
  padding: 0 .12rem 0 .28rem;
  font-size: 0.15rem;
  font-weight: 500;
  line-height: 0.5rem;
  color: #333;
  text-align: left;
  border: 0;
}
.search-box .input::placeholder {
  color: #999;
}
.search-box .submit-btn {
  display: inline-block;
  vertical-align: top;
  width: .7rem;
  border: 0;
  height: .5rem;
  background-image: url('../images/2025/search.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: .44rem .34rem;
  background-color: #F39700;
}
.nav {
  background-color: #E13733;
}
.nav a {
  font-size: .19rem;
  color: #fff;
  display: block;
  width: 5em;
  text-align: center;
  box-sizing: border-box;
  line-height: .30rem;
}

.top-line {
  height: .03rem;
  background-color: #ffd58f;
}
.top-banner {
  width: 100%;
  height: 3.96rem;
  background-image: url(../images/2025/banner.jpg);
  background-position: center center;
  background-size: cover;
}

.m-home {
  margin-top: .5rem;
}
.news-swiper {
  height: 3.94rem;
  width: 7rem;
}
.news-top{
  height: 3.94rem;
  width: calc(100% - 7rem);
}

.img-scale {
    position: relative;
    display: block;
    overflow: hidden;
}

.img-scale img {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: transform 0.5s ease-out 0s;
    -moz-transition: transform 0.5s ease-out 0s;
    -ms-transition: transform 0.5s ease-out 0s;
    -o-transition: transform 0.5s ease-out 0s;
    transition: transform 0.5s ease-out 0s;
}

.img-scale .img-frame {
    position: relative;
    overflow: hidden;
}

.img-scale .img {
    /*背景图替换img*/
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
    -webkit-transition: transform 0.5s ease-out 0s;
    -moz-transition: transform 0.5s ease-out 0s;
    -ms-transition: transform 0.5s ease-out 0s;
    -o-transition: transform 0.5s ease-out 0s;
    transition: transform 0.5s ease-out 0s;
}

.img-scale .img img {
    display: none;
    min-height: 100%;
}

.img-scale:hover img {
    min-height: 100%;
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -ms-transform: scale(1.07);
    -o-transform: scale(1.07);
    transform: scale(1.07);
}

.img-scale:hover .img {
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -ms-transform: scale(1.07);
    -o-transform: scale(1.07);
    transform: scale(1.07);
}
.news-swiper .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: .35rem;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: .16rem;
  line-height: .35rem;

  padding: 0 1.6rem 0 .16rem;
}
.news-swiper .text .title {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0.6s;
  -moz-transition: all 0.3s ease-out 0.6s;
  -ms-transition: all 0.3s ease-out 0.6s;
  -o-transition: all 0.3s ease-out 0.6s;
  transition: all 0.3s ease-out 0.6s;
}
.news-swiper .swiper-slide-active .title {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.news-swiper .pagination {
    position: absolute;
    bottom: .05rem;
    right: .25rem;
    left: auto;
    width: auto;
    z-index: 2;
}.news-swiper .pagination span {
    padding: 3px;
    margin: 0 3px;
    background: none;
    border: 1px solid transparent;
    width: auto;
    height: auto;
    opacity: 1;
}

.news-swiper .pagination span::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
}

.news-swiper .pagination span.swiper-pagination-bullet-active {
    border-color: #fff;
}

.news-first {
  background: #F2F2F2;
  padding-top: .2rem;
  padding-left: .36rem;
  padding-right: .36rem;
}
.news-top .news-first-link{
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #555;
  line-height: .3rem;
  font-size: .24rem;
  width: 100%;
  display: block;
  font-weight: 700;
  text-align: center;
  box-sizing: boder-box;
  transition: all ease .3s;
}
.news-top .news-first-link:hover {
  color: #E13733;
  
}
.news-top .news-first .news-abstract {
  margin-top: .1rem;
  font-size: .16rem;
}
.news-top .news-first-more {
  margin-right: .13rem;
  color: #C50718;
  cursor: pointer;
  text-decoration: none;
  transition: all ease .3s;
}
.news-top .news-first-more:hover {
  text-decoration: underline;
}
.news-top-list {
  background-color: #f7f7f7;
  padding-left: .36rem;
  padding-right: .36rem;
  padding-top: .2rem;
  position: relative;
  height: 2.92rem;
  
}
.news-top-item {
  border-bottom: dashed .01rem #535353;
  border-top: dashed .01rem transparent;
  height: .45rem;
  padding-left: .05rem;
  padding-right: .05rem;
  box-sizing: border-box;
}
.news-top-item:first-child {
  border-top: dashed .01rem #535353;
}
.news-top-link {
  width: 100%;
}
.news-top-item-info {
  width: calc(100% - 1.6rem);
}
.news-top-item-icon {
    width: 0;
    height: 0;
    border-left: .07rem solid #000;
    border-top: .07rem solid transparent;
    border-bottom: .07rem solid transparent;
}
.news-top-item-title {
  height: .43rem;
  line-height: .43rem;
  font-size: .16rem;
  color: #555555;
  padding-left: .12rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-top-item-date {
  height: .43rem;
  line-height: .43rem;
  font-size: .16rem;
  color: #555555;
  text-align: right;
  width: 1.3rem;
}
.news-top-item:hover .news-top-item-icon {
  border-left-color: #E13733;
  transition: all ease .5s;
}
.news-top-item:hover .news-top-item-title {
  color: #E13733;
  font-size: 1.2em;
  transition: all ease .5s;
}
.news-top-item:hover .news-top-item-date {
  color: #E13733;
  transition: all ease .5s;
}
.news-more {
  position: absolute;
  bottom: .17rem;
  right: .36rem;
}
.news-more-text {
  color: #555555;
  font-size: .17rem;
  line-height: .17rem;
}
.news-more-icon {
  width: .08rem;
  height: .08rem;
  border-radius: 50%;
  background-color: #555555;
  margin: 0 .02rem;
}
.news-more-icon1 {
  opacity: 0.7;
}
.news-more-icon2 {
  opacity: 0.4;
}
.news-more:hover .news-more-text {
  color: #E13733;
  transition: all ease .3s;
}
.news-more:hover .news-more-icon {
  background-color: #E13733;
}
.news-top-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: .05rem;
  background-color: #868686;
}
.news-top-bottom-line {
  width: 5.4rem;
  height: .05rem;
  background-color: #C70400;
}

.tzgg {
  width: 8.7rem;
}
.tzgg .section-header .section-icon {
  width: 3.24rem;
  height: 0.47rem;
}
.section-icon img {
  width: 100%;
  height: 100%;
}
.tzgg {
  width: 8.7rem;
}
.tzgg .section-more-text {
  color: #555555;
  font-size: .17rem;
  line-height: .17rem;
}
.tzgg .section-more-icon {
  width: .08rem;
  height: .08rem;
  border-radius: 50%;
  background-color: #555555;
  margin: 0 .02rem;
}
.tzgg .section-more-icon1 {
  opacity: 0.7;
}
.tzgg .section-more-icon2 {
  opacity: 0.4;
}
.tzgg .section-more:hover .section-more-text {
  color: #E13733;
  transition: all ease .3s;
}
.tzgg .section-more:hover .section-more-icon {
  background-color: #E13733;
}
.tzgg .section-bottom-line {
  left: 0;
  bottom: 0;
  right: 0;
  border-bottom: dashed 1px #535353;
}
.tzgg .section-content {
  padding-top: .3rem;
}
.tzgg .section-content-item {
  box-sizing: border-box;
  height: .45rem;
}
.tzgg .section-item-label {
  background: #C70400;
  box-shadow: inset 0 0 0 .01rem #C70400;
  color: #fff;
  text-align: center;
  line-height: .25rem;
  margin: .05rem;
  font-size: .14rem;
  border-radius: .13rem;
  width: 1.15rem;
  flex-shrink: 0;
  transition: all ease .3s;
}
.tzgg .section-item-info {
  width: calc(100% - 1.25rem);
}
.tzgg .section-item-title {

  font-size: .16rem;
  color: #555555;
  padding: 0 .2rem;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  transition: all ease .3s;
}
.tzgg .section-item-title::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border: solid .02rem #555555;
  border-radius: 50%;
  margin-top: .11rem;
  margin-left: -.1rem;
}
.tzgg .section-item-date {
  width: 1.1rem;
  font-size: .16rem;
  color: #555555;
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: right;
  transition: all ease .3s;
}

.tzgg .section-content-item:hover .section-item-title {
  color: #C70400;
  font-size: .18rem;
}
.tzgg .section-content-item:hover .section-item-date {
  color: #C70400;
}
.tzgg .section-content-item:hover .section-item-title::before {
  border-color: #C70400;
}
.platform-nav {
  margin-top: .2rem;
}
.platform-nav-item {
  background-image: url(../images/2025/nav-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 4.69rem;
  height: 0.55rem;
  margin-top: .27rem;
  color: #c50718;
  font-size: .24rem;
  line-height: .55rem;
  padding-left: .8rem;
  cursor: pointer;
  transition: all ease .3s;
  box-sizing: border-box;
}
.platform-nav-item:hover{
  background-image: url(../images/2025/nav-bg-active.png);
  transform: translateX(5px);
  color: #fff;

}

.system-nav {
  background-image: url(../images/2025/system-nav.png);
  background-repeat: repeat-x;
  background-size: 9.6rem 1.51rem;
  background-position: right 0 top 0;
  height: 1.56rem;
  box-sizing: border-box;
  padding: .3rem 0;
}
.system-nav-item {
  border-right: solid 1px #fff;
  width: 16.666666666%;
}
.system-nav-item:last-child {
  border-right: none;
}
.system-nav-icon {

  width: .7rem;
  height: .7rem;
  margin: 0 auto;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.system-nav-icon.icon1 {
  background-image: url(../images/2025/jwxt.png);
}
.system-nav-icon.icon2 {
  background-image: url(../images/2025/lxdh.png);
}
.system-nav-icon.icon3 {
  background-image: url(../images/2025/xl.png);
}
.system-nav-icon.icon4 {
  background-image: url(../images/2025/xzzx.png);
}
.system-nav-icon.icon5 {
  background-image: url(../images/2025/oabg.png);
}
.system-nav-icon.icon6 {
  background-image: url(../images/2025/ldxx.png);
}
.system-nav-text {
  color: #fff;
  font-size: .21rem;
  text-align: center;
  line-height: .3rem;
  border-bottom: solid 1px transparent;
  transition: all ease .3s;
}
.system-nav-item:hover .system-nav-text {
  letter-spacing: 2px;
}
.system-nav-item:hover .system-nav-icon {
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
  -ms-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.xyfc {
  width: 5.65rem;
  flex-shrink: 0;
}

.xyfc .section-header .section-icon {
  width: 3.24rem;
  height: 0.47rem;
}
.xyfc .section-header .section-bottom-line {
  left: 0;
  bottom: 0;
  right: 0;
  border-bottom: dashed 1px #535353;
}
.xyfc .section-header .section-bottom-line::after{
  position: absolute;
  content: "";
  width: .08rem;
  height: .08rem;
  background-color: #000;
  border-radius: 50%;
  right: 0;
  bottom: -0.04rem;
}

.xyfc .section-item-label {
  font-size: .16rem;
  line-height: .45rem;
  color: #555;
  width: 4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: .6em;
  transition: all ease .3s;
}
.xyfc .section-content-item:hover .section-item-label {
  color: #c50718;
  font-size: .18rem;
  
}

.xyfc .section-content-item:hover .section-item-date {
  color: #c50718;
}
.xyfc .section-content-item:hover .section-item-label::before {
  border-color: #c50718;
  
}

.xyfc .section-item-label::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border: solid .02rem #555555;
  border-radius: 50%;
  margin-top: .22rem;
  margin-left: -.1rem;
}
.xyfc .section-item-date {
  flex-shrink: 0;
  font-size: .16rem;
  line-height: .45rem;
  color: #555;
  width: 1.1rem;
  text-align: right;
  transition: all ease .3s;
}

.xyfc .section-more-text {
  color: #555555;
  font-size: .17rem;
  line-height: .17rem;
}
.xyfc .section-more-icon {
  width: .08rem;
  height: .08rem;
  border-radius: 50%;
  background-color: #555555;
  margin: 0 .02rem;
}
.xyfc .section-more-icon1 {
  opacity: 0.7;
}
.xyfc .section-more-icon2 {
  opacity: 0.4;
}
.xyfc .section-more {
  margin-top: .05rem;
}
.xyfc .section-more:hover .section-more-text {
  color: #E13733;
  transition: all ease .3s;
}

.xyfc .section-more:hover .section-more-icon {
  background-color: #E13733;
}
.xyfc .section-content {
  padding-top: .3rem;
}
.service-nav {
  position: relative;
  width: 3.55rem;
  margin: .5rem 0 0 .5rem;

}
.service-nav-content {
  background-color: #f2f2f2;
  height: 4.6rem;
  padding: .2rem .5rem .2rem .3rem;
}
.service-nav-item {
  display: block;
  font-size: .17rem;
  color: #656565;
  position: relative;
  cursor: pointer;
  height: .4rem;
  line-height: .4rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  padding-left: .2rem;
}
.service-nav-item:before {
  position: absolute;
  content: "";
  width: .05rem;
  height: .05rem;
  background-color: #dbdbdb;
  border-radius: 50%;
  left: 0rem;
  top: .17rem;
}
.service-nav-item:hover {
  color: #c50718;
  transition: all ease .3s;
}
.service-nav-header-wrapper {
  position: relative;
  background-image: url(../images/2025/service-nav.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 3.55rem;
  height: .55rem;
}
.service-nav-header {
  position: relative;
  background-image: url(../images/2025/service-nav-header.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 2.56rem;
  height: .55rem;
  margin: 0 auto;
}
.service-nav-header::before {
  content: "";
  position: absolute;
  border: solid .02rem #c50718;
  width: .3rem;
  height: 0;
  top: .26rem;
  left: .26rem;
}
.service-nav-header::after {
  content: "";
  position: absolute;
  border: solid .02rem #c50718;
  width: .3rem;
  height: 0;
  top: .26rem;
  right: .26rem;
}
.service-nav-header-title {
  color: #c50718;
  font-size: .3rem;
  text-align: center;
  line-height: .55rem;
}

.ztzl .section-header-bg {
  margin: 0 auto;
  background-image: url(../images/2025/ztzl.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 5.42rem;
  height: .55rem;
}
.ztzl .section-header-title {
  font-size: .44rem;
  color: #C50718;
  width: 4em;
  margin: 0 auto;
  height: .44rem;
  line-height: .44rem;;
  margin-top: -.22rem;
}
.ztzl .section-header::before {
  content: "";
  position: absolute;
  height: .02rem;
  background-color: #9f9f9f;
  width: calc(50% - .9rem);
  left: 0;
  top: .6rem;
}
.ztzl .section-header::after {
  content: "";
  position: absolute;
  height: .02rem;
  background-color: #9f9f9f;
  width: calc(50% - .9rem);
  right: 0;
  top: .6rem;
}
.ztzl .section-list {
  margin-top: .36rem;
}
.ztzl .section-item {
  height: 1.45rem;
  width: 3.35rem;
  background-image: url(../images/2025/zt.png);
  background-size: 3.89rem 1.43rem;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  line-height: 1.45rem;
  text-align: center;
  color: #fff;
  font-size: .32rem;
}
.ai-logo {
  position: fixed;
  bottom: 2.9rem;
  width: 1.04rem;
  height: 1.87rem;
  left: .5rem;
}
.ai-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-footer {
  background-image: url(../images/2025/footer.png);
  background-size: 19.15rem 2.36rem;
  background-position: 0 0;
  background-repeat: contain;
  padding-top: .2rem;
  padding-bottom: .2rem;
  position: relative;
  
}
.yqlj {
  color: #fff;
  width: 6.8rem;
}
.yqlj .section-header{
  font-size: .23rem;
  line-height: .24rem;
  margin-bottom: .1rem;
}
.yqlj .section-logo {
  width: .24rem;
  height: .24rem;
  margin-right: .1rem;
}
.yqlj .section-link {
  font-size: .16rem;
  padding: 0 1em;
  height: 2em;
  line-height: 2em;
  color: #fff;
  position: relative;
}
.yqlj .section-link::before {
  content: "";
  position: absolute;
  width: 0;
  top: 0;
  top: 0.1rem;
  left: 0.06rem;
  border-left: .07rem solid #fff;
  border-top: .07rem solid transparent;
  border-bottom: .07rem solid transparent;
}
.yqlj .section-logo img {
  width: 100%;
  height: 100%;
}
.wxgzh {
  border-left: solid 1px #fff;
  border-right: solid 1px #fff;
  color: #fff;
  box-sizing: border-box;
  padding: 0 .50rem .3rem;
}
.wxgzh .section-header {
  font-size: .23rem;
  line-height: .3rem;
  margin-bottom: .2rem;
  text-align: center;
  box-sizing: border-box;
}
.wxgzh .section-content {
  margin-top: .1rem;
  display: flex;
  justify-content: center;
}
.wxgzh .qrcode {
  width: 1.04rem;
  height: 1.04rem;
  background-color: #fff;
}
.wxgzh .qrcode img {
  width: 100%;
  height: 100%;
}
.footer-info {
  color: #fff;
  font-size: .14rem;
  box-sizing: border-box;
  padding-left: .66rem;
  padding-top: .16rem;
}

.list-page .side {
  width: 3.2rem;
  overflow: hidden;
}
.list-page .side-line {
  height: 4px;
  background-color: #cb1511;
  width: 0.76rem;
  border-radius: 2px;
}
.list-page .side-line::after {
  content: "";
  position: absolute;
  width: 0.04rem;
  height: 0.04rem;
  background-color: #cb1511;
  border-radius: 50%;
  right: -0.1rem;
  top: 0;
}
.list-page .side-title-hollow {
  background-color: transparent; 
  color: transparent; 
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  -webkit-text-stroke: 1px #eeeeee;
  text-stroke: 1px #eeeeee; 
  font-size: .7rem;
  font-weight: bold;
  mask: url(#mask); 
  mask-type: luminance; 
  white-space: nowrap;
  text-indent: 0.2em;
}
.list-page .side-title {
  font-size: .4rem;
  color: #000;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: .65rem;
 
}
.list-page .main {
  border-left: solid 1px #000;
  padding-left: .22rem;
  box-sizing: border-box;
  width: calc(100% - 3.2rem);
}
.list-page .main::before {
  content: "";
  position: absolute;
  width: 0.04rem;
  height: 0.04rem;
  background: #000;
  border-radius: 50%;
  border: solid 0.02rem #d7d7d7;
  left: -0.05rem;
}
.list-page .main-title-wrapper {
  width: 100%;
  height: .5rem;
  border-bottom: solid 1px #000;
}
.list-page .main-title-wrapper::after {
  content: "";
  position: absolute;
  width: 0.04rem;
  height: 0.04rem;
  background: #000;
  border-radius: 50%;
  border: solid 0.02rem #d7d7d7;
  bottom: -0.05rem;
  right: 0;
}
.list-page .main-title {
  font-size: .3rem;
  line-height: .5rem;
  color: #000;
  font-weight: bold;
  left: 0;
  right: 4em;
  box-sizing: border-box;
  padding-left: .1rem;
  top: 0;
  box-sizing: border-box;
  position: absolute;
  border-bottom: solid 1px #c70400;
}
.list-page .main-title::before {
  content: "";
  position: absolute;
  height: .16rem;
  width: 2rem;
  background-color: #C70400;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.list-page .breadcrumb {
  margin-top: .38rem;
  font-size: .19rem;
  line-height: .22rem;
}
.breadcrumb .breadcrumb-icon {
  width: .22rem;
  height: .22rem;
  margin: 0 .08rem;
}

.breadcrumb .breadcrumb-icon img {
  width: 100%;
  height: 100%;
}
.breadcrumb .breadcrumb-symbol {
  margin: 0 .04rem;
}
.breadcrumb .breadcrumb-text {
color: #000;
}

.list-page .item-icon {
    width: .14rem;
    height: .14rem;
    border-radius: 50%;
    background: #ddd;
    margin-right: .16rem;
}
.list-page .item-text {
  font-size: .2rem;
  line-height: .5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-page .item-date {
  font-size: .2rem;
  padding-left: 2em;
}
.list-page .item:hover .item-icon {
 
  transition: all ease .5s;
   background: #C50718;
}
.list-page .item:hover .item-text {
  color: #C50718;
  font-size: .22rem;
  transition: all ease .5s;
}
.list-page .item:hover .item-date {
  color: #C50718;
  transition: all ease .5s;
}
.list-page {
  font-size: .14rem;
}
.list-page .paginate-text {
  padding: 0 .07rem;
}
.list-page .btn {
  border: solid 1px #000;
  padding: 0 .07rem;
  margin: 0 .07rem;
  cursor: pointer;
}
.list-page .btn.active {
  background: #258CFF;
  color: #fff;
  border-color: #258CFF;
}
.list-page .btn.disable {
  color: #7c7c7c;
  cursor: default;
  border-color: #7c7c7c;
}
.list-page .article-header {
  margin: .2rem 0;
}
.list-page .article-title {
  font-size: .24rem;
  color: #333;
  line-height: .36rem;
  text-align: center;
}
.list-page .article-info {
  display: block;
  text-align: center;
  color: #666;
  font-size: .12rem;
  line-height: .24rem;
  font-style: normal;
  margin-top: .06rem;
}
.list-page .article-content {
  padding: .1rem;
}

.list-page .side-sub {
  position: relative;
  margin-top: 0.2rem;
}
.list-page .side-sub a{
  cursor: pointer;
  font-size: 0.2rem;
  line-height: 0.6rem;
  padding-left: 0.3rem;
  display: block;
  color: #000;
  position: relative;
}
.list-page .side-sub a::before {
  content: "";
  position: absolute;
  left: 0.02rem;
  top: 0.28rem;
  width: 0.04rem;
  height: 0.04rem;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
}
.list-page .side-sub a:visited{
  color: #000;
}

.list-page .side-sub a:hover {
  color: #c50718;
}
.list-page .side-sub a:hover::before {
  background: #c50718;
}
.list-page .side-sub a.active{
  color: #c50718;
}


.site-nav a.nav-link {
   line-height: 3.5em;
}
.site-nav .m{
  position: relative;
}
.site-nav { position: relative; z-index: 2; background: #E13733;}
.site-nav li { position: relative; text-align: center; }
.site-nav li a { position: relative; display: inline-block; font-size: 0.18rem; font-weight: 500; line-height: 0.3rem; color: #fff; text-align: center; }
.site-nav li > a::after { position: absolute; top: auto; right: auto; bottom: 0; left: 50%; z-index: 1; width: 0%; height: 2px; background: #DA4E40; content: ""; -webkit-transition: all 0.3s ease-out 0s; -moz-transition: all 0.3s ease-out 0s; -ms-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; }
.site-nav li:hover > a { color: #6B1210; }
.site-nav li:hover > a::after { left: 0; width: 100%; }
.site-nav li:hover .lv2 { visibility: visible; top: calc(100% + 8px); opacity: 1; }
.site-nav .lv2 { position: absolute; top: 150%; right: auto; bottom: auto; left: calc(50% - .8rem); z-index: 1; width: 1.6rem; padding: 5px 0; background: #E13733; box-shadow: 0 4px 16px 0 rgba(37, 70, 114, 0.28); -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s; -moz-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s; -ms-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s; -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s; transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s; opacity: 0; border-radius: 4px; visibility: hidden; }
.site-nav .lv2 dd { padding: 0 .15rem; transition: background .2s; -ms-transition: background .2s; }
.site-nav .lv2 dd:last-child a { border: none !important; }
.site-nav .lv2 dd:hover { padding: 0; background: #6B1210;}
.site-nav .lv2 dd:hover a { padding-left: .15rem; padding-right: .15rem; color: #fff; border-bottom: 1px solid transparent; }
.site-nav .lv2 a { width: 100%; padding: .12rem 0; font-size: .15rem; font-weight: 500; line-height: .2rem; color: #fff;  -webkit-transition: color .2s ease-out 0s; -moz-transition: color .2s ease-out 0s; -ms-transition: color .2s ease-out 0s; -o-transition: color .2s ease-out 0s; transition: color .2s ease-out 0s; border-bottom: 1px dashed #ddd; }
.site-nav .lv2 .tri { position: absolute; top: auto; right: auto; bottom: 100%; left: 0%; z-index: 1; width: 100%; height: 10px; overflow: hidden; border: none; }
.site-nav .lv2 .tri::after { display: block; content: ""; box-sizing: border-box; width: 14px; height: 14px; margin: 0 auto; background: #E13733; -webkit-transform: translate(0px, 6px) rotate(45deg); -moz-transform: translate(0px, 6px) rotate(45deg); -ms-transform: translate(0px, 6px) rotate(45deg); -o-transform: translate(0px, 6px) rotate(45deg); transform: translate(0px, 6px) rotate(45deg); box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3); }


.search-page .input {
border: solid 1px #000;
}

.content,.jj,.list,.pic-list{width:100%; margin:20px 0; min-height:500px;}
.content-title{width:100%; margin:20px 0; text-align:center;}
.content-title h3{width:100%; float:left; display:block; font-size:24px; color:#333; line-height:36px; margin:0;}
.content-title i{margin-top:6px; width:100%; font-style:normal; float:left; display:block; font-size:12px; line-height:24px;color:#666;}
.content-con p,.jj p{display:block; width:100%; line-height:36px; color:#333; font-size:15px; text-indent:2em; margin-bottom:15px;}
.content-sxt{margin-top:30px; border-top:1px solid #e3e3e3; padding-top:15px; line-height:30px; font-size:13px; width:100%;}
.content-sxt a{display:block; width:100%; color:#333;font-size:14px;}

.yqlj-select {
  padding: 0.2rem 0.4rem 0 0.04rem;
  box-sizing: border-box;
}
.yqlj-more {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.yqlj-more p {
  position: relative;
  padding: 0 .3rem 0 .18rem;
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.4rem;
  color: #fff;
  text-align: left;
}
.yqlj-more p::after {
  position: absolute;
  top: 0.17rem;
  right: 0.17rem;
  bottom: auto;
  left: auto;
  z-index: 1;
  content: "";
  width: 14px;
  height: 8px;
  background-image: url("../images/2025/arrow-down.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: transparent;
  background-size: auto;
}
.yqlj-more ul {
  display: none;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 100%;
  left: 0;
  z-index: 1;
  width: 100%;
  max-height: 1.85rem;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 -0.06rem 0.08rem 0 rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}
.yqlj-more ul a {
  display: block;
  padding: .08rem .15rem;
  font-size: 0.15rem;
  font-weight: 500;
  line-height: 0.2rem;
  color: #393939;
  text-align: left;
  border-bottom: 1px solid #e3e3e3;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.yqlj-more ul a:hover {
  color: #c50718;
  font-weight: 700;
}

.course-bg-even {
  background: #f3f3f3;;
}
.course-bg-odd {
  background: #fff;
}

.course-list .section-header {
  height: .55rem;
  line-height: .55rem;
  font-size: .2rem;
  color: #3c4b57;
  padding-top: .10rem;
}
.course-list .section-header i {
  width: .03rem;
  height: .2rem;
  background: #42a85b;
  margin-top: .20rem;
  margin-right: .10rem;
}

.course-list .section-more {
  width: .50rem;
  height: .2rem;
  border-radius: .50rem;
  background: #8498a8;
  font-size: .12rem;
  line-height: .20rem;
  text-align: center;
  color: #FFF;
  margin-top: .20rem;
}
.course-list .section-more:hover {
  background: #506272;
}
.course-list .section-content {
  position: relative;
  width: 105%;
  padding-bottom: .10rem;
}

.course-list  .course-item {
  padding: .05rem 0;
  width: 3rem;
  float: left;
  margin-right: .67rem;
  position: relative;
  height: 2.2rem;
}
.course-list .course-item .course-cover {
  height: 1.49rem;
  margin-bottom: .08rem;
  position: relative;
  overflow: hidden;
}

.course-list .course-item .course-cover a {
  width: 100%;
  height: 1.49rem;
}

.course-list .course-item .course-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-list .course-item:hover img {
  -moz-transform: scale(1.2,1.2);
  -webkit-transform: scale(1.2,1.2);
  -o-transform: scale(1.2,1.2);
  transform: scale(1.2,1.2);
  transition: all 1s ease 0s;
}
.course-list .course-item .course-title {
  height: .24rem;
  line-height: .24rem;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: .14rem;
}
.course-list .course-item:hover .course-title {
  color: #ec1a1a;
}
.course-list .course-item .course-teacher {
  height: .24rem;
  line-height: .24rem;
  color: #999;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: .12rem;
}
.page-course-list .search-wrapper {
  padding-top: .2rem;
  padding-bottom: .1rem;
}
.course-list .course-item a {
          color: #000;
        }
        .course-list .course-item a:hover {
          color: #ec1a1a;
        }

.kcjs-list {
          width: 105%;
        }
       