.class_more{
    width: 1.8rem;
    height: 0.5rem;
    background: #0042B4;
    border-radius: 0.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.42rem;
    font-family: SC-RegularC;
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.class_more::before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #D00000;
    border-radius: 0.05rem;
    transition: all 0.5s;
}
.class_more i{
    width: 0.21rem;
    height: 0.21rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/class_more.png) center no-repeat;
    background-size: cover;
    position: relative;
}
.class_more i::before{
    content: "";
    position: absolute;
    width: 0.21rem;
    height: 0.21rem;
    background: url(../img/class_more2.png) center no-repeat;
    background-size: cover;
    left: -0.05rem;
    transition: all 0.5s;
}
.class_more i img{
    width: 0.07rem;
    height: 0.07rem;
    object-fit: contain;
    transform: rotate(90deg);
}
.class_more:hover::before{
    width: 100% !important;
    height: 100% !important;
    z-index: -1;
}
.class_more:hover{
    background: none !important;
    border: 0.01rem solid #D00000 !important;
}
.class_more:hover i::before{
    left: 0.05rem;
}
.class_more:hover i img{
    filter: brightness(4) invert(1);
}




.class_name{
    text-align: center;
    font-family: SC-Bold;
    font-weight: bold;
    font-size: 0.45rem;
    color: #000000;
}


/* 定期公告 */
.list{
    padding: 1.2rem 0;
    box-sizing: border-box;
}
.list .list_body{
    margin-top: 1rem;
}
.list .list_tiem{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.59rem 0.39rem;
    box-sizing: border-box;
    background: #F7F7F7;
    border-radius: 0.1rem;
    margin-bottom: 0.45rem;
}
.list .list_tiem:last-child{
    margin-bottom: 0;
}
.list .list_tiem .list_txt{
    width: calc(100% - 2rem);
}
.list .list_tiem .list_txt .list_title{
    margin-bottom: 0.22rem;
    font-family: SC-Bold;
    font-weight: bold;
    font-size: 0.22rem;
    color: #000000;
}
.list .list_tiem .list_txt .list_key{
    display: flex;
    align-items: center;
    column-gap: 0.75rem;
}
.list .list_tiem .list_txt .list_key span{
    display: block;
    font-family: SC-Light;
    font-weight: 300;
    font-size: 0.18rem;
    color: #606060;
    position: relative;
}
.list .list_tiem .list_txt .list_key span::before{
    content: "";
    position: absolute;
    width: 0.01rem;
    height: 0.11rem;
    background: #606060;
    top: 50%;
    left: -0.375rem;
    transform: translateY(-50%);
}
.list .list_tiem .list_txt .list_key span:first-child:before{
    display: none;
}
.list .list_tiem:hover{
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.25rem 0.01rem rgba(0,0,0,0.1);
}
.list .list_tiem:hover .list_title{
    color: #0042B4;
}






/* 投资者热线 */
.phone_list{
    margin-top: 1rem;
    position: relative;
}
.phone_list .phone_item{
    margin-bottom: 0.8rem;
}
.phone_list .phone_item:last-child{
    margin-bottom: 0;
}
.phone_list .phone_item .phone_title{
    line-height: 1;
    font-family: SC-Bold;
    font-weight: bold;
    font-size: 0.25rem;
    color: #000000;
    margin-bottom: 0.4rem;
}
.phone_list .phone_item .phone_txt{
    display: flex;
    align-items: center;
}
.phone_list .phone_item .phone_key{
    max-width: 6.34rem;
    width: 50%;
    display: flex;
    align-items: center;
    font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.2rem;
    color: #5C5C5C;
}
.phone_list .phone_item .phone_key img{
    width: 0.2rem;
    height: 0.2rem;
    object-fit: contain;
    margin-right: 0.08rem;
}
.phone_list .phone_item .phone_key span{
    color: #000000;
}
.phone_list .phone_bg{
    position: absolute;
    width: 6.73rem;
    height: 4.25rem;
    bottom: -0.1rem;
    right: -0.75rem;
}




