a,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--bs-body-color);
}

a,
a::after,
a::before,
a:focus,
a:hover {
    text-decoration: none;
}

.navbar {
    height: 100px;
    box-shadow: 0 .5rem .5rem -.25rem hsla(216, 9%, 44%, .1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.is-stuck {
    background-color: var(--bs-body-bg);
}

.navbar .nav-item .nav-link,
.navbar .icoGroup .theme-switcher span,
.navbar .icoGroup .language-switcher span {
    color: var(--bs-body-bg);
}

.navbar.is-stuck .nav-item .nav-link,
.navbar.is-stuck .icoGroup span {
    color: var(--bs-nav-link-color);
}

.navbar .navbar-brand .logo {
    display: block;
}

.navbar.is-stuck .navbar-brand .logo {
    display: none;
}

.navbar .navbar-brand .logo1 {
    display: none;
}

.navbar.is-stuck .navbar-brand .logo1 {
    display: block;
}

/* 自定义样式去除汉堡按钮边框 */
.navbar .navbar-toggler {
    border: none !important;
    /* 使用!important以确保覆盖Bootstrap默认样式 */
    outline: none !important;
    /* 去除点击时的焦点边框 */
    box-shadow: none !important;
    /* 去除可能的阴影效果 */
}

.navbar .navbar-brand {
    align-items: center;
    display: inline-flex;
    font-weight: 600;
}

@media (max-width:768px) {
    .navbar .navbar-brand img {
        width: 200px;
    }
}

.navbar #navbarNav .dropdown-menu,
.icoGroup .dropdown-menu {
    line-height: 3rem;
}

@media (min-width:576px) {
    .navbar #navbarNav .dropdown-menu {
        border-style: outset;
        box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.3), 1px 1px 1px 0px rgba(0, 0, 0, 0.3);
        margin-top: 10px;
    }
}

.navbar .navbar-nav .nav-item {
    margin: 16px 18px;
}

@media (min-width:576px) {
    .navbar .navbar-nav .nav-item {
        position: relative;
        /* 支持伪元素定位 */
        transition: color 0.3s ease;
        /* 文字颜色渐变过渡 */
    }

    .navbar .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 100%;
        height: 2px;
        background-color: #008abc;
        opacity: 0;
        /* 初始状态：隐藏 */
        transition: opacity 0.3s ease;
    }

    .navbar .navbar-nav .nav-item:hover::after {
        opacity: 1;
        /* 鼠标悬停时显示横线 */
    }
}

.btn-secondary {
    --bs-btn-color: #333d4c;
    --bs-btn-bg: #eef1f6;
    --bs-btn-border-color: #eef1f6;
    --bs-btn-hover-color: #111827;
    --bs-btn-hover-bg: #e0e5eb;
    --bs-btn-hover-border-color: #e0e5eb;
    --bs-btn-active-color: #333d4c;
    --bs-btn-active-bg: #e0e5eb;
    --bs-btn-active-border-color: #e0e5eb;
    --bs-btn-disabled-color: #333d4c;
    --bs-btn-disabled-bg: #eef1f6;
    --bs-btn-disabled-border-color: #eef1f6;
}

[data-bs-theme="dark"] .btn-secondary:not([data-bs-theme="light"]) {
    --bs-btn-color: #e0e5eb;
    --bs-btn-bg: #333d4c;
    --bs-btn-border-color: #333d4c;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #4e5562;
    --bs-btn-hover-border-color: #4e5562;
    --bs-btn-active-color: #e0e5eb;
    --bs-btn-active-bg: #4e5562;
    --bs-btn-active-border-color: #4e5562;
    --bs-btn-disabled-color: #e0e5eb;
    --bs-btn-disabled-bg: #333d4c;
    --bs-btn-disabled-border-color: #333d4c;
}

