@charset "UTF-8";
/* CSS 2025 Document */
@font-face {
  font-family: "myfontcn"; /* 自定义字体名称（后续使用） */
  /* 修复字体格式引用语法，使用逗号分隔多种格式，仅在最后使用分号 */
  src: url("/css2025/MiSans/MiSans-Normal.ttf") format("woff2"),
    url("/css2025/MiSans/MiSans-Normal.woff") format("woff"),
    url("/css2025/MiSans/MiSans-Normal.woff2") format("truetype");
  font-weight: normal; /* 字体粗细 */
  font-style: normal; /* 字体样式（正常/斜体等） */
}
@font-face {
  font-family: "myfonten"; /* 自定义字体名称（后续使用） */
  /* 修复字体格式引用语法，使用逗号分隔多种格式，仅在最后使用分号 */
  src: url("/css2025/MiSans/MiSans-Light.ttf") format("woff2"),
    url("/css2025/MiSans/MiSans-Light.woff") format("woff"),
    url("/css2025/MiSans/MiSans-Light.woff2") format("truetype");
  font-weight: normal; /* 字体粗细 */
  font-style: normal; /* 字体样式（正常/斜体等） */
}
body {
  min-height: 700px;
  margin: 0 auto;
  padding: 0;
  font-family: "myfontcn";
  /* -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility; 
    -ms-text-autospace: ideograph-alpha ideograph-numeric ideograph-parenthesis; */

  /* font-weight: 550; */
}
/* @font-face {
    font-family: 'YourFontName';
    src: url('img2025/msyh.ttc') format('msyh'),
         url('img2025/msyh.ttc') format('msyh');
     font-weight: 700; 匹配设计稿字重 
    font-style: normal;
  } */
div,
ul,
li {
  list-style: none;
  list-style-type: none;
  list-style-image: none;
  margin-top: 0;
  margin-bottom: 0;
  border: none;
  padding: 0;
}
img {
  padding: 0;
  margin: 0;
  line-height: 8px;
}
a {
  text-decoration: none;
  font-size: 14px;
}
.mainw {
  width: 100%;
  padding: 0;
  margin: auto;
  text-align: center;
  overflow: hidden;
}
.navbg {
  background: #024dcb;
  padding: 10px 0;
}
.navbgblue {
  background: #024dcb;
}
.navbgwhite {
  background: #fff;
}
/* .navbges{} */
.menunav {
  width: 1200px;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
}
.pageitem {
  width: 1200px;
  padding: 90px 0;
  margin: 0 auto;
  overflow: hidden;
}
.pageitem_nav {
  width: 1200px;
  padding: 0px;
  margin: 0 auto;
  overflow: hidden;
}
.pitem {
  margin-top: 120px;
}
.columnl {
  width: 50%;
  float: left;
  text-align: left;
}
.columnl div {
  padding: 0 50px 0 50px;
}
.columnr {
  width: 50%;
  float: left;
}
.columnr li {
  float: left;
  margin-right: 20px;
}
.menunav .boxll {
  float: left;
  width: 30%;
  text-align: left;
}
.menunav .boxll img {
  margin-left: 50px;
}

