/*投资案例*/
.content {
    width: 1200px;
    margin: 0px auto 90px;
}
.case {

}
.case h3 {
    text-align: center;
    font-size: 30px;
    height: 30px;
    color: #a45c0f;
    margin-bottom: 60px;
}
 
.caseCon{
    width: 1200px;
    margin:0 auto;
}
.caseCon .caseName{
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    background: #fff6ec;
}
.caseCon .caseName:last-child{
    margin-bottom: 28px;
}
.caseTitle{
    width: 350px;
    background: #d7ad74;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}
.cooperator{
    flex:1;
    display: flex;
    align-items: center;
}
.caseTitle .icon {
  display: block;
  line-height: 105px;
  font-size: 110px!important;
  margin-bottom: 20px;
  color: #fff;
}
.caseTitle p{
    font-size: 30px;
    height: 30px;
    line-height: 30px;
}
.cooperator ul{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding: 30px 80px 10px;
}
.cooperator ul li{
    width: 230px;
    height: 80px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.cooperator ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cooperator ul li a img{
    opacity: 0.6;
}
.cooperator ul li a:hover img{
    opacity: 1;
}

/*弹窗*/
.myPop{ 
    width:100%; 
    height:100%; 
    position:fixed; 
    z-index:99999;
    display:none; 
}
.popBg{ 
    width:100%; 
    height:100%; 
    background:#000; 
    opacity:0.9; 
    filter:alpha(opacity=90); 
    position:absolute; 
    left:0; 
    top:0; 
    z-index:1; 
}
.popup{
    width:70vw; 
    position:absolute; 
    top: 50%;
    left: 0;
    right: 0;
    background:#fff;
    margin:auto;
    transform: translateY(-50%);
    z-index: 2;
}
.closeBtn{
    width: 36px;
    height: 36px;
    background: url(../images/nav/closebtn.png) no-repeat;
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
    z-index: 3;
}
/*.popup ul li{display: none;}*/
.infoBox{
    padding:50px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.infoBox .companyLogo{
    font-size: 0;
    margin-bottom: 45px;
}
.infoBox p{ 
    font-size: 18px; 
    color:#333; 
    line-height: 32px;
    text-align: justify;
    margin-bottom: 60px;
}
.infoBox a.linkMore{
    display: block;
    width: 260px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background:#cea975;
    color:#fff;
    font-size: 18px;
    border-radius: 20px;
}
@media (max-width: 1366px) {
    .content,.caseCon{
        width: 1000px;
    }
    .caseTitle{
        width: 250px;
    }
    .cooperator ul{
        padding: 30px 30px 10px;
    }
}