.portfolio-list.common-content{
  padding-left: 55px;
  padding-right: 55px;
}
.portfolio-detail h4 {
  font-size:20px
}
.portfolio-detail .item-list li,
.portfolio-detail p {
  font-size:16px;
}

.portfolio-detail p.outlink a {
  font-size: 13px;
}
/*=====*/
.team-banner{
  /*background: url(../images/img-6.jpg) no-repeat;*/
  background-size: cover;
}
.team-banner-view{
  position: relative;
  /* max-width: 1280px; */
}
.team-banner h2{
  font-size: 70px;
  position: absolute;
  top:30%;
  color: #fff;
  line-height: 120%;
  margin-bottom: 10px;
  text-transform: none;
}
.team-banner img{
  width: 100%;
  opacity: 0;
  max-height:600px;
}

.portfolio-list{
  margin: 0 auto;
  position: relative;
  padding-top:40px;
  padding-bottom: 40px;
}
.portfolio-list:before {
  content: '';
  display: table;
}
.portfolio-list:after {
  content: '';
  display: table;
  clear: both;
}
.portfolio-item{
  width:25%;
  float: left;
}
.portfolio-detail {
  background: #fff;
  overflow: hidden;
  clear: both;
  height: 0;
  padding: 0;
  opacity: 0;
  float: left;
  width: 100%;
}
.portfolio-detail.active {
  -webkit-animation: height0 ease 0.5s both;
  -o-animation: height0 ease 0.5s both;
  animation: height0 ease 0.5s both;
}
.portfolio-detail .column {
  width: 100%;
  overflow: hidden;
  transition: all .5s ease;
  padding:0 25px;
}
.portfolio-detail .column:first-of-type:after {
  content: '';
  display: block;
  width: 260px;
  height: 2px;
  margin: 10px 0 20px;
  clear: both;
  background: #c46e8d;
}
.portfolio-detail h4 {
  font-weight: bold;
  color: #093b5e;
  margin-bottom: 15px;
}
.portfolio-detail .item-list li {
  margin: 0;
  line-height: 150%;
  margin-bottom: 20px;
  color: #000000;
}
.portfolio-detail p {
  color: #000000;
  line-height: 2em;
  word-break: break-all;
}
.portfolio-detail p.outlink {
  text-align: right;
}
.portfolio-detail p.outlink a {
  margin-top:20px;
  line-height:24px;
  font-weight:600;
  transition:background-position 0.3s ease;
  background:url(../images/href-icon.png) no-repeat 90% center;
  background-size:auto 20px;
  color:#093b5e;
  text-transform:uppercase;
  padding-right:55px;
  display:inline-block
}
.portfolio-detail p.outlink a:hover {
  background-position:95% center
}
.portfolio-detail.active {
  -webkit-animation:height0 ease 0.5s both;
  -o-animation:height0 ease 0.5s both;
  animation:height0 ease 0.5s both;
}
@keyframes height0 {
  to {
      height:auto;
      padding:20px 0;
      opacity:1;
  }
}
.portfolio{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  background:rgb(0 0 0 / 40%);
}
.portfolio-box{
  width: 400px;
  height: 400px;  
  position:absolute;
  background: #fff;
  border-radius:15px;
  left:50%;
  top:50%;
  margin-left:-200px;
  margin-top:-200px;
  /* opacity: 0;
  transition: opacity .15s ease-out,z-index 0s ease .15s;
  transform: translate(-50%,-50%); */
}

.portfolio-box .column-logo {
  width: 100%;
  height: 30%;
  float: left;
  padding: 20px;
  margin: 0 auto;
  text-align:left;
  border-bottom: 1px solid rgb(30 30 30 / 20%);
}

.portfolio-box .column {
  width: 100%;
  height: 70%;
  overflow: hidden;
  transition: all .5s ease;
  padding:0 25px;
  position: relative;
}

.portfolio-logo {
  height:100%;
}

