body {
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	color: #1f2329;
	font-size: 14px;
	line-height: 1.5;
	background-color: #F8F9FA;
}

a,
a:focus,
a:hover {
	cursor: pointer;
	color: inherit;
	text-decoration: none;
	outline: none !important;
}

ol,
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}


.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: none;
	border-color: transparent;
	box-shadow: none;
}


li {
	list-style-type: none;
}

.fs-12 {
	font-size: 13px;
}

.fs-14 {
	font-size: 14px;
}

.fs-16 {
	font-size: 16px;
}



.cursor-pointer {
	cursor: pointer;
  }


#navbar.nav-masthead .nav-link::after, 
.nav-masthead .nav-link::after {
	background-color: #FF0000;
}

/* Only use white line on transparent background */
#navbar.bg-transparent .nav-masthead .nav-link::after {
	background-color: #fff;
}

/* Breadcrumb Styles */
.breadcrumb-container {
    display: flex;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: inherit;
}

.breadcrumb-item a:hover {
    color: #006CFC;
    text-decoration: underline;
}

/* News Show Styles */
.article-detail,
.latest-news {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.article-content h2 {
    text-align: center;
    margin: 30px 0 20px;
    font-size: 22px;
    font-weight: 600;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF0000;
}

.news-title-sm {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
}

/* News List Styles */
.news-list {
    padding: 50px 0;
}

/* ---- Category Pills ---- */
.category-filters-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
}

.category-pill {
    display: inline-block;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.category-pill:hover {
    color: #E03131;
    border-color: #E03131;
    background: #fff5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224,49,49,0.10);
}

.category-pill.active {
    color: #fff;
    background: #E03131;
    border-color: #E03131;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(224,49,49,0.25);
}

/* ---- News List Row Item ---- */
.news-list-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 30px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.news-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: #ffe0e0;
}

/* Cover */
.news-list-cover {
    flex-shrink: 0;
    width: 280px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.news-list-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-list-item:hover .news-list-cover img {
    transform: scale(1.06);
}

/* Body */
.news-list-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-list-title {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-list-title a {
    color: #1a1f2e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-title a:hover {
    color: #E03131;
}

/* Tags */
.news-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.news-list-tag {
    display: inline-block;
    padding: 3px 12px;
    font-size: 12px;
    color: #E03131;
    background: #fff0f0;
    border-radius: 20px;
    font-weight: 500;
}

/* Description */
.news-list-desc {
    font-size: 14px;
    color: #8b919e;
    line-height: 1.7;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta */
.news-list-meta {
    font-size: 13px;
    color: #b0b8c4;
    display: flex;
    align-items: center;
    gap: 16px;
}

.news-list-meta i {
    font-size: 15px;
    vertical-align: -1px;
}

/* Date Block */
.news-list-date {
    flex-shrink: 0;
    width: 90px;
    text-align: center;
    padding: 18px 0;
    border-left: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.date-month-day {
    font-size: 28px;
    font-weight: 700;
    color: rgba(26, 31, 46, 0.6);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.date-year {
    font-size: 14px;
    color: #b0b8c4;
    margin-top: 4px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .news-list-item {
        flex-wrap: wrap;
        padding: 16px;
        gap: 14px;
    }
    .news-list-cover {
        width: 100%;
        height: 190px;
    }
    .news-list-date {
        width: 100%;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding: 12px 0 0;
        flex-direction: row;
        gap: 8px;
    }
    .date-month-day {
        font-size: 20px;
    }
    .category-pill {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Custom font size for date day */
.fs-36 {
    font-size: 38px;
    color: #000000;
    font-weight: bold;
}

.fs-20 {
    font-size: 20px;
}

.hover\:text-primary:hover {
    color: #006CFC !important;
}

.nav-masthead .nav-link {
	position: relative;
	color: #171A1D;
	font-size: 14px;
	text-decoration: none;
	font-weight: normal;
	transition: all .4s ease 0s;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
	color: #FF0000;
}

.nav-masthead .nav-link+.nav-link {
	margin-left: 2rem;
}

.nav-masthead .active {
	color: #FF0000;
	font-weight: 600;
}

.nav-masthead .nav-link:hover::after,
.nav-masthead .nav-link.active::after {
	transform: translateX(-50%) scaleX(1);
}

.nav-masthead .nav-link::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 20px;
	height: 2px;
	transition: transform 0.3s ease, background-color 0.3s ease;
	transform-origin: center;
}

#navbar {
	/* Transition removed as requested */
}

#navbar.nav-bg-light, .nav-bg-light {
	background: #fff!important;
	-webkit-box-shadow: inset 0 -1px 0 0 rgba(17, 31, 44, .05);
    box-shadow: inset 0 -1px 0 0 rgba(17, 31, 44, .05);
}

#navbar.text-dark {
	color: #1f2329 ;
}

#navbar a {
	transition: color 0.3s;
}

#navbar.text-dark .nav-link {
	color: #1f2329;
}

#navbar .nav-link {
	color: #000 !important;
}

