
/* 主体 */
.info{
    display: flex;
    width: 100%;
    height: 497px;
}
.photo{
    flex-grow: 1;
    background: url(../images/intro.jpg) no-repeat center center;
}
.photo .img{
    position: relative;
    float: right;
    width: 295px;
    height: 413px;
    margin: -30px 55px 0;
    background: #FFFFFF;
    z-index: 1;
}
.photo .img:before{
    content: '';
    position: absolute;
    top: 15px;
    left: 17px;
    width: 100%;
    height: 100%;
    background: var(--varColor);
    z-index: -1;
}
.photo img{
    width: 100%;
    height: 100%;
}
.text{
    width: 507px;
    min-width: 507px;
    padding-left: 30px;
    box-sizing: border-box;
}
.text h2{
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.2em;
    opacity: 0.2;
}
.text h3{
    font-size: 30px;
    font-weight: normal;
}
.text h4{
    font-size: 24px;
    margin-top: 1.5em;
}
.text h5{
    font-size: 16px;
    margin: 10px 0;
}
.intro p{
    color: #666;
    font-size: 16px;
    line-height: 1.75em;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
}
.text .more{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    font-size: 18px;
    color: var(--varColor);
    margin-top: 2.5em;
    border-radius: 25px;
    border: 1px solid #1F3554;
}
.text .more:hover{
    color: #fff;
    background: var(--varColor);
}
