/* 项目相关css */

/* 占位置的空div 
解决多列flex布局——space-between(around)最后一行不能左对齐 
n - 1 
*/

.emptydiv {
    width: 270px;
    height: 0;
}

.tabs_select {
    color: rgba(47, 119, 213, 0.7);
}

.one {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.img-div {
    width: 268px;
    height: 220px;
    padding-top: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: white;
    line-height: 200px;
}

.item-logo {
    width: 180px;
    padding-left: 45px;
}

.top {
    color: #333;
    padding: 25px 10px 0 10px;
    text-align: center;
    font-size: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hid {
    font-size: 14px;
    height: 0;
    line-height: 26px;
    margin-top: 10px;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
}

.project_list_div {
    position: relative;
    width: 1200px;
    min-width: 1200px;
    min-height: 450px;
    padding-bottom: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    display: -webkit-flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
    cursor: pointer;
}
.project_list_div li {
    color: #fff;
    width: 270px;
    height: 320px;
    margin-top: 20px;
    transition: all 1.5s ease 0s;
    background-color: rgb(249, 249, 249);
    border: 1px solid rgb(239, 239, 239);
    box-sizing: border-box;
}

.project_list_div li:hover {
    /**背景颜色变化时间*/
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -ms-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
}

.list-item-bg:hover {
    /* background: rgba(20, 105, 255, 1); */
    background: #3366CC;
    transition: all 1.5s ease 0s;
}

.list-item-bg {
    color: #333;
}

.list-item-bg:hover .top, .hid {
    color: #fff;
}

/* empty box */

.empty-box {
    width: 980px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-box img {
    width: 300px;
}

/* --------------------------------------基金列表样式-------------------------------------- */

.org_list_div {
    width: 1200px;
    min-height: 450px;
    padding-bottom: 100px;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    cursor: pointer;
}

.org_list_div li {
    color: #333;
    width: 270px;
    height: 320px;
    margin-top: 20px;
    transition: all 1.5s ease 0s;
    border: 1px solid rgb(239, 239, 239);
    box-sizing: border-box;
}

.org-img-div {
    width: 200px;
    height: 220px;
    padding-top: 20px;
    margin: 0 auto;
    background-color: white;
    box-sizing: border-box;
    text-align: center;
    line-height: 200px;
}

.org-name {
    width: 268px;
    height: 80px;
    margin-top: 18px;
    line-height: 80px;
    font-size: 20px;
    color: #333;
    text-align: center;
    padding: 0 10px;
    background-color: rgb(249, 249, 249);
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.org-content {
    color: white;
    width: 250px;
    margin: 0 auto;
    padding-top: 5px;
    line-height: 29px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
}

.org-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.org-item-logo {
    width: 180px;
}

.face, .back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 1.5s;
}

.face {
    transform: rotateY(0deg);
}

.back {
    background-color: #666699;
    transform: rotateY(-180deg);
}

.org-item:hover .back {
    transform: rotateY(0deg);
}

.org-item:hover .face {
    transform: rotateY(180deg);
}

/* --------------------------------------发起单位-------------------------------------- */

.partners_box {
    min-width: 1130px;
    margin: 0 auto;
}

.partners_div {
    width: 580px;
    margin: 50px auto;
}

.partners_item {
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100px;
    margin-bottom: 30px;
}

.partners_title_div {
    font-size: 16px;
    color: #333333;
    margin-left: 30px;
}

.partners_title_div p {
    margin-top: 5px;
    font-size: 13px;
    color: rgba(47, 119, 213, 0.7);
}

.partners_img_div {
    width: 290px;
    height: 100px;
}

.partners_img_div img {
    height: 100px;
}