/* 在 :root 伪类中定义CSS变量 */
:root {
    --main-color: rgb(255, 123, 20);
    --font-color: #3f4245;
    /* --font-family: Helvetica; */
    /* --font-family: Arial, Helvetica, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; */
    --font-family: "Archivo", sans-serif;;
}

* {
    box-sizing: border-box;
}

body {
    position: relative;
    font-family: var(--font-family);
}

.pc {
    display: block !important;
}

.mb {
    display: none !important;
}

.flex {
    display: flex;
}

.flex-justify-between {
    display: flex;
    justify-content: space-between;
}

.flex-justify-center {
    display: flex;
    justify-content: center;
}

.flex-justify-left {
    display: flex;
    justify-content: flex-start;
}

.flex-justify-right {
    display: flex;
    justify-content: end;
}

.flex-col {
    display: flex;
    flex-flow: column;
}

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

.blue-txt {
    color: var(--main-color);
}

html {
    overflow-x: hidden;
}

body {
    margin: 0px;
    overflow-x: hidden;
}

a,
div {
    text-decoration: none;
}

input,
textarea {
    outline: none;
}

.w-100 {
    width: 100%;
}

.orange-txt {
    color: var(--main-color);
}

#indexBody,
#hallDesignBody,
#exhibitWorkBody {
    position: relative;
    overflow-x: hidden;
}

#headerNav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid transparent;
    /* background: linear-gradient(121deg, #ffefd3 0%, #f9ece3 56%, #ffefd3 97%); */
    background: #ffffff;
    transition: all 0.3s ease;
}

#headerNav.scrolled {
    /* background: linear-gradient(121deg, #ffefd3 0%, #f9ece3 56%, #ffefd3 97%); */
    background: #ffffff;
    border-bottom: 1px solid #D6D6D6;
}

@media (min-width: 1000px) {
    #headerNav {
        display: flex;
        justify-content: center;
    }

    #headerNav.fix2 {
        position: fixed;
        z-index: 9999;
    }
}

#navContainer {
    width: 1280px;
    height: 78px;
    display: flex;
    position: relative;
    justify-content: space-between;
}

#navLeft {
    display: flex;
    justify-content: end;
    align-items: center;
}

#navMid {
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logoImg {
    width: 50px;
}

#navMid ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

#navMid ul li {
    list-style: none;
    margin-left: 42px;
    display: flex;
    align-items: center;
}

#navMid ul li :first-child {
    padding-left: 0px;
}

#navMid li a {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: 500;
    font-size: 20px;
    color: #646464;
    line-height: 21px;
    transition: color 0.3s ease;
}

#headerNav.scrolled #navMid li a {
    color: #646464;
}

#navMid li a:hover,
#headerNav.scrolled #navMid li.active > a:first-child,
#headerNav.scrolled #navMid li > a:first-child:hover,
#navMid li.active > a:first-child {
    font-weight: bold;
    color: var(--main-color);
    position: relative;
}

#navMid li a:hover::after,
#navMid li.active a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    border-radius: 22px;
    background-color: var(--main-color);
}

/* 下拉菜单样式 */
#navMid li.has-dropdown {
    position: relative;
}

#navMid li.has-dropdown .dropdown-arrow {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
}

#headerNav.scrolled #navMid li.has-dropdown .dropdown-arrow path {
    fill: #646464;
}

#navMid li.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

#headerNav.scrolled #navMid li.has-dropdown:hover a,
#headerNav.scrolled #navMid li.has-dropdown:hover .dropdown-arrow path,
#navMid li.has-dropdown:hover .dropdown-arrow path {
    fill: var(--main-color);
}

#navMid li:hover .has-dropdown-link {
    color: var(--main-color) !important;
}

#navMid li.has-dropdown .dropdown-menu {
    width: 250px;
    position: absolute;
    top: calc(100% + 19px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    padding: 8px 0;
}

#navMid li.has-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1 !important;
}

#navMid li.has-dropdown .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#navMid li.has-dropdown .dropdown-menu a:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f9d6bb 0%, #ffffff 100%);
    z-index: -1;
}

#navMid li.has-dropdown .dropdown-menu a:hover {
    color: var(--main-color);
    /* font-weight: bold !important; */
}

#navMid li.has-dropdown .dropdown-menu a:hover::before {
    opacity: 1;
}

#navRight {
    display: flex;
    align-items: center;
}

