<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-y {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-content-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-content-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}

.justify-content-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
}
.flex-between{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
}
.flex-column{
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-column-center{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ellipsis1 {
  /* æ–‡æ¡ˆä¸€è¡Œæ˜¾ç¤ºä¸å…¨çœç•¥å· */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ellipsis2 {
  /* æ–‡æ¡ˆä¸¤è¡Œæ˜¾ç¤ºä¸å…¨çœç•¥å· */
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* sciå½•ç”¨ */
.sciPage{
  padding-top:10px;
}
.scicontent {
  position: relative;
  clear: both;
  margin: 0 auto 40px;
  
}
.scicontent .left{
  width: 880px;
  padding: 0 24px;
  box-sizing: border-box;
  border: 1px solid #eeeeee;
  background: #fff;
  margin:20px 20px 0 0;
  float: left;
}
.scicontent .nav-body ol{
  color: rgb(68, 66, 66);color: rgb(68, 66, 66);
    font-size: 12px;
}
.scicontent .nav-body .navs {
  display: inline-block;
  margin-left:2px;
  margin-top:7px;
  
}

.scicontent .nav-body .navs a {
  color: rgb(68, 66, 66);
}
.scicontent .nav-body  .navs a:hover {
  color: #00b68d;
}
.scicontent .left .li{
  padding: 40px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #eeeeee;
}
.scicontent .left .leftimg{
  width: 200px;
  height: 125px;
  border-radius: 3px;
  margin-right: 24px;
}
.scicontent .left .pname{
  color: #0e204d;
  font-size: 20px;
  font-weight: bold;
}
.scicontent .left .ptip{
  color: #7d8088;
  font-size: 14px;
  line-height: 24px;
  margin: 15px 0 20px;
}
.scicontent .left .bot{
  width: 100%;
  color: #aeb0b7;
  font-size: 12px;
}
.scicontent .rightcont{
  width: 296px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  margin-top: 20px;
  float: right;
}
.right.fixed {
  position: fixed;
  top: 0px;
  width: 296px;
  background: #ffffff;
  border: 1px solid #eeeeee;
}
.scicontent .right .title{
  width: 100%;
  height: 66px;
  line-height: 66px;
  border-bottom: 1px solid #eeeeee;
  padding: 0 24px;
  box-sizing: border-box;
  color: #0e204d;
  font-size: 16px;
}
.scicontent .right .title img{
  margin-right: 5px;
  vertical-align: middle;
}
.scicontent .linebox a{
  font-size: 14px;
  position: relative;
  padding-left: 14px;
  height: 34px;
  line-height: 34px;
  width: 234px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
}
.scicontent .linebox{
  padding: 12px 24px;
  box-sizing: border-box;
}
.scicontent .linebox a::before{
  position: absolute;
  content: '';
  left: 0;
  top: 43%;
  width: 4px;
  height: 4px;
  background: #37d2c6;
  border-radius: 50%;
}
.scicontent .linebox a:hover{
  color: #7d8088;
}
.scicontent .el-pagination{
  margin: 40px 0;
  text-align: center;
}
.el-pager li.active{
  color: #fff;
  cursor: default;
  background: #21cdc0!important;
  border-radius: 4px;
}
.el-pager li:hover {
  color: #21cdc0!important;
}
.el-pagination button:hover {
  color: #21cdc0!important;
}
/* è¯¦æƒ…é¡µ */
.sciDteailPage{
  color: #0e204d;
  font-size: 14px;
  margin: 0 auto 40px;
}
.sciDteail .title1{
  margin: 45px auto 20px;
  text-align: center;
  font-size: 24px;
  width: 800px;
  /*overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;*/
  word-break: normal;
}
.sciDteail .desk{
  color:#aeb0b7;
  font-size: 12px;
  text-align: center;
  margin-bottom: 32px;
}
.sciDteail p{
  line-height: 36px;
}
.sciDteail .left img{
  max-width: 100%;
  display: block;
  margin: 20px auto;
}
.sciDteail .ptitle-bot{
  height: 100px;
  font-size: 14px;
}
.sciDteail .ptitle-bot a{
  color: #aeb0b7;
  width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sciDteail .ptitle-bot a:nth-child(2){
  text-align: right;
}
/* æˆåŠŸæ¡ˆä¾‹é¡µé¢ */
.successExample{
  color: #0e204d;
}
.successExample .sucbanner img{
  width: 100%;
}
.successCont .items{
  position: relative;
  width: 100%;
  border: 1px solid #e8e8e8;
  margin-top: 25px;
  background: #fff;
}
.successCont .items:last-child{
  margin-bottom: 30px;
}
.successExample .itemsbg{
  position: absolute;
  width: 100%;
  height: 330px;
}
.successExample .title{
  height: 58px;
  line-height: 58px;
  padding-left: 40px;
  position: relative;
  font-size: 16px;
  color: #0e204d;
  font-weight: bold;
  background: linear-gradient(to right,#f6f6f6 -4%,transparent 67%);
}
.successExample .title::before{
  position: absolute;
  width: 6px;
  height: 6px;
  content: '';
  left: 24px;
  top: 45%;
  background: #21cdc0;
  border-radius: 50%;
}
.successExample .items-box{
  width: 100%;
  height: 100%;
}
.successExample .items-top{
  background: linear-gradient(to right,#fff -4%,transparent 67%);
  padding: 0 40px;
  box-sizing: border-box;
}
.successExample .items-top div{
  padding: 28px 0 0; 
  box-sizing: border-box;
  flex-wrap: wrap;
  line-height: 25px;
}
.successExample .items-top div p{
  margin-right: 55px;
  font-size: 14px;
}
.successExample .secondTitle{
  padding: 30px 0 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.successExample .secondTitle2{
  padding-left: 20px;
  box-sizing: border-box;
}
.successExample .shortCommentbox{
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,#fff,transparent);
}
.successExample .shortComment {
  position: relative;
  width: 1120px;
  box-sizing: border-box;
  padding: 22px 50px;
  line-height: 30px;
  background: url(../imgs/pic_35.png) no-repeat 17px center #FFFFFF;
  background-size: 23px;
  border: 1px solid #EEEEEE;
  border-radius: 3px;
  margin: 0 auto;
}
.successExample .shortComment::after {
  content: '';
  display: block;
  width: 26px;
  height: 20px;
  background: url(../imgs/pic_36.png) no-repeat center;
  background-size: 24px;
  position: absolute;
  top: -9px;
  right: 15px;
}
.successExample .letterbox{
  padding: 0 20px;
  box-sizing: border-box;
}
.successExample .letterbox .letterli{
  position: relative;
}
.successExample .letterbox .letterli .img{
  width: 276px;
  height: 182px;
  border-radius: 4px;
  margin: 0 20px 30px;
}
.successExample .letterbox .meng{
  opacity: 0;
  position: absolute;
  left: 20px;
  top: 0;
  width: 276px;
  height: 182px;
  border-radius: 4px;
  background: rgba(14, 32, 77, .4);
  justify-content: center;
  cursor: pointer;
}
.successExample .letterbox .letterli:hover .meng{
  opacity: 1;
  transition: all .5s;
}
.bigimgMask{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.bigimgMask .content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.bigimgMask .img{
  max-width: calc(100vw - 410px);
  max-height: calc(100vh - 250px);
}
.bigimgMask .closes{
  position: absolute;
  right: -19px;
  top: -29px;
  cursor: pointer;
}

/* æˆåŠŸæ¡ˆä¾‹ */
.successCasePage .sucbanner img{
  width: 100%;
}
.successCasePage .successCaseCont{
  margin-bottom: 65px;
}
.successCasePage .successCaseCont .title{
  margin-top: 55px;
  width: 100%;
  height: 58px;
  line-height: 58px;
  border-radius: 30px;
  color: #0e204d;
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(to right,#efefef 72%,#fff);
  padding: 0 14px;
  box-sizing: border-box;
}
.successCasePage .successCaseCont .title i{
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background: #0e204d;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  margin-right: 14px;
}
.successCaseCont a{
  font-size: 14px;
  color: #21cdc0;
  margin: 24px 0 0 12px;
  display: inline-block;
}
.successCaseCont a:hover{
  text-decoration: underline;
}
.successCaseCont .secondTitle{
  font-size: 14px;
  color: #0e204d;
  margin: 24px 0 0 12px;
}
.successCasePage .successCaseCont .line1 {
  color: #0e204d;
  font-size: 16px;
  font-weight: bold;
  margin: 25px 0 12px;
}
.successCasePage .successCaseCont .line2 {
  font-size: 14px;
  color: #0e204d;
  line-height: 25px;
}
.successCasePage .successCaseCont img{
  margin: 0 0 -23px -25px;
}

.top-search{
	margin-top: 30px;
	padding: 40px 170px 30px;
	box-sizing: border-box;
	background-color: #fff;
}</pre></body></html>