/* 第一屏幕 */
.first-screen{
    width: 1920px;
    height: 440px;
    margin: 0 auto;
}
.first-screen img{
    display: block;
    width: 100%;
    height: 100%;
}

/* 第二屏幕 */
.second-screen{
    width: 1500px;
    margin: 58px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.second-screen-right-label{
    width: 100%;
    height: 26px;
    border-left: 4px solid #53A2F0;
    font-size: 26px;
    font-weight: 400;
    color: #838383;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 26px;
}
.second-screen-right-label span:last-child{
    color: #242424;
}
.second-screen-right-label span:first-child{
    margin-left: 5px;
}

.second-screen-content{
    width:1495px;
}
.second-screen-content p, .second-screen-content div{
    display: block;
    width: 100%;
}
.second-screen-content .second-screen-content-title{
    font-size: 36px;
    font-weight: 400;
    color: #242424;
    text-align: center;
    line-height: 140px;
}
.second-screen-content-time{
    text-align: right;
    font-size: 20px;
    font-weight: 400;
    color: #838383;
    margin-bottom: 63px;
}
.second-screen-content-text{
    font-size: 20px;
    font-weight: 400;
    color: #838383;
    line-height: 40px;
    text-indent: 44px;
    letter-spacing: 2px;
    padding-bottom: 48px;
}

.second-screen-content img{
    display: block;
    width: 963px;
    height: 436px;
    margin: 0 auto;
    margin-bottom: 48px;
}

.second-screen-right-next{
    width: 100%;
    text-align: right;
    font-size: 20px;
    font-weight: 400;
    text-decoration: underline;
    color: #53A2F0;
    cursor: pointer;
    margin-top: 50px;
    margin-bottom: 95px;
}