* {
    margin: 0;
    padding: 0;
}

body {
    @font-face {
        font-family: 'Oswald';
        src: url('/static/font/Oswald.ttf') format('truetype');
        /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
    }

    @font-face {
        font-family: 'Abel';
        src: url('/static/font/Abel-Regular.ttf') format('truetype');
        /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
    }
}



p {
    font-family: 'Abel', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
}

ul {
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

a:hover {
    text-decoration: none;
}






/* 按钮一 */
/* From Uiverse.io by kennyotsu-monochromia */
.button {
    --black: #000000;
    --ch-black: #141414;
    --eer-black: #1b1b1b;
    --night-rider: #2e2e2e;
    --white: #ffffff;
    --af-white: #f3f3f3;
    --ch-white: #e1e1e1;
    border-radius: 3px;
    width: 140px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0px 15px;
    border: none;
    color: white;
    position: relative;
    cursor: pointer;
    font-weight: 700;
    transition-duration: .2s;
    background-color: var(--ch-black);
}

.button:before,
.button:after {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    border-radius: 4px;
    background: linear-gradient(45deg,
            var(--ch-black), var(--eer-black),
            var(--night-rider), var(--ch-white), var(--night-rider),
            var(--eer-black), var(--ch-black), var(--ch-black));
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    animation: steam 20s linear infinite;
}

@keyframes steam {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.button:after {
    filter: blur(50px);
}
/* 按钮一 */


/* 按钮二 */
/* From Uiverse.io by Satoshikamotona */ 
/* From Uiverse.io by kennyotsu-monochromia */ 
.button2 {
    --black: #000000;
    --ch-black: #141414;
    --eer-black: #1b1b1b;
    --night-rider: #2e2e2e;
    --white: #ffffff;
    --af-white: #f3f3f3;
    --ch-white: #e1e1e1;
    position: relative;
    padding: 10px 35px;
    border-radius: 5px;
    color: #fafafa;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0px;
    background-color: var(--eer-black);
    border: solid 1px var(--night-rider);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    font-family: Montserrat;
  }
  
  .button2 .button-text {
    position: relative;
    z-index: 2;
    font-size: 0.8rem;
  }
  
  .button2 .fill-container {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    padding-bottom: 100%;
    transform: translateY(-50%) rotate(180deg);
  }
  
  .button2 .fill-container::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--night-rider);
    border-radius: 50px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateY(-100%);
  }
  
  .button2:hover {
    transform: translateY(-4px);
    color: var(--white);
  }
  
  .button2:hover .fill-container {
    transform: translateY(-50%) rotate(0);
  }
  
  .button2:hover .fill-container::after {
    transform: translateY(0);
  }
  /* 按钮二 */



