/************Õ¾µã¹«ÓÃÒ³Ãæ*************/
/*ºá·ùÍ¼*/
.banner {
    height: 425px;
}
.banner-s {
    height: 300px;
}
.banner-content {   
    height: 100%; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
    padding-bottom: 10px;
}

.banner-content h2 {
    display: block;
    color: #fff;
    font-size: 36px;
    font-weight: 600;
}

.banner-content .text {
    margin-top: 20px;
    color: #FEFFFF;
    font-size: 20px;
    line-height: 36px;
} 
 
.banner-content .link {
    display: block;
    margin-top: 30px;
}

.banner-content .link a {
    display: inline-block;
    height: 45px;
    line-height: 45px;
    padding: 0 40px;
    font-size: 18px;
    color: #fff; 
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    background: transparent;
    border: 1px solid #fff;
    transition: all .2s; 
}

.banner-content .link a:hover {
    color: #144ecf;
    background: #fff;
}