#navbar.text-light .nav-link {
	color: #fff !important;
}

/* body padding-top removed to eliminate gap between header and index-video-wrap */
.news-banner {
	margin-top: 70px;
}

.index-video-wrap {
	margin-top: 70px; /* Adjusted to match header height */
	position: relative;
	overflow: hidden;
	text-align: center;
	background-size: 100% 100%;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	/* Set aspect ratio based on banner image: 3840x1200 = 16:5 */
	aspect-ratio: 16 / 5;
}

.index-video-wrap .video-react {
	/* position:relative */
}

.index-video-wrap video {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

@media screen and (min-width:1368px) {
	.index-video-wrap video {
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: 50% 60%;
		object-position: 50% 60%
	}
}

@media screen and (max-width:1220px) {
	.index-video-wrap video {
		-o-object-fit: cover;
		object-fit: cover
	}
}

.index-video-wrap .video-react-video {
	position: absolute;
	top: 0;
	left: 0;
}

.index-video-wrap .carousel {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.index-video-wrap .carousel-inner, 
.index-video-wrap .carousel-item {
	width: 100%;
	height: 100%;
}

.index-video-wrap .carousel-item img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1220px) {
	.index-video-wrap .carousel-item img {
		object-position: center;
	}
}

video {
	outline: none;
	width: 100%;
	-o-object-fit: fill;
	object-fit: fill
}

@media screen and (min-width:1368px) {
	video {
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: 50% 60%;
		object-position: 50% 60%
	}
}

@media screen and (max-width:1220px) {
	video {
		-o-object-fit: cover;
		object-fit: cover
	}
}

.home-wrapper {
	padding-top: 75px;
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	background: rgba(0, 18, 252, .2);
}

.home-wrapper .container,
.home-wrapper .row {
	height: 60px;
}

.slogan-subtitle {
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 5px;
	text-align: center;
	margin: 0 0 16px;
	font-style: normal;
	font-weight: 400;
	color: #fff;
}

.slogan-title {
	font-size: 42px;
	color: #fff;
	font-weight: 600;
	line-height: 72px;
}

@media (min-width: 1200px) {
    .slogan-subtitle {
        font-size: 24px;
        line-height: 32px;
    }

    .slogan-title {
        font-size: 56px;
        line-height: 80px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .slogan-subtitle {
        font-size: 22px;
        line-height: 30px;
    }

    .slogan-title {
        font-size: 60px;
        line-height: 75px;
    }
}


.system-wrapper {
	height: 560px;
	width: 100%;
	min-width: 1200px;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #faf9f5;
}

.plan-wrapper {
	height: 460px;
	width: 100%;
	min-width: 1200px;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/index-bg-01.png);
}

.digital-wrapper {
	height: 180px;
	width: 100%;
	min-width: 1200px;
	position: relative;
	color: #fff;
}

.digital-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/index-bg-02.png);
	opacity: 0.75;
	z-index: -1;
}