#navRight .btn-wrapper {
    height: fit-content;
    margin-left: 18px;
}

#navRight .btn-wrapper:first-child {
    margin-left: 0;
}

#navRight .btn-wrapper .search-icon,
#navRight .btn-wrapper .cart-icon,
#navRight .btn-wrapper .profile-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

#headerNav.scrolled #navRight .btn-wrapper .search-icon,
#headerNav.scrolled #navRight .btn-wrapper .cart-icon,
#headerNav.scrolled #navRight .btn-wrapper .profile-icon {
    filter: none;
}

.sec-blue-title {
    /* font-family: PingFangTC, PingFangTC; */
    font-size: 28px;
    font-weight: 500;
    color: #008CBE;
    line-height: 40px;
    padding-top: 100px;
    padding-bottom: 11px;
    text-transform: uppercase;
}

.sec-title {
    /* font-family: PingFangTC, PingFangTC; */
    font-size: 28px;
    font-weight: 500;
    color: var(--main-color);
    line-height: 40px;
    padding-bottom: 32px;
}

.horizontal-divider {
    width: 135px;
    border-bottom: 1px solid var(--main-color);
    ;
}

.sec-detail-txt {
    /* font-family: PingFangTC, PingFangTC; */
    font-weight: 400;
    font-size: 16px;
    color: #3E3E3E;
    line-height: 32px;
    padding: 32px 0px;
    width: 38%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

main {
    margin-top: 79px;
}

#footerContainer {
    width: 100%;
    background: linear-gradient(121deg, #ffefd3 0%, #f9ece3 56%, #ffefd3 97%);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@keyframes rippleBackground {
    0% {
        scale: 1;
    }

    25% {
        scale: 1.01;
    }

    50% {
        scale: 1.02;
    }

    75% {
        scale: 1.01;
    }

    100% {
        scale: 1;
    }
}

#mobileFooter {
    display: none;
}

#footerContainer .footer-container {
    width: 1280px;
    padding: 60px 0;
    z-index: 1;
}

#footerContainer .footer-container .top-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}

#footerContainer .footer-container .f-col {
    display: flex;
    flex-flow: column;
    padding-left: 60px;
}

#footerContainer .footer-container .f-col .f-nav-list .f-nav a {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: 400;
    font-size: 15px;
    color: #333333;
    line-height: 16px;
    position: relative;
    transition: all 0.3s ease;
}

#footerContainer .footer-container .f-col .f-nav-list .f-nav-a a::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    width: 5px;
    height: 1px;
    background: #333333;
    display: none;
    transition: all 0.3s ease;
}

#footerContainer .footer-container .f-col .f-nav-list .f-nav-a:hover {
    transform: translateX(10px);
}

#footerContainer .footer-container .f-col .f-nav-list .f-nav-a a:hover::before {
    display: block;
}

#footerContainer .footer-container .f-col.f-col-3 {
    padding-left: 28px;
}

#footerContainer .footer-container .f-col.f-col-4 {
    width: 306px;
}

#footerContainer .footer-container .f-col.f-col-5 {
    width: 246px;
}

#footerContainer .footer-container .f-col:first-child {
    padding-left: 0;
}

#footerContainer .footer-container .f-col .logo-big-icon {
    width: 150px;
}

#footerContainer .footer-container .f-col .f-title {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: bold;
    font-size: 18px;
    color: var(--font-color);
    line-height: 21px;
    padding-bottom: 34px;
}

#footerContainer .footer-container .f-col .t-title {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: bold;
    font-size: 16px;
    color: var(--font-color);
    line-height: 16px;
    padding-bottom: 14px;
}

#footerContainer .footer-container .f-col .t-detail a {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: 400;
    font-size: 14px;
    color: var(--font-color);
    line-height: 28px;
    text-align: left;
    padding-bottom: 34px;
}

#footerContainer .footer-container .f-col .t-detail.email {
    padding-bottom: 0;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 34px;
}

#footerContainer .footer-container .f-col .t-detail.mobile {
    /* font-family: Archivo, Archivo; */
    font-weight: bold;
    font-size: 20px;
    color: var(--font-color);
    line-height: 20px;
    padding-bottom: 5px;
}

#footerContainer .footer-container .f-col .t-detail.mobile-tip {
    padding-bottom: 0;
}

#footerContainer .footer-container .f-col .f-nav-list {
    display: flex;
    flex-flow: column;
}