.menunav .boxrr {
  float: left;
  width: 70%;
  color: #fff;
  font-size: 14px;
  text-align: right;
  display: table-cell;
  vertical-align: middle;
  /* background: #fff; */
  line-height: 100px;
}
.menunav .boxrr div {
  float: right;
  margin-right: 30px;
  text-align: center;
  overflow: hidden;
  height: 100px;
}
.menunav .boxrr ul:first-child{width: 62px;}
.menunav .boxrr ul {
  float: left;
  width: 100px;
  text-align: center;
  font-size: 16px;
}
.menunav a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}
.menunav a:hover {
  font-size: 16px;
  font-weight: bold;
}
.menunav a:active {
  text-decoration-color: #000;
}
/* .menunav a:last-child{padding-right: 80px;} */
.menuitem {
  position: absolute;
  top: 140px;
  /* right: 315px; */
  z-index: 2999;
  display: block;
  width:200px;
  /* border: 1px solid #000; */

  display: none;
  /* border: 1px solid #000; */
  /* 水平偏移 0，垂直偏移 3px，模糊 15px，颜色 rgba(0,0,0,0.15) */
  animation: bounceIn 0.4s ease-out forwards;
}
.menuitem .box2 {
  border: 0px;
  margin: 0 60px;
  height: 22px;
  /* display: inline; */
}
.menuitem .box {
  background: #6b98e5;
  margin-left:28px;
  /* display: inline; */
  width: 100%;;
  color: #fff;
  border-radius: 15px;
  text-align: center;
  font-size: 16px;
  padding: 10px 0;
  box-shadow: 2 3px 15px #000 ;
}
.menuitem .box a{color:#fff;}
.menuitem .box::before {
  content: '';
  position: absolute;
  top: 12px; /* 三角形底边与菜单顶部对齐 */
  left: 63%;
  transform: translateX(-50%); /* 水平居中 */
  border-width: 0 10px 10px 10px; /* 下边框为三角形高度 */
  border-style: solid;
  border-color: transparent transparent #6b98e5 transparent; /* 三角形颜色与菜单背景匹配 */
}
.menuitem ul {
  border-bottom: 1px dotted #bcd0f4;
  line-height: 45px;
  
  cursor: pointer;
}
.menuitem ul:last-child {
  border: 0;
}
.menuitem ul:hover {
color: #05132b;
font-weight: bold;

}
.esmenu {
  float: left;
  /* width: 440px; */
  background: #fff;
  padding: 10px 0;
}
.esmenu1 {
  float: left;
  width: 320px;
  text-align: center;
  line-height: 25px;
  padding-top:4px
}
.esmenu1 img{margin:0px 66px;}
.esmenu2 {
  float: left;
  width: 400px;
  display: inline;
}

.esmenu3{
  float: left;
  width: 470px;
  text-align: right;
  color: #000000;
  /* padding-right: 20px; */
}
.esmenu3 .esnav {
  width: 90%;
  text-align: right;
  overflow: hidden;
  margin-top: 25px;
  padding-left: 5%;
}

.esmenu3 .esnav .eslink {
  font-size: 14px;
  float: left;
  width: 64px;
  margin-right: 18px;
  border: 0px solid #000;
  text-align: right;
  position: relative; /* 为三角图标提供定位基准 */
  cursor: pointer;
}
.esmenu3 .esnav .eslink:first-child {
  width: 70px;
}
.esmenu3 .esnav .eslink:last-child {
  margin-right: 10px;
}
.esmenu3 .esnav .eslink:nth-child(2) {
  padding-right: 15px;
}
.esnav .has-dropdown:hover::after {
  border-top: transparent; /* 移除向下三角 */
  border-bottom: 5px solid currentColor; /* 添加向上三角 */
}
.esnav .has-dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px; /* 三角与文字的间距 */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor; /* 使用当前文字颜色 */
}
.esmenu .esnav div:hover {
  font-weight: bold;
  cursor: pointer;
}
.esmenu .esnav li {
  float: left;
}
.esmenu3 a,.esmenu3 a:hover{color:#181818;font-size: 14px;;}
.triangle {
  width: 0;
  height: 0;
  border-style: solid;
}
.triangle-down {
  border-width: 8px 8px 0 8px;
  border-color: #666 transparent transparent transparent;
}
/* .prosearchbox{} */
.prosearch {
  width:100%;
  padding: 15px 0px 20px;
  overflow: hidden;
  font-size: 12px;
}

.prosearch li {
  float: left;
  font-size: 14px;
  height: 35px;
  border: 1px solid #0073c6;
  position: relative;
}
.prosearch select {
  line-height: 34px;
  font-size: 14px;
  border: 0;
  outline: none;
  border-radius: 25px;
  margin-left: 10px;
  height: 34px;
  background: #f1f1f1;
  width: 90px;
  text-align: center;
}

.prosearch li:first-child {
  padding: 0 0px;
  width:25%;
  border-radius: 25px 0 0 25px;
  background: #f1f1f1;
  border-right: 0;
}
.prosearch li:nth-child(2) {
  /* padding-left: 2px; */
  width: 74%;
  text-align: left;
  color: #1f1e1c;
  text-align: left;
  background: #0073c6;
  border-radius: 0 25px 25px 0;
  padding:0px;
}

/* 添加清除按钮样式 */
.prosearch .clear_btn1 {
  position: absolute;
  right:24%;
  top: 51%;
  width: 16px;
  height: 30px;
  transform: translateY(-50%);
  background: url("../img2025/clear-icon.png") no-repeat center #fff;
  background-size: 16px 16px;
  cursor: pointer;
  /* padding:7px 10px 9px; */
   /* display: none; */
}
.prosearch .clear_btn2{
  position: absolute;
  right:3%;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img2025/clear-icon.png") no-repeat center;
  background-size: 16px 16px;
  cursor: pointer;
  padding:7px 10px 9px;
  border-radius: 0 25px 25px 0;
  display: none;
}
.prosearch input {
  border: 0;
  /* line-height: 35px; */
  /* width:78%; */
  outline: none;
  height: 35px;
  background: #fff;
  margin: 0;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-block: 0;
  padding-inline: 0;
  padding-left:3px;
}
.prosearch .input1{
  width:68%;
  padding-right: 25px;;
}
.prosearch .input2{
  width:95%;
  padding-right:4%;
  border-radius: 0 25px 25px 0;
}
.prosearch input:focus {
  background: #fff;
}
.list{
  
  width: 380px;
  position: absolute;
  top: 157px;
  /* margin-left:25%; */
  z-index: 2999;
  text-align: left;
  /* top:52px;
  left: 25.55%; */
  display: none;
  animation: bounceIn 0.4s ease-out forwards;
}
.list .listleft{width:26.66%;
  float: left;}
.list .listright{
  float: left;width:72%;border-radius: 0;
  border:0;
  background: #fff;
  font-size: 14px;
  overflow: hidden;
  border-top:0px;
  background: #fff;;
  border:1px solid #ccc;
  border-top:0px;
  max-height: 200px;
  overflow-y:auto;
  padding-bottom:5px;

}
.list .item1{
  color:#999;
  padding:8px 5px;
}
.list .item{
  padding:8px 5px;
  color: #000;;
  cursor: pointer;
  line-height: 18px;
}
.list .item:hover{
  background: #ccc;
  color: #000;
}
.prosearch input::placeholder {
  color: #999; /* 提示文本颜色（通常比输入文本浅） */
  font-size: 14px; /* 字体大小 */
  opacity: 0.8; /* 透明度（可选，增强层次感） */
  font-style: italic; /* 斜体样式（可选，区分提示与输入内容） */
}
.prosearch .sbtn{
  padding: 8px 18px 9px 13px;
  width: 20%;
  text-align: left;
  border-radius: 0 22px 20px 0;
  background: #0073c6;
  color: #fff;
  cursor: pointer;
  
}
.homebox {
  width: 1180px;
  display: inline-block;
  /* -webkit-text-stroke: 0.3px; */
}
.homebox li {
  width: 33.333%;
  float: left;
  display: hidden;
}
.homebox .proitem {
  background: #fff;
  margin: 17px;
  border-radius: 15px;
  box-shadow: 0 3px 12px #d4dcea;
  text-align: center;
  min-height: 200px;
  border:1px solid #ddd;
  /* padding:10px 20px; */
}
.homecard a:hover {
  transition: (1.2);
}
.homead {
  margin-top: 20px;
}
.homebox .proitem .ct1 {
  font-size: 24px;
  color: #181818;
  font-weight: bold;
  /* -webkit-text-stroke: 0.3px;   */
  background: url(../img2025/homeicon0.png) center center no-repeat;
}
.homebox .proitem div:first-child {
  padding: 0;
  /* -webkit-text-stroke: 0.3px; */
  padding-top: 20px;
}
.homebox .proitem div:last-child {
  padding-bottom: 35px;
}
.homebox .proitem div {
  padding: 0 20px;
}
.homebox .proitem .et1 {
  font-size: 14px;
  color: #656565;
  font-family: "myfontcen";
  /* font-weight: bold; */
}
.homebox .proitem .itemtxt {
  color: #696969;
  font-size: 16px;
  margin: 25px 0;
  padding: 0 30px;
  line-height: 24px;
  height: 50px;
}
.homebox .proitem .pt1 {
  color: #2b2b2b;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 450;
}
.homebox .proitem .pt1 img {
  vertical-align: middle;
  margin: 0 20px 5px;
}
.tbg {
  background: #ccc;
  background: url(../img2025/homeicon7.png) no-repeat 25px center;
  font-size: 30px;
  color: #000;
  height: 92px;
  text-align: left;
  padding-left: 85px;
  /* margin: 40px 0 10px; */
}
.intrtxt {
  text-align: left;
  font-size: 15px;
  line-height: 34px;
  color: #323232;
  padding-right: 550px;
  padding-left: 40px;
  text-indent:2em;
  background: url(../img2025/homeicon9.jpg) no-repeat top right;
}
.card li:first-child {
  margin-left: 40px;
}
.card li {
  width: 220px;
  text-align: center;
}
.bottomtxt {
  color: #fff;
  font-size: 15px;
  line-height: 36px;
  /* -webkit-text-stroke: 0.1px; */
  padding: 40px 0 60px;
}
.bottombg {
  background: #011c7d;
}

.probg {
  background: url(../img2025/eschoolbg01.jpg) no-repeat top center;
}
.probg2 {
  background: url(../img2025/eschoolbg02.jpg) #ebf4f8 no-repeat top center;
}

.menuz {
  width: 100%;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  text-align: center;
  display: inline-block;
}
.menuz ul {
  float: left;
  width: 10%;
  margin: 25px 0;
  font-size: 14px;
  color: #1f1e1c;
}
.menuz ul:first-child {
  margin-left: 18%;
}
.menuz a {
  color: #1f1e1c;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
}
.menuz a:hover {
  font-size: 18px;
  color: #1570eb;
}
.estitle {
  font-size: 28px;
  color: #3c3c3c;
  padding: 0 0 70px;
  font-weight: 600;
}

.esprocess {
  font-size: 28px;
  color: #3c3c3c;
  font-weight: 600;
  background: url("../img2025/eschoolcard7.jpg") no-repeat center;
  height: 700px;
  width: 700px;
  line-height: 620px;
}
.estarea {
  display: inline-block;
}
/* .estarea2{display: inline-block;padding:0 50px;} */
.column2 {
  float: left;
  width: 50%;
  text-align: left;
}
.column {
  float: left;
}
h1 {
  color: #3684dc;
  font-size: 36px;
  /* -webkit-text-stroke: 0.3px; */
  font-weight: normal;
}
.est20 {
  font-size: 20px;
  line-height: 50px;
  text-indent: 2em;
  color: #505050;
  padding-right: 35px;
  text-align: left;
}
.est18 {
  font-size: 18px;
  line-height: 24px;
  color: #000;
  font-weight: bold;
  margin: 10px 0;
}
.est14 {
  font-size: 14px;
  line-height: 24px;
  color: #5a5a5a;
  text-align: left;
}
.cardtips {
  text-align: center;
  color: #5a5a5a;
  font-size: 14px;
  width: 100%;
  margin: 10px 0 20px;
  display: inline-block;
}
.eschoolbook {
  width: 16.666%;
  float: left;
}
.eschoolbook img {
  box-shadow: 3px 3px 12px #686868;
  margin: 20px 15px;
  width: 140px;
}
.column3 {
  float: left;
  width: 32.333%;
  border-right: 1px solid #ced6da;
}
.column3:last-child {
  border: 0;
}
.column3 li {
  padding: 0 85px;
}
.esbtn {
  border-radius: 8px;
  background: #1570eb;
  color: #fff;
  font-size: 14px;
  width: 350px;
  /* line-height: 55px; */
  margin: 0 10px;
  /* height: 55p; */
  font-weight: bold;
  float: left;
  padding: 20px 0px;
}
.esbtn:hover {
  background: #00cccc;
}
/* .esbtn:first-child{margin:0;margin-left: 40px;}
.esbtn:last-child{margin:0;margin-right: 40px;} */
.tablet {
  width: 90%;
  text-align: left;
  color: #323232;
  font-size: 14px;
  line-height: 35px;
  /* padding-bottom: 90px; */
}
.escl1 {
  width: 527px;
  float: left;
  text-align: right;
}
.escl2 {
  width: 50%;
  float: left;
  text-align: left;
  line-height: 30px;
  color: #5a5a5a;
}
.testtxt {
  float: left;
  text-align: left;
  width: 50%;
}
.testtxt p {
  padding-left: 90px;
  line-height: 66px;
  margin-top: 20px;
  color: #5a5a5a;
}
.testtxt img {
  margin-left: 220px;
}

.subjectbg {
  background: url("../img2025/subjectbg.jpg") no-repeat top center #ebf4f8;
}

/*产品滚动展示样式*/
.scroll-wrapper {
  width: 100%;
  max-width: 1150px;
  padding: 25px;
}

.scroll-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
  font-family: "Arial", sans-serif;
}

