* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Microsoft YaHei;
}

@font-face {
  font-family: MiSans;
  src: url(../font/MiSans-Regular.ttf);
}

@font-face {
  font-family: MiSans-Bold;
  src: url(../font/MiSans-Bold.ttf);
}

@font-face {
  font-family: Poppins-bold;
  src: url(../font/Poppins-Bold.otf);
}

html {
  scroll-behavior: smooth;
}

a {
  display: flex;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
button,
select {
  border: 0;
  resize: none;
  outline: 0;
  background: transparent;
}

button {
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}

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

/*多行溢出*/
.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

/* hover-图片放大1.1 */
.scale-box {
  overflow: hidden;
}

.scale-box .scale-img {
  width: 100%;
  height: 100%;
  transition: all .3s linear;
  cursor: pointer;
  object-fit: cover;
}

.scale-box:hover .scale-img {
  transform: scale(1.1);
}


/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 .02rem .12rem 0 rgba(0, 0, 0, 0.1)
}

/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
  0% {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  to {
    background: transparent;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

.main {
  width: 90%;
  max-width: 16rem;
  margin: 0 auto;
}

.comMore {
  min-width: 1.6rem;
  width: fit-content;
  height: 0.5rem;
  background: #244FB7;
  display: flex;
  align-items: center;
  padding: .15rem .27rem .15rem .18rem;
  border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #FFFFFF;
  column-gap: .21rem;
  margin-top: .66rem;
  transition: all .3s;
}

.comMore:hover{
  background-color: #C90030;
}

.comMore .moreLine{
  width: .4rem;
  height: .01rem;
  background: #fff;
  position: relative;
}

.comMore .moreLine .moreImg{
  position: absolute;
  width: .08rem;
  height: .08rem;
  border: .01rem solid rgba(255, 255, 255, 1);
  position: absolute;
  top: 50%;  
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  background: #244FB7;
  transition: all .3s;
}

.comMore:hover .moreLine .moreImg{
  background-color: #C90030;
  left: 100%;
  border-radius: 50%;
}

.box_flex{
  display: flex;
  align-items: flex-start;
}
.box_flex_jcc{
  justify-content: center;
  align-items: center;
}
.box_flex_jcsb{
  align-items: center;
  justify-content: space-between;
  /*gap: .45rem;*/
  /*flex-wrap: wrap;*/
}
.box_flex_ai{
  align-items: center;
}
.box_flex_sb{
  justify-content: space-between;
}

.imgBoxB,
.imgBox{
  overflow: hidden;
}
.imgBox img{
  transition: all 0.5s;
  height: 100%;
  object-fit: cover;
  display: block;
}
.imgBoxB:hover .imgBox>img,
.imgBox:hover>img{
  transform: scale(1.08);
}



.innerBanner{
  width: 100%;
  height: 6rem;
  position: relative;
  overflow: hidden;
  display: flex;
}
.innerBanner img{
  width: 100%;
  height: 100%;
  display: block;
}
.innerBanner .inBannerTitle{
  width: 100%;
  position: absolute;
  top: 42%;
  transform: translate(0%,-50%);
}
.innerBanner .inBannerTitle .inBannerTxt1{
  width: 100%;
  font-family: Poppins, Poppins;
  font-weight: bolder;
  font-size: 1rem;
  color: transparent;
  line-height: 1rem;
  text-stroke: 0.01rem #FFFFFF;
  text-align: center;
  font-style: normal;
  text-transform: none;
  -webkit-text-stroke: 0.01rem #FFFFFF;
  position: absolute;
  text-align: center;
  opacity: 0.3;
  text-transform: uppercase;
}
.innerBanner .inBannerTitle .inBannerTxt2{
  width: 100%;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: bold;
  font-size: 0.45rem;
  color: #FFFFFF;
  line-height: 1.2rem;
  text-align: center;
  position: absolute;
  letter-spacing: 0.06rem;
}

.bread{
  width: 100%;
  height: 0.7rem;
  background: rgba(36, 80, 183, 0.8);
  border-radius: 0rem 0rem 0rem 0rem;
  position: absolute;
  bottom: 0;
}
.bread .bread_left a{
  display: block;
  width: 1.73rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
  line-height: 0.7rem;
  text-align: center;
  position: relative;
  transition: all 0.6s;
}
.bread .bread_right a{
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #FFFFFF;
  line-height: 0.7rem;
  opacity: 0.7;
  /* position: absolute; */
}
.bread .bread_right a:last-child{
  opacity: 1;
}
.bread .bread_right a::after{
  content: '-';
  width: auto;
  display: block;
  padding: 0 0.1rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #FFFFFF;
}
.bread .bread_right a:last-child::after{
  display: none;
}
.bread .bread_right a:last-child{
  padding-right: 0;
}
.bread .bread_left a.active,
.bread .bread_left a:hover{
  background: #D50000;
}
.bread .bread_right img{
  width: 0.13rem;
  height: 0.13rem;
  margin-right: 0.13rem;
}
.bread .bread_left a::before{
  content: '';
  width: 0.01rem;
  height: 0.18rem;
  background: url(../img/bread_Licon.png);
  background-size: 100% 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0.26rem;
}
.bread .bread_left a:last-child::after{
  content: '';
  width: 0.01rem;
  height: 0.18rem;
  background: url(../img/bread_Licon.png);
  background-size: 100% 100%;
  display: block;
  position: absolute;
  right: 0;
  top: 0.26rem;
}





/* 页码 */
.page {
	width: fit-content;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.page .list {
	display: flex;
	align-items: center;
	color: rgba(125, 125, 125, 1);
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #9A9A9A;
  line-height: 0.3rem;
}

.page .list .item {
	display: block;
	width: 0.3rem;
	height: 0.3rem;
	background: rgba(255,255,255);
  border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
  border: 0.01rem solid #E6E6E6;
	margin-left: 0.03rem;
	margin-right: 0.03rem;
	text-align: center;
	line-height: 0.3rem;
	cursor: pointer;
	overflow: hidden;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.16rem;
	color: #9A9A9A;
}

.page .list .item:hover {
	background: #244FB7;
	color: white;
	border: 0.01rem solid #244FB7;
}

.page .list .active {
	background: #244FB7;
	color: white;
	border: 0.01rem solid #244FB7;
}

.page .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.3rem;
	height: 0.3rem;
	background: rgba(255,255,255);
  border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
  border: 0.01rem solid #E6E6E6;
	margin-left: 0.03rem;
	margin-right: 0.03rem;
	cursor: pointer;
	overflow: hidden;
}

.page .btn img {
	height: 0.11rem;
	object-fit: contain;
}

.page .prev::after {
	content: '<';
}

.page .next::after {
	content: '>';
}

.page .prev::after,
.page .next::after {
	content: '';
	width: 0.08rem;
	height: 0.1rem;
	background: url(../img/r.png);
	background-repeat: no-repeat;
	background-size: 100% 100% !important ;
	position: absolute;
}
.page .prev::after{
	transform: rotate(180deg);
}

.page .btn:hover {
	background: #244FB7;
}

.page .btn:hover img {
	filter: brightness(0) invert(1);
}

.page .total {
	margin-right: 0.24rem;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.14rem;
	color: #333333;
}

.page .to_page {
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #9A9A9A;
  margin-left: 0.13rem;
}

.page .to_page input {
	width: 0.54rem;
	height: 0.3rem;
	background: rgba(255,255,255);
  border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
  border: 0.01rem solid #E6E6E6;
	margin: 0 0.05rem;
	padding: 0 0.1rem;
	outline: none;
	font-size: 0.14rem;
	color: #9A9A9A;
}


.txtYc{
  overflow-y: auto;
  position: relative;
}

.txtYc::-webkit-scrollbar {
  width: 0.06rem;
  background: #E5EBF8;
  border-radius: 1rem 1rem 1rem 1rem;
  position: absolute;
  left: 1rem;
}

.txtYc::-webkit-scrollbar-thumb {
  width: 0.06rem;
  background: #244FB7;
  border-radius: 1rem 1rem 1rem 1rem;
}
@media only screen and (max-width: 1024px) {
.bread_right{
  display: none;
}
.bread .bread_left a{
  font-size: 0.24rem;
  width: auto;
  padding: 0 .2rem;
 
}
.box_flex_jcsb{
  display: block;
  height: auto;
  overflow: hidden;
}
.comMore{
  font-size: 0.24rem;
}
.news_right{
  width: 100%;
}
.news_right .date{
  font-size: 0.24rem;
}
}