/* 基础样式 */
body {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #212427;
    background: #ffffff;
    font-family: Arial, "Microsoft YaHei", sans-serif;
}
@font-face {
  font-family: 'Roboto';
  src: url('./fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Roboto';
  src: url('./fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Raleway';
  src: url('./fonts/Raleway_400Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Raleway';
  src: url('./fonts/Raleway_700Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins_400Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins_700Bold.ttf') format('truetype');
  font-weight: 700;
}
#app {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.inner {
    display: flex;
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
}

a {
    cursor: pointer;
}

button {
    cursor: pointer;
}

.btn {
    cursor: pointer;
}

/* 头部样式 */
.header {
    position: fixed;
    top: 0;
    z-index: 999;
    display: flex;
    width: 100%;
    height: 100px;
    background: #ffffff;
    border-bottom: 0;
    transform: translateY(0);
    transition: top 0.5s ease, box-shadow 0.5s ease;
}

.header.header-scroll-hidden,
.header.header-active-top,
.header-active-top {
    top: -100px;
}

.header .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
}

.header .logo {
    display: flex;
    align-items: center;
    width: 200px;
    height: 100%;
}

.header .logo a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.header .logo img {
    display: flex;
    width: 100%;
    max-height: 76px;
    object-fit: contain;
}

.header .header-nav {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header .header-nav a {
    display: flex;
    align-items: center;
    color: #1e1e35;
    font-family: Arial;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    transition: color 0.5s ease;
}

.header .header-nav a:hover {
    color: #33833f;
}

.header .header-nav a p {
    display: flex;
}

.header .header-contactShare {
    display: flex;
    align-items: space-between;
    justify-content: flex-end;
    width: 220px;
    gap: 10px;
}

.header .header-contactShare a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    padding: 0;
    border-radius: 50px;
    background: transparent;
    transition: background 0.5s ease;
}

.header .header-contactShare a svg {
    width: 100%;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.header .header-contactShare a:hover svg{
    opacity: 1;
}

/* Banner 样式 */
.banner {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 100px;
    overflow: hidden;
    background: #191d20;
}

.banner > img {
    display: flex;
    width: 100%;
    max-width: none;
}

.banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 80%;
    max-width: 1440px;
    height: 90%;
}

.banner .content .text1 {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: Roboto;
    font-weight: 600;
    font-size: 24px;
    line-height: 16px;
}

.banner .content .title {
    flex-wrap: wrap;
    width: 85%;
    color: #ffffff;
    font-family: Roboto;
    font-weight: 600;
    font-size: 63px;
    line-height: 70px;
    text-transform: capitalize;
    margin-top: 25px;
}

.banner .content .title span {
    color: #33833f;
}

.banner .content .desc {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 35px;
    gap: 15px;
}

.banner .content .desc .one {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
}

.banner .content .desc .one .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 7px;
}

.banner .content .desc .one .text2 {
    display: flex;
    flex: 1;
    align-items: center;
    color: #ffffff;
    font-family: Helvetica;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.banner .content > a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 100px;
    padding: 15px 50px;
    color: #ffffff;
    border-radius: 16px;
    background: #33833f;
    transition: background 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.banner .content > a:hover {
    background: #246b2e;
    box-shadow: 0 20px 38px rgba(51, 131, 63, 0.36);
    transform: translateY(-3px);
}

.banner .content > a p {
    display: flex;
    color: #ffffff;
    font-family: Roboto;
    font-weight: 500;
    font-size: 26px;
    line-height: 15px;
}

.banner .content > a .icon {
    display: flex;
}

.banner .content > img {
    position: absolute;
    right: 0%;
    bottom: 10%;
    display: flex;
    width: 41%;
    margin-top: 0;
    z-index: 1;
}

/* 优势样式 */
.feature {
    display: flex;
    width: 100%;    
    position: relative;
    top: -100px;
}

.feature .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0px 0px 60px #0000001a;
    overflow: hidden;
}

.feature .one {
    display: flex;
    align-items: flex-start;
    width: 33.333333%;
    padding: 30px;
}

.feature .one2 {
    display: flex;
    background: #33833f;
}

.feature .one .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    max-width: 72px;
    min-width: 72px;
    height: 72px;
    border-radius: 36px;
    border: 1px solid #33833f;
    box-sizing: border-box;
}

.feature .one2 .icon {
    border: 1px solid #ffffff;
}

.feature .one .content {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 16px;
}

.feature .one .content .text1 {
    display: flex;
    color: #353a3f;
    font-family: Raleway;
    font-weight: 700;
    font-size: 31px;
    line-height: 41px;
    text-transform: capitalize;
}

.feature .one2 .content .text1 {
    display: flex;
    color: #ffffff;
}

.feature .one .content .text2 {
    display: flex;
    color: #353a3f;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 12px;
}

.feature .one2 .content .text2 {
    display: flex;
    color: rgba(255, 255, 255, 0.88);
}

/* 产品列表样式 */
.product {
    display: flex;
    width: 100%;
    background: #ffffff;
}

.product .inner {
    display: flex;
    flex-direction: column;
    padding: 0 0 82px;
}

.product .section1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.product .section1 .title {
    display: flex;
    color: #212427;
    font-family: Poppins;
    font-weight: 800;
    font-size: 35px;
    line-height: 32px;
    text-align: center;
}

.product .section1 .desc {
    display: flex;
    width: 90%;
    color: #353a3f;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 30px;
    text-align: center;
}

.product .section2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 68px;
    column-gap: 30px;
    width: 100%;
    margin-top: 42px;
}

.product .section2 .item {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 12px;
    border-bottom: 4px solid #003412;
    background: #ffffff01;
    box-shadow: 0px 3px 2.9px #00000038;
}

.product .section2 .item .top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
    height: 140px;
}

.product .section2 .item .top .top-top {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.product .section2 .item .top .top-top .icon {
    display: flex;
}

.product .section2 .item .top .top-top .title {
    display: flex;
    color: #212427;
    font-family: Roboto;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-left: 14px;
}

.product .section2 .item .top .desc {
    display: flex;
    color: #353a3f;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 6px;
}

.product .section2 .item .middle {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    background: #ffffff url("../img/product-back.png") center bottom / 100% auto no-repeat;
}

.product .section2 .item .middle .pros {
    width: 90%;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.product .section2 .item .middle .pros:hover {
    transform: scale(1.05);
}

.product .section2 .item .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    width: 100%;
    padding: 20px;
}
.product .section2 .item .bottom .bottom-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.product .section2 .item .bottom .one {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.product .section2 .item .bottom .one .icon {
    display: flex;
    padding-top: 5px;
}

.product .section2 .item .bottom .one .text {
    display: flex;
    flex: 1;
    color: #3b855d;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-left: 8px;
}

.product .section2 .item .bottom .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: auto;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    transition: background 0.5s ease;
    border-radius: 3px;
    background: #33833f;
    color: #f9f9f9;
    font-family: Roboto;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    margin-top: 12px;
}

.product .section2 .item .bottom .btn:hover {
    background: #246b2e;
}

/* 品质承诺样式 */
.quality {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
    background: #f8f9f9;
    padding: 70px 0;
}

.quality .section1 {
    display: flex;
    width: 100%;
}

.quality .section1 .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quality .section1 .title {
    display: flex;
    color: #212427;
    font-family: Poppins;
    font-weight: 800;
    font-size: 35px;
    line-height: 32px;
    text-transform: capitalize;
    text-align: center;
}

.quality .section1 .desc {
    display: flex;
    justify-content: center;
    width: 90%;
    text-align: center;
    color: #353a3f;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 31px;
    margin-top: 17px;
}

.quality .section2 {
    display: flex;
    justify-content: space-between;
    width: 65%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.quality .section2 .img {
    display: flex;
    width: calc(50% - 10px);
    max-width: none;
    transition: transform 0.5s ease;
    border-radius: 8px;
    background: #909090;
    overflow: hidden;
}
.quality .section2 .img img {
    width: 100%;
    transform: scale(1);
    transition: transform 0.5s ease;
}
.quality .section2 .img img:hover {
    transform: scale(1.05);
}

.quality .section3 {
    display: flex;
    width: 100%;
}

.quality .section3 .inner {
    display: flex;
    justify-content: center;
}

.quality .section3 .text {
    display: flex;
    width: 100%;
    color: #33833f;
    font-family: Helvetica;
    font-weight: 700;
    font-size: 22px;
    line-height: 39px;
    text-decoration-line: underline;
    text-decoration-thickness: 10%;
    text-underline-offset: 30%;
    text-underline-position: from-font;
    text-decoration-skip-ink: auto;
    text-align: center;
}

/* 供应风险样式 */
.supply {
    display: flex;
    width: 100%;
    background: #ffffff;
}

.supply .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 84%;
    padding: 76px 0 88px;
}

.supply .section1 {
    display: flex;
    justify-content: center;
    width: 100%;
}

.supply .section1 .title {
    display: flex;
    color: #212427;
    font-family: Poppins;
    font-weight: 800;
    font-size: 35px;
    line-height: 38px;
    text-align: center;
}

.supply .section2 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin-top: 100px;
    border-radius: 16px;
    border: 8px solid #33833f;
    background: #33833f;
    box-shadow: 0px 0px 8.6px #00000038;
}

