.top-bar {

    background-color: #ab2a84;
    height: 150px;
   /* padding: 0 130px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image:url(../images/top.png);
    background-size:100%;
    background-position:center;
    background-repeat:no-repeat;
  
}
 .contents{
   display: flex;
    justify-content: space-between;
    align-items: center;
   width:90rem;
   margin:0 auto;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-left img {
   /* width: 56px;*/
    height: 75px;
    margin-right: 16px;
}

.top-bar-title {
    display: flex;
    flex-direction: column;
}

.top-bar-title h1 {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    margin: 0;
}

.top-bar-title p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    margin: 4px 0 0 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
}

.top-bar-right .date {
    margin-right: 30px;
    opacity: 0.9;
}

.top-bar-right .links {
    margin-right: 20px;
}

.top-bar-right .links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    opacity: 0.9;
}

.top-bar-right .links a:hover {
    text-decoration: underline;
}

.top-bar-right .links span {
    color: rgba(255, 255, 255, 0.6);
}

.top-bar-right .search-icon {
    cursor: pointer;
    padding: 8px;
}

.top-bar-right .search-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.navbar {
    background-color: #ab2a84;
   /* padding: 0 80px;*/
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
   /* border-bottom: 1px solid #eee;*/
  border-top: 2px solid #c1a15e;
 z-index: 100;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
     min-width:140px;
    text-align:center;
}

.nav-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 0px;
    background-color: #ddd;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 11px 24px;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu li a:hover {
    color: #fff;
    background-color: rgba(255,255,255,.1);
    transition:all 300ms ease;
}

.nav-menu li.active a {
    color: #fff;
    background-color: #ab2a84;
}

.nav-menu li.has-submenu {
    position: relative;
}

.nav-menu li.has-submenu .arrow {
    font-size: 8px;
    margin-left: 5px;
    vertical-align: middle;
    color: #fff;
}

.bannerbg{width:100%;background-image: linear-gradient(to bottom, #ab2a84, #fff);}

.submenu {
    display: none;
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 2px solid #ab2a84;
    padding-top: 5px;
}

.submenu li {
    border-right: none !important;
    border-left: none !important;
}

.submenu li a {
    padding: 12px 20px;
    font-size: 13px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background-color: #ab2a84;
    color: #fff;

}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #ab2a84;
    transform: scale(1.2);
}

.news-section {
    padding: 40px 80px;
    background-color: #fff;
}

.news-carousel-container {
    position: relative;
    width: 100%;
   /* height: 380px;*/
    overflow: hidden;
  /*  border-radius: 8px;*/
}

.news-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.news-carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.news-carousel-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
   transition: transform 0.5s ease;
}

.news-caption {
    background-color: #ab2a84;
    padding: 10px 20px;
    border-top: 3px solid #ab2a84;
}