.scroll-container {
  width: 100%;
  height: 175px;
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  /* gap: 10px; */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.scroll-item {
  flex: 0 0 auto;
  width: 215px;
  background: #fff;
  color: #181818;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid #fff;
  margin: 0 10px;
}
.scroll-item a,
.scroll-item a:hover {
  color: #181818;
  font-size: 14px;
}
.scroll-item div {
  padding: 0 20px 20px;
  text-align: center;
  white-space: nowrap; /* 禁止换行 */
  overflow: hidden; /* 隐藏溢出内容 */
  text-overflow: ellipsis; /* 溢出部分显示省略号 */
}
.scroll-item div:first-child {
  padding: 20px 20px 10px;
}
.scroll-item:hover {
  /* transform: scale(1.05); */
  border: 2px solid #ffda2f;
  color: #1570eb;
  font-weight: normal;
  font-size: 14px;
}
.scroll-item img {
  width: 175px;
  height: 100px;
  object-fit: cover;
  display: block;
}

/*适配测试页*/
.testbg {
  background: url(../img2025/testbg.jpg) no-repeat top center #fff;
}
.testad .adt1 {
  margin-top: 100px;
  padding-left: 90px;
  text-align: left;
  opacity: 1;
  animation: fadeInLeftBig 1s ease-out forwards;
}

.testad .adt3 {
  margin-top: 10px;
  padding-left: 220px;
  text-align: left;
  opacity: 0;
  animation: fadeInRightBig 1s ease-out forwards;
  animation-delay: 0.4s;
}
.testad .adt2 {
  margin-top: 20px;
  padding-left: 100px;
  padding-right: 600px;
  text-align: left;
  font-size: 24px;
  line-height: 48px;
  color: #fff;
  text-indent: 2em;
  opacity: 0;
  animation: fadeInUpBig 1s ease-out forwards;
  animation-delay: 0.4s;
}
.eschoolad .ad1{
  margin-top: 50px;
  padding-right: 90px;
  text-align: right;
  opacity: 1;
  animation: fadeInLeftBig 1s ease-out forwards;
}
.eschoolad .ad2{
  margin-top: 10px;
  padding-right: 90px;
  text-align: right;
  opacity: 0;
  animation: fadeInRightBig 1s ease-out forwards;
  animation-delay: 0.4s;}
.testad{
  height: 465px;
  display: inline-block;
  width: 1200px;
}
.eschoolad{height:260px;
  background: url(../img2025/mc8.jpg) no-repeat top center;
  display: inline-block;
  width: 1200px;}
.subjectad {
  height: 592px;
  display: inline-block;
  width: 1200px;
}
.subjectad .adt1 {
  margin-top: 70px;
  padding-right: 50px;
  text-align: right;
  opacity: 1;
  animation: bounceInDown 1s ease-out forwards;
}
.subjectad .adt2 {
  margin-top: 50px;
  padding-left: 500px;
  padding-right: 60px;
  padding-bottom: 150px;
  text-align: left;
  font-size: 24px;
  line-height: 48px;
  color: #fff;
  text-indent: 2em;
  opacity: 0;
  animation-delay: 0.4s;
  animation: fadeInUpBig 1s ease-out forwards;
}
.testcard div {
  width: 20%;
  text-align: center;
  float: left;
  margin: 30px 0 80px;
}

.testcard .txt{width: 55%;
  text-align: left;}
.column4 {
  float: left;
  width: 300px;
}
.column4:first-child,
.column4:nth-child(3) {
  text-align: right;
  width: 220px;
}
.column4:last-child,
.column4:nth-child(2) {
  text-align: left;
  width: 230px;
  padding-right: 60px;
}
.testbgc {
  background: #ebf4f8;
}
.testtop {
  margin-top: 40px;
}
.itembottom90 {
  margin-bottom: 90px;
}

/*学科设备*/
.subject_l {
  width: 35%;
  float: left;
  text-align: left;
}
.subject_l p {
  padding: 0 50px 0 80px;
  font-size: 18px;
  line-height: 36px;
  color: #303448;
  text-indent: 2em;
}
.subject_l h2 {
  font-size: 28px;
  font-family:"myfontcn";
  padding: 0 50px 0 80px;
}
.subject_r {
  width: 65%;
  float: left;
}
.subject_r li {
  /* float: left; */
  display: inline-block;
  padding: 0;
  margin: 0;
  height: 196px;
}
.subject_r img {
  border: 2px solid #fff;
  margin: 0;
  padding: 0;
}
.estarea1 {
  text-align: center;
  display: inline-block;
}
.subjectimg li {
  float: left;
  display: inline;
  background: #0073c6;
  overflow: hidden;
  font-size: 0; /* 关键：消除空白字符的影响 */
  letter-spacing: -0.31em; /* 辅助消除间距（兼容部分浏览器） */
}
.subjectimgimg {
  padding: 0;
  border: 1px solid #000;
  margin: 0;
}
.subjectcard {
  float: left;
  margin: 0 90px;
  border: 1px solid #ccc;
  width: 260px;
}
.num {
  width: 95%;
  display: inline-block;
}
.num img {
  width: 90px;
}
.num ul {
  float: left;
  width: 50%;
  margin-bottom: 30px;
}
.num li:last-child {

  float: left;
  width:70%
}
.num ul:nth-child(1),.num ul:nth-child(3),.num ul:nth-child(5),.num ul:nth-child(7){
  width: 45%;
}
.num ul:nth-child(2),.num ul:nth-child(4),.num ul:nth-child(6),.num ul:nth-child(8){
  width: 55%;
}
.num li {
  float: left;
  text-align: left;
  color: #4e4e4e;
  line-height: 24px;
  font-size: 14px;
  padding-left: 20px;
}
.num ul:nth-child(7) {
  margin-bottom: 0px;
}
.num ul:nth-child(8) {
  margin-bottom: 0px;
}
.numbottom {
  padding-bottom: 10px;
}
.num p {
  padding: 0;
  margin: 0;
  padding-right: 15px;
}
.numtitle {
  font-size: 20px;
  line-height: 40px;
}
ul:nth-child(1) .numtitle {
  color: #d68e00;
}
ul:nth-child(2) .numtitle {
  color: #2857c1;
}
ul:nth-child(3) .numtitle {
  color: #098dae;
}
ul:nth-child(4) .numtitle {
  color: #d21845;
}
ul:nth-child(5) .numtitle {
  color: #099188;
}
ul:nth-child(6) .numtitle {
  color: #a5b003;
}
ul:nth-child(7) .numtitle {
  color: #d54010;
}

/*通知通告*/
.noticebg {
  background: url(../img2025/noticebg.jpg) no-repeat top center;
}
.noticead,
.contantad {
  height: 245px;

  display: inline-block;
  width: 1200px;
}
.noticead .adt1 {
  text-align: left;
  padding-left: 200px;
  padding-top: 30px;
  opacity: 1;
  animation: bounceIn 1s ease-out forwards;
}
.noticead .adt2 {
  color: #343434;
  padding-left: 220px;
  font-size: 20px;
  text-align: left;
  opacity: 1;
  animation: lightSpeedIn 1s ease-out forwards;
  /* ,bounceIn 5s ease infinite alternate; */
}

.contantad .adt1 {
  text-align: right;
  padding-right: 100px;
  padding-top: 50px;
  opacity: 1;

  animation: bounceIn 1s ease-out forwards;
}
.contantad .adt2 {
  text-align: right;
  padding-right: 200px;
  padding-top: 0px;
  font-size: 30px;
  color: #fff;
  opacity: 1;
  animation: fadeInUpBig 1s ease-out forwards;
}

.animal {
  animation: fadeInUpBig 1s ease-out forwards;
}

.years {
  border-bottom: 1px solid #616161;
  width: 90%;
  margin: 0 5%;
  padding: 25px 0;
}
.noticepadding {
  padding: 0;
}
.notice {
  border-bottom: 1px dotted #616161;
  line-height: 50px;
  overflow: hidden;
}
/* .years a{font-size: 16px;color: #000;} */
.notice a li {
  color: #616161;
  font-size: 16px;
}
.notice:hover li {
  color: #024dcb;
  font-weight: bold;
}
.notice:last-child {
  border: none;
}
.notice li {
  float: left;
}
.notice li:first-child {
  margin-left: 2%;
  width: 78%;
  list-style: inside;
  text-align: left;
  white-space: nowrap; /* 禁止换行 */
  overflow: hidden; /* 隐藏溢出内容 */
  text-overflow: ellipsis;
}
.notice li:last-child {
  width: 18%;
  text-align: right;
}

/* 联系我们 */
.contantbg {
  background: url(../img2025/contantbg.jpg) no-repeat top center;
}
.contantbg2 {
  background: url(../img2025/pic01.jpg) no-repeat top center;
  min-height: 450px;
  width: 100%;
}
.contantbg2 ul {
  float: left;
  width: 50%;
  overflow: hidden;
}
.contantbg2 .year {
  color: #fff;
  font-size: 22px;
  line-height: 40px;
}
.contantbg2 ul:first-child li:first-child {
  padding: 30px 120px 0px 120px;
}
.contantbg2 ul:first-child li:nth-child(2) {
  padding: 10px 120px 0px 180px;
}
.contantbg2 ul:first-child li:nth-child(3) {
  padding: 60px 0px 0px 50px;
}
.contantbg2 ul:first-child li:nth-child(4) {
  padding: 10px 120px 0px 210px;
}
.contantbg2 ul:first-child li:nth-child(5) {
  padding: 84px 120px 0px 320px;
}
.contantbg2 ul:first-child li:nth-child(6) {
  padding: 10px 0px 0px 310px;
}

.contantbg2 ul:last-child li:first-child {
  padding: 76px 0px 0px 60px;
}
.contantbg2 ul:last-child li:nth-child(2) {
  padding: 10px 0px 0px 260px;
}
.contantbg2 ul:last-child li:nth-child(3) {
  padding: 116px 0px 0px 50px;
}
.contantbg2 ul:last-child li:nth-child(4) {
  padding: 10px 130px 0px 200px;
}
.contantbg2 .txt {
  color: #494949;
  font-size: 14px;
  text-align: left;
  line-height: 24px;
  padding: 0 30px;
}
.contantnav {
  display: inline-block;
  text-align: left;
}
.contantnav li {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contantnav a {
  color: #000;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 40px;
}
.contantnav a:hover {
  color: #1570eb;
  font-size: 24px;
}
.contantnav img {
  margin-right: 15px;
}
.contanttxt {
  text-align: left;
  font-size: 14px;
  color: #323232;
  line-height: 34px;
  text-indent: 2em;
  padding: 0 100px 90px;
}
.txtbg {
  background: url(../img2025/bg2.png) no-repeat bottom center;
}
.contantdata {
  background: url(../img2025/bg3.png) no-repeat bottom center;
  color: #fff;
  display: inline-block;
  min-height: 268px;
}
.contantdata ul {
  overflow: hidden;
  display: inline-block;
  margin: 40px 0 90px 0;
}
.contantdata li {
  float: left;
  border-right: 1px solid #70b2e2;
  font-size: 14px;
  padding: 0 100px;
}
.contantdata li:last-child {
  border: none;
}
.contantdata .t1 {
  font-size: 60px;
  font-family: "Eras Medium TC";
  line-height: 60px;
}
.contantdata span {
  padding: 0;
  margin: 0;
}
.contantdata .t2 {
  font-size: 18px;
  line-height: 20px;
  font: "Microsoft YaHei", "微软雅黑", "SimHei", "黑体", sans-serif;
}
.bg4 {
  background: url(../img2025/bg4.jpg) no-repeat left center;
  overflow: hidden;
  display: inline-block;
  /* padding:0; */
}
.bg4 ul {
  float: none;
  display: inline-block;
}
.bg4 li {
  float: left;
  display: inline;
  line-height: 22px;
  width: auto;
}
.bg4 .year {
  font-size: 24px;
  width: 110px;
  text-align: left;
  line-height: 66px;
}
.bg4 .txt {
  font-size: 14px;
  color: #494949;
  text-align: left;
  padding-right: 20px;
  line-height: 20px;
}
.bg4 ul:first-child {
  padding-left: 640px;
  padding-top: 6px;
  overflow: auto;
}
.bg4 ul:nth-child(2) {
  padding-left: 530px;
  padding-top: 87px;
  overflow: auto;
}
.bg4 ul:nth-child(3) {
  padding-left: 730px;
  padding-top: 130px;
  overflow: auto;
}
.bg4 ul:nth-child(4) {
  padding-left: 730px;
  padding-top: 155px;
  overflow: auto;
}
.bg4 ul:last-child {
  padding-left: 400px;
  padding-top: 100px;
  overflow: auto;
}
.bg4 ul:first-child .txt {
  line-height: 20px;
  width: 45%;
}
.bg4 ul:nth-child(2) .txt {
  line-height: 65px;
}
.bg4 ul:nth-child(3) .txt {
  line-height: 65px;
}
.bg4 ul:nth-child(4) .txt {
  line-height: 20px;
  width: 52%;
}
.bg4 ul:nth-child(5) .txt {
  line-height: 65px;
}
.citem ul {
  float: left;
  width: 245px;
  margin: 0 50px;
}
.citem li {
  text-align: left;
  font-size: 14px;
  color: #8b8b8b;
  line-height: 24px;
}
.citem .tname {
  font-size: 20px;
  color: #383838;
  line-height: 36px;
}
.citem .tline {
  height: 20px;
  border-top: 2px solid #024dcb;
  padding: 0 10px;
  width: 15px;
}

/* 关键帧定义 */
/* 基础淡入动画 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.active {
  animation: slideIn 0.5s ease-out forwards;
}

/* 滑入动画 */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.slide-in {
  opacity: 0;
  transform: translateX(-30px) scale(0.9);
}
.slide-in.active {
  animation: slideIn 0.5s ease-out forwards;
}
.slide-in:nth-child(2) {
  animation-delay: 0.2s;
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 缩放动画 */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.scale-in.active {
  animation: scaleIn 0.5s ease-out forwards;
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}
/* 旋转动画 */
.rotate-in {
  opacity: 0;
  transform: rotate(-5deg) scale(0.9);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.rotate-in.active {
  animation: rotateIn 0.5s ease-out forwards;
}


/*搜索结果*/
.searchbox{
  font-size: 14px;color:#333;border-top:2px solid #ccc;margin-bottom:50px}
.result {margin-left:50px;margin-right:30px;background: #fff;;}
.result .order{
  font-size: 14px;color:#333;
  border-bottom:1px solid #ccc;
  overflow: hidden;
}
.result .pagebox{
  font-size: 14px;color:#333;
  border-top:1px solid #ccc;
  border-bottom:0px;;
  overflow: hidden;
}
/* .order li{line-height: 34px;;} */
.order .left{
  width:30%;overflow: hidden;float:left;
}
.order .right{
  width:70%;overflow: hidden;float:left;text-align: right;
}
.order .right div{padding-right: 30px;}
.sorder{overflow: hidden;}
.sorder li{float:left;padding:0px 15px;cursor: pointer;}
.sorder li:hover{color:#024dcb}
.prolistitem{min-height: 200px;overflow: hidden;padding:20px 0;}
.prolistitem li{float:left;width:25%;overflow: hidden;}
.proitems {padding:0 15px;text-align: left;}
.proitems img{border:1px solid #ccc;width: 98%;}
.proitems div{text-align: left;font-size: 14px;;padding-bottom:5px;overflow: hidden;}
.proitems div:last-child{margin-bottom: 20px;;}
.prolistitem a{color:#333;}
.proitems .comname{float:left;width:65%;line-height: 30px;white-space: nowrap;overflow: hidden;text-overflow:ellipsis;}
.proitems .proname{white-space: nowrap;overflow: hidden;text-overflow:ellipsis;}
.proitems .probtn{float:left;width:35%;text-align: right;line-height: 30px;}

.proitems .probtn span{background: #024dcb;padding:3px 14px;border-radius: 5px;color:#fff;cursor: pointer;}
.proitems .probtn span:hover{background: #d68e00;}
.result .num{font-size: 16px;text-align: left;padding-top:25px;color:#666}
.result .numkey{padding-right:20px;color:#2857c1;font-size: 16px;font-weight: bold;}

.pagen{
	background: none;
	border:1px solid #ccc;
	padding:3px 10px;
	color:#ccc;}
  .page{
    background: #fff;
    border:1px solid #ccc;
    padding:3px 10px;
    cursor: pointer;
  }

  .filterbox{
    width: 1100px;
    font-size: 14px;color:#333;
    margin-left: auto;
    margin-right: auto;
    background: #FFF;
    overflow: hidden;
    text-align: center;
  }

  .filterbox div{
    overflow: hidden;
    border-bottom: 1px solid #ebebeb;
    line-height: 26px;
    padding:10px 0px;
  }
  
  .filterbox ul{float: left}
  .filterbox .left{
    width: 10%;
    text-align: center;
  }
  .filterbox .right{
    width: 90%;
    text-align: left;
    color:#676767;
  }
  .filterbox .right li{
    float:left;
    padding:0 15px;
    cursor: pointer;
  
  }
  .filterbox .level2{
    float: left;
    padding:0 20px;
  }
 
  .level1{
    border:none;
  }
  .level0 li{
    float: left;
    /*border-radius: 4px;
    border:1px solid #ebebeb;
    margin:0 10px;*/
    padding:5px 20px;
  }
  .comlogo{
    width: 300px;
    height: 100px;
    border: 3px #e8e8e8 solid;
    cursor: pointer;
  }
  #company{text-align: left;padding:14px 15px;font-size: 16px;width: 100%}
  #company .a{margin:0 20px;font-weight: bold}
  #company .b{color:#999;}
  .combox .right span{
    text-align: left;
    padding:6px 15px;
  }
  .combox .right .li1{text-align: left; border: 1px solid #fff;width: 115px;padding:0; height: 35px}
  .combox .right li{
    width:115px;
    text-align: center;
    border:1px solid #ebebeb;
    margin:-1px -1px 0px 0px;
    line-height: 33px;
    overflow:hidden;padding:0;
    height: 35px;
  }
  .tipstt{margin-top: 55px;font-size:16px;}

  /* 个人中心 */
  .usermenu{padding:35px 0 10px;}
.usermenus{position: relative;margin-top:15px}
  .menuarea{border:1px dashed #999;border-radius:8px;padding:40px 10px 5px;margin:0 10px;}
  .menut{color:#000;font-weight:bold;font-size: 14px;}
  .menut span{background: #fff;}
  .menut:first-child{padding:0 50px ;}
  .menut:nth-child(2){padding:0 240px 0px 10px ;}
  .menut:nth-child(3){padding:0 150px 0px 10px ;}
  .menut:last-child{padding:0 290px 0px 10px ;}
  .usermenu a {padding:30px 15px 5px;color:#333;}
  .usermenu a:hover{font-weight: bold;}
  .usermenu .activelink{font-weight: bold;}
  .usermenu .m1{
    background: url(../newimages/m_ico1_b.jpg) no-repeat center top 5px;
  }
  .usermenu .m2{
    background: url(../newimages/m_ico2_b.jpg) no-repeat center top 5px;
  }
  .usermenu .m3{
    background: url(../newimages/m_ico3_b.jpg) no-repeat center top 5px;
  }
  .usermenu .m4{
    background: url(../newimages/m_ico4_b.jpg) no-repeat center top 5px;
  }
  .usermenu .m5{
    background: url(../newimages/m_ico5_b.jpg) no-repeat center top 5px;
  }
  .usermenu .m6{
    background: url(../newimages/m_ico6_b.jpg) no-repeat center top 5px;
  }
  .usermenu .m7{
    background: url(../newimages/m_ico7_b.jpg) no-repeat center top 5px;
  }
  .usermenu .m8{
    background: url(../newimages/m_ico8_b.jpg) no-repeat center top 5px;
  }
  .usermenu .m9{
    background: url(../newimages/m_ico9_b.jpg) no-repeat center top 5px;
  }
  .usermenu .m10{
    background: url(../newimages/m_ico10_b.jpg) no-repeat center top 5px;
  }

  .usermenu .m11{
    background: url(../newimages/m_ico11_b.jpg) no-repeat center top 5px;
  }
  .usermenu .m12{
    background: url(../newimages/m_ico11_b.jpg) no-repeat center top 5px;
  }
  .mbody{background: #fff;}


  .sprolist{
    width: 1000px;
      padding: 0;
      margin: 0 auto;
      overflow: hidden
   }
   .sprolist ul{
    overflow: hidden;
   }
   .sprolist .order{
    border:1px solid #ccc
   }
   .sprolist .order .lleft{padding:0;width:40%;float:left}
   .sprolist .order .right{padding:0;width:60%;float:left}
   .sprolist .prolisttop li{float:left;width:33%}