.supply .section2 .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    border-radius: 16px;
    background: #faf6ed;
    padding: 10px 20px;
}

.supply .section2 .left .img {
    border-radius: 16px;
    overflow: hidden;
    height: 370px;
    background: transparent;
}
.supply .section2 .left .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 0.5s ease;
}
.supply .section2 .left .img:hover img {
    transform: scale(1.05);
}
.supply .section2 .left .title {
    width: 90%;
    display: flex;
    color: #33833f;
    font-family: Poppins;
    font-weight: 800;
    font-size: 32px;
    line-height: 40px;
    align-items: center;
    margin-top: 30px;
}

.supply .section2 .left .bottom {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    margin-top: 60px;
}

.supply .section2 .left .bottom .one {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.supply .section2 .left .bottom .one .text1 {
    display: flex;
    color: #353a3f;
    font-family: Helvetica;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 12px;
    }

.supply .section2 .left .bottom .one .text2 {
    display: flex;
    color: #353a3f;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 19px;
    line-height: 23px;
}

.supply .section2 .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    padding: 10px 20px;
}

.supply .section2 .right .title {
    width: 90%;
    display: flex;
    color: #faf6ed;
    font-family: Poppins;
    font-weight: 800;
    font-size: 32px;
    line-height: 40px;
}

.supply .section2 .right .bottom {
    width: 85%;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 26px 28px;
}

.supply .section2 .right .bottom .one {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 35px;
}

.supply .section2 .right .bottom .one .text1 {
    display: flex;
    color: #ffffff;
    font-family: Helvetica;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

.supply .section2 .right .bottom .one .text2 {
    color: #ffffff;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-top: 12px;
}

.supply .section2 .right .bottom .one .text2 span {
    font-weight: 700;
}

.supply .section2 .right .bottom .text3 {
    display: flex;
    flex-wrap: wrap;
    color: #ffffff;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
}

.supply .section2 .right .bottom .text3 span {
    font-weight: 700;
}

.supply .section2 .right .img {
    border-radius: 16px;
    overflow: hidden;
    height: 370px;
    background: transparent;
}
.supply .section2 .right .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.supply .section2 .right .img:hover img {
    transform: scale(1.05);
}
.supply .section3 {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.supply .section3 .text4 {
    display: flex;
    color: #212427;
    font-family: Roboto;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    text-align: center;
}

.supply .btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 45px;
    padding: 15px 50px;
    color: #ffffff;
    border-radius: 16px;
    background: #33833f;
    transition: background 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.supply .btn:hover {
    background: #246b2e;
    box-shadow: 0 20px 38px rgba(51, 131, 63, 0.36);
    transform: translateY(-3px);
}

.supply .btn p {
    display: flex;
    color: #ffffff;
    font-family: Roboto;
    font-weight: 500;
    font-size: 26px;
    line-height: 15px;
}

.supply .btn .icon {
    display: flex;
}

/* 检测报告样式 */
.report {
    display: flex;
    width: 100%;
    background: #ffffff;
}

.report .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 68px 0 82px;
}

.report .section1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.report .section1 .title {
    display: flex;
    color: #212427;
    font-family: Poppins;
    font-weight: 800;
    font-size: 35px;
    line-height: 32px;
    text-align: center;
}

.report .section1 .desc {
    display: flex;
    width: 90%;
    color: #353a3f;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 37px;
    text-align: center;    
    justify-content: center;
}

.report .section2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 30px;
    column-gap: 20px;
    width: 100%;
    margin-top: 70px;
    border-radius: 12px;
    border: 9px solid #33833f0f;
    background: #0000000a;
}

.report .section2 .item {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.report:not(.report-expanded) .section2 .item:nth-child(n+11) {
    display: none;
}

@media (min-width: 821px) and (max-width: 1024px) {
    .report:not(.report-expanded) .section2 .item:nth-child(n+9) {
        display: none;
    }
}

@media (max-width: 820px) {
    .report:not(.report-expanded) .section2 .item:nth-child(n+7) {
        display: none;
    }
}

.report .section2 .item .el-image {
    display: flex;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.report .section2 .item .el-image img {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.report .section2 .item .el-image:hover img {
    transform: scale(1.05);
}

.report .btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    padding: 15px 50px;
    color: #ffffff;
    border-radius: 16px;
    background: #33833f;
    transition: background 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
}

.report .btn:hover {
    background: #246b2e;
    box-shadow: 0 20px 38px rgba(51, 131, 63, 0.36);
    transform: translateY(-3px);
}

.report .btn p {
    display: flex;
    color: #ffffff;
    font-family: Roboto;
    font-weight: 500;
    font-size: 26px;
    line-height: 15px;
}

.report .btn .icon {
    display: flex;
}

/* 生产环境样式 */
.workshop {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #f8f9f9;
}

.workshop .section1 {
    display: flex;
    width: 100%;
}

.workshop .section1 .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 78px 0 68px;
}

.workshop .section1 .title {
    display: flex;
    color: #212427;
    font-family: Poppins;
    font-weight: 800;
    font-size: 35px;
    line-height: 32px;
    text-transform: capitalize;
    text-align: center;
}

.workshop .section1 .desc {
    width: 75%;
    color: #353a3f;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
    text-align: center;
}

.workshop .section1 .desc .highlight1 {
    font-weight: 700;
}

.workshop .section1 .desc .highlight2 {
  color: #33833f;
  font-weight: 700;
}

.workshop .section2 {
    display: flex;
    width: 100%;
}

.workshop .section2 .inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 86px;
}

.workshop .section2 .item {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.workshop .section2 .item .img {
    display: flex;
    width: 50%;
    overflow: hidden;
}

.workshop .section2 .item .img img {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
    transform: scale(1);
}

.workshop .section2 .item .img:hover img {
    transform: scale(1.05);
}

.workshop .section2 .item .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 48px;
}

.workshop .section2 .item .content .text1 {
    display: flex;
    color: #212427;
    font-family: Roboto;
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
}

.workshop .section2 .item .content .text2 {
    display: flex;
    color: #353a3f;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 35px;
}

/* 客户评价样式 */
.review {
    display: flex;
    width: 100%;
    background: #ffffff;
}

.review .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 68px 0 82px;
}

.review .section1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.review .section1 .title {
    display: flex;
    color: #212427;
    font-family: Poppins;
    font-weight: 800;
    font-size: 35px;
    line-height: 32px;
    text-align: center;
}

.review .section1 .desc {
    display: flex;
    width: 90%;
    color: #353a3f;
    font-family: Helvetica;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
}

.review .section2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
        "review1 review2 review3"
        "review4 review6 review6"
        "review5 review6 review6";
    align-items: stretch;
    row-gap: 34px;
    column-gap: 20px;
    width: 100%;
    margin-top: 80px;
}