#footerContainer .footer-container .f-col .f-nav-list .f-nav,
#footerContainer .footer-container .f-col .f-nav-list .f-nav.title-nav {
    color: #333333;
    padding-left: 18px;
    margin-bottom: 18px;
    position: relative;
    transition: all 0.3s ease;
}

#footerContainer .footer-container .f-col .f-nav-list .f-nav.title-nav {
    color: #333333;
    font-size: 18px;
    line-height: 23px;
    font-weight: bold;
    padding-left: 18px;
    margin-bottom: 36px;
    position: relative;
}

#footerContainer .footer-container .f-col .f-nav-list .f-nav.title-nav::after {
    position: absolute;
    left: 19px;
    bottom: -12px;
    width: 25%;
    height: 4px;
    border-radius: 4px;
    content: "";
    background-color: #ff620ebb;
}

/* #footerContainer .footer-container .f-col .f-nav-list .f-nav::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--font-color);
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
} */

#footerContainer .footer-container .f-col .contact-wrapper {
    display: flex;
    align-items: flex-start;
    padding-bottom: 27px;
}

#footerContainer .footer-container .f-col .contact-wrapper img {
    width: 20px;
    margin-right: 12px;
}

#footerContainer .footer-container .f-col .contact-wrapper .t-title {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: bold;
    font-size: 16px;
    color: #333333;
    line-height: 16px;
    padding-bottom: 10px;
}

#footerContainer .footer-container .f-col .contact-wrapper .t-txt {
    /* font-family: Archivo, Archivo; */
    font-weight: 400;
    font-size: 15px;
    color: #333333;
    line-height: 20px;
}

.social-btns {
    display: flex;
    align-items: center;
    padding-top: 18px;
}

.social-btn {
    width: 44px;
    height: 44px;
}

.ig-btn {
    margin-left: 12px;
}


#copyright,
#copyright a {
    /* font-family: Microsoft YaHei, Microsoft YaHei; */
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-align: center;
}

body {
    box-sizing: border-box;
}

.header {
    display: none;
}

.nav-modal {
    display: none;
}

/* 移动端下拉菜单样式 */
.nav-modal .nav-list li.has-dropdown {
    position: relative;
}

.nav-modal .nav-list li.has-dropdown.active .dropdown-arrow {
    transform: rotate(-180deg);
}

.nav-modal .nav-list li.has-dropdown .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-modal .nav-list li.has-dropdown .dropdown-arrow {
    width: 12px;
    height: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-modal .nav-list li.has-dropdown .dropdown-arrow path {
    fill: #626262;
}

.nav-modal .nav-list li.has-dropdown .dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.nav-modal .nav-list li.has-dropdown .dropdown-menu {
    display: none;
    padding-left: 16px;
}

.nav-modal .nav-list li.has-dropdown .dropdown-menu a {
    display: block;
    padding: 8px 0;
    color: #666666;
    font-size: 14px;
    line-height: 32px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.nav-modal .nav-list li.has-dropdown .dropdown-menu a:last-child {
    border-bottom: none;
}

@keyframes shake-vertical {

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

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }

    75% {
        transform: translateY(-5px);
    }
}

#footerContainer .blue-wrapper .txt-wrapper,
#footerContainer .black-wrapper .txt-wrapper {
    width: 90% !important;
    max-width: 1200px !important;
}

.base-right-btn {
    background-color: var(--main-color) !important;
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 20px !important;
    color: white !important;
    position: fixed;
    z-index: 98;
}

#all-whatsapp {
    bottom: 200px;
}

#all-top {
    bottom: 150px;
    display: none;
}

#all-top.cur {
    display: flex !important;
}

.layui-carousel,
.layui-carousel[lay-indicator=outside] .layui-carousel-ind ul,
.layui-carousel>[carousel-item]>* {
    background-color: transparent !important;
}

.my-section {
    display: flex;
    justify-content: center;
    padding: 120px 0;
    position: relative;
}

.my-section.pc {
    display: flex !important;
}

.my-container {
    width: 1280px;
}

/* 去除 Chrome, Safari, Opera 的上下箭头 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 去除 Firefox 的上下箭头 */
input[type=number] {
    -moz-appearance: textfield;
}

.hidden {
    display: none;
}

.layui-progress-big {
    width: 76%;
}

.layui-progress-big， .layui-progress-big .layui-progress-bar {
    height: 19px;
}

.layui-progress-big .layui-progress-bar {
    background-color: var(--main-color);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(231, 55, 36, 0.6);
    display: none;
    top: -100%;
    z-index: 10000;
    transition: top 0.3s ease;
}

