
.n_xwdt .swiper a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.n_xwdt .swiper a .img-db {
    width: 100%;
    max-width: 45rem;
    height: auto;
    flex-shrink: 0;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 885/550;
}

.n_xwdt .swiper a .txt {
    width: 100%;
    max-width: 40rem;
    padding-bottom: 5rem;
}

.n_xwdt .swiper a .txt .time {
    display: flex;
    align-items: center;
    gap: .3rem;
    color: #5f6060;
    font-size: var(--f16);
    margin-bottom: 1rem;
    font-family: 'robm-font';
}

.n_xwdt .swiper a .txt .time i{
    font-size: var(--f22);
}

.n_xwdt .swiper a .txt h3 {
    font-size: var(--f24);
    line-height: 1.5;
    color: #000;
    height: calc(1em * 1.5 * 2);
}

.n_xwdt .swiper a .txt .line {
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,.1);
    margin: 1.5rem 0;
}

.n_xwdt .swiper a .txt p {
    font-size: var(--f16);
    line-height: 1.8;
    color: #414141;
    margin-bottom: 4rem;
    height: calc(1em * 1.8 * 2);
}

.n_xwdt .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	aspect-ratio: 1/1;
	width: 2.2rem;
	font-size: var(--f24);
	line-height: 1;
	background: #cad1db;
	color:#fff;
	border-radius: 50rem;
	
	transition: all .5s;
	
}
.n_xwdt a .icon i{
	transform: rotate(180deg);
	font-size: var(--f22);
}
.n_xwdt a:hover .icon{
	background: var(--themeColor);
	color: #fff;
}


.n_xwdt .swiper a .txt .pagination {
    margin-top: 6rem;
}

.n_xwdt .swiper .pagination {
    display: flex;
    gap: 10px;
    z-index: 10;
    position: absolute;
    left: 47rem;
    bottom: 2rem;
}

.n_xwdt .swiper .pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: transparent;
    opacity: 1;
    margin: 0 !important;
    position: relative;
    cursor: pointer;
}

.n_xwdt .swiper .pagination .bullet-placeholder {
    width: 100%;
    height: 100%;
    border: 3px solid #ccc;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
}

.n_xwdt .swiper .pagination .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    box-sizing: border-box;
}

.n_xwdt .swiper .pagination .progress-ring-circle {
    stroke: #00489d;
    stroke-width: 2;
    fill: transparent;
    stroke-dasharray: 28.3;
    stroke-dashoffset: 28.3;
    /*transition: stroke-dashoffset 4000ms linear !important;*/
    transition: none;
}

/*
.n_xwdt .pagination .swiper-pagination-bullet-active .progress-ring-circle {
    stroke-dashoffset: 0 !important;
}
*/

.n_xwdt .swiper .pagination .progress-ring {
    opacity: 0;
}

.n_xwdt .swiper .pagination .swiper-pagination-bullet-active .progress-ring {
    opacity: 1;
}

.n_xwdt .n_line {
    margin: 5rem 0;
}

.n_xwdt .ul {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 5rem 1.75rem;
}

.n_xwdt .ul li .img-db {
    width: 100%;
    height: auto;
    aspect-ratio: 515/320;
    border-radius: .9375rem;
    overflow: hidden;
    margin-bottom: 1.875rem;
}

.n_xwdt .ul li .txt .time {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #5f6060;
    font-size: var(--f16);
    margin-bottom: 1rem;
    font-family: 'robr-font';
}
.n_xwdt .ul li .txt .time i{
    font-size: var(--f17);
}

.n_xwdt .ul li .txt h3 {
    font-size: var(--f22);
    color: #000;
    font-weight: 400;
    font-family: 'pingfangm-font';
    height: calc(2 * 1em * 1.5);
}

.n_xwdt .ul li .txt .line {
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,.1);
    margin: 1.875rem 0;
}

.n_xwdt .ul li .txt .more {
    display: inline-block;
    padding: .6rem 2.1875rem;
    background-color: #cad1db;
    font-size: var(--f16);
    color: #fff;
    border-radius: 5rem;
    transition: all .5s ease;
}

.n_xwdt .ul li:hover .txt .more {
    background-color: var(--themeColor);
}


.n_line {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #d4d9e0;
    overflow: hidden;
}
.n_line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right,#d4d9e0,var(--themeColor));
    animation: moveRight 4s linear infinite
}

@keyframes moveRight {
    0% {
        left: -20%;
    }

    100% {
        left: 100%
    }
}