/* 相关链接 */
.link_body{
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
}
.link_body .link_item{
    width: calc(33.33% - 0.3334rem);
    height: 2.94rem;
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.25rem 0.01rem rgba(0,0,0,0.03);
    border-radius: 0.15rem;
    border: 0.01rem solid #EFEFEF;
    overflow: hidden;
}
.link_body .link_item .link_logo{
    width: 100%;
    height: 2.13rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.link_body .link_item .link_logo img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.link_body .link_item .link_title{
    margin-top: 0.08rem;
    text-align: center;
    font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.25rem;
    color: #5C5C5C;
}
.link_body .link_item:hover{
    box-shadow: 0rem 0rem 0.25rem 0.01rem rgba(0,0,0,0.1);
    border: 0.01rem solid #D00100;
}
.link_body .link_item:hover .link_title{
    color: #D00000;
}



@media screen and (max-width: 1043px) {
    .list{
        padding: 60px 0;
    }
    
    .class_name{
        font-size: 24px;
    }
    
    .class_more{
        font-size: 14px;
        width: auto;
        height: auto;
        padding: 10px 20px;
        column-gap: 20px;
    }
    .class_more i{
        width: 20px;
        height: 20px;
    }
    .class_more i img{
        width: 7px;
        height: 7px;
    }
    
    
    
    
    .list .list_body{
        margin-top: 40px;
    }
    .list .list_tiem{
        padding: 30px;
        flex-wrap: wrap;
        row-gap: 10px;
        margin-bottom: 20px;
    }
    .list .list_tiem .list_txt{
        width: 100%;
    }
    .list .list_tiem .list_txt .list_title{
        font-size: 18px;
        margin-bottom: 15px;
    }
    .list .list_tiem .list_txt .list_key{
        column-gap: 30px;
    }
    .list .list_tiem .list_txt .list_key span{
        font-size: 14px;
    }
    .list .list_tiem .list_txt .list_key span::before{
        width: 1px;
        height: 11px;
        left: -15px;
    }
    
    
    
    
    /*投资者热线*/
    .phone_list{
        margin-top: 40px;
    }
    .phone_list .phone_item{
        margin-bottom: 40px;
    }
    .phone_list .phone_item .phone_title{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .phone_list .phone_item .phone_txt{
        flex-wrap: wrap;
        row-gap: 15px;
    }
    .phone_list .phone_item .phone_key{
        font-size: 15px;
        max-width: 100%;
        width: 100%;
        align-items: baseline;
    }
    .phone_list .phone_item .phone_key img{
        width: 20px;
        height: 20px;
        margin-right: 8px;
        position: relative;
        top: 5px;
    }
    .phone_list .phone_item .phone_key span{
        max-width: calc(100% - 80px);
        display: block;
    }
    
    
    
    /*相关链接*/
    .link_body{
        margin-top: 40px;
        column-gap: 15px;
        row-gap: 15px;
    }
    .link_body .link_item{
        width: calc(33.33% - 10px);
        border-radius: 10px;
        height: auto;
        padding-bottom: 20px;
    }
    .link_body .link_item .link_logo{
        height: 0;
        padding-bottom: 44%;
        position: relative;
    }
    .link_body .link_item .link_logo img{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .link_body .link_item .link_title{
        margin-top: 8px;
        font-size: 18px;
    }
}

@media screen and (max-width: 769px) {
    .list .list_tiem{
        padding: 20px;
    }
    .list .list_tiem .list_txt .list_title{
        overflow: visible;
        white-space: normal;
    }
    .list .list_tiem .list_txt .list_key{
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 5px;
    }
    .list .list_tiem .list_txt .list_key span{
        min-width: calc(50% - 10px);
    }
    .list .list_tiem .list_txt .list_key span::before{
        display: none;
    }
    
    
    .phone_list .phone_item .phone_title{
        font-size: 18px;
    }
    
    
    /*相关链接*/
    .link_body .link_item{
        width: 100%;
    }
}