.portfolio-close{
  height: 30px;
  width: 30px;
  position: absolute;
  top:20px;
  right: 20px;
  cursor: pointer;
}
.portfolio-close i{
  background-color: #093b5e;
  position: absolute;
  left: 0;
  top:12px;
  height: 3px;
  width: 30px;
  background-color: #093b5e;
  transition: all 0.5s ease;
}
.portfolio-close i:nth-child(1) {
  transform: rotate(45deg);
}
.portfolio-close i:nth-child(2) {
  transform: rotate(-45deg);
}
.portfolio-box h4 {
  font-weight: bold;
  color: #000;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size:18px;
}

.portfolio-box p {
  font-size:15px;
  /* margin-bottom: 15px; */
  line-height: 35px;
  color: #545050;
  word-break: break-word;
}

.portfolio-box p.outlink {
  text-align: right;
  /* margin-bottom: 50px; */
  width: calc(100% - 50px);
  position: absolute;
  bottom:20px;
  left: 25px;
}
.portfolio-box p.outlink a {
  margin-top:20px;
  line-height:24px;
  /* transition:background-position 0.3s ease; */
  background:url(../images/href-icon.png) no-repeat right center;
  background-size:auto 20px;
  color:#545050;
  padding-right:23px;
  display:inline-block;
  font-weight: bold;
  font-size: 14px;
}

.hoverimg{
  margin:25px;
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: 0.8s all ease;
  box-shadow: 0 0 2px rgb(9 59 94 / 40%), inset 0 0 25px rgb(9 59 94 / 10%);
  /*-webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);*/
}
.hoverimg img{
  width: 100%;
  vertical-align: middle;
}
.hoverimg:hover{
  transform:scale(1.05);
  -webkit-filter:none;
  -moz-filter:none;
  -ms-filter:none;
  -o-filter:none;
  filter:none;
}
/* 搜索 */
.portfolio-top-bar {
  height:70px;
  /* width: 100%; */
  /* transition:margin-top 0.5s, padding 0.5s, height 0.5s;
  margin-top: -60px; */
}
.portfolio-top-view{
  height:70px;
  padding:10px 40px 0 10px;
  position:relative;
  /* max-width: 1280px; */
  margin:0 90px;

}
.portfolio-top-bar.fixed {
  position:fixed;
  z-index:10;
  /* padding:10px 0; */
  height:70px;
  margin-top:0;
  background:rgba(255, 255, 255, 0.9);
}
.portfolio-top-bar.fixed .select {
  visibility:hidden;
}
.portfolio-top-bar.fixed .search-portfolio {
  top:10px;
  border:none;
}
.portfolio-top-bar.fixed .search-portfolio input.fx-input {
  background:#F5F6F8;
}
.search-portfolio {
  /* position:absolute;
  right:0;
  top:30px; */
  float: right;
  width:200px;
  height:50px;
  border-bottom:1px solid #E1E4EB;
  transition:top 0.5s;
}
.search-portfolio input.fx-input {
  border:0;
  outline:none;
  color:#222;
  width:100%;
  height:100%;
  padding:4px 30px 4px 10px;
  box-sizing:border-box;
  background:#fff;
  transition:all 0.5s;
}
.search-portfolio input.search-btn {
  width:24px;
  height:24px;
  background:url(../images/search.svg) no-repeat center center;
  background-size:20px auto;
  position:absolute;
  top:50%;
  margin-top:-12px;
  right:10px;
  z-index:3;
  border:none;
  outline:none;
}
.search-portfolio label {
  color:#CECECE;
  font-size:0.813em;
  text-transform:uppercase;
  display:block;
  margin-bottom:10px;
}
.portfolio-top-bar.fixed .search-portfolio {
  top:10px;
  border:none;
}
.portfolio-top-bar.fixed .search-portfolio input.fx-input {
  background:#F5F6F8;
}

