h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
ul,li{
    list-style: none;
    margin: 0;
    padding: 0;
}
button{
    border: none;
    background: none;
}
a{
    cursor: pointer;
    text-decoration: none!important;
    transition: all 0.5s ease;
}
.hover_Main{
    transition: all 0.5s ease;
}
.hover_Main > i{
    transition: all 0.5s ease;
}
.hover_Main:hover{
    background: rgb(21,76,126);
}
.hover_Main:hover a{
    color: white;
}
.hover_Main:hover i{
    color: white;
}
.hover_Main_2{
    transition: all 0.5s ease;
}
.hover_Main_2 > i{
    transition: all 0.5s ease;
}
.hover_Main_2:hover{
    color: rgba(240, 133, 25, 1);
}
.hover_Main_2:hover i{
    color: rgba(240, 133, 25, 1);
}
/* 按钮 */
.button_Main{
    font-size: 18px;
    font-family: Roboto-Bold, Roboto;
    font-weight: bold;
    background: rgb(21,76,126);
    border-radius: 2px;
    color: #FFFFFF;
    padding: 10px 20px;
}
.button_Main > i{
    font-weight: normal;
    margin-left: 8px;
    font-size: 20px;
}
.button_Main:hover {
    color: #FFFFFF;
    background: rgba(240, 133, 25, 1);
}
/* 图片动画 */
.img_Animation > img{
    transition: all 0.5s ease;
    width: 100%;
}
.img_Animation:hover img{
    transform: scale(1.02);
}
/* 限制一行 */
.limit_Line{
    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}
/* 限制二行 */
.limit_Line_2{
    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}
/* 限制三行 */
.limit_Line_3{
    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}
/* 限制三行 */
.limit_Line_4{
    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}
.display_Block{
    display: block;
}
.display_None{
    display: none;
}
/* 移动端样式 */
@media (max-width: 992px) {
    .display_Block{
        display: none;
    }
    .display_None{
        display: block;
    }
    .button_Main{
        font-size: 14px;
        padding: 5px 10px;
    }
    .button_Main > i{
        font-size: 16px;
    }
}