.review .section2 .item {
    display: flex;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.review .section2 .item:nth-child(1) {
    grid-area: review1;
}

.review .section2 .item:nth-child(2) {
    grid-area: review2;
}

.review .section2 .item:nth-child(3) {
    grid-area: review3;
}

.review .section2 .item:nth-child(4) {
    grid-area: review4;
}

.review .section2 .item:nth-child(5) {
    grid-area: review5;
}

.review .section2 .item:nth-child(6) {
    grid-area: review6;
}

.review .section2 .item .el-image {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.review .section2 .el-image img {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.review .section2 .el-image:hover img {
    transform: scale(1.05);
}

/* 联系表单样式 */
.contact {
    display: flex;
    width: 100%;
    background: #f8f9f9;
}

.contact .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 68px 0 76px;
}

.contact .section1 {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-right: 18px;
}

.contact .section1 .top {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact .section1 .top .title {
    display: flex;
    color: #272727;
    font-family: Poppins;
    font-weight: 800;
    font-size: 40px;
    line-height: 45px;
    text-transform: capitalize;
}

.contact .section1 .top .line {
    display: flex;
    margin-top: 15px;
    width: 100px;
    height: 1.6px;
    border: 1.6px solid #33833f;
}

.contact .section1 .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 13px;
    padding: 40px 20px;
    border-radius: 12px;
    background: #faf6ed;
    box-shadow: 0px 0px 5px #00000012;
}

.contact .section1 .bottom .form_item {
    display: flex;
    width: 100%;
    margin-bottom: 18px;
}

.contact .section1 .bottom .form_item .input {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact .section1 .bottom .form_item .input .label {
    display: flex;
    color: #4f4c4c;
    font-family: Poppins;
    font-weight: 400;
    font-size: 15px;
    line-height: 24.8px;
    margin-bottom: 6px;
}

.contact .section1 .bottom .form_item .input .label span {
    color: #c30000;
    font-family: Poppins;
    font-weight: 400;
    font-size: 15px;
    line-height: 24.8px;
    margin-left: 4px;
}

.contact .section1 .bottom .form_item .input .value {
    display: flex;
    width: 100%;
}

.contact .section1 .bottom .form_item .input .value input {
    display: flex;
    width: 100%;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #272727;
    padding: 15px 18px;
    color: #212427;
    background: transparent;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    line-height: 24px;
    transition: border-color 0.5s ease;
}

.contact .section1 .bottom .form_item .input .value input:focus {
    border-color: #33833f;
}

.contact .section1 .bottom .form_item .input .value textarea {
    display: flex;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #272727;
    padding: 15px 18px;
    color: #212427;
    background: transparent;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    line-height: 24px;
    transition: border-color 0.5s ease;
}

.contact .section1 .bottom .form_item .input .value textarea:focus {
    border-color: #33833f;
}
.contact .section1 .bottom .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: auto;
    padding: 7px 88px;
    transition: background 0.5s ease;
    border-radius: 3px;
    background: #33833f;   
    color: #ffffff;
    font-family: Poppins;
    font-weight: 500;
    font-size: 15px;
    line-height: 24.8px;
}

.contact .section1 .bottom .btn:hover {
    background: #246b2e;
}
.contact .section2 {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-left: 18px;
}

.contact .section2 .top {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact .section2 .top .title {
    display: flex;
    color: #272727;
    font-family: Poppins;
    font-weight: 800;
    font-size: 40px;
    line-height: 45px;
    text-transform: capitalize;
}

.contact .section2 .top .line {
    display: flex;
    margin-top: 15px;
    width: 100px;
    height: 1.6px;
    border: 1.6px solid #33833f;
}
.contact .section2 .bottom {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 28px;
    gap: 12px;
}

.contact .section2 .bottom .item {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.contact .section2 .bottom .item .question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.5s ease;
    border-radius: 12px;
    background: #faf6ed;
}

.contact .section2 .bottom .item .question p {
    display: flex;
    flex: 1;
    color: #353a3f;
    font-family: Poppins;
    font-weight: 700;
    font-size: 16px;
    line-height: 26.4px;
    text-transform: capitalize;
}

.contact .section2 .bottom .item .question .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50px;
    background: transparent;
    margin-left: 18px;
}

.contact .section2 .bottom .item .question .icon .minus {
    display: none;
}

.contact .section2 .bottom .item .answer {
    display: none;
    color: #4f4c4c;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 26.4px;
    padding: 15px 20px;
    background: #ffffff;
}

.contact .section2 .bottom:not(.faq-ready) .item:first-child .question,
.contact .section2 .bottom .item.active .question {
    background: #33833f;
}

.contact .section2 .bottom:not(.faq-ready) .item:first-child .question p,
.contact .section2 .bottom .item.active .question p {
    color: #ffffff;
}

.contact .section2 .bottom:not(.faq-ready) .item:first-child .question .icon,
.contact .section2 .bottom .item.active .question .icon {
    background: transparent;
}

.contact .section2 .bottom:not(.faq-ready) .item:first-child .question .icon .add,
.contact .section2 .bottom .item.active .question .icon .add {
    display: none;
}

.contact .section2 .bottom:not(.faq-ready) .item:first-child .question .icon .minus,
.contact .section2 .bottom .item.active .question .icon .minus {
    display: flex;
}

.contact .section2 .bottom:not(.faq-ready) .item:first-child .answer,
.contact .section2 .bottom .item.active .answer {
    display: flex;
}

/* 底部样式 */
.footer {
    display: flex;
    width: 100%;
    background: #2b5b3e;
}

.footer .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 48px 0;
}

.footer .logo {
    display: flex;
    width: 20%;
}

.footer .logo a {
    display: flex;
    width: 100%;
}

.footer .logo img {
    display: flex;
    width: 100%;
}

.footer .footer-contactShare {
    display: flex;
    align-items: center;
    color: #ffffff;
    transition: opacity 0.5s ease;
}

.footer .footer-contactShare:hover {
    opacity: 0.86;
}

.footer .footer-contactShare svg {
    display: flex;
    margin-right: 24px;
    flex-shrink: 0;
}

.footer .footer-contactShare p {
    display: flex;
    position: relative;
    color: #ffffff;
    font-family: Poppins;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
}

.footer .footer-contactShare p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    border-bottom: 1px solid #ffffff;
    transition: width 0.5s ease;
}

.footer .footer-contactShare:hover p {
    text-decoration: none;
}

.footer .footer-contactShare:hover p::after {
    width: 100%;
}