/* 企业弹窗 */
.company-mask{
  background: rgba(0,0,0,0.4);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  z-index: 99;
  display: none;
}
.company-content{
  position:absolute;
  /* margin-left:-25%;
  margin-top:-25%; */
  padding:30px;
  background: #fff;
  max-width:80%;
  min-width:30%;
  min-height: 30%;
  overflow-y: auto;
  border-radius:15px;
  left:50%;
  top:50%;
  opacity: 0;
  transition: opacity .15s ease-out,z-index 0s ease .15s;
  transform: translate(-50%,-50%);
}
.company-content p{
  font-size:14px;
  padding-bottom:10px;
  color:#093b5ec4;
}
.company-content p:last-child{
  padding-bottom: 0;
}
.company-content p.company-name{
  font-size:18px;
  color:#093b5e;
  font-weight: bold;
}
.company-href{
  text-align: right;
}
.company-content p a{
  color:#093b5ec4;
  background:url(../images/href-icon.png) no-repeat right center;
  background-size:auto 20px;
  padding-right:20px;
  font-weight: bold;
}
.company-content p a:hover{
  color:#c46e8d;
  cursor: pointer;

}
.bor-btm{
  display:block;
  width: 40%;
  height:2px;
  background:#c46e8d;
  margin-bottom:20px;
}
.company-content.active {
  /* display: block; */
  z-index: 105;
  opacity: 1;
  transition: opacity .2s ease-out;
}
.close-mask{
  z-index: 12;
  position: absolute;
  right: 3%;
  color: #fff;
  top: 30px;
  padding-right: 40px;
  text-transform: uppercase;
  font-size: 0.688em;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 23px;
  height: 30px;
  cursor: pointer;
}
.close-mask i{
  background-color: #093b5e;
  top: 10px;
  position: absolute;
  height:2px;
  width: 30px;
  background-color: #093b5e;
  transition: all 0.5s ease;
}
.close-mask i:nth-child(1) {
  transform: rotate(45deg);
  opacity: 1;
}
.close-mask  i:nth-child(2) {
  transform: rotate(-45deg);
  opacity: 1;
}

@media only screen and (min-width: 1000px) {
}
@media only screen and (max-width: 1660px) {
}
/* @media only screen and (max-width: 1400px) {}
@media only screen and (max-width: 1300px) {}
@media only screen and (max-width: 1100px) {}
@media only screen and (max-width: 1000px) {}
@media only screen and (max-width: 750px) {} */


@media screen and (max-width:1365px) {

}

@media screen and (max-width:1279px) {
  .portfolio-item {
    width:25%;
  }
}

@media screen and (max-width:1023px) {
}

@media screen and (max-width: 960px){
  .portfolio-box p {
    line-height: 30px;
  }
  .portfolio-list.common-content{
    padding-left: 40px;
    padding-right:40px;
  }
  .hoverimg{
    margin:10px;
  }
  .portfolio-detail .column {
    padding:0;
  }
  .team-banner h2{
    font-size: 60px;
  }
  .portfolio-item{
    width:50%;
  }
  .portfolio-box{
    width: 300px;
    margin-left:-150px;
  }

}

@media screen and (max-width: 767px) {
  .common-content {
    padding-left:15px;
    padding-right:15px;
  }
  .portfolio-list.common-content{
    padding-left: 10px;
    padding-right: 10px;
  }
  .team-banner h2{
    font-size: 50px;
  }
  .portfolio-item{
    width:50%;
  }

  .search-portfolio {
    top:5px;
  }
  .portfolio-detail{
    float:none;
  }
  .portfolio-close i{
    height:2px;
  }
}
@media screen and (max-width:480px) {
  .portfolio-list.common-content{
    padding-left: 10px;
    padding-right: 10px;
  }
  .team-banner h2{
    font-size: 30px;
  }
  .portfolio-list {
    padding-top:10px;
    padding-bottom:10px;
  }

  .search-portfolio {
    width:100%;
    clear:both;
    position:relative;
    top:5px;
}
  
}
@media screen and (max-width:320px) {
  .team-banner h2{
    font-size: 20px;
  }
  .portfolio-item{
    width:100%;
  }
  .hoverimg {
    margin: 5px;
  }
  
}
