/* 头部菜单栏 */
.top-header {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0px -1px 0px #f0f0f0;
    backdrop-filter: blur(2px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}
.header-main {
    width: 1200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* position: relative; */
    margin: 0 auto;
}
.header-main .logo {
    width: 190px;
    height: 31px;
    overflow: hidden;
    display: inline-block;
}
.header-main .logo h1{
    width: 100%;
    height: 100%;
}
.header-main .logo img {
    width: auto;
    height: 100%;
}
.header-main .header-nav {
    flex: 1;
    display: flex;
    margin: 0 30px;
    align-items: center;
}
.header-main .header-nav .header-nav-item {
    /* position: relative; */
    margin-right: 24px;
}
.header-main .header-nav .header-nav-item:last-child {
    margin-right: 0;
}
.header-main .header-nav-item .name {
    height: 60px;
    line-height: 60px;
    font-weight: 400;
    font-size: 14px;
    color: #2f2f2f;
    position: relative;
    white-space: nowrap;
}

.header-main .header-us {
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor:pointer;
}
.header-main .header-us p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    padding: 0 8px;
    color: #8c8c8c;
    position: relative;
}
.header-main .header-us p:nth-child(2) {
    border-left: 1px solid #8c8c8c;
    border-right: 1px solid #8c8c8c;
}
.header-main .header-us .active {
    color: #2f2f2f;
}
/* 产品首页下拉栏 */
.header-product {
    width: 1200px;
    height: 530px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: auto;
    background: #ffffff;
    display: none;
}
.header-product .header-product-nav {
    overflow: hidden;
    position: relative;
    padding: 8px 36px 0 48px;
    box-shadow: 0px 3px 20px 4px rgba(0, 0, 0, 0.12),
    0px 6px 20px rgba(0, 0, 0, 0.12), 0px 9px 28px 0 rgba(0, 0, 0, 0.12);
    z-index: 8;
}
.header-nav .header-nav-item.active p.name::before {
    content: "";
    width: 0;
    height: 0;
    /* 隐藏三角 */
    border: solid;
    border-width: 0 15px 14px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -24px;
    margin: auto;
    z-index: 8;

    opacity: 0;
    transition: .5s;
}
.header-nav .name::before {
    content: "";
    width: 0;
    height: 0;
    /* 隐藏三角 */
    border: solid;
    border-width: 0 15px 14px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 9999;
    opacity: 0;
    transition: .5s;
}