/* [class*=" fi-"],
[class^=fi-] {
    display: inline-flex
}

a [class*=" fi-"]:not(.animate-target),
a [class^=fi-]:not(.animate-target),
button [class*=" fi-"]:not(.animate-target),
button [class^=fi-]:not(.animate-target) {
    transition: opacity .2s ease-in-out
}

a.active [class*=" fi-"]:not(.animate-target),
a.active [class^=fi-]:not(.animate-target),
a.show [class*=" fi-"]:not(.animate-target),
a.show [class^=fi-]:not(.animate-target),
a:focus-visible [class*=" fi-"]:not(.animate-target),
a:focus-visible [class^=fi-]:not(.animate-target),
a:hover [class*=" fi-"]:not(.animate-target),
a:hover [class^=fi-]:not(.animate-target),
button.active [class*=" fi-"]:not(.animate-target),
button.active [class^=fi-]:not(.animate-target),
button.show [class*=" fi-"]:not(.animate-target),
button.show [class^=fi-]:not(.animate-target),
button:focus-visible [class*=" fi-"]:not(.animate-target),
button:focus-visible [class^=fi-]:not(.animate-target),
button:hover [class*=" fi-"]:not(.animate-target),
button:hover [class^=fi-]:not(.animate-target) {
    opacity: 1 !important
} */


.animate-shake:focus-visible .animate-target,
.animate-shake:hover .animate-target {
    animation: shake .8s
}

@keyframes shake {
    0% {
        transform: scaleX(1)
    }

    20% {
        transform: scale3d(.9, .9, .9) rotate(-5deg)
    }

    50%,
    70%,
    90% {
        transform: scale3d(1.25, 1.25, 1.25) rotate(5deg)
    }

    60%,
    80% {
        transform: scale3d(1.25, 1.25, 1.25) rotate(-5deg)
    }

    to {
        transform: scaleX(1)
    }
}

.animate-pulse:focus-visible .animate-target,
.animate-pulse:hover .animate-target {
    animation: pulse .9s
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    14% {
        transform: scale(1.25)
    }

    28% {
        transform: scale(1)
    }

    42% {
        transform: scale(1.25)
    }

    70% {
        transform: scale(1)
    }
}

.animate-rotate:focus-visible .animate-target,
.animate-rotate:hover .animate-target {
    animation: rotate .45s ease-in-out
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.animate-scale:focus-visible .animate-target,
.animate-scale:hover .animate-target {
    animation: scale .35s ease-in-out
}

@keyframes scale {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.2, 1.2, 1.2)
    }

    to {
        transform: scaleX(1)
    }
}

.animate-slide-end {
    overflow: hidden
}

.animate-slide-end:focus-visible .animate-target,
.animate-slide-end:hover .animate-target {
    animation: slide-end .3s forwards
}

.animate-slide-start {
    overflow: hidden
}

.animate-slide-start:focus-visible .animate-target,
.animate-slide-start:hover .animate-target {
    animation: slide-start .3s forwards
}

.animate-slide-up {
    overflow: hidden
}

.animate-slide-up:focus-visible .animate-target,
.animate-slide-up:hover .animate-target {
    animation: slide-up .3s forwards
}

.animate-slide-down {
    overflow: hidden
}

.animate-slide-down:focus-visible .animate-target,
.animate-slide-down:hover .animate-target {
    animation: slide-down .3s forwards
}

