* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*font-family: Cooper Hewitt, Cooper Hewitt!important;*/
}

@font-face {
  font-family: Cooper Hewitt;
  src: url(../font/CooperHewitt-Book.otf);
}
@font-face {
  font-family: Arial;
  src: url(../font/Arial.ttf);
}

@font-face {
  font-family: "D-DIN-PRO";
  src: url("../../assets1/font/D-DIN-PRO-700-Bold.otf");
  font-weight: bold;
}

@font-face {
  font-family: "D-DIN-PRO";
  src: url("../../assets1/font/D-DIN-PRO-600-SemiBold.otf");
  font-weight: 600;
}

@font-face {
  font-family: "D-DIN-PRO";
  src: url("../../assets1/font/D-DIN-PRO-400-Regular.otf");
  font-weight: 400;
}

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: 100%;
	object-fit: cover;
	cursor: pointer;
	display: block;
}

/*多行溢出*/
.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;
}
.more{
  width: 1.7rem;
  height: 0.47rem;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #FFFFFF;
  font-family: D-DIN-PRO, D-DIN-PRO;
font-weight: bold;
font-size: 0.18rem;
color: #FFFFFF;
  align-items: center;
  /* justify-content: center; */
  padding-left: 0.25rem;
  transition: all 1s;
}
.more .rIcon{
  width: 0.17rem;
  height: 0.13rem;
  transition: all 1s;
}
.more1{
  background: unset;
  transition: all 1s;
}
.more .rIcon{
  margin-left: 0.15rem;
  transition: all 1s;
}