/**阴影 */
.header-nav .name::after {
    content: "";
    width: 0;
    height: 0;
    /* 隐藏三角 */
    display: none;
    border: solid;
    border-width: 0 16px 15px;
    border-color: transparent transparent rgba(0, 0, 0, 0.12) transparent;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 9998;

    opacity: 0;
    transition: .5s;
}
.header-product .header-product-nav .header-product-nav-item {
    padding-bottom: 27px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.header-product .header-product-nav-item .title {
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    color: #262626;
    overflow: hidden;
    margin: 16px 7px 20px;
}
.header-product .header-product-nav-item ul {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.header-product .header-product-nav-item li {
    flex: 0 0 25%;
    display: flex;
    overflow: hidden;
}
.header-product .header-product-nav-item li p {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-right: 8px;
}
.header-product li p span {
    display: block;
}
.header-product li p .name {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #262626;
    overflow: hidden;
    padding-right: 8px;
}
.header-product .header-product-nav-item li .img {
    width: 40px;
    display: block;
    margin-right: 10px;
}
.header-product li p .labels {
    display: flex;
    flex-wrap: wrap;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #898989;
    margin-top: -4px;
    max-height: 42px;
    margin-bottom: 16px;
}
.header-product li p .labels label {
    min-width: 48px;
    display: inline-block;
    margin-right: 16px;
    margin-top: 4px;
}
.header-product li:last-child p .labels {
    margin-bottom: 0;
}
.header-product li p .intro {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #898989;
    overflow: hidden;
}
.header-product .header-service-nav-item ul {
    margin-top: -34px;
}
.header-product .header-service-nav-item ul li {
    margin-top: 34px;
}
/* 联系我们 */
.header-aboutus {
    width: auto;
    height: auto;
    position: absolute;
    top: 41px;
    left: -30px;
    margin: auto;
    background: #ffffff;
    /* filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.1)); */
    padding: 28px 35px;
    z-index: 999;
    margin-top: 18px;
    box-shadow: 0 3px 20px 4px rgba(0, 0, 0, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.12), 0 9px 28px 10px rgba(0, 0, 0, 0.12);
    /**下拉 */
    transition: transform 0ms cubic-bezier(0.48, 0.33, 0.24, 0.95) 0ms, opacity;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
}
.header-aboutus ul {
    overflow: hidden;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #666666;
}
.header-main .header-nav .header-nav-item a{
    display: block;
}
.header-aboutus ul li {
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 36px;
}
.header-aboutus ul li:last-child {
    margin-bottom: 0;
} /**下拉展示 */
.onshow {
    display: flex;
}
.header-main .header-nav-item:hover .header-aboutus {
    margin-top: 18px;
    transition: transform 150ms cubic-bezier(0.48, 0.33, 0.24, 0.95) 0ms, opacity;
    visibility: visible;
    opacity: 1;
    z-index: 10;
    transform: translateY(0px);
}
/**动态效果 */
.header-main .header-nav-item .name:hover {
    color: #4385ff;
}
.header-home .product-nav-name-info .product-nav-name:hover {
    cursor: pointer;
    color: #4385ff;
}
.header-home .ability-nav-name-info .ability-nav-name:hover {
    cursor: pointer;
    color: #4385ff;
}
.header-main .header-nav .header-nav-item .header-product-nav-item .name:hover {
    color: #4385ff;
}
.header-aboutus ul li a:hover {
    cursor: pointer;
    color: #4385ff !important;
}
.header-main .header-us .login:hover {
    cursor: pointer;
    color: #4385ff;
}
.header-main .header-nav-item:hover .name::before,
.header-main .header-nav-item:hover .name::after {
    opacity: 1;
    transition: .5s;
}

/*隐藏无下拉时候的箭头*/
.header-main .header-nav-item.header-nav-item-nopull:hover .name::before,
.header-main .header-nav-item.header-nav-item-nopull:hover .name::after {
    display: none;
}

/*尾部导航*/
.footer {
    background-color: #354159;
    padding: 56px 0 51px;
}
.footer .box {
    width: 1200px;

    margin: 0 auto;
}
.footer .top {
    padding-bottom: 51.28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 43px;
    display: flex;
}
.footer .top .top-info{
    margin-right: 116px;
}
.footer .top .name {
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}
.footer .top ul {
    width: 220px;
    display: flex;
    flex-wrap: wrap;
}
.footer .top ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin:0  24.05px 12px 0;
    color: rgba(255, 255, 255, 0.8);
}
.footer .top ul li a{
    display: block;
    color: inherit;
}
.footer .top .email {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}
.footer .top .email a{
    display: inline-block;
    color: inherit;
}
.footer .top .address {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
}
.footer .bottom img {
    width: 143.47px;
    /*height: 40px;*/
    margin-right: 47.79px;
}

.footer .bottom .info {
    display: flex;
    align-items: center;
    margin-bottom: 27px;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.85);
}
.footer .bottom {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
}
.footer .bottom .txt span{
    margin-right: 18px;
}
.footer .bottom .txt span a{
    color: inherit;
}
/*了解天润*/
.investor-profile-page {
    /*padding-top: 60px;*/
}
.investor-profile-page .block {
    height: 0;
}
/**banner */
.investor-profile-page .banner {
    width: 100%;
    height: 520px;
    overflow: hidden;

    /*background: url("../../images/investor/bg_profile.png") no-repeat top left;*/
    background-size: 100% 100%;
    position: relative;
}
.investor-profile-page .banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.investor-profile-page .banner .title {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 36px;
    line-height: 42px;
    color: #ffffff;
    margin-top: 120px;
}
.investor-profile-page .banner .tags {
    width: 100%;
    height: 47px;
    line-height: 47px;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
    margin: 16px 0 23px 0;
}
.investor-profile-page .banner .detail {
    width: 999px;
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.investor-profile-page .banner .from {
    width: 999px;
    font-weight: 500;
    font-size: 22px;
    line-height: 24px;
    text-align: right;
    color: #ffffff;
    margin: 0 auto;
}
/**profile-box */
.investor-profile-page .profile-box {
    width: 1131.83px;
    min-height: 451.96px;
    padding: 35px 34px;
    display: flex;
    position: relative;
    background: #ffffff;
    box-shadow: 0px 12px 48px 16px rgba(0, 16, 71, 0.03),
    0px 6px 16px -8px rgba(0, 0, 0, 0.08), 0px 9px 28px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin: 40px auto;
}
.investor-profile-page .profile-box .left .title {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    position: relative;
    padding-left: 15px;
    margin-bottom: 18.67px;
}
.investor-profile-page .profile-box .left .title::before {
    content: "";
    display: block;
    width: 4.67px;
    height: 24.58px;
    background: #4385ff;
    position: absolute;
    top: 6px;
    left: 0;
}
.investor-profile-page .profile-box .left .detail {
    width: 629.57px;
    height: 300px;
    overflow: auto;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 47px;
}
.investor-profile-page .profile-box .left .detail::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.investor-profile-page .profile-box .left .goal {
    display: flex;
    align-items: center;
    /*position: absolute;*/
    /*bottom: 27.15px;*/
}
.investor-profile-page .profile-box .left .goal .item {
    display: flex;
    align-items: center;
}
.investor-profile-page .profile-box .left .goal .left img {
    width: 32.18px;
    height: 41.3px;
    margin-right: 20px;
}

.investor-profile-page .profile-box .left .goal .name {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #4385ff;
}
.investor-profile-page .profile-box .left .goal .sub-title {
    display: inline-block;
    height: 28px;
    width: 250px;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 1px;
    color: #595959;
}
.investor-profile-page .profile-box .left .goal .left .name {
    color: #4385ff;
}
.investor-profile-page .profile-box .left .goal .right .name {
    color: #0f8254;
}
.investor-profile-page .profile-box .left .goal .right img {
    width: 44.55px;
    height: 44.55px;
    margin-right: 15.78px;
}
.investor-profile-page .profile-box .right img {
    border-radius: 10px;
    margin-left: 48.74px;
}
.investor-profile-page .profile-box .right-img {
    width: 453.52px;
    height: 451.96px;
    margin-left: 36px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 10px;
}
.investor-profile-page .profile-box .right-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.investor-profile-page .rule-box {
    width: 100%;
    padding-bottom: 124px;
    /* height: 537px; */
    overflow: hidden;
    /*margin-top: 60px;*/
    background: url("../../images/investor/bg_profile-rule.png") no-repeat center right;
    background-size: cover;
    position: relative;
}
.investor-profile-page .rule-box .box {
    width: 1151px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.investor-profile-page .rule-box .left{
    width: 499px;
}

.investor-profile-page .rule-box .title {
    display: block;
    text-align: center;
    margin: 60px auto 41px;
    font-weight: 400;
    font-size: 30px;
    line-height: 45px;
    color: #262626;
}
.investor-profile-page .rule-box .intro {
    width: 499px;
    height: 84px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #595959;
    margin-bottom: 32px;
}
.investor-profile-page .rule-box .list-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #4385ff;
    margin-bottom: 9px;
}
.investor-profile-page .rule-box ul li {
    font-weight: 400;
    font-size: 14px;
    color: #595959;
    /*margin-bottom: 8px;*/
    position: relative;
    height: 42px;
    line-height: 42px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(140, 140, 140, 0.2);
    align-items: center;
    padding-left: 10px;
}
.investor-profile-page .rule-box .left ul li::before {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    left: 0;
    top: 20px;
    border-radius: 50%;
    background: #d9d9d9;
}
.investor-profile-page .rule-box .left .remarks {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #595959;
    margin-top: 8px;
}
.investor-profile-page .rule-box .right{
    flex: 1;
    overflow: hidden;
    margin-left: 90px;
}
.investor-profile-page .rule-box .right ul li:last-child {
    border: none;
}
.investor-profile-page .rule-box .right ul li .intro-name{
    display: block;
    flex: 1;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 16px;
}
.investor-profile-page .rule-box .right ul li .more {
    color: #4385ff;
    text-decoration: underline;
    display: inline-block;
}
.investor-profile-page .rule-box .right ul li::before {
    content: "";
    display: flex;
    position: absolute;
    background-image: url(../../images/investor/icon_arrow.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    top: 16px;
    width: 10px;
    height: 10px;
}
/**hover */
.investor-profile-page .rule-box .right ul li:hover {
    cursor: pointer;
    color: #4385ff;
}
/*.investor-profile-page .profile-box .left .goal .item img {*/
/*    transition: 0.5s;*/
/*    -webkit-transition: 0.5s;*/
/*}*/
/*.investor-profile-page .profile-box .left .goal .item:hover img {*/
/*    transform: rotateY(-180deg);*/
/*    transition: 0.5s;*/
/*    -webkit-transition: 0.5s;*/
/*}*/
.investor-profile-page .rule-box .right ul li .more {
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.investor-profile-page .rule-box .right ul li:hover .more {
    transform: translateX(-10px);
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.investor-profile-page .profile-box .right-img img {
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.investor-profile-page .profile-box .right-img img:hover {
    transform: scale(1.05);
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