@media (max-width: 820px) {
    .header {
        display: flex;
        height: 86px;
    }

    .headerM {
        display: none;
    }

    .header .inner {
        width: 92%;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

    .header .logo {
        width: 30%;
    }

    .header .logo img {
        max-height: 58px;
    }

    .header .header-nav {
    }

    .header .header-contactShare {
        width: 32%;
        justify-content: flex-end;
        gap: 0px;
    }

    .header .header-contactShare a {
        width: 22%;
    }

    .header .header-contactShare a svg {
        width: 30px;
        height: 30px;
    }

    .banner {
        margin-top: 86px;
    }
}
@media (min-width: 1025px) and (max-width: 1380px) {
    .banner .content > a{
        margin-top: 75px;
    }
    .product .section2 .item .top {
        height: 155px;
    }
}
/* 1280响应式 */
@media (min-width: 1025px) and (max-width: 1280px) {
    .header {
        display: flex;
        height: 92px;
    }

    .headerM {
        display: none;
    }

    .inner {
        width: 86%;
    }

    .header .logo {
        width: 16%;
    }

    .header .logo img {
        max-height: 68px;
    }

    .header .header-nav {
        width: 42%;
    }

    .header .header-contactShare {
        width: 18%;
    }

    .banner {
        margin-top: 92px;
    }

    .banner .content {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 86%;
    }

    .banner .content .title {
        width: 90%;
        font-size: 48px;
        line-height: 56px;
        margin-top: 18px;
    }

    .banner .content .desc {
        margin-top: 24px;
        gap: 12px;
    }

    .banner .content .desc .one .text2 {
        font-size: 15px;
        line-height: 22px;
    }

    .banner .content > a,
    .supply .btn,
    .report .btn {
        margin-top: 42px;
        padding: 13px 42px;
    }

    .banner .content > img {
        width: 38%;
    }

    .feature {
        top: -58px;
    }

    .feature .one {
        padding: 24px;
    }

    .feature .one .icon {
        width: 60px;
        max-width: 60px;
        min-width: 60px;
        height: 60px;
    }

    .feature .one .content .text1 {
        font-size: 26px;
        line-height: 34px;
    }

    .feature .one .content .text2,
    .product .section1 .desc,
    .quality .section1 .desc,
    .report .section1 .desc,
    .workshop .section1 .desc,
    .review .section1 .desc {
        font-size: 15px;
        line-height: 23px;
    }

    .product .section2 {
        row-gap: 52px;
        column-gap: 22px;
    }

    .product .section2 .item .top,
    .product .section2 .item .bottom {
        padding: 16px;
    }
    .product .section2 .item .top {
        height: 155px;
    }
    .quality {
        padding: 62px 0;
    }

    .quality .section2 {
        width: 72%;
    }

    .supply .inner {
        width: 88%;
        padding: 66px 0 76px;
    }

    .supply .section2 {
        margin-top: 72px;
    }

    .supply .section2 .left .title,
    .supply .section2 .right .title {
        font-size: 28px;
        line-height: 36px;
    }

    .supply .section2 .left .bottom {
        width: 82%;
        gap: 24px;
        margin-top: 44px;
    }

    .supply .section2 .right .bottom {
        padding: 22px 22px;
    }

    .supply .section2 .left .bottom .one .text2,
    .supply .section2 .right .bottom .one .text2 {
        font-size: 17px;
        line-height: 22px;
    }

    .report .inner,
    .review .inner {
        padding: 60px 0 72px;
    }

    .report .section2 {
        column-gap: 16px;
        row-gap: 24px;
        margin-top: 54px;
    }

    .workshop .section2 .item .content {
        padding: 38px;
    }

    .workshop .section2 .item .content .text1 {
        font-size: 28px;
        line-height: 32px;
    }

    .contact .inner {
        padding: 60px 0 68px;
    }

    .contact .section1 .bottom {
        padding: 34px 18px;
    }

    .footer .inner {
        padding: 42px 0;
        padding: 38px 0;
    }
}

/* 1024响应式 */
@media (min-width: 821px) and (max-width: 1024px) {
    .header {
        display: flex;
        height: 96px;
    }

    .headerM {
        display: none;
    }

    .inner {
        width: 90%;
    }

    .header .inner {
        padding: 9px 0;
    }

    .header .logo {
        width: 18%;
    }

    .header .logo img {
        max-height: 66px;
    }

    .header .header-nav {
        width: 44%;
    }

    .header .header-nav a {
        font-size: 14px;
        line-height: 22px;
    }

    .header .header-contactShare {
        width: 20%;
    }

    .header .header-contactShare a svg {
        width: 32px;
        height: 32px;
    }

    .banner {
        margin-top: 96px;
    }

    .banner .content {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }

    .banner .content .text1 {
        font-size: 20px;
        line-height: 16px;
    }

    .banner .content .title {
        width: 100%;
        font-size: 42px;
        line-height: 52px;
        margin-top: 18px;
    }

    .banner .content .desc {
        margin-top: 22px;
        gap: 10px;
    }

    .banner .content .desc .one .text2 {
        font-size: 14px;
        line-height: 21px;
    }

    .banner .content > a,
    .supply .btn,
    .report .btn {
        margin-top: 38px;
        padding: 12px 34px;
        border-radius: 10px;
    }

    .banner .content > a p,
    .supply .btn p,
    .report .btn p {
        font-size: 21px;
        line-height: 15px;
    }

    .banner .content > img {
        width: 35%;
        bottom: 8%;
    }

    .feature {
        top: -42px;
    }

    .feature .inner {
        border-radius: 24px;
    }

    .feature .one {
        padding: 20px;
    }

    .feature .one .icon {
        width: 52px;
        max-width: 52px;
        min-width: 52px;
        height: 52px;
    }

    .feature .one .icon svg {
        width: 28px;
        height: 28px;
    }

    .feature .one .content {
        margin-left: 12px;
    }

    .feature .one .content .text1 {
        font-size: 22px;
        line-height: 29px;
    }

    .feature .one .content .text2 {
        font-size: 14px;
        line-height: 21px;
    }

    .product .inner {
        padding: 0 0 64px;
    }

    .product .section1 .title,
    .quality .section1 .title,
    .supply .section1 .title,
    .report .section1 .title,
    .workshop .section1 .title,
    .review .section1 .title {
        font-size: 32px;
        line-height: 34px;
    }

    .product .section1 .desc,
    .quality .section1 .desc,
    .report .section1 .desc,
    .workshop .section1 .desc,
    .review .section1 .desc {
        width: 92%;
        font-size: 14px;
        line-height: 22px;
        margin-top: 20px;
    }

    .product .section2 {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 34px;
        column-gap: 18px;
        margin-top: 34px;
    }
    .product .section2 .item .top{
        height: 115px;
    }
    .product .section2 .item .top,
    .product .section2 .item .bottom {
        padding: 14px;
    }

    .product .section2 .item .top .top-top .title,
    .product .section2 .item .top .desc,
    .product .section2 .item .bottom .one .text {
        font-size: 14px;
        line-height: 21px;
    }

    .quality {
        gap: 28px;
        padding: 54px 0;
    }

    .quality .section2 {
        width: 80%;
    }

    .supply .inner {
        width: 90%;
        padding: 58px 0 66px;
    }

    .supply .section2 {
        margin-top: 58px;
        border-width: 6px;
    }

    .supply .section2 .left,
    .supply .section2 .right {
        padding: 10px 14px;
    }

    .supply .section2 .left .title,
    .supply .section2 .right .title {
        width: 96%;
        font-size: 23px;
        line-height: 31px;
    }

    .supply .section2 .left .bottom {
        width: 88%;
        gap: 18px;
        margin-top: 34px;
    }

    .supply .section2 .right .bottom {
        padding: 18px 16px;
    }

    .supply .section2 .left .bottom .one .text1,
    .supply .section2 .right .bottom .one .text1,
    .supply .section2 .left .bottom .one .text2,
    .supply .section2 .right .bottom .one .text2,
    .supply .section2 .right .bottom .text3 {
        font-size: 14px;
        line-height: 20px;
    }

    .report .inner,
    .review .inner {
        padding: 54px 0 62px;
    }

    .report .section2 {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 18px;
        column-gap: 14px;
        margin-top: 42px;
    }

    .workshop .section1 .inner {
        padding: 58px 0 48px;
    }

    .workshop .section2 .inner {
        gap: 24px;
        padding-bottom: 64px;
    }

    .workshop .section2 .item .content {
        padding: 30px;
    }

    .workshop .section2 .item .content .text1 {
        font-size: 24px;
        line-height: 28px;
    }

    .workshop .section2 .item .content .text2 {
        font-size: 14px;
        line-height: 21px;
        margin-top: 22px;
    }

    .review .section2 {
        row-gap: 20px;
        column-gap: 14px;
        margin-top: 48px;
    }

    .contact .inner {
        padding: 54px 0 62px;
    }

    .contact .section1 {
        padding-right: 12px;
    }

    .contact .section2 {
        padding-left: 12px;
    }

    .contact .section1 .top .title,
    .contact .section2 .top .title {
        font-size: 32px;
        line-height: 38px;
    }

    .contact .section1 .bottom {
        padding: 26px 16px;
    }

    .contact .section2 .bottom .item .question p,
    .contact .section2 .bottom .item .answer {
        font-size: 14px;
        line-height: 22px;
    }

    .footer .inner {
        padding: 38px 0;
    }

    .footer .logo {
        width: 22%;
    }

    .footer .footer-contactShare p {
        font-size: 20px;
        line-height: 30px;
    }
}

/* 820响应式 */
@media (min-width: 769px) and (max-width: 820px) {
    .inner {
        width: 92%;
    }

    .banner {
        height: 620px;
    }

    .banner > img {
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .banner .content {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 92%;
        height: auto;
        align-items: center;
    }

    .banner .content .text1 {
        font-size: 18px;
        line-height: 22px;
    }

    .banner .content .title {
        width: 82%;
        font-size: 40px;
        line-height: 48px;
        margin-top: 16px;
        text-align: center;
    }

    .banner .content .desc {
        width: 74%;
        margin-top: 20px;
        gap: 10px;
    }

    .banner .content .desc .one .text2 {
        font-size: 14px;
        line-height: 22px;
    }

    .banner .content > a,
    .supply .btn,
    .report .btn {
        margin-top: 28px;
        padding: 11px 34px;
        border-radius: 6px;
    }

    .banner .content > a p,
    .supply .btn p,
    .report .btn p {
        font-size: 18px;
        line-height: 18px;
    }

    .banner .content > img {
        position: relative;
        right: 0;
        bottom: -10px;
        width: 44%;
    }

    .feature {
        top: -14px;
    }

    .feature .inner {
        width: 88%;
        border-radius: 12px;
    }

    .feature .one {
        width: 100%;
        padding: 18px 24px;
    }

    .feature .one .icon {
        width: 42px;
        max-width: 42px;
        min-width: 42px;
        height: 42px;
    }

    .feature .one .icon svg {
        width: 24px;
        height: 24px;
    }

    .feature .one .content .text1 {
        font-size: 22px;
        line-height: 28px;
    }

    .feature .one .content .text2 {
        font-size: 13px;
        line-height: 20px;
        margin-top: 8px;
    }

    .product .inner {
        padding: 0 0 48px;
    }

    .product .section1 .title,
    .quality .section1 .title,
    .supply .section1 .title,
    .report .section1 .title,
    .workshop .section1 .title,
    .review .section1 .title,
    .contact .section1 .top .title,
    .contact .section2 .top .title {
        font-size: 28px;
        line-height: 34px;
    }

    .product .section1 .desc,
    .quality .section1 .desc,
    .report .section1 .desc,
    .workshop .section1 .desc,
    .review .section1 .desc {
        width: 100%;
        font-size: 13px;
        line-height: 21px;
        margin-top: 14px;
    }

    .product .section2 {
        display: flex;
        flex-wrap: wrap;
        row-gap: 18px;
        column-gap: 14px;
        margin-top: 28px;
    }

    .product .section2 .item {
        width: 48.5%;
    }

    .product .section2 .item .top {
        align-items: center;
        padding: 12px;
        height: auto;
    }

    .product .section2 .item .top .top-top .title {
        font-size: 16px;
        line-height: 22px;
    }

    .product .section2 .item .top .desc {
        display: none;
    }

    .product .section2 .item .bottom {
        padding: 14px;
        gap: 5px;
    }

    .product .section2 .item .bottom .one .text {
        font-size: 12px;
        line-height: 17px;
    }

    .quality {
        gap: 22px;
        padding: 44px 0;
    }

    .quality .section2 {
        width: 100%;
        border-radius: 0;
    }

    .quality .section2 .img {
        width: 50%;
        border-radius: 0;
    }

    .supply .inner {
        width: 92%;
        padding: 48px 0 54px;
    }

    .supply .section1 .title {
        display: none;
    }

    .supply .section2 {
        margin-top: 0;
        border-radius: 10px;
        border-width: 5px;
    }

    .supply .section2 .left,
    .supply .section2 .right {
        width: 100%;
        border-radius: 10px;
        padding: 16px;
    }

    .supply .section2 .right .img {
        order: 1;
    }

    .supply .section2 .right .title {
        order: 2;
    }

    .supply .section2 .right .bottom {
        order: 3;
    }

    .supply .section2 .left .title,
    .supply .section2 .right .title {
        width: 92%;
        font-size: 20px;
        line-height: 28px;
        margin-top: 18px;
        text-align: center;
    }

    .supply .section2 .left .bottom,
    .supply .section2 .right .bottom {
        width: 92%;
        gap: 14px;
        margin-top: 22px;
        padding: 0;
    }

    .supply .section2 .left .bottom .one .text1,
    .supply .section2 .right .bottom .one .text1 {
        font-size: 17px;
        line-height: 23px;
    }

    .supply .section2 .left .bottom .one .text2,
    .supply .section2 .right .bottom .one .text2,
    .supply .section2 .right .bottom .text3 {
        font-size: 13px;
        line-height: 20px;
    }

    .report .inner,
    .review .inner {
        padding: 46px 0 52px;
    }

    .report .section2 {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 14px;
        column-gap: 14px;
        margin-top: 28px;
    }

    .workshop .section1 .inner {
        padding: 46px 0 28px;
    }

    .workshop .section2 .inner {
        width: 100%;
        gap: 20px;
        padding-bottom: 50px;
    }

    .workshop .section2 .item .img,
    .workshop .section2 .item .content {
        width: 100%;
    }

    .workshop .section2 .item .content {
        width: 88%;
        margin: 0 auto;
        padding: 24px;
        align-items: center;
    }

    .workshop .section2 .item .content .text1 {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
    }

    .workshop .section2 .item .content .text2 {
        font-size: 14px;
        line-height: 22px;
        margin-top: 14px;
        text-align: center;
    }

    .workshop .section2 .item:nth-child(2) .content {
        order: 2;
    }

    .workshop .section2 .item:nth-child(2) .img {
        order: 1;
    }

    .review .section2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "review1 review2"
            "review4 review3"
            "review6 review6";
        row-gap: 10px;
        column-gap: 10px;
        margin-top: 28px;
    }

    .review .section2 .item:nth-child(5) {
        display: none;
    }

    .contact .inner {
        padding: 46px 0 52px;
    }

    .contact .section1,
    .contact .section2 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .contact .section2 {
        order: 1;
    }

    .contact .section1 {
        order: 2;
        margin-top: 34px;
    }

    .contact .section1 .top,
    .contact .section2 .top {
        align-items: center;
    }

    .contact .section2 .bottom .item .question p {
        font-size: 14px;
        line-height: 24px;
    }

    .footer .inner {
        width: 92%;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 30px 0 80px 0;
    }

    .footer .logo {
        width: 210px;
    }

    .footer .footer-contactShare {
        width: 100%;
        justify-content: center;
    }
}

/* 840附近修正 */
@media (min-width: 821px) and (max-width: 900px) {
    .header .inner {
        width: 90%;
        padding: 8px 0;
    }

    .header .logo {
        width: 16%;
    }

    .header .header-nav {
        width: 50%;
    }

    .header .header-nav a {
        font-size: 13px;
        line-height: 20px;
    }

    .header .header-contactShare {
        width: 18%;
    }

    .header .header-contactShare a svg {
        width: 28px;
        height: 28px;
    }

    .banner .content {
        top: 48%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }

    .banner .content .text1 {
        font-size: 18px;
        line-height: 20px;
    }

    .banner .content .title {
        width: 86%;
        font-size: 38px;
        line-height: 46px;
        margin-top: 14px;
    }

    .banner .content .desc {
        margin-top: 18px;
        gap: 8px;
    }

    .banner .content .desc .one .text2 {
        font-size: 13px;
        line-height: 20px;
    }

    .banner .content > a {
        margin-top: 22px;
        padding: 10px 28px;
        border-radius: 6px;
    }

    .banner .content > a p {
        font-size: 17px;
        line-height: 17px;
    }

    .banner .content > a .icon svg {
        width: 28px;
        height: 28px;
    }

    .banner .content > img {
        width: 34%;
        bottom: 5%;
    }

    .feature {
        top: -18px;
    }
}

/* 768响应式 */
@media (min-width: 641px) and (max-width: 768px) {
    .inner {
        width: 92%;
    }

    .header {
        display: flex;
        height: 88px;
    }

    .headerM {
        display: none;
    }

    .header .inner {
        width: 92%;
        padding: 10px 0;
    }

    .header .logo {
        width: 24%;
    }

    .header .logo img {
        max-height: 58px;
    }

    .header .header-nav {
        width: 60%;
    }

    .header .header-contactShare {
        width: 34%;
        justify-content: flex-end;
    }

    .header .header-contactShare a {
        width: 22%;
    }

    .header .header-contactShare a svg {
        width: 28px;
        height: 28px;
    }

    .banner {
        margin-top: 88px;
        height: 590px;
    }

    .banner > img {
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .banner .content {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 92%;
        height: auto;
        align-items: center;
    }

    .banner .content .text1 {
        font-size: 16px;
        line-height: 20px;
    }

    .banner .content .title {
        width: 86%;
        font-size: 36px;
        line-height: 43px;
        margin-top: 15px;
        text-align: center;
    }

    .banner .content .desc {
        width: 78%;
        margin-top: 18px;
        gap: 9px;
    }

    .banner .content .desc .one .text2 {
        font-size: 13px;
        line-height: 20px;
    }

    .banner .content > a,
    .supply .btn,
    .report .btn {
        margin-top: 24px;
        padding: 10px 30px;
        border-radius: 5px;
    }

    .banner .content > a p,
    .supply .btn p,
    .report .btn p {
        font-size: 17px;
        line-height: 17px;
    }

    .banner .content > img {
        position: relative;
        right: 0;
        bottom: -10px;
        width: 46%;
    }

    .feature {
        top: -12px;
    }

    .feature .inner {
        width: 88%;
        border-radius: 10px;
    }

    .feature .one {
        width: 100%;
        padding: 18px 22px;
    }

    .feature .one .icon {
        width: 40px;
        max-width: 40px;
        min-width: 40px;
        height: 40px;
    }
    .feature .one .icon svg {
        width: 22px;
        height: 22px;
    }
    .feature .one .content .text1 {
        font-size: 21px;
        line-height: 27px;
    }

    .feature .one .content .text2 {
        font-size: 13px;
        line-height: 19px;
        margin-top: 8px;
    }

    .product .inner {
        padding: 0 0 44px;
    }

    .product .section1 .title,
    .quality .section1 .title,
    .supply .section1 .title,
    .report .section1 .title,
    .workshop .section1 .title,
    .review .section1 .title,
    .contact .section1 .top .title,
    .contact .section2 .top .title {
        font-size: 27px;
        line-height: 33px;
    }

    .product .section1 .desc,
    .quality .section1 .desc,
    .report .section1 .desc,
    .workshop .section1 .desc,
    .review .section1 .desc {
        width: 100%;
        font-size: 13px;
        line-height: 20px;
        margin-top: 13px;
    }

    .product .section2 {
        display: flex;
        flex-wrap: wrap;
        row-gap: 17px;
        column-gap: 12px;
        margin-top: 26px;
    }

    .product .section2 .item {
        width: 48.5%;
    }

    .product .section2 .item .top {
        align-items: center;
        padding: 11px;
        height: auto;
    }

    .product .section2 .item .top .top-top .title {
        font-size: 16px;
        line-height: 22px;
    }

    .product .section2 .item .top .desc {
        display: none;
    }

    .product .section2 .item .bottom {
        padding: 13px;
        gap: 5px;
    }

    .product .section2 .item .bottom .one .text {
        font-size: 12px;
        line-height: 16px;
    }

    .quality {
        gap: 21px;
        padding: 42px 0;
    }

    .quality .section2 {
        width: 100%;
        border-radius: 0;
    }

    .quality .section2 .img {
        width: 50%;
        border-radius: 0;
    }

    .supply .inner {
        width: 92%;
        padding: 46px 0 52px;
    }

    .supply .section1 .title {
        display: none;
    }

    .supply .section2 {
        margin-top: 0;
        border-radius: 9px;
        border-width: 5px;
    }

    .supply .section2 .left,
    .supply .section2 .right {
        width: 100%;
        border-radius: 9px;
        padding: 15px;
    }

    .supply .section2 .right .img {
        order: 1;
    }

    .supply .section2 .right .title {
        order: 2;
    }

    .supply .section2 .right .bottom {
        order: 3;
    }

    .supply .section2 .left .title,
    .supply .section2 .right .title {
        width: 93%;
        font-size: 19px;
        line-height: 27px;
        margin-top: 17px;
        text-align: center;
    }

    .supply .section2 .left .bottom,
    .supply .section2 .right .bottom {
        width: 93%;
        gap: 13px;
        margin-top: 21px;
        padding: 0;
    }

    .supply .section2 .left .bottom .one .text1,
    .supply .section2 .right .bottom .one .text1 {
        font-size: 16px;
        line-height: 22px;
    }

    .supply .section2 .left .bottom .one .text2,
    .supply .section2 .right .bottom .one .text2,
    .supply .section2 .right .bottom .text3 {
        font-size: 13px;
        line-height: 20px;
    }

    .report .inner,
    .review .inner {
        padding: 44px 0 50px;
    }

    .report .section2 {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 13px;
        column-gap: 13px;
        margin-top: 26px;
    }

    .workshop .section1 .inner {
        padding: 44px 0 27px;
    }

    .workshop .section2 .inner {
        width: 100%;
        gap: 19px;
        padding-bottom: 48px;
    }

    .workshop .section2 .item .img,
    .workshop .section2 .item .content {
        width: 100%;
    }

    .workshop .section2 .item .content {
        width: 88%;
        margin: 0 auto;
        padding: 22px;
        align-items: center;
    }

    .workshop .section2 .item .content .text1 {
        font-size: 19px;
        line-height: 27px;
        text-align: center;
    }

    .workshop .section2 .item .content .text2 {
        font-size: 14px;
        line-height: 21px;
        margin-top: 13px;
        text-align: center;
    }

    .workshop .section2 .item:nth-child(2) .content {
        order: 2;
    }

    .workshop .section2 .item:nth-child(2) .img {
        order: 1;
    }

    .review .section2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "review1 review2"
            "review4 review3"
            "review6 review6";
        row-gap: 9px;
        column-gap: 9px;
        margin-top: 26px;
    }

    .review .section2 .item:nth-child(5) {
        display: none;
    }

    .contact .inner {
        padding: 44px 0 50px;
    }

    .contact .section1,
    .contact .section2 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .contact .section2 {
        order: 1;
    }

    .contact .section1 {
        order: 2;
        margin-top: 32px;
    }

    .contact .section1 .top,
    .contact .section2 .top {
        align-items: center;
    }

    .footer .inner {
        width: 92%;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 30px 0 80px 0;
    }

    .footer .logo {
        width: 200px;
    }

    .footer .footer-contactShare {
        width: 100%;
        justify-content: center;
    }
}

/* 640响应式 */
@media (min-width: 415px) and (max-width: 640px) {
    .inner {
        width: 92%;
    }

    .header {
        display: flex;
        height: 82px;
    }

    .headerM {
        display: none;
    }

    .header .inner {
        width: 92%;
        padding: 9px 0;
    }

    .header .logo {
        width: 24%;
    }

    .header .logo img {
        max-height: 54px;
    }

    .header .header-nav {
        width: 70%;
    }

    .header .header-contactShare {
        width: 36%;
        justify-content: flex-end;
    }

    .header .header-contactShare a {
        width: 22%;
    }

    .header .header-contactShare a svg {
        width: 26px;
        height: 26px;
    }

    .banner {
        margin-top: 82px;
        height: 540px;
    }

    .banner > img {
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .banner .content {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 92%;
        height: auto;
        align-items: center;
    }

    .banner .content .text1 {
        font-size: 14px;
        line-height: 18px;
    }

    .banner .content .title {
        width: 94%;
        font-size: 30px;
        line-height: 36px;
        margin-top: 13px;
        text-align: center;
    }

    .banner .content .desc {
        width: 84%;
        margin-top: 16px;
        gap: 8px;
    }

    .banner .content .desc .one .text2 {
        font-size: 12px;
        line-height: 18px;
    }

    .banner .content > a,
    .supply .btn,
    .report .btn {
        margin-top: 22px;
        padding: 9px 28px;
        border-radius: 4px;
    }

    .banner .content > a p,
    .supply .btn p,
    .report .btn p {
        font-size: 15px;
        line-height: 15px;
    }

    .banner .content > img {
        position: relative;
        right: 0;
        bottom: -10px;
        width: 54%;
    }

    .feature {
        top: -10px;
    }

    .feature .inner {
        width: 88%;
        border-radius: 9px;
    }

    .feature .one {
        width: 100%;
        padding: 17px 20px;
    }

    .feature .one .icon {
        width: 36px;
        max-width: 36px;
        min-width: 36px;
        height: 36px;
    }

    .feature .one .icon svg {
        width: 20px;
        height: 20px;
    }

    .feature .one .content .text1 {
        font-size: 19px;
        line-height: 24px;
    }

    .feature .one .content .text2 {
        font-size: 12px;
        line-height: 17px;
        margin-top: 9px;
    }

    .product .inner {
        padding: 0 0 40px;
    }

    .product .section1 .title,
    .quality .section1 .title,
    .supply .section1 .title,
    .report .section1 .title,
    .workshop .section1 .title,
    .review .section1 .title,
    .contact .section1 .top .title,
    .contact .section2 .top .title {
        font-size: 25px;
        line-height: 32px;
    }

    .product .section1 .desc,
    .quality .section1 .desc,
    .report .section1 .desc,
    .workshop .section1 .desc,
    .review .section1 .desc {
        width: 100%;
        font-size: 12px;
        line-height: 20px;
        margin-top: 12px;
    }

    .product .section2 {
        display: flex;
        flex-wrap: wrap;
        row-gap: 15px;
        column-gap: 10px;
        margin-top: 24px;
    }

    .product .section2 .item {
        width: 48.5%;
    }

    .product .section2 .item .top {
        align-items: center;
        padding: 9px;
        height: 60px;
    }

    .product .section2 .item .top .top-top .icon svg {
        width: 18px;
        height: 18px;
    }

    .product .section2 .item .top .top-top .title {
        font-size: 16px;
        line-height: 23px;
    }

    .product .section2 .item .top .desc {
        display: none;
    }

    .product .section2 .item .bottom {
        padding: 14px;
        gap: 5px;
    }

    .product .section2 .item .bottom .one .text {
        font-size: 11px;
        line-height: 14px;
    }

    .product .section2 .item .bottom .btn {
        padding: 8px 18px;
        font-size: 13px;
        line-height: 15px;
    }

    .quality {
        gap: 20px;
        padding: 38px 0;
    }

    .quality .section2 {
        width: 100%;
        border-radius: 0;
    }

    .quality .section2 .img {
        width: 50%;
        border-radius: 0;
    }

    .supply .inner {
        width: 92%;
        padding: 44px 0 48px;
    }

    .supply .section1 .title {
        display: none;
    }

    .supply .section2 {
        margin-top: 0;
        border-radius: 8px;
        border-width: 5px;
    }

    .supply .section2 .left,
    .supply .section2 .right {
        width: 100%;
        border-radius: 8px;
        padding: 13px;
    }

    .supply .section2 .right .img {
        order: 1;
    }

    .supply .section2 .right .title {
        order: 2;
    }

    .supply .section2 .right .bottom {
        order: 3;
    }

    .supply .section2 .left .title,
    .supply .section2 .right .title {
        width: 94%;
        font-size: 16px;
        line-height: 23px;
        margin-top: 15px;
        text-align: center;
    }

    .supply .section2 .left .bottom,
    .supply .section2 .right .bottom {
        width: 94%;
        gap: 11px;
        margin-top: 19px;
        padding: 0;
    }

    .supply .section2 .left .bottom .one .text1,
    .supply .section2 .right .bottom .one .text1 {
        font-size: 16px;
        line-height: 22px;
    }

    .supply .section2 .left .bottom .one .text2,
    .supply .section2 .right .bottom .one .text2,
    .supply .section2 .right .bottom .text3 {
        font-size: 12px;
        line-height: 18px;
    }

    .report .inner,
    .review .inner {
        padding: 40px 0 44px;
    }

    .report .section2 {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 12px;
        column-gap: 12px;
        margin-top: 24px;
    }

    .workshop .section1 .inner {
        padding: 40px 0 25px;
    }

    .workshop .section2 .inner {
        width: 100%;
        gap: 18px;
        padding-bottom: 44px;
    }

    .workshop .section2 .item .img,
    .workshop .section2 .item .content {
        width: 100%;
    }

    .workshop .section2 .item .content {
        width: 89%;
        margin: 0 auto;
        padding: 20px;
        align-items: center;
    }

    .workshop .section2 .item .content .text1 {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .workshop .section2 .item .content .text2 {
        font-size: 15px;
        line-height: 22px;
        margin-top: 12px;
        text-align: center;
    }

    .workshop .section2 .item:nth-child(2) .content {
        order: 2;
    }

    .workshop .section2 .item:nth-child(2) .img {
        order: 1;
    }

    .review .section2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "review1 review2"
            "review4 review3"
            "review6 review6";
        row-gap: 8px;
        column-gap: 8px;
        margin-top: 24px;
    }

    .review .section2 .item:nth-child(5) {
        display: none;
    }

    .contact .inner {
        padding: 40px 0 44px;
    }

    .contact .section1,
    .contact .section2 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .contact .section2 {
        order: 1;
    }

    .contact .section1 {
        order: 2;
        margin-top: 30px;
    }

    .contact .section1 .top,
    .contact .section2 .top {
        align-items: center;
    }

    .contact .section2 .bottom .item .question p {
        font-size: 14px;
        line-height: 24px;
    }

    .footer .inner {
        width: 92%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0 80px 0;
    }

    .footer .logo {
        width: 220px;
    }

    .footer .footer-contactShare {
        width: 100%;
        justify-content: center;
    }

    .footer .footer-contactShare p {
        font-size: 18px;
        line-height: 28px;
    }
}
/* 414移动端样式 */
@media (max-width: 414px) {
    .header {
        height: 76px;
    }

    .header .logo img {
        max-height: 50px;
    }

    .banner {
        margin-top: 76px;
    }

    .inner {
        width: 92%;
    }

    .header {
        height: 76px;
    }
    .header .header-nav {
        position: relative;
        width: 60%;
        padding-right: 12px;
        box-sizing: border-box;
    }
    .header .header-nav::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -5px;
        width: 2px;
        height: 20px;
        background: #33833f;
        transform: translateY(-50%);
    }
    .header .header-nav a:last-child {
        display: none;
    }
    .banner {
        margin-top: 76px;
        height: 490px;
    }

    .banner > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .banner .content {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 92%;
        height: auto;
        align-items: center;
    }

    .banner .content .text1 {
        font-weight: 600;
        font-size: 12px;
        line-height: 14px;
    }

    .banner .content .title {
        width: 100%;
        text-align: center;
        font-weight: 600;
        font-size: 23px;
        line-height: 27px;
        margin-top: 12px;
    }

    .banner .content .desc {
        width: 85%;
        margin-top: 14px;
        gap: 8px;
    }

    .banner .content .desc .one {
        gap: 6px;
    }

    .banner .content .desc .one .icon {
        padding-top: 2px;
    }

    .banner .content .desc .one .icon svg {
        width: 14px;
        height: 14px;
    }

    .banner .content .desc .one .text2 {
        font-size: 12px;
        line-height: 18px;
    }

    .banner .content > a {
        gap: 6px;
        margin-top: 22px;
        padding: 12px 20px;
        border-radius: 4px;
    }

    .banner .content > a p {
        font-weight: 500;
        font-size: 14px;
        line-height: 15px;
    }

    .banner .content > a .icon svg {
        width: 22px;
        height: 22px;
    }

    .banner .content > img {
        position: relative;
        right: 0;
        bottom: -10px;
        width: 60%;
    }

    .feature {
        top: -20px;
    }

    .feature .inner {
        width: 88%;
        border-radius: 8px;
        box-shadow: 0px 0px 18px #0000001a;
    }

    .feature .one {
        width: 100%;
        padding: 16px 18px;
    }

    .feature .one .icon {
        width: 34px;
        max-width: 34px;
        min-width: 34px;
        height: 34px;
        border-radius: 50px;
    }

    .feature .one .icon svg {
        width: 19px;
        height: 19px;
    }

    .feature .one .content {
        margin-left: 10px;
    }

    .feature .one .content .text1 {
        font-size: 18px;
        line-height: 21px;
    }

    .feature .one .content .text2 {
        font-size: 11px;
        line-height: 16px;
        margin-top: 10px;
    }

    .product .inner {
        padding: 0 0 38px;
    }

    .product .section1 .title,
    .quality .section1 .title,
    .supply .section1 .title,
    .report .section1 .title,
    .workshop .section1 .title,
    .review .section1 .title,
    .contact .section1 .top .title,
    .contact .section2 .top .title {
        font-weight: 800;
        font-size: 24px;
        line-height: 32px;
    }

    .product .section1 .desc,
    .quality .section1 .desc,
    .report .section1 .desc,
    .workshop .section1 .desc,
    .review .section1 .desc {
        width: 100%;
        font-size: 12px;
        line-height: 20px;
        margin-top: 12px;
    }

    .quality .section1 .desc{
        margin-top: 8px;
    }

    .product .section2 {
        display: flex;
        flex-wrap: wrap;
        row-gap: 14px;
        column-gap: 10px;
        margin-top: 22px;
    }

    .product .section2 .item {
        width: 48.5%;
        border-radius: 5px;
        border-bottom: 2px solid #003412;
    }

    .product .section2 .item .top {
        padding: 8px;
        align-items: center;
        height: 60px;
    }

    .product .section2 .item .top .top-top .icon svg {
        width: 18px;
        height: 18px;
    }

    .product .section2 .item .top .top-top .title {
        margin-left: 6px;
    }

    .product .section2 .item .top .top-top .title {
        font-size: 16px;
        line-height: 24px;
    }

    .product .section2 .item .top .desc {
        display: none;
    }

    .product .section2 .item .middle .pros {
        width: 82%;
    }

    .product .section2 .item .bottom {
        padding: 15px;
        gap: 5px;
    }

    .product .section2 .item .bottom .one .icon {
        padding-top: 2px;
    }

    .product .section2 .item .bottom .one .icon svg {
        width: 11px;
        height: 11px;
    }

    .product .section2 .item .bottom .one .text {
        font-size: 10px;
        line-height: 11px;
        margin-left: 4px;
    }

    .product .section2 .item .bottom .btn {
        padding: 8px 16px;
        font-size: 13px;
        line-height: 15px;
        margin-top: 8px;
    }

    .quality {
        gap: 18px;
        padding: 36px 0;
    }

    .quality .section2 {
        width: 100%;
        border-radius: 0px;
        gap: 0;
    }

    .quality .section2 .img {
        width: 50%;
        border-radius: 0px;
    }
    .quality .section3 .text {
        font-size: 12px;
        line-height: 20px;
    }

    .supply .inner {
        width: 92%;
        padding: 42px 0 46px;
    }
    .supply .section1 .title{
        display: none;
    }
    .supply .section2 {
        margin-top: 0;
        border-radius: 8px;
        border: 5px solid #33833f;
    }

    .supply .section2 .left,
    .supply .section2 .right {
        width: 100%;
        border-radius: 8px;
        padding: 12px;
    }

    .supply .section2 .right .img {
        order: 1;
    }

    .supply .section2 .right .title {
        order: 2;
    }

    .supply .section2 .right .bottom {
        order: 3;
    }

    .supply .section2 .left .img,
    .supply .section2 .right .img {
        border-radius: 12px;
        height: 190px;
    }

    .supply .section2 .left .title,
    .supply .section2 .right .title {
        width: 95%;
        font-size: 14px;
        line-height: 21px;
        margin-top: 14px;
        text-align: center;
    }

    .supply .section2 .left .bottom,
    .supply .section2 .right .bottom {
        width: 95%;
        gap: 10px;
        margin-top: 18px;
        padding: 0;
    }

    .supply .section2 .left .bottom .one,
    .supply .section2 .right .bottom .one {
        margin-bottom: 8px;
    }

    .supply .section2 .left .bottom .one .text1,
    .supply .section2 .right .bottom .one .text1 {
        font-weight: 700;
        font-size: 16px;
        line-height: 21.6px;
        margin-bottom: 0px;
    }

    .supply .section2 .left .bottom .one .text2,
    .supply .section2 .right .bottom .one .text2,
    .supply .section2 .right .bottom .text3 {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        margin-top: 3px;
    }

    .supply .section3 {
        margin-top: 16px;
    }

    .supply .section3 .text4 {
        font-weight: 600;
        font-size: 12px;
        line-height: 22px;
    }

    .supply .btn {
        gap: 6px;
        margin-top: 18px;
        padding: 7px 28px;
        border-radius: 4px;
    }

    .supply .btn p {
        font-weight: 500;
        font-size: 14px;
        line-height: 15px;
    }

    .supply .btn .icon svg {
        width: 26px;
        height: 26px;
    }

    .report .inner {
        padding: 38px 0 42px;
    }

    .report .section2 {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 12px;
        column-gap: 12px;
        margin-top: 22px;
        border-radius: 6px;
        border: 5px solid #33833f0f;
    }

    .report .btn {
        gap: 6px;
        margin-top: 18px;
        padding: 7px 28px;
        border-radius: 4px;
    }

    .report .btn p {
        font-weight: 500;
        font-size: 14px;
        line-height: 15px;
    }

    .report .btn .icon svg {
        width: 25px;
        height: 25px;
    }

    .workshop .section1 .inner {
        padding: 38px 0 24px;
    }

    .workshop .section1 .desc {
        width: 100%;
    }

    .workshop .section2 .inner {
        width: 100%;
        gap: 18px;
        padding-bottom: 42px;
    }

    .workshop .section2 .item .img,
    .workshop .section2 .item .content {
        width: 100%;
    }
    .workshop .section2 .item .content {
        width: 90%;
        margin: 0 auto;
    }

    .workshop .section2 .item .content {
        padding: 18px;
        align-items: center;
    }

    .workshop .section2 .item .content .text1 {
        font-weight: 800;
        font-size: 14px;
        line-height: 21px;
        text-align: center;
    }

    .workshop .section2 .item .content .text2 {
        font-weight: 400;
        font-size: 16px;
        line-height: 23px;
        margin-top: 10px;
        text-align: center;
    }

    .workshop .section2 .item:nth-child(2) .content {
        order: 2;
    }

    .workshop .section2 .item:nth-child(2) .img {
        order: 1;
    }

    .review .inner {
        padding: 38px 0 42px;
    }

    .review .section2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "review1 review2"
            "review4 review3"
            "review6 review6";
        row-gap: 8px;
        column-gap: 8px;
        margin-top: 22px;
    }

    .review .section2 .item {
        width: 100%;
    }

    .review .section2 .item:nth-child(5) {
        display: none;
    }

    .contact .inner {
        padding: 38px 0 42px;
    }

    .contact .section1,
    .contact .section2 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .contact .section2 {
        order: 1;
    }

    .contact .section1 {
        order: 2;
        margin-top: 30px;
    }

    .contact .section1 .top,
    .contact .section2 .top {
        align-items: center;
    }

    .contact .section1 .top .line,
    .contact .section2 .top .line {
        margin-top: 5px;
    }

    .contact .section2 .bottom {
        margin-top: 18px;
        gap: 8px;
    }

    .contact .section2 .bottom .item {
        border-radius: 5px;
    }

    .contact .section2 .bottom .item .question {
        padding: 15px;
        border-radius: 5px;
    }

    .contact .section2 .bottom .item .question p {
        font-weight: 700;
        font-size: 14px;
        line-height: 26.4px;
    }

    .contact .section2 .bottom .item .question .icon {
        padding: 4px;
        margin-left: 8px;
    }

    .contact .section2 .bottom .item .question .icon svg {
        width: 10px;
        height: 10px;
    }

    .contact .section2 .bottom .item .answer {
        font-weight: 400;
        font-size: 12px;
        line-height: 26.4px;
        padding: 15px;
    }

    .contact .section1 .bottom {
        margin-top: 16px;
        padding: 18px 14px;
        border-radius: 6px;
    }

    .contact .section1 .bottom .form_item {
        margin-bottom: 10px;
    }

    .contact .section1 .bottom .form_item .input .label,
    .contact .section1 .bottom .form_item .input .label span {
        font-weight: 400;
        font-size: 15px;
        line-height: 24.8px;
        margin-bottom: 4px;
    }

    .contact .section1 .bottom .form_item .input .value input,
    .contact .section1 .bottom .form_item .input .value textarea {
        padding: 9px 10px;
        border-radius: 5px;
        font-weight: 400;
        font-size: 16px;
        line-height: 26.4px;
    }

    .contact .section1 .bottom .btn {
        padding: 7px 88px;
        font-weight: 500;
        font-size: 15px;
        line-height: 24.8px;
    }

    .footer .inner {
        width: 92%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0 80px 0;
    }

    .footer .logo {
        width: 240px;
    }

    .footer .footer-contactShare {
        width: 100%;
        justify-content: center;
    }

    .footer .footer-contactShare svg {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .footer .footer-contactShare p {
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
    }

}