.search-overlay.active {
    top: 0;
}

.search-modal {
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 32px;
    display: none;
    z-index: 10001;
    border-radius: 16px;
    top: -100%;
    transition: top 0.5s ease;
}

.search-modal.active {
    top: 32%;
}

.search-modal .search-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.search-modal .search-wrapper .input-wrapper {
    width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
}

.search-modal .search-wrapper input {
    width: 100%;
    height: 36px;
    border-radius: 8px;
    padding: 0 8px;
    border: none;
}

.search-modal .search-wrapper .search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    padding: 8px;
    border-radius: 16px;
    margin-left: 12px;
    min-width: 62px;
    cursor: pointer;
}

.search-modal .search-wrapper .search-btn .btn-txt {
    color: #ffffff;
    font-size: 16px;
}

.search-modal .search-wrapper .search-btn .right-arrow {
    width: 12px;
    margin-left: 8px;
}

.bold-txt {
    font-weight: bold;
}

#headerContainer {
    position: relative;
}

#headerContainer .page-title {
    width: 80%;
    font-size: 80px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 40vh;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
  }

.section-icon {
    width: 20px;
    height: 20px;
}

.section-sub-title {
    color: var(--main-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}

.section-title {
    color: var(--font-color);
    font-size: 43px;
    font-style: normal;
    font-weight: 700;
    line-height: 62px;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-align: center;
}

.section-content {
    color: #756F6F;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

.my-container .left-wrapper,
.my-container .right-wrapper {
    width: 50%;
}

.my-container .right-wrapper {
    padding-left: 26px;
}

.img-wrapper {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 关于我们 -start*/
.about-section {
    position: relative;
}

/* 增加轻轻晃动的动画效果 */
/* .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 60px;
    width: 160px;
    height: 100px;
    background-image: url(../image/bg-icon-1.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: shake 10s infinite ease-in-out;
} */

@keyframes shake {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, 20px);
    }
    50% {
        transform: translate(0, 0);
    }
    75% {
        transform: translate(-20px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* .about-section::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: 100px;
    width: 100px;
    height: 160px;
    background-image: url(../image/bg-icon-2.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: shake2 10s infinite ease-in-out;
    z-index: 0;
} */

@keyframes shake2 {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-20px, 20px);
    }
    50% {
        transform: translate(0, 0);
    }
    75% {
        transform: translate(20px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.about-section .my-container {
    gap: 50px;
    position: relative;
}

.about-section .left-wrapper {
    width: 60%;
    position: relative;
}

@keyframes squareMove {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-100px, 0);
    }

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

    75% {
        transform: translate(0, -100px);
    }

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

.about-section .left-wrapper .img-wrapper {
    border: 12px solid var(--main-color);
    height: auto;
    border-radius: 62px;
    overflow: hidden;
    box-sizing: border-box;
}

.about-section .right-wrapper {
    width: 40%;
}

.about-section .pic-1 {
    width: 100%;
    border-radius: 50px;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.about-section .pic-1:hover {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .about-section .left-wrapper .img-wrapper {
        border-radius: 24px;
    }

    .about-section .pic-1 {
        border-radius: 18px;
    }

    .about-section::before,
    .about-section::after {
        display: none;
    }

    .about-section .right-wrapper {
        position: relative;
    }
}
/* 关于我们 -end*/

/* 服务部分样式 -start */
.service-section {
    padding: 80px 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 123, 20, 0.06) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 123, 20, 0.06) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.service-section .my-container {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    padding: 30px 30px 60px 30px;
    /* background-image: radial-gradient(circle at 20% 80%, rgba(255, 123, 20, 0.6) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 123, 20, 0.6) 0%, transparent 50%); */
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    
    .section-desc {
        font-size: 16px;
        font-weight: normal;
        line-height: 28px;
        color: #707480;
        margin-bottom: 15px;
        font-weight: 400;
    }
}

.service-section .section-sub-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-title {
    color: #333333;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 70px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 14%;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    position: relative;
}

/* .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px #0000001f;
} */

/* .service-card:hover {
    color: var(--main-color);
} */

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: inherit;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .service-cards {
        gap: 15px;
        flex-wrap: wrap;
    }

    .service-card {
        min-width: auto;
        flex: 1 1 calc(50% - 10px);
    }

    .service-title {
        font-size: 28px;
    }

    .service-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 8px;
	}

	.service-card-title {
		font-size: 16px;
	}
}

/* 服务部分样式 -end */

/* 最新动向样式 -start */
.news-section {
    background-color: #ffffff;
    position: relative;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 123, 20, 0.06) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 123, 20, 0.06) 0%, transparent 50%);
}

