body{
    background: #f7f7f7;
}

.navbar{
    background: linear-gradient(to right,#161e29,#02408b);
}
.banner-con{
    margin-top: 150px;
    margin-bottom:clamp(30px,4vw,80px) ;
}
.banner-con .left-right-con{
    gap: clamp(20px,5vw,100px);
}
.banner-con .left-right-con .left-con{
    flex: 1;
}
.banner-con .left-right-con .left-con .date{
    color: #808080;
}
.banner-con .left-right-con .left-con img{
    margin: 10px 0;
}

.banner-con .left-right-con .line{
    border-bottom: 1px solid #e2e2e2;
    margin: 30px 0;
}
.banner-con .left-right-con .left-con ul li a{
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #e2e2e2;
}
.banner-con .left-right-con .left-con ul li:nth-child(1) a:before{
    content: "";
    background: url(../images/arrow-left.png) no-repeat;
    width: 15px;
    height: 10px;
}
.banner-con .left-right-con .left-con ul li:nth-child(2) a:after{
    content: "";
    background: url(../images/arrow-left.png) no-repeat;
    width: 15px;
    height: 10px;
    transform: rotate(180deg);
}
.banner-con .left-right-con .left-con .page{
    gap: 15px;
}
.banner-con .left-right-con .right-con{
    max-width: 340px;
}
.banner-con .left-right-con .right-con ul{
    background: #ffffff;
}
.banner-con .left-right-con .right-con ul li{
    background: url(../images/posui-series.jpg) no-repeat;
    color: #ffffff;
    padding: 30px 20px;
    position: relative;
}
.banner-con .left-right-con .right-con ul li:not(:last-child):after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,#cccccc 0%, #cccccc 50%, transparent 50%);
    background-size: 8px 1px;
    bottom: 20px;
    left: 0;
}
.banner-con .left-right-con .right-con ul li h3{
    position: relative;
    display: flex;
    white-space: nowrap;
    align-items: center;
    gap: 10px;
}
.banner-con .left-right-con .right-con ul li h3:after{
    content: "";
    width: 100%;
    height: 1px;
    background:  linear-gradient(to right,#fdb825 0%,#fdb825 50%,transparent 50%);
    background-size: 8px 1px;
    display: block;
}
.banner-con .left-right-con .right-con ul li h3:before{
    content: "";
    background: url(../images/arrow-small.png);
    width: 8px;
    height: 11px;
    position: absolute;
    right: 0;
    top:9px;
}
.banner-con .left-right-con .right-con ul li img{
    margin: 20px auto;
}

.hot-dynamic-con{
    background: #ffffff;
}
.hot-dynamic-con .dynamic ul{
    gap: clamp(15px,2vw,30px);
}
.hot-dynamic-con .dynamic ul li{
    width: calc((100% - clamp(15px,2vw,30px) * 3) / 4);
}
.hot-dynamic-con .dynamic ul li .title-desc-more{
    padding: 20px;
}
.hot-dynamic-con .dynamic ul li .title-desc-more .title{
    font-size: 20px;
    line-height: inherit;
}
.hot-dynamic-con .dynamic ul li .title-desc-more .desc{
    color: #666666;
    line-height: 2;
    margin-bottom: 20px;
}
 .title-desc-more span{
    white-space: nowrap;
    position: relative;
    color: #02408b;
    padding-right: 15px;
    border-bottom: 1px solid #02408b;
    font-weight: bold;
}
 .title-desc-more span:after{
    content: "";
    background: url(../images/arrow-blue.png) no-repeat;
    width: 10px;
    height: 11px;
    position: absolute;
    top: 7px;
    right: 0;
}
.hot-dynamic-con .dynamic ul li .title-desc-more .date{
    color: #808080;
    margin-top: 20px;
}

@media (max-width:768px){
    .banner-con .left-right-con{
        flex-wrap: wrap;
    }
    .banner-con .left-right-con .left-con .page{
        flex-wrap: wrap;
    }
     .banner-con .left-right-con .left-con .page li{
        width: 100%;
     }
     .banner-con .left-right-con .right-con{
        max-width: 100%;
        width: 100%;
       
     }
     .banner-con .left-right-con .right-con ul li{
        display: flex;
        justify-content: space-between;
         gap: 20px;
     }
     .hot-dynamic-con .dynamic ul{
        flex-wrap: wrap;
     }
      .hot-dynamic-con .dynamic ul li{
        width: calc((100% - clamp(15px, 2vw, 30px)) / 2);
      }
      .hot-dynamic-con .dynamic ul li .title-desc-more{
        padding-left: 0;
        padding-right: 0;
      }
     
}

@media (max-width:500px){
    .banner-con .left-right-con .right-con ul li{
        flex-wrap: wrap;
    }
}