.news-caption .caption-date {
    display: inline-block;
    background-color: #ab2a84;
    color: #fff;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}

.news-caption h3 {
    display: inline;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.news-caption h3  a:hover{color:#fff}

.news-caption p {
    font-size: 1rem;
    color: #fff;
    margin: 10px 0 0 0;
    line-height: 1.6;
}

.news-container {
    display: flex;
    gap: 30px;
align-items:flex-end;
}

.news-carousel-container {
    width: 50%;
    position: relative;
}

.news-list {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.news-item {
    display: flex;
    padding:16px  15px;
  background-color: #f9f9f9;
  /* background-image:url(../images/li-bg1.png);*/
background-repeat:no-repeat;
background.postion:center;
background-size:100%;
    transition: all 0.3s ease;
cursor: pointer;
border-radius:15px;
}

.news-item:hover {
   background-color: #f0e6f0;
 /*  background-image:url(../images/li-bg2.png);*/
background-repeat:no-repeat;
background.postion:center;
background-size:100%;
    transform: translateX(-55px);
}

.news-item .date-badge {
 /*   background-color: #ab2a84;*/
    color: #ab2a84;
    padding: 8px 12px;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
border-right:2px solid #ab2a84;
}
.news-item:hover .date-badge {
 /*   background-color: #ab2a84;*/

    padding: 8px 12px;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
border-right:2px solid #fff;
}



.news-item .date-badge .day {
    font-size: 18px;
    font-weight: bold;
    display: block;
}

.news-item .date-badge .month {
    font-size: 10px;
    display: block;
}

.news-item .news-content {
    flex: 1;
}

.news-item .news-content h4 {
    font-size: 1rem;
    color: #333;
    margin: 0 0 8px 0;
/*height:35x;*/
/*width:400px;*/
font-weight:500;
}

.news-item .news-content h4  a:hover{}

.news-item:hover  .news-content h4 {
  color:#ab2a84;
}

.news-item .news-content p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.news-carousel-indicators {
    position: absolute;
    bottom: 60px;
    right: 30px;
    display: flex;
    gap: 18px;
}

.news-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-indicator.active {
    background-color: #ab2a84;
    transform: scale(1.2);
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding-bottom: 15px;
  /*  border-bottom: 2px solid #ab2a84; */
}

.section-title img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.section-title h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.section-title span {
    font-size: 1.3rem;
    color: #999;
    margin-left: 10px;
}

.section-title a {
    margin-left: auto;
    font-size: 1rem;
    color: #ab2a84;
    text-decoration: none;
}

.notices-section {
    padding: 40px 80px;
   padding-bottom:120px;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.notices-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
   /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 120'%3E%3Cpath fill='%23ddd' fill-opacity='0.3' d='M0,60 C100,40 200,80 300,60 C400,40 500,80 600,60 C700,40 800,80 800,60 L800,120 L0,120 Z'%3E%3C/path%3E%3C/svg%3E");*/
 background-image: url(../images/bg2.png);
    background-repeat: no-repeat;
    background-size: 70%;
   background-position:center;
}

.notices-container {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
justify-content:space-around;
align-items:stretch;
}

.notice-column {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.notice-column .column-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
   /* padding-bottom: 15px;*/
    border-bottom: 1px dashed #ddd;
}

.notice-column .column-title img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.notice-column .column-title .title-text {
    display: flex;
    flex-direction: center;
}

.notice-column .column-title h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.notice-column .column-title span {
    font-size: 1rem;
    color: #999;
    margin-top: 2px;
    margin-left:10px;
}

.notice-column .column-title .more-link {
    margin-left: auto;
    font-size: 1rem;
    color: #ab2a84;
    text-decoration: none;
    height: 57px;
    border-bottom: 2px solid #ab2a84;
    line-height: 57px;
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-list li {
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
   /* display: flex;*/
    align-items: center;
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-list li .date-tag {
 /*   background-color: #ab2a84;*/
    color: #333;
    font-size: 1rem;
dispplay:inline-block;
float:right;
    padding: 3px 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.notice-list li a {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.notice-list li a:hover {
    color: #ab2a84;
}

.systems-section {
    padding: 40px 80px;
    background-color: #fff;
}

.systems-container {
    display: flex;
    gap: 30px;
}

.system-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.system-card img {
    width: 30%
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.system-card:hover img {
    transform: scale(1.1);
}

.system-card .system-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(171, 42, 132, 0.9), rgba(171, 42, 132, 0.6));
    padding: 20px;
    color: #fff;
}

.system-card .system-info h4 {
    font-size: 16px;
    margin: 0 0 8px 0;
}

.system-card .system-info p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

.footer {
    background-color: #ab2a84;
    padding: 40px 80px;
    color: #fff;
background-image: url(../images/footerbg1.png);
    background-position: 70% 30%;
    background-size: 30%;
    background-repeat:no-repeat;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
}

.footer-left {
    width: 30%;
}

.footer-left img {
    
    height: 60px;
    margin-bottom: 15px;
}

.footer-left h3 {
    font-size: 18px;
    margin: 0 0 8px 0;
}

.footer-left p {
    font-size: 0.9rem;
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.footer-left .contact {
    font-size: 12px;
    line-height: 2;
    opacity: 0.9;
}

.footer-center {
    width: 22%;
    margin-left:30px;
}

.footer-center h4 {
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    font-weight:700;
}

.footer-center ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-center ul li {
    margin-bottom: 10px;
}

.footer-center ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-center ul li a:hover {
    opacity: 1;
}

.footer-right {
    width: 30%;
}

.footer-right h4 {
    font-size: 14px;
    margin: 0 0 15px 0;
}

.qrcode-container {
    display: flex;
    gap: 30px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item .qrcode {
    width: 100px;
    height: 100px;
    background-color: #fff;
    margin-bottom: 10px;
}

.qrcode-item p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    opacity: 0.7;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ab2a84;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 100;
}

.scroll-top:hover {
    background-color: #8a2270;
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
 .bg1{
    opacity: 1;
    transform: translateY(0);
background:#eee;
    background-image:url(../images/bg1.png);
    background-repeat:no-repeat;
   background-position:right;
   background-size:35%;
}
  .bg2{
   background:#f0f7fd;
}

.wp_search .search{background:url(../images/search.png)  no-repeat  left !important;  }