.culture-wrapper {
	height: 488px;
	width: 100%;
	min-width: 1200px;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/bg-about-2.png);
	color: #fff;
	opacity: 0.7;
}

.banner{
	height: 420px;
    width: 100%;
    min-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-position: 50% center;
    background-size: cover;
}

.class-image {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 2px solid #FFF;
	background: linear-gradient(90deg, #EFF5FF 0%, #F7F9FE 100%);
}

.card-header img{
	width: 52px;
}

.swiper-service {
	width: 100%;
	height: 618px; 
}

.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%; 
	background-size: 100%; 
	background-position: center; 
	background-repeat: no-repeat; 
}

.history-swiper-pagination {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	margin-top: 36px;
	padding: 0 50px;
	color: rgba(52,112,255,.5)
}

.history-swiper-pagination:after {
	position: absolute;
	top: 41px;
	content: "";
	width: 100%;
	height: 2px;
	background: rgba(52,112,255,.1);
	z-index: 0
}

.history-swiper-pagination .year {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 1
}

.history-swiper-pagination .dot {
	width: 12px;
	height: 12px;
	margin-top: 6px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #d6e2ff
}

.history-swiper-pagination .swiper-pagination-bullet {
	height: auto;
	background: none
}

.history-swiper-pagination-active {
	color: #006CFC
}

.history-swiper-pagination-active .dot {
	width: 16px;
	height: 16px;
	margin-top: 5px;
	background: #006CFC;
	border: 4px solid #d6e2ff
}

.history__info {
	position: relative;
	padding: 18px 14px 38px
}

.history__info .history-swiper {
	position: relative;
	overflow: hidden;
	padding: 18px
}

.history__info .history-swiper-wrapper {
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: -o-transform;
	-moz-transition-property: transform,-moz-transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform,-moz-transform,-o-transform;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-transition-duration: .3s;
	-moz-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s
}

.history__info .history__item {
	flex-direction: column;
	width: 396px;
	height: 198px;
	padding: 28px;
	margin-right: 24px;
	background: #f7f8fb;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px
}

.history__info .history__item .history__year {
	display: flex;
	width: 100%;
	margin-bottom: 20px;
	color: rgba(52,112,255,.3);
	font-size: 36px;
	font-weight: 500
}

.history__info .history__item .history__content {
	width: 100%;
	display: flex;
	justify-content: left;
	color: #1a1a1a
}

.history__info .history__item .history__content-item:not(:last-child) {
	margin-bottom: 10px
}

.history__info .history-swiper-button-next,.history__info .history-swiper-button-prev {
	position: absolute;
	top: -webkit-calc(50% - 16px);
	top: -moz-calc(50% - 16px);
	top: calc(50% - 16px);
	width: 32px;
	height: 32px
}

.history__info .history-swiper-button-next:after,.history__info .history-swiper-button-prev:after {
	display: none
}

.history__info .swiper-slide-active {
	-webkit-box-shadow: 0 2px 16px 0 rgba(52,112,255,.52);
	-moz-box-shadow: 0 2px 16px 0 rgba(52,112,255,.52);
	box-shadow: 0 2px 16px 0 rgba(52,112,255,.52);
	background-color: #006CFC
}

.history__info .swiper-slide-active .history__year {
	color: hsla(0,0%,100%,.4)
}

.history__info .swiper-slide-active .history__content {
	color: #fff
}

.fixed-size-li {
    width: 180px;  
    display: flex;
    justify-content: center;
    align-items: center; 
	padding: 15px 20px;
	border: 1px solid #eee;
  }
  .fixed-size-li img {
	display: block;
    width: 72px; 
	height: 72px;
  }


.article-content {
    font-size: 16px;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 20px;
    text-indent: 2em;
    color: #374151;
}

.article-content b,
.article-content strong {
    font-weight: 700;
    color: #1a1f2e;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 28px 0 16px;
    line-height: 1.8;
    color: #1a1f2e;
}

.article-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 24px 0 12px;
    line-height: 1.8;
    color: #1a1f2e;
}