.Box1 {
    padding: 50px 0 0 0;
    background-image: url('../img/new/bj.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
}

.Box1 .new-hot .slick-list {
    height: fit-content;
}

.Box1 .new-hot .slick-prev,
.Box1 .new-hot .slick-next {
    display: none !important;
}

.Box1 .custom-dots {
    margin-top: 45px;
    text-align: center;
}

.Box1 .custom-dots li {
    display: inline-block;
    margin: 0 5px;
}

.Box1 .custom-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    text-indent: -9999px;
    cursor: pointer;
}



.Box1 .custom-dots .slick-active button {
    background: #004C90;
}

.Box1 .new-hot .box {
    /* background-color: red; */
    display: flex;
}

.Box1 .new-hot .box .img {
    padding-right: 30px;
}

.Box1 .new-hot .box .imgs {
    position: relative;
    height: 0;
    padding: 0;
    padding-top: 370px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #0000002a;
}

.Box1 .new-hot .box .imgs img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Box1 .new-hot .box .text {
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.Box1 .new-hot .box .text .time {
    font-size: 14px;
    color: #545454;
    margin: 0;
}

.Box1 .new-hot .box .text .time span {
    color: #D71619;
    margin-right: 5px;
}

.Box1 .new-hot .box .text .tit {
    color: #333;
    font-weight: 600;
    font-size: 24px;
    margin: 16px 0 26px 0;
    transition: 0.4s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

    margin: 20px 0 10px 0;
}

.Box1 .new-hot .box .text:hover .tit {
    color: #004C90;

}

.Box1 .new-hot .box .text .desc {
    line-height: 1.7;
    color: #1a1a1a;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 50px;
    color: #666;
}

.Box1 .new-hot .box .text .rbtn {
    text-decoration: none;
    height: 40px;
    padding: 0 30px;
    border: 1px solid #004C90;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #444;
    transition: 0.3s;
}

.Box1 .new-hot .box .text .rbtn:hover {
    color: white;
    background-color: #004C90;
} 
.Box2{
    padding-bottom: 50px;
}
.Box2 ul {
    padding: 0;
    margin: 0;
    padding-bottom: 30px;
}

.Box2 ul li {
    list-style: none;
    border-bottom: 1px solid #0000001a;
    position: relative;
    overflow: hidden;
}
.Box2 ul li::before{
    position: absolute;
    width: 100%;
    height: 1px;
    content: '';
    background-color: #004C90;
    bottom: 0;
    left: -100%;
    transition: 0.6s;
}
.Box2 ul li:hover::before{
    left: 0;
}

.Box2 ul li a {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
}

.Box2 ul li .txt {
    width: calc(100% - 430px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 0;
}

.Box2 ul li .txt .time {
    color: #666;
    font-size: 14px;
}

.Box2 ul li .txt .time span {
    color: #004C90;
    margin-right: 5px;
}

.Box2 ul li .txt h6 {
    font-size: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 90%;
    color: #333;
    transition: 0.4s;
}
.Box2 ul li:hover .txt h6{
    color: #004C90; 
} 

.Box2 ul li .txt p.nr {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 95%;
    color: #666;
} 
.Box2 ul li .img {
    width: 400px;
    position: relative;
    overflow: hidden;
}

.Box2 ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s;
}

.Box2 ul li:hover .img img{
    transform: translate(-50%, -50%) scale(1.1);
}
.Box2 .page{
    display: flex;
    align-items: center; 
}
.Box2 .page li{
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: 0.4s;
}
.Box2 .page li a{
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;   
    color: #000;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}
.Box2 .page li.thisclass{
    background-color: #004C90;
    color: #fff;
}

.Box2 .page li:hover{
    background-color: #004C90;
    color: #fff;
}
.Box2 .page li:hover a{
    color: #fff;
}