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

/* 第二屏幕 */
.second-screen{
    width: 1300px;
    padding-bottom: 64px;
    margin: 58px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.second-screen-left{
    width: 226px;
    height: 212px;
    background: #F5F5F5;
}
.second-screen-left span{
    display: flex;
    width: 100%;
    height: 71px;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 400;
    color: #242424;
    cursor: pointer;
}
.second-screen-left .second-screen-left-selected{
    color: #53A2F0;
}

.second-screen-right{
    width: 1426px;
    height: 100%;
}

.second-screen-right-label{
    width: 330px;
    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-right-content a{
    padding: 0 20px;
    display: block;
    width: 100%;
}
.second-screen-right-content a:hover{
    box-shadow: 0px 0px 5px 5px #f6f6f6;
}

.second-screen-title{
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 2px solid #f6f6f6;
    padding: 0 20px;
}
.second-screen-title>div, .second-screen-item>div{
    width: 20%;
    height: 80px;
    text-align: center;
    font-size: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.second-screen-title>div{
    display: flex;
    justify-content: center;
    align-items: center;
}

.second-screen-item>div{
    color: #555;
    padding: 26px 0;
    box-sizing: border-box;
}

.second-screen-item{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 2px solid #f6f6f6;
}
.second-screen-title>div:first-child, .second-screen-item div:first-child{
    width: 30%;
    justify-content: flex-start;
    text-align: left;
}


.second-screen-right-page{
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 23px;
}
.second-screen-right-page li{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border: 2px solid #DFDFDF;
    margin-right: 10px;
    font-size: 20px;
    font-weight: 400;
    color: #838383;
    cursor: pointer;
}

.second-screen-right-page .second-screen-right-page-selected{
    background: #53A2F0;
    color: #FFF;
    border-color: #53A2F0;
}