.more1:hover{
  padding-left: 0.26rem;
  border: unset;
  background: linear-gradient( 90deg, #0059AD 0%, #5BB035 100%);
  transition: all 1s;
}
.more:hover .rIcon{
  margin-left: 0.2rem;
  transition: all 1s;
}
.more2{
  width: 1.99rem;
  padding-left: 0.33rem;
  background: linear-gradient( 90deg, #0059AD 0%, #5BB035 100%);
}

.box_flex{
  display: flex;
}
.box_flex_jcc{
  justify-content: center;
  align-items: center;
}
.box_flex_jcsb{
  align-items: center;
  justify-content: space-between;
}
.box_flex_ai{
  align-items: center;
}
.box_flex_sb{
  justify-content: space-between;
}

.imgBoxB,
.imgBox{
  overflow: hidden;
}
.imgBox img{
  transition: all 0.5s;
}
.imgBoxB:hover .imgBox>img,
.imgBox:hover>img{
  transform: scale(1.08);
}



.innerBanner{
  width: 100%;
  height: 6.5rem;
  position: relative;
  overflow: hidden;
}

.innerBanner .innerBanImg{
  width: 100%;
  height: 100%;
}
.bannerText{
  position: absolute;
  top: 2.87rem;
  left: 1.6rem;
}
.innerBanner .innerTxt{
  
  font-family: D-DIN-PRO, D-DIN-PRO;
    font-weight: bold;
    font-size: 0.6rem;
    color: #FFFFFF;
}

.bread{
  width: 100%;
  height: 0.9rem;
  background: rgba(3, 92, 180, 0.75);
  border-radius: 0rem 0rem 0rem 0rem;
  position: absolute;
  bottom: 0;
}
.bread .tab_wrap .item{
  width: auto;
  padding: 0 0.25rem;
  height: 0.4rem;
  background: #FFFFFF;
  border-radius: 0.23rem 0.23rem 0.23rem 0.23rem;
}
.bread .tab_wrap .item a{
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
  line-height: 0.4rem;
}
.bread .tab_wrap .item a{
  background: unset;
}
.bread .tab_wrap .item.active,
.bread .tab_wrap .item:hover{
  background: #035CB4;
  border: 0.01rem solid #FFFFFF;
  background: unset;
}
.bread .tab_wrap .item:hover a{
  font-weight: bold;
  font-size: 0.16rem;
  color: #FFFFFF;
}
.bread .bread_right a{
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #FFFFFF;
  line-height: 0.9rem;
}
.bread .bread_right a::after{
  content: '-';
  width: auto;
  display: block;
  padding: 0 0.05rem;
  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_right img{
  width: 0.13rem;
  height: 0.13rem;
  margin-right: 0.05rem;
}
.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;
}



.breadBox{
   display: flex;
   gap: 0.16rem;
   align-items: center;
   margin-top: 0.19rem;
}
.breadBox>img{
    width:0.21rem;
}

.breadBox>div,
.breadBox a{
    font-family: D-DIN-PRO, D-DIN-PRO;
    font-weight: 400;
    font-size: 0.18rem;
    color: #FFFFFF;
}

.breadBox a{
    display: inline-block;
}



/* 页码 */
.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.4rem;
  height: 0.4rem;
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
  border: 0.01rem solid #999999;
  margin:  0 0.075rem;
	line-height: 0.4rem;
	cursor: pointer;
	overflow: hidden;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.18rem;
  color: #999999;
  text-align: center;
}

.page .list .item:hover {
  background: #0059AD;
	color: white;
  border: unset;
}

.page .list .active {
	background: rgba(3, 92, 180, 1);
	color: white;
	border: 0.01rem solid rgba(3, 92, 180, 1);
}

.page .btn {
	display: flex;
	align-items: center;
	justify-content: center;
  margin:  0 0.075rem;
	cursor: pointer;
	overflow: hidden;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
  border: 0.01rem solid #999999;
}

.page .btn img {
	height: 0.11rem;
	object-fit: contain;
  filter: grayscale(0) brightness(0);
}
/* 
.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: rgba(3, 92, 180, 1);
}

.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: rgba(3, 92, 180, 1);
  border-radius: 1rem 1rem 1rem 1rem;
}



.tab_wrap{
  margin-top: 0.44rem;
}
.tab_wrap .item{
  width: 1.3rem;
  height: 0.4rem;
  box-shadow: 0rem 0rem 0.11rem 0.01rem rgba(0,0,0,0.11);
  border-radius: 0.23rem 0.23rem 0.23rem 0.23rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  line-height: 0.4rem;
  margin-right: 0.2rem;
  position: relative;
  transition: all 0.3s;
}
.tab_wrap .item::after{
  content: '';
  width: 0.4rem;
  height: 0.26rem;
  background: url(../img/tab_bg.png);
  background-size: 100% 100%;
  display: block;
  position: absolute;
  right: 0.14rem;
  top: 0.08rem;
}
.tab_wrap .item a{
  color: #333333;
  text-align: center;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.tab_wrap .item:hover,
.tab_wrap .item.active{
  background: #035CB4;
  box-shadow: 0rem 0rem 0.11rem 0.01rem rgba(0,0,0,0.11);
  border-radius: 0.23rem 0.23rem 0.23rem 0.23rem;
}
.tab_wrap .item:hover a,
.tab_wrap .item.active a{
  color: #FFFFFF;
  text-align: center;
}



.titleBox {
  justify-content: space-between;
  align-items: center;
}
.titleBox .title{
    font-family: D-DIN-PRO, D-DIN-PRO;
    font-weight: bold;
    font-size: 0.72rem;
    color: #0059AD;
}
.titleBox .more{
  padding-left: 0.22rem;
}
.titleBox .more img{
  margin-left: 0.17rem;
}



.flex {
  display: flex;
}

/* 头部 */

.header-wrap {
  width: 100%;
  height: 1.29rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: linear-gradient( 180deg, rgba(18, 34, 48, 0.6) 0%, rgba(18,34,48,0) 100%);
}
.header-c {
  width: 16.97rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo {
  width: 3.78rem;
}
.logo > img {
  width: 100%;
  display: block;
}

.logo > img:last-child {
  display: none;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-nav {
  height: 100%;
  display: flex;
}

.header-nav .item {
  height: 100%;
  font-family: D-DIN-PRO, D-DIN-PRO;
  font-weight: bold;
  font-size: 0.2rem;
  padding-left: 0.32rem;
}

.header-nav .item:first-child{
  padding-left: 0;
}

.header-nav .item.active > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.12rem;
  height: 0.03rem;
  width: 100%;
  background: linear-gradient(90deg, #0059ad 0%, #5bb035 100%);
  border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
}

.header-nav .item.active > a {
  color: rgba(0, 89, 173, 1) !important;
}

.header-nav .item > a {
  color: #fafafa;
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
}

.search {
  margin-left: 0.3rem;
  width: 0.2rem;
  height: 0.2rem;
}
.search > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.lang {
  display: flex;
  margin-left: 0.35rem;
  align-items: center;
  gap: 0.17rem;
  position: relative;
  cursor: pointer;
}

.lang img {
  width: 0.2rem;
  height: 0.2rem;
  filter: brightness(0) invert(1);
}

.lang span {
  font-family: D-DIN-PRO, D-DIN-PRO;
  font-weight: bold;
  font-size: 0.18rem;
  color: #fff;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0;
  background: #fff;
  border-radius: 0.04rem;
  box-shadow: 0 0.02rem 0.12rem 0 rgba(0, 0, 0, 0.1);
  min-width: 1.2rem;
  z-index: 1000;
  display: none;
  padding-top: 0.1rem;
}

.lang:hover .lang-dropdown {
  display: block;
}

.lang-item {
  display: block;
  padding: 0.12rem 0.16rem;
  font-family: D-DIN-PRO, D-DIN-PRO;
  font-weight: bold;
  font-size: 0.16rem;
  color: #333;
  transition: all 0.3s;
}

.lang-item:hover {
  background: #f5f7fb;
  color: #0059ad;
}

.lang-item.active {
  color: #0059ad;
  background: #f5f7fb;
}

.header-wrap.active .lang-dropdown {
  background: #fff;
}

.header-wrap.active .lang-item {
  color: #333;
}

.header-wrap.active .lang-item:hover,
.header-wrap.active .lang-item.active {
  color: #0059ad;
  background: #f5f7fb;
}
.header-box {
  position: relative;
  z-index: 30;
  height: 100%;
}

/* 鼠标移入效果 */
.header-wrap.active .header-box {
  background-color: #fff;
  box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(0, 0, 0, 0.1);
}

.header-wrap.active .logo > img:first-child {
  display: none;
}

.header-wrap.active .logo > img:last-child {
  display: block;
}
.header-wrap.active .lang > span,
.header-wrap.active .header-nav .item > a {
  color: #333;
}

.header-wrap.active .search > img,
.header-wrap.active .lang > img {
  filter: none;
}

/* 二级导航 */
.header-level2 {
  background-color: #fff;
  width: 100%;
  /* height: 4.7rem; */
  position: absolute;
  left: 0;
  top: 1.29rem;
  padding: 0.59rem 1.46rem 0.61rem;
  display: none;
}

.header-level2-left {
  width: 4.77rem;
}

.header-level2-title {
  font-family: D-DIN-PRO, D-DIN-PRO;
  font-weight: bold;
  font-size: 0.36rem;
  color: #333333;
}

.header-level2-desc {
  font-family: D-DIN-PRO, D-DIN-PRO;
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
  line-height: 0.32rem;
  margin-top: 0.35rem;
}

.header-level2-part {
  width: 5.66rem;
  margin-left: 1.37rem;
  padding-left: 0.37rem;
  padding-top: 0.21rem;
  border-left: 1px solid rgba(51, 51, 51, 0.17);
}

.header-level2-part + .header-level2-part {
  margin-left: 0.88rem;
}

.header-level2-t1 {
  font-family: D-DIN-PRO, D-DIN-PRO;
  font-weight: bold;
  font-size: 0.36rem;
  color: #333333;
}

.header-level2-list {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
}

.header-level2-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-level2-item > p {
  font-family: D-DIN-PRO, D-DIN-PRO;
  font-weight: 400;
  font-size: 0.18rem;
  color: #333333;
}

.header-level2-item > img {
  width: 0.17rem;
  display: none;
}

.header-level2-item:hover > img {
  display: block;
}

/* 底部 */
.footer-wrap {
  width: 100%;
  background: linear-gradient(139deg, #034685 0%, #5bb035 100%);
  padding: 0.54rem 0;
}

.footer-c {
  width: 16rem;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 3.15rem;
}

.footer-media {
  display: flex;
  gap: 0.2em;
}

.footer-media > a {
  width: 0.4rem;
  height: 0.4rem;
}
.footer-media > a > img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0.46rem 0;
}

.footer-list {
  display: flex;
  justify-content: space-between;
}

.footer-t1 {
  font-family: D-DIN-PRO, D-DIN-PRO;
  font-weight: bold;
  font-size: 0.2rem;
  color: #ffffff;
  margin-bottom: 0.22rem;
}

.footer-t2 {
  font-family: D-DIN-PRO, D-DIN-PRO;
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.3rem;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 0.91rem;
}

.copyRight {
  font-family: D-DIN-PRO, D-DIN-PRO;
  font-weight: bold;
  font-size: 0.16rem;
  color: #ffffff;
}
.footer-right{
  display: flex;
  gap: 0.08rem;
}
.footer-right > a {
  padding-right: 0.08rem;
  border-right: 2px solid #fff;
  font-family: D-DIN-PRO, D-DIN-PRO;
  font-weight: bold;
  font-size: 0.16rem;
  color: #ffffff;
}

.footer-right > a:last-child {
  border-right: none;
  padding-right: 0;
}

.slideBar{
    position: fixed;
    right: 0.33rem;
    bottom: 1.38rem;
    z-index: 999;
}

.slideBar .item{
    width: 0.6rem;
    height: 0.6rem;
    background: linear-gradient( 180deg, #0059AD 0%, #5BB035 100%);
    box-shadow: 0rem 0rem 0.04rem 0.01rem rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


.slideBar .item + .item{
    margin-top: 0.18rem;
}

.slideBar .item.goTop{
    background: #FFFFFF;
}

.slideBar .item:first-child>img{
    width: 0.2rem;
    height: 0.32rem;
    object-fit: contain;
}
.slideBar .item:last-child>img,
.slideBar .item:nth-child(2)>img{
    width: 0.33rem;
    height: 0.33rem;
    object-fit: contain;
}

.slideBar .item:last-child{
    display: none;
}
