@charset "utf-8";
/* CSS Document */
body {
  color: #131313;
  font-size: 16px;
  /* font-family: "HarmonyOS Sans SC", -apple-system, sans-serif; */
  font-family: Microsoft YaHei, Microsoft YaHei;
  margin: 0 auto;
  box-sizing: border-box;
}

body * {
  font-size: 16px;
  box-sizing: border-box;
  font-family: Microsoft YaHei, Microsoft YaHei;
  /* font-family: "HarmonyOS Sans SC", -apple-system, sans-serif; */
}

/* 重置 */

div,
form,
p,
i,
img,
ul,
li,
ol,
dl,
dt,
dd,
table,
tr,
td,
th,
fieldset,
label,
legend,
select,
button,
input {
  margin: 0;
  padding: 0;
}

input,
select:focus {
  outline: none;
  border: 1px solid #e5e5e5;
}
input:hover {
  border-color: #B11F23;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}
/* 针对所有浏览器 */
input::placeholder {
  color: #343434; /* 例如，使用灰色 */
}

/* 针对较老版本的浏览器，如Firefox */
input:-moz-placeholder {
  color: #343434;
}

/* 针对Webkit浏览器，如Chrome和Safari */
input::-webkit-input-placeholder {
  color: #343434;
}

/* 针对IE浏览器 */
input:-ms-input-placeholder {
  color: #343434;
}
/* 标题样式 */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  /* font-size: 12px; */
  font-weight: normal;
}

h1 img,
h2 img,
h3 img,
h4 img,
h5 img,
h6 img {
  margin: 0;
}

/* 列表样式 */

ul,
ol,
li,
dl,
dt,
dd {
  list-style: none;
}

/* 图片样式 */

img,
a img {
  border: 0px;
  padding: 0px;
  margin: 0px;
}

/* 链接样式 */
a {
  color: #333333;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}
/* 字体加粗 */
.bold {
  font-weight: bold;
}

/* 共同的flex布局 */
.flex {
  display: flex;
  align-items: center;
}
.flex1 {
  flex: 1;
}
.flex-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.flex-b {
  display: flex;
  align-items: baseline;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-column-c {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-bet {
  display: flex;
  justify-content: space-between;
}

.flex-bet-c {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-j-a {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.flex-j-t {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flex-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 超出省略 */
.line-camp3 {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.line-camp2 {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-camp1 {
   display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* 显示与隐藏 */
.block_pc {
  display: block !important;
}
.block_sj {
  display: none !important;
}

/* btn触摸动画 */
.btn-hover:hover {
  cursor: pointer;
  background: #3eb4f8;
}
.btn-border-hover:hover {
  cursor: pointer;
  border-color: #75cafc;
  color: #75cafc;
}

@keyframes example {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow-opacity {
  animation: example 0.7s forwards; /* 使用CSS动画*/
}

/*滚动条样式*/
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  display: none;
}

::-webkit-scrollbar-thumb {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  background: rgba(25, 93, 157, 1);
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  border-radius: 0;
  background: rgba(0, 0, 0, 0);
}

/* 安全区域 */
.padding-box {
  /* padding-bottom: 87px; */
}
.box-padding-a {
  padding-bottom: 109px;
  padding-top: 101px;
}
.box-padding-b {
  padding-top: 61px;
  padding-bottom: 109px;
}
.safe_width {
  max-width: 1500px;
  padding: 0 30px;
  height: 100%;
  margin: 0 auto;
}
/*页码*/
.page_con {
  width: 100%;
  text-align: center;
  margin: 10px 0 0px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_con nav ul {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_con nav ul li {
  border-radius: 0;
}

.page_con nav ul li a {
  border: none;
  background: #fff;
  display: inline-block;
  text-align: center;
  color: #333333;
  font-size: 16px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  padding: 0 !important;
  border-radius: 0px !important;
  margin: 0 8px;
  /* border: 1px solid #e6e6e6; */
  display: flex;
  background: #F2F2F2;
  justify-content: center;
  align-items: center;
}

.page_con nav ul li span {
  color: #333333;
  font-size: 14px;
}

.line-page {
  display: inline-block;
  margin-left: 49px;
}

.go-page {
  display: flex;
  align-items: center;
  margin-left: 16px;
}

.go-page input {
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  color: #999;
  text-indent: 1em;
}

.page_con nav ul .go-page a {
  font-size: 14px;
}

.pagination > li:first-child > a,
.pagination > li:last-child > a {
  width: 110px;
}

.page_con nav ul li:hover a {
  color: #D60202;
  background: #fff;
}

.page_con nav ul li.active a {
  color: #fff !important;
  background: #D60202 !important;
}







.fixed-index-bg{
  width: 100%;
  height: 100vh;
  background-image: url(../images/);
}




@media screen and (max-width: 768px) {
  .page_con nav ul li.active a {
    background: #D60202 !important;
  }

  body {
    font-size: 0.28rem;
  }

  body * {
    font-size: 0.28rem;
  }
  .block_sj {
    display: block !important;
  }
  .block_pc {
    display: none !important;
  }
  .box-padding-a {
    padding-bottom: 0.98rem;
    padding-top: 0.58rem;
  }
  .box-padding-b {
    padding-top: 1rem;
    padding-bottom: 0.7rem;
  }
  /* 安全区域 */
  .safe_width {
    width: 100%;
    max-width: 100%;
    padding: 0 0.3rem;
  }

  /*页码*/
  .page_con {
    margin: 0.46rem 0 0px 0;
  }

  .page_con nav ul li a {
    font-size: 0.26rem;
    width: 0.72rem;
    height: 0.72rem;
    line-height: 0.72rem;
    background: #f2f2f2;
    border-radius: 0 !important;
    margin: 0 0.03rem;
  }

  .pagination > li:first-child > a,
  .pagination > li:last-child > a {
    width: 1.9rem;
    letter-spacing: 0.05rem;
    background: #c7cfde;
    color: #fff !important;
  }

  .pagination > .disabled > a {
    background: #c8c8c8 !important;
    color: #fff !important;
  }
  .page_padding {
    padding: 0 0.3rem;
  }
}


