.banner1 { width:49%;}

.banner.banner1 .slick-dots li { width:10px; height:10px; margin:0 3px;}
.jxdt-box { width: 49%;}

.jxdt-box .listt li p {
    width:100%;}
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;}

.system-link {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    background-color: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;}

.system-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #2bb6b1;
    transform: scaleY(0);
    transition: transform 0.3s ease;}

.system-link:hover {
    background-color: #f1f5f9;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #1e293b;}

.system-link:hover::before {
    transform: scaleY(1);}

.link-text {
    font-size: 16px;}

.link-arrow {
    margin-left: auto;
    color: #999;
    font-size: 1.2rem;
    transition: transform 0.3s ease;}

.system-link:hover .link-arrow {
    transform: translateX(5px);
    color: #2bb6b1;}