.news-section .my-container {
    position: relative;
    z-index: 2;
}

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

/* .news-title {
    color: #333333;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
} */

.news-section .section-sub-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.news-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-image {
    position: relative;
    width: 100%;
    height: 291px;
    overflow: hidden;
}

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

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.date-overlay {
    position: absolute;
    top: -20px;
    right: 15px;
    background: var(--main-color);
    color: #ffffff;
    padding: 12px 8px;
    text-align: center;
    min-width: 50px;
    border-radius: 0 0 6px 6px;
}

.date-overlay::before {
    position: absolute;
    top: 0px;
    right: -15px;
    width: 0px;
    border-bottom: 20px solid #cc6e26;
    border-right: 15px solid transparent;
    border-left: 0px solid transparent;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
}

.date-number {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.date-month {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2px;
}

.news-content {
    padding: 36px 25px 25px 25px;
    position: relative;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-icon {
    width: 14px;
    height: 14px;
}

.news-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--main-color);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .news-card {
        min-width: auto;
    }
    
    .news-title {
        font-size: 28px;
    }
    
    .news-content {
        padding: 20px;
    }
}

/* 最新动向样式 -end */

/* 荣誉标志样式 -start */
.honor-section {
    position: relative;
    background-image: url(../image/testimonial-bg.jpg);
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.bubble-bg-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
}

.honor-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ECF1F5;
    opacity: 0.91;
}

.honor-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 150px;
    margin-top: 60px;
}

.honor-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    background-color: #ffffff;
    height: 270px;
    border-radius: 50px;
    justify-content: center;
}

.honor-icon {
    width: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.honor-icon:hover {
    transform: translateY(-16px);
}

#honorSection .honor-list .honor-item .c-icon {
    transition: transform 0.3s ease-in-out;
}

#honorSection .honor-list .honor-item:hover .c-icon {
    animation: flip 0.8s;
}

#honorSection .honor-list .honor-item .honor-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #333333;
}

/* 荣誉标志样式 -end */

/* 按钮动画效果 */
.my-button {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background-color: #ffffff;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    text-decoration: none;
    border-radius: 30px;
    margin-top: 24px;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.my-button:hover {
    color: #ffffff;
}

.my-button::before {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background-color: var(--main-color);
    border-radius: 50% 50% 0 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.my-button:hover::before {
    width: 200%;
    height: 200%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.my-button:hover {
    color: #ffffff;
}

/* 我們的清潔儀器 -start */
#productSection {
	position: relative;
	display: flex;
	align-items: center;
    padding-bottom: 0;
}

#productSection .section-sub-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

#productSwiper {
    width: 100%;
    height: 753px;
}

.product-wrapper {
	width: 100%;
    margin-bottom: 100px;
    position: relative;
}

.product-swiper {
	width: 100%;
	height: 100%;
    border-radius: 24px;
}

.product-swiper .swiper-slide {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.product-swiper .carousel-item {
	width: 100%;
	height: 100%;
}

#productSection .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

#productSection .carousel-item .background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px !important;
}

.swiper-pagination {
    line-height: 20px;
    height: 20px;
    top: auto !important;
    bottom: -30px !important;
}

.swiper-pagination-bullet {
    background-color: #ff7a14d6;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 10px;
    background-color: var(--main-color);
}

/* 我們的清潔儀器 -end */

/* 动态bubbles - start*/
.bubbles {
    position: absolute;
    width: 60%;
    height: 600px;
    z-index: 0;
    overflow: hidden;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0), inset 1px -7px 13px rgba(255, 255, 255, 0.54);
    border-radius: 50%;
    opacity: 0.5;
    animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 80px;
    height: 80px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 65%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.bubble:nth-child(7) {
    width: 90px;
    height: 90px;
    left: 70%;
    animation-duration: 12s;
    animation-delay: 2s;
}

@keyframes rise {
    0% {
      bottom: -100px;
      transform: translateX(0);
    }
    50% {
      transform: translate(100px);
    }
    100% {
      bottom: 1080px;
      transform: translateX(-200px);
    }
  }
/* 动态bubbles - end*/