/* 欢迎横条 */
@media screen and (min-width: 1201px) {
    .welcome {
        width: 100%;
        background-color: #272727;
        padding: 10px 0;
        height: 45px;
    }
    
    .welcome-text span {
        color: #fff;
        font-size: 1rem;
    }
    
    .welcome-social {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap:10px;
    }
    
    .welcome-social a {
        text-decoration: none;
    }
    
    .welcome-social i {
        color: #fff;
        font-size: 1rem;
    }
    
    .welcome-language {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    .welcome-language a {
        color: #fff;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 5px;
        text-decoration: none;
    }
    
    .welcome-language a:hover {
        color: #fff;
    }
    
    .welcome-language img {
        width: 15px;
    }
    /* 欢迎横条 */
    
    
    
    
    /* 导航栏 */
    .header-logo img {
        width: 45%;
    }
    
    
    /* 导航栏容器样式 */
    .header-menu {
        display: flex;
        justify-content: space-between;
        height: 100%;
    }
    
    .header-menu ul {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .header-menu li {
        position: relative;
        padding: 9px;
    }
    
    .header-menu li a {
        color: #333;
        text-decoration: none;
        font-size: 16px;
        padding: 10px 15px;
        transition: all 0.3s ease;
        position: relative;
        font-weight: 600;
    }
    
    .header-menu li a:hover::after {
        content: '';
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 0;
        height: 2px;
        background-color: #272727;
    }
    
    .header-menu li a.active {
        background-color: #000;
        color: #fff;
        border-radius: 4px;
    }
    
    .header-menu-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 160px;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .header-menu li:hover .header-menu-dropdown {
        opacity: 1;
        visibility: visible;
    }
    
    .header-menu-dropdown ul {
        display: block;
        padding: 10px 0;
    }
    
    .header-menu-dropdown li {
        margin: 0;
    }
    
    .header-menu-dropdown li a {
        display: block;
        padding: 8px 20px;
        color: #666;
        font-size: 14px;
    }
    
    .header-menu-dropdown li a:hover {
        background: #f5f5f5;
        color: #272727;
    }
    /* 导航栏容器样式  */

    .mobile-header {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .mobile-header-menu {
        display: none;
    }

    .mobile-menu-close {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .header {
        display: none;
    }

    .mobile-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 10px 20px;
       background-color: #fff;
       box-shadow: 0px 0px 20px 7px #f4f4f4;
       position: fixed;
       left: 0;
       top:0;
       width: 100%;
       z-index: 2;
    }
    
    .mobile-header-logo img {
        width:120px;
    }

    .mobile-header-menu {
       display: flex;
       align-items: center;
    }

    .mobile-header-menu i {
       font-size: 2rem;
       color: #272727;
       cursor: pointer;
    }
    
    .mobile-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        z-index: 3;
        padding: 20px;
        display: none;
    }
    
    .mobile-menu-title img {
        width: 120px;
    }
    
    .mobile-menu-line {
        border-bottom: 1px solid #2727271a;
        margin: 20px 0;
    }
    
    .mobile-menu-content ul {
        padding-left: 0;
    }
    
    .mobile-menu-content ul li {
        margin-bottom: 10px;
    }
    
    .mobile-menu-content ul li a {
        color: #272727;
        text-decoration: none;
    }
    
    .mobile-menu-language a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color:#272727;
    }
    
    .mobile-menu-language img {
        width:20px;
    }
    
    .mobile-menu-contact ul {
        padding-left: 0;
    }
    
    .mobile-menu-contact ul li {
        margin-bottom: 10px;
    }

    .mobile-menu-close {
        display: none;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 999;
    }
    
    .mobile-menu-close i {
        color:#272727;
        font-size: 1.6rem;
    }
}





/* 轮播图 */
@media screen and (min-width: 1201px) {
    .slider-item {
        width: 100%;
        position: relative;
    }
    
    .slider-image {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        overflow: hidden;
    }
    
    .slider-image img {
        width: 100%;
         object-fit: cover;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .slider-text {
        padding: 200px 0;
        color: #fff;
    }
    
    .slider-text h1 {
        font-size: 4rem;
        font-weight: 700;
        margin: 10px 0 40px 0;
    }
    
    @keyframes zoomAnimation {
        0% {
            transform: scale(1);
        }
    
        100% {
            transform: scale(1.1);
        }
    }
}

@media screen and (max-width: 1200px) {
    .slider {
        width: 100%;
        overflow: hidden;
    }

    .slider-item {
        width: 100%;
        position: relative;
    }
    
    .slider-image {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        overflow: hidden;
    }
    
    .slider-image img {
        height: 100%;
        object-fit: cover;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .slider-text {
        padding: 200px 20px;
        color: #fff;
    }
    
    .slider-text h1 {
        font-size: 2rem;
        font-weight: 700;
        margin: 10px 0 40px 0;
    }
    
    @keyframes zoomAnimation {
        0% {
            transform: scale(1);
        }
    
        100% {
            transform: scale(1.1);
        }
    }
}
/* 轮播图 */




/* 首页产品分类 */
@media screen and (min-width: 1201px)  {
    .home-category {
        padding: 120px 0;
        position: relative;
    }
    
    .category-title {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .category-title p {
        margin-bottom: 0;
    }
    
    .category-item {
        margin-bottom: 50px;
    }
    
    .category-image img {
        width: 100%;
    }
    
    .category-item:hover .category-image img {
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .category-text {
        text-align: center;
        padding: 20px;
    }
    
    .category-button {
        display: flex;
        justify-content: center;
    }
    
    .home-category-float {
        position: absolute;
        top: 0;
        left: 35%;
    }
    
    .home-category-float img {
        width: 150px;
    }
}

@media screen and (max-width: 1200px)  {
    .home-category {
        padding: 60px 0;
        position: relative;
    }
    
    .category-title {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .category-title p {
        margin-bottom: 0;
    }
    
    .category-item {
        margin-bottom: 50px;
    }
    
    .category-image img {
        width: 100%;
    }
    
    .category-item:hover .category-image img {
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .category-text {
        text-align: center;
        padding: 20px;
    }
    
    .category-button {
        display: flex;
        justify-content: center;
    }
    
    .home-category-float {
        display: none;
    }
}
/* 首页产品分类 */


/* 首页关于我们 */
@media screen and (min-width: 1201px)  {
    .home-about {
        position: relative;
        overflow: hidden;
    }
    
    .home-about-image {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 55%;
        height: 100%;
        overflow: hidden;
        display: flex;
    }
    
    .home-about-image img {
        height: 100%;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .home-about-text {
        padding: 20px 0 20px 70px;
    }
    
    .home-about-text-title p {
        margin-bottom: 0;
    }
    
    .home-about-text-content {
        margin: 20px 0 30px 0;
    }  
}


@media screen and (max-width: 1200px)  {
    .home-about-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .home-about-image img {
        width: 100%;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .home-about-text {
        padding: 20px;
    }
    
    .home-about-text-title p {
        margin-bottom: 0;
    }
    
    .home-about-text-content {
        margin: 20px 0 30px 0;
    }  
}
/* 首页关于我们 */




/* 首页风格设计 */
@media screen and (min-width: 1201px)  {
    .home-design {
        padding: 120px 0;
    }
    
    .home-design-title p {
        margin-bottom: 0;
    }
    
    .home-design-image img {
        width: 100%;
    }
    
    .home-design-text {
        margin: 20px 0 30px 0;
    }
}

@media screen and (max-width: 1200px)  {
    .home-design {
        padding: 120px 0;
    }
    
    .home-design-title p {
        margin-bottom: 0;
    }

    .home-design-image {
        margin-top: 30px;
    }
    
    .home-design-image img {
        width: 100%;
    }
    
    .home-design-text {
        margin: 20px 0 30px 0;
    }
}
/* 首页风格设计 */






/* 首页优势 */
.home-advantage {
    padding: 120px 0;
    background-color: #272727;
    width:100%;
    overflow: hidden;
}

.advantage-title {
    color: #fff;
}

.advantage-title p {
    margin-bottom: 0;
}

.advantage-text {
    color: #fff;
    padding-right: 100px;
    margin-top: 20px;
}

.advantage-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-align: center;
}

.advantage-box-item i {
    font-size: 5rem;
    margin-bottom: 20px;
}
/* 首页优势 */





/* 首页生活风格 */
@media screen and (min-width: 1201px)  {
    .home-life {
        position: relative;
        overflow: hidden;
    }
    
    .home-life-left {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    
    .home-life-right {
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        width: 55%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    .home-life-right img {
        width: 100%;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .home-life-content {
        padding: 120px 50px 120px 0;
    }
    
    .home-life-title p {
        margin-bottom: 0;
    }
    
    .home-life-button {
        margin-top: 30px;
    }
}

@media screen and (max-width: 1200px)  {
    .home-life {
        position: relative;
        overflow: hidden;
    }
    
    .home-life-left {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    
    .home-life-right {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .home-life-right img {
        width: 100%;
        object-fit: cover;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .home-life-content {
        padding: 20px;
    }
    
    .home-life-title p {
        margin-bottom: 0;
    }
    
    .home-life-button {
        margin-top: 30px;
    }
}

/* 首页生活风格 */





/* 首页生活风格2 */
@media screen and (min-width: 1201px)  {
    .home-decoration {
        position: relative;
        overflow: hidden;
    }
    
    .home-decoration-left {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 45%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    .home-decoration-left img {
        width: 100%;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .home-decoration-content {
        padding: 120px 0;
        position: relative;
    }
    
    .decoration-title p {
        margin-bottom: 0;
    }
    
    .decoration-text {
        margin: 20px 0 30px 0;
    }
    
    .decoration-img {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;
    }
    
}


@media screen and (max-width: 1200px)  {
    .home-decoration {
        padding: 60px 0;
    }

    .home-decoration-left {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .home-decoration-left img {
        width: 100%;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .home-decoration-content {
        padding: 20px;
        position: relative;
    }
    
    .decoration-title p {
        margin-bottom: 0;
    }
    
    .decoration-img {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;
    }
    
}

/* 首页生活风格2 */





/* 首页热销产品 */
@media screen and (min-width: 1201px)  {
    .home-related {
        padding: 120px 0;
    }
    
    .related-title {
        text-align: center;
        margin: 30px 0 20px 0;
    }
    
    .related-title p {
        margin-bottom: 0;
    }
    
    .related-item {
        background-color: #fff;
        box-shadow: 10px 10px 50px 5px #f4f4f4;
        border-radius: 8px;
        overflow: hidden;
        padding: 10px;
    }
    
    .related-image {
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .related-image img {
        width: 100%;
    }
    
}

@media screen and (max-width: 1200px)  {
    .home-related {
        padding-bottom: 60px;
    }
    
    .related-title {
        text-align: center;
        margin: 20px;
    }
    
    .related-title p {
        margin-bottom: 0;
    }
    
    .related-item {
        background-color: #fff;
        box-shadow: 10px 10px 50px 5px #f4f4f4;
        border-radius: 8px;
        overflow: hidden;
        padding: 10px;
    }
    
    .related-image {
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .related-image img {
        width: 100%;
    }
    
}

/* 首页热销产品 */



/* 首页制热效果 */
@media screen and (min-width: 1201px)  {
    .home-heating {
        position: relative;
        overflow: hidden;
        margin-bottom: 120px;
    }
    
    .home-heating-left {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    .home-heating-left img {
        width: 100%;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .home-heating-content {
        padding: 120px 0;
    }
    
    .heating-title p {
        margin-bottom: 0;
    }
    
    .heating-text {
        margin: 20px 0 30px 0;
    }
    
}

@media screen and (max-width: 1200px)  {
    .home-heating {
        padding-bottom: 60px;
    }

    .home-heating-left {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .home-heating-left img {
        width: 100%;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .home-heating-content {
        padding: 20px;
    }
    
    .heating-title p {
        margin-bottom: 0;
    }
    
    .heating-text {
        margin: 20px 0 30px 0;
    }
    
}

/* 首页制热效果 */
  


/* 底部 */
@media screen and (min-width: 1201px)   {
    .footer {
        padding: 50px 0;
    }
    
    .footer-logo-image {
        width: 14%;
        margin-bottom: 30px;
    }
    
    .footer-logo-image img {
        width: 100%;
    }
    
    .footer-logo-text {
        display: flex;
        flex-direction: column;
    }
    
    .footer-logo-text a {
        color: #272727;
        text-decoration: none;
        font-size: 1rem;
        font-family: 'Abel', sans-serif;
    }
    
    .footer-item-content {
        display: flex;
        flex-direction: column;
        gap:5px;
        margin-top: 20px;
    }
    
    .footer-item-content a {
        color: #272727;
        text-decoration: none;
        font-size: 1rem;
        font-family: 'Abel', sans-serif;
    }
    
}

@media screen and (max-width: 1200px)   {
    .footer {
        padding: 50px 0;
    }

    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-logo-image {
        width: 14%;
        margin-bottom: 30px;
    }
    
    .footer-logo-image img {
        width: 100%;
    }
    
    .footer-logo-text {
        display: flex;
        flex-direction: column;
    }
    
    .footer-logo-text a {
        color: #272727;
        text-decoration: none;
        font-size: 1rem;
        font-family: 'Abel', sans-serif;
    }

    .footer-item {
        margin-bottom: 30px;
    }
    
    .footer-item-content {
        display: flex;
        flex-direction: column;
        gap:5px;
        margin-top: 20px;
    }
    
    .footer-item-content a {
        color: #272727;
        text-decoration: none;
        font-size: 1rem;
        font-family: 'Abel', sans-serif;
    }
    
}

/* 底部 */





/* 关于我们 */
@media screen and (min-width: 1201px)   {
    .page-banner {
        position: relative;
        overflow: hidden;
    }
    
    .page-banner-bg {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        object-fit: cover;
    }
    
    .page-banner-bg img {
        width: 100%;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .page-banner-text {
        padding: 200px 0;
        color: #fff;
    }
    
    .page-banner-text-button {
        margin-top: 30px;
    }
    
    .page-banner-text-button a {
        text-decoration: none;
    }
    
    .about-us {
        padding: 120px 0;
    }
    
    .about-us-content-title {
        text-align: center;
    }
    
    .about-us-content-title p {
        margin-bottom: 0;
    }
    
    .about-us-content-text {
        margin: 20px 0 30px 0;
        text-align: center;
    }
    
    .video-container {
        position: relative;
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 15px;
        background: #000;
    }
    
    .video-player {
        width: 100%;
        display: block;
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-controls {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.7);
        padding: 10px;
        display: flex;
        align-items: center;
    }
    
    .video-progress {
        flex-grow: 1;
        height: 5px;
        margin: 0 10px;
        cursor: pointer;
    }
    
    .volume-control {
        display: flex;
        align-items: center;
        color: white;
    }
    
    .video-volume {
        width: 80px;
        height: 5px;
        margin-left: 5px;
    }
    
    .faq-content-title p {
        margin-bottom: 0;
    }
    
    .faq-content-text {
        margin: 20px 50px 30px 0;
    }
    
    .faq-content-box {
        width: 100%;
    }
    
    .faq-item {
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        cursor: pointer;
        background: #f9f9f9;
    }
    
    .faq-question i {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 15px;
        background-color: #f3f3f333;
    }
    
    .factory-container {
        display: flex;
        width: 100%;
        margin-top: 50px;
        height: 500px;
        overflow: hidden;
        border-radius: 15px;
    }
    
    .factory-image {
        width: 70%;
        position: relative;
        height: 500px;
    }
    
    .factory-image img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .factory-image img.active {
        opacity: 1;
    }
    
    .factory-tabs {
        width: 30%;
        padding-left: 10px;
        display: flex;
        flex-direction: column;
    }
    
    .factory-tab {
        margin-bottom: 5px;
        background: #272727;
        cursor: pointer;
        transition: all 0.3s ease;
        height: calc(100% / 6);
        padding: 20px;
    }
    
    .factory-tab.active {
        background: #4e4e4e;
    }
    
    .factory-tab h4 {
        margin-bottom: 10px;
        color: #fff;
    }
    
    .partner-content-item {
        padding: 20px;
        background-color: #f3f3f3;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .partner-content-item img {
        width: 100%;
        object-fit: cover;
    }
    
    .partner-content-item:hover {
        background-color: #272727;
        transition: all 0.3s ease;
    }
    
    .partner-content-item:hover img {
        filter: invert(100%);
        transition: all 0.3s ease;
    }
    
    .partner-text {
        padding: 20px 0 0 20px;
        text-align: right;
    }
    
    .partner-text p {
        margin-bottom: 0;
    }
    
    .partner-text-content {
        margin-top: 30px;
    }
    
    .history {
        padding: 120px 0;
        position: relative;
        overflow: hidden;
    }
    
    .history-content-title p {
        margin-bottom: 0;
    }
    
    .history-content-content {
        margin: 20px 0 30px 0;
    }
    
    .history-content-service-item {
        display: flex;
        align-items: center;
        gap:10px;
        margin-bottom: 20px;
        padding: 20px;
        background-color: #f3f3f3;
        border-radius: 8px;
    }
    
    .history-content-service-item:hover {
        background-color: #272727;
        transition: all 0.3s ease;
    }
    
    .history-content-service-item-icon i {
        font-size: 2.8rem;
    }
    
    .history-content-service-item:hover i {
        color: #fff;
        transition: all 0.3s ease;
    }
    
    .history-content-service-item:hover h6 {
        color: #fff;
        transition: all 0.3s ease;
    }
    
    .history-image-item {
        width: 100%;
        overflow: hidden;
        margin-bottom: 20px;
    }
    
    .history-image-item img {
        width: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }
    
    .history-image-item:hover img {
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .review-container {
        position: relative;
        width: 100%;
        padding: 50px 0;
        overflow: hidden;
    }
    .review-slider {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 350px;
    }
    .review-card {
        width: 300px;
        padding: 30px;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 10px;
        position: absolute;
        transition: all 0.5s ease;
        z-index: 1;
    }
    .review-card.active {
        transform: translateX(0) scale(1);
        opacity: 1;
        z-index: 3;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    .review-card[data-index="0"] {
        transform: translateX(-90%) scale(0.9);
        opacity: 0.7;
    }
    .review-card[data-index="2"] {
        transform: translateX(90%) scale(0.9);
        opacity: 0.7;
    }
    .review-card[data-index="3"] {
        transform: translateX(180%) scale(0.8);
        opacity: 0.5;
    }
    .review-card[data-index="4"] {
        transform: translateX(-180%) scale(0.8);
        opacity: 0.5;
    }
    .review-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 10;
    }
    .review-prev {
        left: 20px;
    }
    .review-next {
        right: 20px;
    }
    
    .review-content {
        text-align: center;
    }
    
    .review-content strong {
        font-size: 3.5rem;
    }
    
    .review-author {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }
    
}

@media screen and (max-width: 1200px)   {
    .page-banner {
        position: relative;
        overflow: hidden;
    }
    
    .page-banner-bg {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        height: 100%;
        width: 100%;
        display: flex;
        
    }
    
    .page-banner-bg img {
        height: 100%;
        object-fit: cover;
        animation: zoomAnimation 6s ease-in-out infinite;
    }
    
    .page-banner-text {
        padding: 160px 20px 100px 20px;
        color: #fff;
    }
    
    .page-banner-text-button {
        margin-top: 30px;
    }
    
    .page-banner-text-button a {
        text-decoration: none;
    }
    
    .about-us {
        padding: 60px 0;
    }
    
    .about-us-content-title {
        text-align: center;
    }
    
    .about-us-content-title p {
        margin-bottom: 0;
    }
    
    .about-us-content-text {
        margin: 20px 0 30px 0;
        text-align: center;
    }
    
    .video-container {
        position: relative;
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 15px;
        background: #000;
    }
    
    .video-player {
        width: 100%;
        display: block;
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-controls {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.7);
        padding: 10px;
        display: flex;
        align-items: center;
    }
    
    .video-progress {
        flex-grow: 1;
        height: 5px;
        margin: 0 10px;
        cursor: pointer;
    }
    
    .volume-control {
        display: flex;
        align-items: center;
        color: white;
    }
    
    .video-volume {
        width: 80px;
        height: 5px;
        margin-left: 5px;
    }
    
    .faq-content-title p {
        margin-bottom: 0;
    }
    
    .faq-content-text {
        margin: 20px 50px 30px 0;
    }
    
    .faq-content-box {
        width: 100%;
    }
    
    .faq-item {
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        cursor: pointer;
        background: #f9f9f9;
    }
    
    .faq-question i {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 15px;
        background-color: #f3f3f333;
    }
    
    .factory-container {
        display: flex;
        width: 100%;
        margin-top: 50px;
        height: 500px;
        overflow: hidden;
        border-radius: 15px;
    }
    
    .factory-image {
        width: 70%;
        position: relative;
        height: 500px;
    }
    
    .factory-image img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .factory-image img.active {
        opacity: 1;
    }
    
    .factory-tabs {
        width: 30%;
        padding-left: 10px;
        display: flex;
        flex-direction: column;
    }
    
    .factory-tab {
        margin-bottom: 5px;
        background: #272727;
        cursor: pointer;
        transition: all 0.3s ease;
        height: calc(100% / 6);
        padding: 20px;
    }
    
    .factory-tab.active {
        background: #4e4e4e;
    }
    
    .factory-tab h4 {
        margin-bottom: 10px;
        color: #fff;
    }
    
    .partner-content-item {
        padding: 20px;
        background-color: #f3f3f3;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .partner-content-item img {
        width: 100%;
        object-fit: cover;
    }
    
    .partner-content-item:hover {
        background-color: #272727;
        transition: all 0.3s ease;
    }
    
    .partner-content-item:hover img {
        filter: invert(100%);
        transition: all 0.3s ease;
    }
    
    .partner-text {
        padding: 20px 0 0 20px;
        text-align: right;
    }
    
    .partner-text p {
        margin-bottom: 0;
    }
    
    .partner-text-content {
        margin-top: 30px;
    }
    
    .history {
        padding: 60px 0;
        position: relative;
        overflow: hidden;
    }
    
    .history-content-title p {
        margin-bottom: 0;
    }
    
    .history-content-content {
        margin: 20px 0 30px 0;
    }
    
    .history-content-service-item {
        display: flex;
        align-items: center;
        gap:10px;
        margin-bottom: 20px;
        padding: 20px;
        background-color: #f3f3f3;
        border-radius: 8px;
    }
    
    .history-content-service-item:hover {
        background-color: #272727;
        transition: all 0.3s ease;
    }
    
    .history-content-service-item-icon i {
        font-size: 2.8rem;
    }
    
    .history-content-service-item:hover i {
        color: #fff;
        transition: all 0.3s ease;
    }
    
    .history-content-service-item:hover h6 {
        color: #fff;
        transition: all 0.3s ease;
    }
    
    .history-image-item {
        width: 100%;
        overflow: hidden;
        margin-bottom: 20px;
    }
    
    .history-image-item img {
        width: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }
    
    .history-image-item:hover img {
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .review-container {
        position: relative;
        width: 100%;
        padding: 50px 0;
        overflow: hidden;
    }
    .review-slider {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 350px;
    }
    .review-card {
        width: 300px;
        padding: 30px;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 10px;
        position: absolute;
        transition: all 0.5s ease;
        z-index: 1;
    }
    .review-card.active {
        transform: translateX(0) scale(1);
        opacity: 1;
        z-index: 3;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    .review-card[data-index="0"] {
        transform: translateX(-90%) scale(0.9);
        opacity: 0.7;
    }
    .review-card[data-index="2"] {
        transform: translateX(90%) scale(0.9);
        opacity: 0.7;
    }
    .review-card[data-index="3"] {
        transform: translateX(180%) scale(0.8);
        opacity: 0.5;
    }
    .review-card[data-index="4"] {
        transform: translateX(-180%) scale(0.8);
        opacity: 0.5;
    }
    .review-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 10;
    }
    .review-prev {
        left: 20px;
    }
    .review-next {
        right: 20px;
    }
    
    .review-content {
        text-align: center;
    }
    
    .review-content strong {
        font-size: 3.5rem;
    }
    
    .review-author {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }
    
}

/* 关于我们 */




/* 产品列表 */
@media screen and (min-width: 1201px)  {
    .pro-area {
        padding: 120px 0;
    }
    
    .pro-area-title {
        text-align: center;
    }
    
    .pro-area-title p {
        margin-bottom: 0;
    }
    
    .pro-category {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 80px;
        margin: 50px 0 20px 0;
        flex-wrap: wrap;
    }
    
    .pro-category a {
        color: #272727;
        text-decoration: none;
        font-size: 1.2rem;
        font-family: 'Oswald', sans-serif;
        position: relative;
        width: 23%;
        margin-bottom: 10px;
    }
    
    .pro-category a.active {
        color: #0066cc;
        font-weight: bold;
    }
    
    .pro-category a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #0066cc;
    }
    
    .pageinfo {
        margin: 30px 0 0 30px;
        display: flex;
        align-items: center;
        gap:10px;
    }
    
    .pageinfo a {
        background-color: #f3f3f3;
        text-decoration: none;
        font-size: 0.8rem;
        padding: 8px 15px;
        border-radius: 5px;
        color: #272727;
        transition: all 0.3s ease;
    }
    
    .pageinfo a.active {
        background-color: #272727;
        color: #fff;
    }
    
}

@media screen and (max-width: 1200px)  {
    .pro-area {
        padding: 0px 0;
    }
    
    .pro-area-title {
        text-align: center;
    }
    
    .pro-area-title p {
        margin-bottom: 0;
    }
    
    .pro-category {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        margin: 50px 0 20px 0;
        flex-wrap: wrap;
    }
    
    .pro-category a {
        color: #272727;
        text-decoration: none;
        font-size: 1.2rem;
        font-family: 'Oswald', sans-serif;
        position: relative;
        width: 49%;
        margin-bottom: 10px;
    }
    
    .pro-category a.active {
        color: #0066cc;
        font-weight: bold;
    }
    
    .pro-category a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #0066cc;
    }
    
    .pageinfo {
        margin: 30px 0 0 30px;
        display: flex;
        align-items: center;
        gap:10px;
    }
    
    .pageinfo a {
        background-color: #f3f3f3;
        text-decoration: none;
        font-size: 0.8rem;
        padding: 8px 15px;
        border-radius: 5px;
        color: #272727;
        transition: all 0.3s ease;
    }
    
    .pageinfo a.active {
        background-color: #272727;
        color: #fff;
    }
    
}

/* 产品列表 */



/* 产品详情 */
@media screen and (min-width: 1201px)   {
    .pro-details {
        padding: 120px 0;
    }
    
    .product-gallery {
        display: flex;
        gap: 20px;
    }
    .main-image {
        width: 70%;
        box-shadow: 10px 10px 50px 5px #f4f4f4;
        border-radius: 15px;
        display: flex;
    }
    .main-image img {
        width: 100%;
        display: none;
        object-fit: cover;
    }
    .main-image img.active {
        display: block;
    }
    .thumbnail-container {
        width: 30%;
        height: 500px;
        overflow-y: hidden;
    }
    .thumbnails {
        display: flex;
        flex-direction: column;
        gap: 5px;
        height: 500px;
    }
    .thumbnail {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        width: 100%;
        height: 33%;
    }
    .thumbnail img {
        width: 100%;
        border-radius: 8px;
    }
    .thumbnail:not(.active)::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgb(0 0 0 / 5%);
        border-radius: 8px;
    }
    
    .pro-details-text-content {
        margin: 30px 0 50px 0;
    }
    
    .pro-details-text-content ul {
        padding-left: 0;
    }
    
    .pro-details-text-content span {
        font-family: 'Oswald', sans-serif;
        font-weight: bold;
    }
    
    .pro-details-text-content li {
        font-family: 'Abel', sans-serif;
    }
    
    .palameter {
        margin: 120px 0;
    }
    
    .palameter table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .pro-details-video {
        margin-bottom: 80px;
    }
    
}

@media screen and (max-width: 1200px)   {
    .pro-details {
        padding: 60px 20px;
    }
    
    .product-gallery {
        display: flex;
        gap: 20px;
    }
    .main-image {
        width: 70%;
        box-shadow: 10px 10px 50px 5px #f4f4f4;
        border-radius: 15px;
        display: flex;
    }
    .main-image img {
        width: 100%;
        display: none;
        object-fit: cover;
    }
    .main-image img.active {
        display: block;
    }
    .thumbnail-container {
        width: 30%;
        height: 500px;
        overflow-y: hidden;
    }
    .thumbnails {
        display: flex;
        flex-direction: column;
        gap: 5px;
        height: 500px;
    }
    .thumbnail {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        width: 100%;
        height: 33%;
    }
    .thumbnail img {
        width: 100%;
        border-radius: 8px;
    }
    .thumbnail:not(.active)::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgb(0 0 0 / 5%);
        border-radius: 8px;
    }

    .pro-details-text {
        margin-top: 30px;
    }
    
    .pro-details-text-content {
        margin: 30px 0 50px 0;
    }
    
    .pro-details-text-content ul {
        padding-left: 0;
    }
    
    .pro-details-text-content span {
        font-family: 'Oswald', sans-serif;
        font-weight: bold;
    }
    
    .pro-details-text-content li {
        font-family: 'Abel', sans-serif;
    }
    
    .palameter {
        margin: 120px 0;
    }
    
    .palameter table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .pro-details-video {
        margin-bottom: 80px;
    }
    
}

/* 产品详情 */





/* 服务保障 */
.service-adv-item {
    display: flex;
    align-items: center;
    gap:10px;
    padding: 20px 0;
}

.service-adv-item-icon i {
    font-size: 2.8rem;
}

.about-us-date-scroll-item-title {
    width: 100%;
    word-break: break-all;
}

.about-us-date-scroll-item {
    padding: 40px;
    background-color: #f3f3f3;
    border-radius: 10px;
    text-align: center;
}

.about-us-date-scroll-item-title p {
    margin-bottom: 0;
}

.guarantee-item {
    padding: 40px;
    background-color: #f3f3f3;
    border-radius: 10px;
}

.guarantee-item-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #272727;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.guarantee-item-icon i {
    font-size: 1.5rem;
}

.guarantee-item-icon-title {
    margin: 20px 0 30px 0;
    word-break: break-all;
}

.gallery {
    margin: 120px 0;
    background-color: #272727;
    padding: 120px 0;
}

.gallery-content-title {
    text-align: center;
    color: #fff;
}

.gallery-content-title p {
    margin-bottom: 0;
}

.gallery-content-text {
    text-align: center;
    margin: 20px 0 30px 0;
    color: #fff;
}

.gallery-item {
    padding: 40px;
    background-color: #3b3b3b;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    gap:10px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.gallery-item-icon i {
    font-size: 2.8rem;
}

.gallery-item:hover {
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

.gallery-item:hover .gallery-item-icon {
    transform: rotateZ(45deg);
    transition: all 0.3s ease-in-out;
}
/* 服务保障 */





/* 客户案例 */
@media screen and (min-width: 1201px)   {
    .case-area {
        padding: 120px 0;
    }
    
    .case-video {
        margin-bottom: 50px;
    }
    
    .case-box-item {
        width: 100%;
        overflow: hidden;
        display: flex;
        border-radius: 10px;
        margin-bottom: 20px;
        position: relative;
    }
    
    .case-box-item-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        display: flex;
    }
    
    .case-box-item-bg img {
        width: 100%;
        object-fit: cover;
    }
    
    .case-box-item:hover {
        transform: translateY(-5px);
        transition: all 0.3s ease-in-out;
    }
    
    .case-box-item-text {
        padding: 50px 20px;
        background-color: rgba(0, 0, 0, 0.772);
        color: #fff;
        width: 100%;
        height: 100%;
        text-align: center;
        opacity: 0;
    }
    
    .case-box-item-text p {
        margin-bottom: 0;
    }
    
    .case-box-item:hover .case-box-item-text {
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }
    
}

@media screen and (max-width: 1200px)   {
    .case-area {
        padding: 60px 0;
    }
    
    .case-video {
        margin-bottom: 20px;
    }
    
    .case-box-item {
        width: 100%;
        overflow: hidden;
        display: flex;
        border-radius: 10px;
        margin-bottom: 20px;
        position: relative;
    }
    
    .case-box-item-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        display: flex;
    }
    
    .case-box-item-bg img {
        width: 100%;
        object-fit: cover;
    }
    
    .case-box-item:hover {
        transform: translateY(-5px);
        transition: all 0.3s ease-in-out;
    }
    
    .case-box-item-text {
        padding: 50px 20px;
        background-color: rgba(0, 0, 0, 0.772);
        color: #fff;
        width: 100%;
        height: 100%;
        text-align: center;
        opacity: 0;
    }
    
    .case-box-item-text p {
        margin-bottom: 0;
    }
    
    .case-box-item:hover .case-box-item-text {
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }
    
}

/* 客户案例 */






/* 新闻列表 */
@media screen and (min-width: 1201px)   {
    .article-area {
        padding: 120px 0;
    }
    
    .article-item {
        margin-bottom: 20px;
        width: 100%;
        height: 450px;
        overflow: hidden;
        display: flex;
        border-radius: 10px;
    }
    
    .article-item-image {
        display: flex;
        width: 50%;
    }
    
    .article-item-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .article-item-text {
        width: 50%;
        padding: 30px;
        background-color: #f3f3f3;
        word-break: break-all;
        overflow: hidden;
    }
    
    .article-item-text a {
        font-family: 'Oswald', sans-serif;
        font-size: 1.3rem;
        text-decoration: none;
        color: #272727;
    }
    
    .article-item-text p {
        margin: 20px 0 30px 0;
        color: #4e4e4e;
    }
    
    .article-item:hover {
        transform: translateY(-5px);
        transition: all 0.3s ease-in-out;
    }
    
    .article-item:hover .article-item-text {
        background-color: #272727;
        transition: all 0.3s ease-in-out;
    }
    
    .article-item:hover .article-item-text a {
        color: #fff;
        transition: all 0.3s ease-in-out;
    }
    
    .article-item:hover .article-item-text p {
        color: #fff;
        transition: all 0.3s ease-in-out;
    }
    
}

@media screen and (max-width: 1200px)   {
    .article-area {
        padding: 60px 0;
    }
    
    .article-item {
        margin-bottom: 20px;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .article-item-image img {
        width: 100%;
        object-fit: cover;
    }
    
    .article-item-text {
        padding: 20px;
        background-color: #f3f3f3;
        word-break: break-all;
        overflow: hidden;
    }
    
    .article-item-text a {
        font-family: 'Oswald', sans-serif;
        font-size: 1.3rem;
        text-decoration: none;
        color: #272727;
    }
    
    .article-item-text p {
        margin: 20px 0 30px 0;
        color: #4e4e4e;
    }
    
    .article-item:hover {
        transform: translateY(-5px);
        transition: all 0.3s ease-in-out;
    }
    
    .article-item:hover .article-item-text {
        background-color: #272727;
        transition: all 0.3s ease-in-out;
    }
    
    .article-item:hover .article-item-text a {
        color: #fff;
        transition: all 0.3s ease-in-out;
    }
    
    .article-item:hover .article-item-text p {
        color: #fff;
        transition: all 0.3s ease-in-out;
    }
    
}

/* 新闻列表 */




/* 新闻详情 */
@media screen and (min-width: 1201px)   {
    .article-details {
        padding: 120px 0;
    }
    
    .article-details-title {
        text-align: center;
    }
    
    .article-details-title-more {
        margin: 20px 0 50px 0;
        display: flex;
        gap:30px;
        align-items: center;
        justify-content: center;
    }
    
    .article-details-image img {
        width: 100%;
    }
    
    .article-details-content {
        margin: 50px 0;
    }
    
    .article-details-line {
        border-bottom: 1px solid #f3f3f3;
    }
    
    .article-details-switch {
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .article-details-switch a {
        text-decoration: none;
        color: #272727;
        font-family: 'Oswald', sans-serif;
    }
    
}

@media screen and (max-width: 1200px)   {
    .article-details {
        padding: 60px 0;
    }
    
    .article-details-title {
        text-align: center;
    }
    
    .article-details-title-more {
        margin: 20px 0 50px 0;
        display: flex;
        gap:30px;
        align-items: center;
        justify-content: center;
    }
    
    .article-details-image img {
        width: 100%;
    }
    
    .article-details-content {
        margin: 50px 0;
    }
    
    .article-details-line {
        border-bottom: 1px solid #f3f3f3;
    }
    
    .article-details-switch {
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .article-details-switch a {
        text-decoration: none;
        color: #272727;
        font-family: 'Oswald', sans-serif;
    }
    
}

/* 新闻详情 */





/* 联系我们 */
@media screen and (min-width: 1201px)   {
    .contact {
        padding: 120px 0;
    }
    
    .contact-box-image img {
        width: 100%;
        object-fit: cover;
    }
    
    .contact-box-text {
        padding: 30px;
    }
    
    .contact-box-text-title p {
        margin-bottom: 0;
    }
    
    .contact-box-text-des {
        margin: 20px 0 30px 0;
    }
    
    .contact-form-input {
        margin-bottom: 20px;
    }
    
    .contact-form-input input {
        border: none;
        background-color: #f3f3f3;
        padding: 8px 12px;
        width: 100%;
        border-radius: 5px;
        font-family: 'Abel', sans-serif;
        font-size: 1rem;
    }
    
    .contact-form-input input:focus {
        outline: none;
        background-color: #272727;
        color: #fff;
    }
    
    .contact-form-textarea {
        margin-bottom: 30px;
    }
    
    .contact-form-textarea textarea {
        border: none;
        background-color: #f3f3f3;
        padding: 8px 12px;
        width: 100%;
        border-radius: 5px;
        font-family: 'Abel', sans-serif;
        font-size: 1rem;
        height: 200px;
    }
    
    .contact-form-textarea textarea:focus {
        outline: none;
        background-color: #272727;
        color: #fff;
    }
    
}

@media screen and (max-width: 1200px)   {
    .contact {
        padding: 60px 0;
    }
    
    .contact-box-image img {
        width: 100%;
        object-fit: cover;
    }
    
    .contact-box-text {
        padding: 30px;
    }
    
    .contact-box-text-title p {
        margin-bottom: 0;
    }
    
    .contact-box-text-des {
        margin: 20px 0 30px 0;
    }
    
    .contact-form-input {
        margin-bottom: 20px;
    }
    
    .contact-form-input input {
        border: none;
        background-color: #f3f3f3;
        padding: 8px 12px;
        width: 100%;
        border-radius: 5px;
        font-family: 'Abel', sans-serif;
        font-size: 1rem;
    }
    
    .contact-form-input input:focus {
        outline: none;
        background-color: #272727;
        color: #fff;
    }
    
    .contact-form-textarea {
        margin-bottom: 30px;
    }
    
    .contact-form-textarea textarea {
        border: none;
        background-color: #f3f3f3;
        padding: 8px 12px;
        width: 100%;
        border-radius: 5px;
        font-family: 'Abel', sans-serif;
        font-size: 1rem;
        height: 200px;
    }
    
    .contact-form-textarea textarea:focus {
        outline: none;
        background-color: #272727;
        color: #fff;
    }
    
}

/* 联系我们 */