@keyframes slide-end {
    49% {
        transform: translate(100%)
    }

    50% {
        opacity: 0;
        transform: translate(-100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes slide-start {
    49% {
        transform: translate(-100%)
    }

    50% {
        opacity: 0;
        transform: translate(100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes slide-up {
    49% {
        transform: translateY(-100%)
    }

    50% {
        opacity: 0;
        transform: translateY(100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes slide-down {
    49% {
        transform: translateY(100%)
    }

    50% {
        opacity: 0;
        transform: translateY(-100%)
    }

    51% {
        opacity: 1
    }
}

.animate-blinking {
    animation: blinking 1s infinite
}

@keyframes blinking {
    0% {
        opacity: 0
    }
}

/* .animate-pulse .animate-target:after,
.animate-rotate .animate-target:after,
.animate-scale .animate-target:after,
.animate-shake .animate-target:after,
.animate-slide-down .animate-target:after,
.animate-slide-end .animate-target:after,
.animate-slide-start .animate-target:after,
.animate-slide-up .animate-target:after {
    display: none
} */

.animate-up-down {
    animation: move-up-down 5s linear infinite
}

@keyframes move-up-down {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-1rem)
    }
}

.animate-down-up {
    animation: move-down-up 5s linear infinite
}

@keyframes move-down-up {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(1rem)
    }
}

.animate-spin {
    animation: spin 10s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(180deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.animate-blink {
    animation: blink 1.75s linear infinite
}

@keyframes blink {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(.5rem)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.icoGroup {
    display: flex;
    gap: 1rem;
}

@media (max-width:576px) {
    .icoGroup {
        margin-right: 2rem;
        gap: 0;
    }
}

.dropdown-item .item-active-indicator {
    display: none;
}

.dropdown-item.active .item-active-indicator {
    display: inline-block;
    padding-left: .5rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--bs-info-border-subtle);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--bs-info-border-subtle);
}

/* 轮播图 */
.carousel-item .carouselTitle,
.carousel-item .carouselSummary {
    color: #fff;
    opacity: 0;
}

/* 更明显的文字飞入动画 */
@keyframes flyIn {
    0% {
        transform: translateX(200%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.carousel-item .carousel-caption {
    top: 45%;
    padding: 0;
    text-align: left;
}

/* 仅在激活状态下应用动画 */
.carousel-item.active .carouselTitle,
.carousel-item.active .carouselSummary {
    animation: flyIn 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .carousel-item .carousel-caption {
        text-align: center;
    }

    .carousel-item .carouselTitle {
        font-size: 1.5rem;
    }

    .carousel-item .carouselSummary {
        font-size: 1rem;
    }
}

/* about_area */
.about_area,
.news_area {
    background-color: #f3f9ff;
    padding: 80px 50px;
}

@media (max-width: 768px) {

    .about_area,
    .news_area {
        padding: 60px 0px 60px 0px;
    }
}

@keyframes move_y30 {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(30px);
    }
}

.singleImg_animate {
    animation: move_y30 5s linear 1s infinite alternate running;
}

.about_area .aboutPic {
    position: relative;
    text-align: center;
}

@media (min-width: 768px) {
    .about_area .aboutPic {
        left: -40px;
    }
}

.about_area .shapeItem {
    position: absolute;
    left: 0px;
    text-align: center;
    top: -45px;
    margin: auto;
    z-index: 0;
    content: "";
    transition: .5s;
}

.about_area .single_image {
    position: relative;
    z-index: 1;
}

.about_area .singleImg_animate img,
.about_area .single_image img {
    width: 80%;
}

.about_area .singleImg_rotate {
    width: 100%;
    position: absolute;
    z-index: 2;
    left: 0px;
    top: -56px;
}

@media (max-width: 768px) {
    .about_area .singleImg_rotate {
        width: 70%;
        left: 4rem;
        top: -1.5rem;
    }
}

@media (max-width: 768px) {
    .about_area .singleImg_rotate img {
        width: 100%;
    }
}

.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

#myCarousel .carousel-item {
    width: 100%;
    height: 100vh;
    max-height: 900px;
    min-height: 460px;
    background-color: #000;
}

@supports (height: 100dvh) {
    #myCarousel .carousel-item {
        height: 100dvh;
    }
}

#myCarousel .carousel-item video,
#myCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_area .about_left p {
    line-height: 2;
    text-indent: 2em;
    text-align: justify;
}

.about_btn {
    background: #008d00;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    padding: 12px 40px;
    text-align: center;
    margin-right: 20px;
    font-weight: 400;
}

.counter_area {
    background-image: url('../../images/counter.png');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-color: #008abc; */
    padding: 65px 0 65px;
}

.counter_area .counter-title {
    text-align: center;
    margin-bottom: 60px
}

.single_counter_inner {
    text-align: center;
    margin-bottom: 30px;
}

.counter_icon {
    margin-bottom: 68px;
    position: relative;
}

.counter_icon::before {
    position: absolute;
    left: 0;
    top: 103px;
    content: "";
    height: 50px;
    width: 0;
    margin: auto;
    right: 0;
    border: 1px dashed #fff;
}

.counter_icon i {
    font-size: 35px;
    height: 90px;
    width: 90px;
    text-align: center;
    line-height: 90px;
    color: #008abc;
    border-radius: 33% 66% 70% 30%/49% 62% 38% 51% !important;
    background: #F6F4FD;
    display: inline-block;
}

.countr_text h3 {
    display: inline;
}

.product_area {
    background-color: #c8dced;
}

@media (max-width:768px) {
    .product_area {
        padding: 0
    }
}

.product_area .product-title {
    text-align: center;
    padding-top: 60px
}

/* 标题动画：从底部弹出 */
.slide-title {
    opacity: 0;
    transform: translateY(200px);
    transition: all 0.5s ease;
}

/* 内容动画：渐进显示 */
.slide-content {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.2s;
}

/* 激活状态触发动画 */
.product_area .carousel-item.active .slide-title,
.product_area .carousel-item.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* 轮播项样式 */
.product_area .carousel-item {
    height: 430px;
}

@media (max-width:576px) {
    .product_area .carousel-item {
        height: 80vh;
        padding: 20px;
    }
}

.product_area .carousel-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 5rem;
    position: relative;
}

@media (max-width:768px) {
    .product_area .carousel-content {
        padding: 0;
    }
}

/* 新增flex布局属性 */
.product_area .carousel-details {
    flex: 1;
    min-width: 36%;
    /* padding: 5rem;
    padding-left: 10rem; */
    margin-right: 4%;
    z-index: 100;
}

.product_area .carousel-illustration {
    flex: 1;
    min-width: 40%;
    /* display: flex;*/
    justify-content: center;
    align-items: center;
}

.product_area .carousel-details a {
    padding: 10px 36px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product_area .carousel-details.active a {
    background: transparent;
}

.product_area .carousel-details a:hover {
    color: #333;
}

.product_area .carousel-details a:before {
    position: absolute;
    content: "";
    top: -1px;
    height: 107%;
    left: -25%;
    width: 0%;
    background: #fff;
    transform: skew(50deg);
    transition-duration: .6s;
    z-index: -1;
    transition: .5s;
}

.product_area .carousel-details.active a {
    color: #333;
}

.product_area .carousel-details a:focus:hover {
    color: #333;
}

.product_area .carousel-details a:hover:before {
    width: 180%;
}

.product_area .carousel-control-prev,
.product_area .carousel-control-next {
    width: 48px;
}

/* 响应式布局调整 */
@media (max-width:576px) {
    .product_area .carousel-content {
        flex-direction: column;
        height: auto;
    }

    .product_area .carousel-details {
        order: 1;
        width: 100%;
        padding: 1rem;
        min-height: 40vh;
    }

    .product_area .carousel-illustration {
        order: 2;
        width: 100%;
        /* margin: 1rem 0 2rem; */
    }

    /* 小屏幕隐藏导航按钮 */
    .product_area .carousel-control-prev,
    .product_area .carousel-control-next {
        display: none !important;
    }
}

@media (max-width:768px) {
    .product_area .carousel-content {
        flex-direction: column;
    }
}

/* 指示器样式 */
.product_area .carousel-indicators {
    bottom: 5%;
}

.product_area .carousel-indicators button {
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 0;
    margin: 0 5px;
}

.product_area .carousel-indicators .active {
    background-color: white;
}

/* 图片方块样式 */
.product_area .carousel-illustration .inner {
    /*background-color: #ddd;
    border: 1px solid #aaa; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_area .carousel-illustration .inner img {
    width: 38vw;
    height: auto;
}

@media (max-width:576px) {
    .product_area .carousel-illustration .inner img {
        width: 80vw;
    }
}

.partner-area {
    /* background-color: #f7f7f7; */
    background-color: #f9feea;
    padding: 60px 0;
}

.partner-area .partner-title {
    text-align: center;
    margin-bottom: 60px
}

.partner-area p {
    text-align: center;
}

.partner {
    display: flex;
    justify-content: center;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .partner {
        padding: 5px;
    }
}

.partner-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0.375rem;
    box-shadow: 6px 6px 6px rgba(23, 23, 36, 0.1);
}

/* 添加合作伙伴小圆点环绕效果 */
@keyframes moveAround {
    0% {
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
    }

    25% {
        top: 0;
        left: 100%;
        transform: translate(-50%, -50%);
    }

    50% {
        top: 100%;
        left: 100%;
        transform: translate(-50%, -50%);
    }

    75% {
        top: 100%;
        left: 0;
        transform: translate(-50%, -50%);
    }

    100% {
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
    }
}

.partner::after {
    content: '';
    position: absolute;
    width: 15px;
    /* 增大圆点尺寸 */
    height: 15px;
    /* 增大圆点尺寸 */
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px #fff, 0 0 30px #fff;
    /* 增强发光效果 */
    display: none;
    z-index: 10;
}

.partner:hover::after {
    display: block;
    animation: moveAround 1.5s linear infinite;
    /* 加快动画速度 */
}

/* 新增：新闻大图样式 */
.news-featured {
    position: relative;
    overflow: hidden;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .news-featured {
        height: auto;
    }
}

.news-featured-img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

.news-featured:hover .news-featured-img {
    transform: scale(1.2) rotate(6deg);
}

.news-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px;
    height: 130px;
}

@media (max-width: 768px) {
    .news-featured-content {
        padding: 10px;
    }
}

/* 新闻列表样式 */
.news-list ul {
    list-style: none;
}

@media (max-width: 992px) {
    .news-list ul {
        padding-left: 0;
    }
}

.news-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: #f8f8f8;
}

.news-item a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item a:hover {
    color: #007bff;
}

.news-item-date {
    font-size: 0.9rem;
}

/* 新闻图片容器 */
.news-item-img-container {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 4px;
    display: inline-block;
    margin-right: 12px;
}

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

.news-item a:hover .news-item-img {
    transform: scale(1.2) rotate(8deg);
}

/* 新闻内容区域 */
.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 12px;
}

.news-title {
    margin: 0 0 4px;
    font-weight: 600;
    /* font-size: 1rem; */
}

.news-summary {
    /* font-size: 0.85rem; */
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-content .news-summary {
    -webkit-line-clamp: 1;
}

.news-date {
    align-self: flex-end;
    margin-top: auto;
    font-size: 0.9rem;
    text-align: right;
}

footer,
footer a,
footer span,
footer p {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

footer .footerLink {
    padding: 36px 0;
    background-color: #2c2a2a;
}

footer .footerLink a:hover {
    color: #fff !important;
}

footer .footerLink h5 {
    color: #fff;
}

/* others page */
.main-color {
    background-color: #f3f9ff;
}

.banner-container {
    height: 460px;
    overflow: hidden;
}

.banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-padding {
    padding: 60px 0;
}

.mission-vision-values {
    background-color: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
}

.about-page .about-image {
    max-width: 80%;
    height: auto;
    /* border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
    transition: transform 0.3s ease;
}

.about-page .about-image:hover {
    transform: scale(1.02);
}

.about-page .about-text {
    background-image: url('images/about_bg.png');
    background-size: 100%;
    text-indent: 2em;
}

.feature-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-card {
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.1) 100%);
}

.value-card:hover {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.15) 100%);
}

.stats-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* .honors-page .main-color {
    background-image: url('../../images/about2_bg.png');
    background-repeat: repeat;
} */

.honor-card {
    padding: 20px;
}

.honor-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.timeline {
    position: relative;
    padding-left: 45px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-icon {
    position: absolute;
    left: -45px;
    top: 15px;
    width: 40px;
    height: 40px;
    background: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
}

.timeline-content {
    position: relative;
    padding: 30px;
    margin-left: 20px;
    border-radius: 8px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 26px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid;
}

.timeline-item:nth-child(odd) .timeline-content {
    background-color: #e7f1ff;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    border-right-color: #e7f1ff;
}

.timeline-item:nth-child(even) .timeline-content {
    background-color: #e8f5e9;
}

.timeline-item:nth-child(even) .timeline-content::before {
    border-right-color: #e8f5e9;
}

.timeline-item:nth-child(odd) .timeline-icon {
    background: #0d6efd;
}

.timeline-item:nth-child(even) .timeline-icon {
    background: #198754;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-icon {
        left: -35px;
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }

    .timeline-content::before {
        top: 15px;
    }

    .banner-container {
        height: 300px;
    }
}

/* 添加放大图标 */
.card-img-top {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* 添加图片hover效果 */
.card-img-top:hover {
    opacity: 0.95;
}

.card-img-top::after {
    content: "\f220";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.card-img-top:hover::after {
    opacity: 1;
}


.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15) !important;
}

.icon-lg {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-page .news-item {
    min-height: 160px;
}

.news-page .news-item p.text-muted {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card .card-img-container {
    height: 350px;
    /* 增加图片容器高度 */
    overflow: hidden;
    position: relative;
}

.product-card .card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.product-card .card-text {
    color: #666;
    line-height: 1.6;
}

.product-description table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--bs-table-color);
    border: 1px solid var(--bs-table-border-color);
}

.product-description table th,
.product-description table td {
    border: 1px solid var(--bs-table-border-color);
    padding: 0.5rem 0.5rem;
}

.btn-view-detail {
    background: linear-gradient(45deg, #0d6efd, #0b5ed7);
    border: none;
    border-radius: 20px;
    padding: 6px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-detail:hover {
    /* transform: scale(1.05); */
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.section-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 80px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .section-card {
        padding: 40px 20px;
        margin-bottom: 20px;
    }

}

.world-map-bg {
    background: url('../../images/map.png') center/cover no-repeat;
    min-height: 600px;
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.service-process {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #198754;
    color: black;
}

.service-process::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #198754;
    left: -9px;
    top: 5px;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #198754;
}

.stats-label {
    font-size: 1rem;
    color: #6c757d;
}

/* 如果使用 Bootstrap 的深色模式类 */
[data-bs-theme="dark"] .world-map-bg {
    background: linear-gradient(rgba(33, 37, 41, 0.8)), url('images/map.png') center/cover no-repeat;
}

[data-bs-theme="dark"] .partner::after {
    background-color: var(--bs-dark);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .world-map-bg {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .world-map-bg {
        min-height: 250px;
    }
}


/* 添加渐变背景 */
.guestbook-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 添加浮动图标 */
.floating-icon {
    position: fixed;
    top: 50%;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    /* z-index: 2; */
    animation: float 3s ease-in-out infinite;
    opacity: 0.2;
}

.icon-left {
    left: 5%;
    animation-delay: 0s;
}

.icon-right {
    right: 5%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* 表单样式 */
.guestbook-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.guestbook-form .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guestbook-form .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.guestbook-form .card-header {
    text-align: center;
    padding: 1.5rem;
}

.guestbook-form .btn-primary {
    border-radius: 50px;
    padding: 12px 60px;
    transition: all 0.3s ease;
}

.guestbook-form .btn-primary:hover {
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

/* 验证码区域 */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-img {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease;
    cursor: pointer;
    height: calc(2.5rem + 4px);
    align-self: flex-start;
    margin-top: 2px;
}

.captcha-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.refresh-captcha {
    color: #0d6efd;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
    background-color: rgba(13, 110, 253, 0.1);
    align-self: flex-start;
    margin-top: 2px;
}

.refresh-captcha:hover {
    background-color: rgba(13, 110, 253, 0.2);
    color: #0b5ed7;
}

/* 修改 invalid-feedback 样式，使其占用固定位置 */
.invalid-feedback {
    display: block;
    height: 24px;
    min-height: 24px;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.2s linear;
}

.invalid-feedback.visible {
    visibility: visible;
    opacity: 1;
}

/* 表单元素样式 */
.form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.required-star {
    color: #dc3545;
}

.form-control {
    border-radius: 8px;
    padding: 10px 15px;
}

.form-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 5px;
}

.alert {
    border-radius: 8px;
    font-weight: 500;
}

.alert-success {
    background-color: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
}

.form-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 580px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ccc;
}

/* 全屏控制按钮样式 */
#mapFullscreenControl {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: none;
}

.map-fullscreen-btn {
    display: block;
}

.map-fullscreen .map-fullscreen-btn {
    display: none;
}

.map-fullscreen #mapFullscreenControl {
    display: block;
}

.contact-info ul {
    padding-left: 0;
    list-style: none;
    line-height: 3em;
}

.contact-info ul li i {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
    font-size: calc(1.275rem + 0.3vw) !important;
    margin-right: 0.5rem !important;
}