.banner {
    position: relative;
    min-height: 40vh;
}

.banner>.crunbs>svg {
    margin-right: 10px;
}

.banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner>h2 {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.banner>.crunbs {
    width: var(--width--);
    position: absolute;
    bottom: clamp(20px, 2.08333333333vw, 40px);
    left: calc((100% - var(--width--)) / 2);
    display: flex;
    align-items: center;
}

.banner>.crunbs>* {
    color: #fff;

}

.page2-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f8f2;
}

.page2-nav>.columnBox {
    width: var(--width--);
    padding: 100px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* grid-template-columns: repeat(auto-fit,minmax(260px, 1fr)); */
    column-gap: 10px;
    row-gap: 60px;
}

.page2-nav>.columnBox>.navItem>.ImgBox {
    width: 100%;
    height: clamp(110px, 14.58333333333vw, 280px);
    border-radius: 5px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .6s ease;
    margin-bottom: 35px;
    padding: 5%;
}

.page2-nav>.columnBox>.navItem:hover>.ImgBox {
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}

.page2-nav>.columnBox>.navItem>.ImgBox>img {
    max-width: 100%;
    max-height: 100%;
    /* object-fit: contain; */
    transition: all .6s;
    width: 100%;
}

.page2-nav>.columnBox>.navItem:hover>.ImgBox>img {
    transform: scale(1.05);
    /* filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.3)); */
}

.page2-nav>.columnBox>.navItem>.ImgTitle {
    display: flex;
    align-items: center;
}

.page2-nav>.columnBox>.navItem>.ImgTitle>img {
    width: 65px;
    height: 50px;
    object-fit: contain;
    margin-right: 20px;
}

.page2-nav>.columnBox>.navItem>.ImgTitle>p {
    width: calc(100% - 65px - 20px);
    font-family: Onsite standard Bold;
    font-size: var(--18px--);
}

.page2-nav>.columnBox>.navItem:last-child {
    height: calc(100% - 85px);
    border-radius: 5px;
    background: linear-gradient(90deg, #95999f, #dedfde);
    grid-column: span 2;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page2-nav>.columnBox>.navItem:last-child>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page2-nav>.columnBox>.navItem:last-child>.info {
    width: 40%;
    margin-left: 45px;
}

.page2-nav>.columnBox>.navItem:last-child>.info>div>h5 {
    line-height: 36px;
    color: #fff;
    /* //margin-bottom: 40px; */
}

.page2-nav>.columnBox>.navItem:last-child>.info>div>a {
    /* //font-family: Onsite standard Bold; */
    font-size: var(--16px--);
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.page2-nav>.columnBox>.navItem:last-child>.info>div>a>svg {
    margin-left: 10px;
}

.page2-nav>.columnBox>.navItem:last-child>img {
    width: 60%;
    object-fit: cover;
}

.page3-nav {
    width: 100%;
    /* height: 550px; */
    height: clamp(410px, 28.6458333333333vw, 550px);
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.p3Nav-left {
    width: 50%;
    -webkit-clip-path: polygon(0% 0, 100% 0, 75% 100%, 0% 100%);
    clip-path: polygon(0% 0, 100% 0, 75% 100%, 0% 100%);
    background-color: #347236;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.p3Nav-right {
    width: 62.5%;
    height: 100%;
    -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #d6d1d7, #f4f6f5);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.p3Nav-right>img {
    width: 90%;
    height: 100%;
    object-fit: contain;
}

.p3Nav-left>img {
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.15;
    position: absolute;
    top: 0;
    left: 0;
}

.p3Nav-left>div {
    /* margin-left: calc((100vw - var(--width--)) / 2); */
    z-index: 2;
}

.p3Nav-left>div>h3 {
    font-family: Onsite standard Medium;
    /* font-weight: 600; */
    color: #fff;
    line-height: 40px;
    margin-bottom: clamp(20px, 2.6041666666667vw, 50px);
    transition: all .6s;
}

.p3Nav-left>div>a {
    width: 170px;
    height: 60px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .6s;
}

.p3Nav-left>div>a>svg {
    margin-left: 10px;
}

.p3Nav-left>div>a>svg>path {
    transition: all .6s;
}

.p3Nav-left>div>a:hover {
    color: #347236;
    background-color: #fff;
}

.p3Nav-left>div>a:hover>h3 {
    color: #347236;
}

.p3Nav-left>div>a:hover>svg>path {
    fill: #347236;
}


/* product1 */
.page1-pro {
    padding-top: calc(var(--navTop--) + 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page1-pro>.banner {
    width: 100%;
    min-height: auto;
    margin-bottom: clamp(30px, 3.125vw, 60px);
}

.page1-pro>.banner>.crunbs {
    position: relative;
    bottom: auto;
}

.page1-pro>.banner>.crunbs>* {
    color: #000;
}

.b-info {
    width: var(--width--);
    display: flex;
}

.b-info>.imgBox {
    width: 50%;
    overflow: hidden;
}

.b-info>.imgBox>img {
    /* width: 100%; */
    max-width: 100%;
    object-fit: contain;
}

.b-info>.introduct {
    width: 50%;
    display: flex;
    padding-top: 35px;
}

.b-info>.introduct>div {
    margin-right: 30px;
}

.b-info>.introduct>div:first-child {
    padding-top: 15px;
}

.b-info>.introduct>div:last-child>h4 {
    margin-bottom: 35px;
    line-height: 60px;
}

.b-info>.introduct>div:last-child>p {
    font-size: var(--18px--);
    line-height: 30px;
    color: #666666;
}

.page2-pro {
    width: 100%;
    background-color: #fafffa;
    padding: clamp(45px, 4.6875vw, 90px) 0;
    display: flex;
    justify-content: center;
}

.page2-pro>.b-info {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.proList {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: clamp(47.5px, 4.9479166666667vw, 95px);
    margin-bottom: clamp(40px, 4.6875vw, 90px);
}

.proItem {
    display: flex;
    padding: 0 30px;
    border-left: 4px solid #347236;
    position: relative;
    /* cursor: pointer; */
}

.proItem>div.imgBox {
    width: 200px;
    height: 170px;
    margin-right: clamp(20px, 1.8291666666667vw, 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
}

.proItem>div.imgBox>img {
    width: 100%;
    mix-blend-mode: multiply;
    object-fit: contain;
    transition: transform 1s;
}

.proItem>div:last-child>h6 {
    line-height: 42px;
}

.proItem>div:last-child>ul {
    list-style-type: disc;
    list-style-position: inside;
}

.proItem>div:last-child>ul>li::marker {
    color: #347236;
}

.proItem>div:last-child>ul>li {
    font-size: var(--16px--);
    line-height: 30px;
    text-transform: uppercase;
}

/* cs */
.proItem {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    /* grid-template-columns: auto auto; */
}

.proItem>h6 {
    line-height: 42px;
    transition: color .6s;
}

.proItem:hover>h6 {
    color: #347236;
}

.proItem>div.imgBox {
    grid-row: span 2;
    overflow: hidden;
}

.proItem:hover>div.imgBox>img {
    transform: scale(1.1);
}

.proView {
    cursor: pointer;
    font-size: var(--18px--);
    line-height: 30px;
    display: flex;
    align-items: center;
}

.proView>svg {
    margin-left: 10px;
}

/* company */
.com1 {
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding: clamp(40px, 5.20833333333vw, 100px) 0;
}

.com1Box {
    width: var(--width--);

}

.comItem {
    display: flex;
}

.comItem>div {
    width: 50%;
}

.comInfo>h3 {
    line-height: 50px;
    margin-bottom: 30px;
}

.comInfo>.line {
    width: 50px;
    height: 4px;
    background-color: #347236;
    margin-bottom: 55px;
}

.comInfo>p {
    font-size: var(--16px--);
    line-height: 30px;
    color: #666666;
    padding-right: clamp(70px, 7.8125vw, 150px);
}

.comImgBox {
    width: 100%;
    overflow: hidden;
    background-color: #efeef3;
    border-radius: 10px;
    position: relative;
    padding: 0 60px;
}

.comImgBox>img {
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    object-fit: contain;
}

.com1Box>.comItem:first-child {
    margin-bottom: 110px;
}

.com1Box>.comItem:last-child>.comImgBox {
    padding: 0;
    background-color: #347236;
}

.companySwiper {
    width: 100%;
    height: 100%;
}

.companySwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.companySwiper>.swiper-wrapper{
    align-items: stretch;
}

.companySwiper>.swiper-wrapper>.swiper-slide{
    height: auto !important;
    min-height: 100%;
}

.comPagin {
    width: auto !important;
    height: auto !important;
    border-radius: 30px;
    position: absolute;
    left: 50% !important;
    bottom: 40px !important;
    transform: translateX(-50%);
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
}

.comPagin>span {
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    opacity: 1;
    background-color: transparent;
    transition: all .6s;
}

.comPagin>.swiper-pagination-bullet-active {
    background-color: #fff !important;
}

.com1Box>.comItem:last-child>.comInfo {
    width: calc(50% - 70px);
    padding-left: 70px;
}

.com1Box>.comItem:last-child>.comInfo>p {
    padding-right: 0 !important;
    margin-bottom: clamp(40px, 4.1666666667vw, 80px);
}

.comNum {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #cfcfcf;
    display: flex;
    justify-content: space-between;
    margin-bottom: clamp(20px, 2.6041666666667vw, 50px);
}

.com1Box>.comItem:last-child>.comInfo>.comNum:last-child {
    margin-bottom: 0;
}

.comNum>num {
    display: flex;
    flex-direction: column;
    font-size: var(--16px--);
    /* line-height: 50px; */
    color: rgba(0, 0, 0, 0.6);
}

.comNum>num>p {
    font-family: Onsite standard Bold;
    font-size: var(--18px--);
    color: #000;
}

.comNum>num>p>span {
    font-family: Onsite standard Bold;
    font-size: var(--50px--);
    color: #000;
    transition: color .6s;
}

.comNum>div>img {
    transition: transform .6s;
}

.comNum:hover>num>p>span {
    color: #347236;
}

.comNum:hover>div>img {
    transform: rotateY(360deg);
}

.fixImgBox {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* position: sticky;
    left: 0;
    bottom: 0;
    z-index: -1; */
}

.fixImgBox>img {
    width: 100%;
}

.fixImgBox>div {
    position: absolute;
    left: calc((100% - var(--width--))/2);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.fixImgBox>div>h4 {
    color: #fff;
    line-height: 40px;
    margin-bottom: clamp(30px, 3.125vw, 60px);
}

.fixImgBox>div>a {
    color: #fff;
    transition: color .6s;
}

.fixImgBox>div>a>svg {
    margin-left: 10px;
    transition: margin-left .6s;
}

/* .comBtn{
    width: 100%;
    height: 600px;
    background-color: transparent;
} */

/* choose */
.choosePage1,
.choosePage3,
.choosePage4 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 6.25vw, 120px) 0;
}

.cho1 {
    width: var(--width--);
    position: relative;
}

.cho1>h3 {
    margin-bottom: clamp(15px, 1.5625vw, 30px);
}

.cho1>p {
    font-size: var(--16px--);
    line-height: 30px;
    color: #666666;
    margin-bottom: clamp(30px, 4.166666666667vw, 80px);
}

.cho1>div {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

.cho1>div>div {
    width: 43%;
    overflow: hidden;
    border-radius: 10px;
}

.cho1>div>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cho1>div>ul {
    width: 50%;
    /* padding-right: 10px; */
    /* list-style: square;
    list-style-position: inside; */
    padding-left: 15px;

}

/* .cho1>div>ul>li::marker {
    color: #347236;
} */
.cho1>div>ul>li {
    font-family: Onsite standard Medium;
    position: relative;
    font-size: var(--16px--);
    line-height: 30px;
    color: #000;
    margin-bottom: 30px;
}

.cho1>div>ul>li:last-child {
    margin-bottom: 0;
}

.cho1>div>ul>li::before {
    content: "▪";
    position: absolute;
    left: -15px;
    color: #347236;
    /* top: 50%;
    transform: translateY(-50%); */
}

.choosePage2 {
    background: url("/src/img/ship.jpg") no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* padding-top: clamp(50px, 7.8125vw, 150px); */
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.cho2 {
    width: var(--width--);
    /* height: 80vh; */
    /* aspect-ratio: 32 / 15; */
    /* height: 900px; */
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cho2>h3 {
    color: #fff;
    margin-top: clamp(50px, 7.8125vw, 150px);
    ;
}

.cho2>.Labeling {
    /* margin-top: auto; */
    display: flex;
}

.cho2>.Labeling>li {
    /* width: calc(100% / 3); */
    position: relative;
}

.cho2>.Labeling>li::before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% + 20px);
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: top .6s;
}

.cho2>.Labeling>li>* {
    position: relative;
    z-index: 2;
}

.cho2>.Labeling>li:hover:before {
    top: -20px;
}

.cho2>.Labeling>li>img {
    width: auto;
    margin-bottom: clamp(30px, 4.4270833333333vw, 85px);
    transition: transform .6s;
}

.cho2>.Labeling>li>b {
    display: block;
    font-size: var(--20px--);
    line-height: 30px;
    color: #fff;
    margin-bottom: clamp(15px, 1.8229166666667vw, 35px);
    transition: color .6s;
}

.cho2>.Labeling>li:hover>b {
    color: #ffd71a;
}

.cho2>.Labeling>li>p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--16px--);
    line-height: 30px;
    margin-bottom: clamp(50px, 5.20833333333vw, 100px);
    transition: color .6s;
}

/* .cho2>.Labeling>li:hover>p{
    color: #fff;
} */

.cho2>.Labeling>li:first-child {
    width: calc((100% / 3) - 45px);
    padding-right: clamp(35px, 4.6875vw, 90px);
    padding-left: 20px;
}

.cho2>.Labeling>li:nth-child(2) {
    width: calc((100% / 3) + 90px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 clamp(35px, 4.6875vw, 90px);
}

.cho2>.Labeling>li:last-child {
    width: calc((100% / 3) - 45px);
    padding-left: clamp(35px, 4.6875vw, 90px);
    padding-right: 20px;
}

.cho2>.Labeling>li:hover>img {
    transform: rotateY(360deg);
}

/* .cho2>.Labeling>li:hover>b{
    color: #347236;
} */

.cho3 {
    width: var(--width--);
    position: relative;
}

.cho3>div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(35px, 4.4270833333333vw, 85px);
}

.cho3>div:first-child>p {
    width: 50%;
    font-size: var(--16px--);
    line-height: 30px;
    color: #666666;
}


.cho3>div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cho3>div:last-child>ul {
    width: 43%;
    counter-reset: developing;
}

.cho3>div:last-child>ul>li {
    /* padding: 30px 0; */
    font-family: Onsite standard Medium;
    counter-increment: developing;
    font-size: var(--16px--);
    line-height: 30px;
    padding: clamp(15px, 1.5625vw, 30px) 0 clamp(15px, 1.5625vw, 30px) clamp(30px, 2.34375vw, 45px);
    position: relative;
}

.cho3>div:last-child>ul>li::before {
    /* content: ; */
    content: counter(developing, decimal-leading-zero) '.';
    position: absolute;
    left: 0;
    color: #347236;
    font-family: Onsite standard Medium;
}

.cho3>div:last-child>ul>li:nth-child(2) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cho3>div:last-child>div {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}

.cho3>div:last-child>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choosePage4 {
    background-color: #eef6ef;
}

.cho4 {
    width: var(--width--);
    position: relative;
    display: flex;
    justify-content: space-between;
}

.cho4>.imgBox {
    width: 45%;
    border-radius: 10px;
    overflow: hidden;
}

.cho4>.imgBox>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cho4>div:last-child {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.cho4>div:last-child>h3 {
    margin-bottom: clamp(25px, 2.86458333333333vw, 55px);
}

.cho4>div:last-child>p {
    font-size: var(--16px--);
    line-height: 30px;
    margin-bottom: clamp(20px, 2.08333333333vw, 40px);
}

.cho4>div:last-child>div {
    display: flex;
    margin-top: auto;
}

.cho4>div:last-child>div>num>p {
    font-family: Onsite standard Bold;
    font-size: var(--50px--);
    color: #347236;
    margin-bottom: 15px;
    line-height: normal;
}

.cho4>div:last-child>div>num {
    font-size: var(--16px--);
    line-height: 20px;
    color: #666;
}

.cho4>div:last-child>div>num:first-child {
    padding-right: clamp(20px, 4.1666666667vw, 80px);
    position: relative;
}

.cho4>div:last-child>div>num:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, transparent 0%, rgba(203, 210, 204, 1) 20%, rgba(203, 210, 204, 1) 80%, transparent 100%);
}

.cho4>div:last-child>div>num:last-child {
    margin-left: clamp(20px, 4.1666666667vw, 80px);
}

.choosePage5 {
    width: 100%;
    position: relative;
    /* background: url("/src/img/ip6b.jpg") no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding-top: clamp(50px, 7.8125vw, 150px);
    display: flex;
    justify-content: center;
    padding: 200px 0; */
    position: relative;
}

section.ip6 {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
}

section.ip6>.bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

section.ip6>.bg>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ip6Box {
    padding-top: calc(var(--navTop--) + 50px);
    margin-left: calc((100% - var(--width--)) / 2);
    z-index: 2;
    margin-bottom: clamp(20px, 4.16666666667vw, 80px);
}

.ip6Box>h4 {
    color: #fff;
    line-height: 40px;
    margin-bottom: 60px;
}

.ip6Box>a {
    font-size: var(--16px--);
    color: #fff;
    transition: color .6s;
}

.ip6Box>a>svg {
    margin-left: 10px;
    transition: margin-left .6s;
}

.ip6Box>a:hover {
    color: #347236;
}

.fixImgBox>div>a:hover {
    color: #ffd71a;
}

.ip6Box>a:hover>svg,
.fixImgBox>div>a:hover>svg {
    margin-left: 15px;
}

.ip6>footer {
    width: calc(100% - 40px);
    /* position: absolute; */
    /* bottom: 10px; */
    margin-top: auto;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* New */
.newPage1,
.ct {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(40px, 5.20833333333vw, 100px) 0;
}

.newBox1 {
    width: var(--width--);
    position: relative;
}

.newNav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: clamp(35px, 4.4270833333333vw, 85px);
}

.newNav>a {
    /* font-family: Onsite standard Bold; */

    font-family: Onsite standard Medium;
    font-weight: bold;
    padding-bottom: 15px;
    position: relative;
    font-size: var(--30px--);
    /* color: #347236; */
    transition: color .6s;
}

.newNav>a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    left: 0;
    bottom: 0;
    background-color: #347236;
    transition: width .6s;
}

.newNav>a:hover,
.newNavAct {
    color: #347236;
}

.newNav>a:hover::before,
.newNav>a.newNavAct::before {
    width: 100%;
}

.newList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(30px, 5.20833333333vw, 100px);
    margin-bottom: clamp(30px, 5.20833333333vw, 100px);
}

.newItem>.ImgBox {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 35px;
}

.newItem>.ImgBox>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 3s;
}

.newItem>p {
    font-family: Onsite standard Medium;
    font-size: var(--18px--);
    line-height: 26px;
    margin-bottom: 40px;
    height: 80px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    transition: color .6s;
}

.newItem>span {
    display: block;
    font-size: var(--14px--);
    color: rgba(0, 0, 0, 0.5);
    transition: color .6s;
}

.newItem:hover>.ImgBox>img {
    transform: scale(1.2);
}

.newItem:hover>p {
    color: #347236;
}

.newItem:hover>span {
    color: #000;
}

/* newDetail */
.newDetail {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.newDetail>.newDetailBox {
    width: var(--width--);

}

.newTitle {
    text-align: center;
    line-height: 150%;
    margin: 20px 0;
}

.newCont>div>hr {
    margin: 1.563vw 0;
}

.newInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.newInfo>p {
    text-align: center;
    color: #999;
}

.newInfo>p:first-child {
    margin-right: 20px;
}

.newContent {
    font-size: var(--16px--);
    line-height: 200%;
    font-weight: 300;
    padding-bottom: 20px;
}

.newContent h3 {
    color: #333;
}

.newContent p {
    color: #666;
}

.newContent a {
    color: #333;
    text-decoration: underline;
}

.newContent img {
    max-width: 100%;
    display: inline;
}

.NPage {
    margin: 20px 0;
}

.NPage>p {
    margin-bottom: 10px;
}

.NPage>p>a {
    transition: all .6s ease;
    color: #666;
    text-transform: capitalize;
}

.NPage>p:hover>a {
    color: #c80877;
}

/* contact */
.ctBox {
    width: var(--width--);
    position: relative;
}

.ctBox>hr {
    border: none;
    border-top: 1px dashed #000;
    opacity: 0.15;
    margin-bottom: clamp(40px, 4.166666666667vw, 80px);
}

.mapBox {
    display: flex;
    justify-content: space-between;
    margin-bottom: clamp(40px, 5.20833333333vw, 100px);
}

.mapBox>div:first-child {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}

.mapBox>div:first-child>.infoItem:nth-child(2),
.mapBox>div:first-child>.infoItem:nth-child(3) {
    width: 45%;
}

.mapBox>div:first-child>.infoItem:nth-child(3) {
    margin-left: 5%;
}

.mapBox>div:last-child {
    width: 50%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
}

.mapBox>div:last-child>iframe {
    width: 100%;
    height: 100%;
}

.mapBox>div:last-child>img {
    width: 100%;
    object-fit: contain;
}

.mapBox>div:nth-child(1)>h2 {
    width: 100%;
    margin-bottom: clamp(40px, 3.90625vw, 75px);
    line-height: 46px;
}

.infoItem {
    width: 100%;
    display: flex;
    align-items: start;
    position: relative;
    margin-bottom: clamp(20px, 2.6041666666667vw, 50px);
}

.infoItem:last-of-type {
    margin-bottom: 0;
}

.infoItem>.ico {
    margin-right: 30px;
    padding-top: 10px;
}

.infoItem>.info>p,
.infoItem>.info>a {
    display: block;
    font-size: var(--16px--);
    line-height: 150%;
    position: relative;
}

.infoItem>.info>p>span,
.infoItem>.info>a>span {
    font-weight: bold;
}

.infoItem>.info>p:nth-child(1) {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.messageBox>h4 {
    margin-bottom: clamp(25px, 2.6041666666667vw, 50px);
}

form {
    width: 100%;
    /* display: flex; */
    position: relative;
}

.messageBox>form>.row {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.messageBox>form>.row:not(:last-child) {
    margin-bottom: 20px;
}

.messageBox>form>.row>.column {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.messageBox>form>.row>.column:last-child {
    width: calc(50% - 60px);
}

.messageBox>form>.row>.column>div:not(:last-child) {
    width: 100%;
    margin-bottom: 25px;
}

.required>p::after {
    content: '*';
    color: #e70000;
}

.messageBox>form>.row>.column>div>p,
.messageBox>form>.row>.column>p {
    font-size: var(--16px--);
    color: #000;
    /* margin-bottom: 10px; */
    position: absolute;
    top: 18px;
    left: 10px;
    padding: 0 10px;
    background-color: #fff;
    transition: top .3s,font-size .3s;
    z-index: 3;
    color: #666;
    pointer-events: none;
}

.messageBox>form>.row>.column>div>input {
    width: 100%;
    /* height: 50px; */
}

.messageBox>form input,
.messageBox>form>.row>.column>textarea {
    border: 1px solid #d4dde1;
    border-radius: 5px;
    transition: all .6s;
    padding: 15px 20px;
    overflow: hidden;
    box-shadow: -3px 5px 10px 0 rgba(22, 23, 71, 0.05);
    mix-blend-mode: multiply;
}

.messageBox>form>.row>.column>textarea {
    resize: none;
}

.messageBox>form input:focus,
.messageBox>form>.row>.column>textarea:focus {
    outline: none;
    border: 1px solid #666;
}

.messageBox>form>.row>.column>p {
    flex-shrink: 0;
}

.messageBox>form>.row>.column>textarea {
    width: 100%;
    flex-grow: 1;
}

.messageBox>form>.submitBox {
    justify-content: center;
    margin-top: clamp(40px, 4.166666666667vw, 80px);
}

.messageBox button {
    width: 200px;
    height: clamp(60px, 3.645833333333vw, 70px);
    border: 1px solid transparent;
    /* background-color: #0d161e; */
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all .6s;
    text-transform: uppercase;
}

.messageBox button:hover {
    background-color: #000;
    border-color: #347236;
    color: #fff;
}

.messageBox>form>.row:last-child>.column:last-child {
    align-items: end;
}

.messageBox>form>.row>.column>div>div {
    display: flex;
    align-items: center;
}

.messageBox>form>.row>.column>div>div>input {
    flex: 2;
    margin-right: 30px;
}

.messageBox>form>.row>.column>div>div>img {
    flex: 1;
    margin-right: 15px;
    user-select: none;
    cursor: pointer;
}

.messageBox>form>.row>.column>div>div>svg {
    cursor: pointer;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.messageBox>form>.row>.column,
.messageBox>form>.row>.column>div {
    position: relative;
}

/* .messageBox>form>.row>.column>div>p {
    position: absolute;
    top: 18px;
    left: 20px;
    background-color: #fff;
    transition: top .3s;
}

.messageBox>form>.row>.column>p {
    position: absolute;
    top: 18px;
    left: 20px;
    background-color: #fff;
    transition: top .3s;
} */

.messageBox>form input,
.messageBox>form>.row>.column>textarea {
    padding: 20px;
}

.messageBox>form>.row>.column>div:focus-within>p:first-of-type,
.messageBox>form>.row>.column>div:has(input:not(:placeholder-shown))>p:first-of-type,
.messageBox>form>.row>.message:focus-within>p:first-of-type,
.messageBox>form>.row>.message:has(input:not(:placeholder-shown))>p:first-of-type {
    top: -10px;
    font-size: var(--14px--);
}


/* search */
.searchPage>h5 {
    width: 100%;
    font-family: Onsite standard Medium;
    margin-bottom: clamp(40px, 4.6875vw, 90px);
}

.searchPage>h5>span {
    color: red;
}


.newf>footer {
    background-color: #f2f3f5;
}

@media (max-width:1200px) {
    .banner {
        overflow: hidden;
        height: 45vh;
    }

    .banner>img {
        /* width: auto; */
        object-position: center;
    }

    .p3Nav-left>div>h3 {
        width: 70%;
    }

    .p3Nav-left>div {
        margin-left: 10%;
    }

    .page3-nav {
        height: clamp(300px, 28.6458333333333vw, 550px);
    }

    .page2-nav>.columnBox {
        grid-template-columns: repeat(3, 1fr);
    }

    .page1-pro>.banner {
        height: auto;
    }

    /*  */

    .proItem {
        grid-template-columns: 1fr;
    }

    .proItem>h6 {
        order: 1;
    }

    .proItem>.imgBox {
        order: 2;
        grid-row: span 1 !important;
    }

    .proItem>div:last-child {
        order: 3;
    }

    .page2-nav>.columnBox>.navItem:last-child {
        max-height: 240px;
    }

    .cho3>div:last-child>div {
        width: 55%;
    }

    .messageBox>form>.row>.column>div>div>img {
        width: 50%;
    }

    .verifyBox {
        overflow: hidden;
    }

    .mapBox>div:last-child>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 860px) {
    .b-info {
        flex-direction: column-reverse;
    }

    .b-info>.introduct {
        width: 100%;
        flex-direction: column;
    }

    /* .proList {
        grid-template-columns: 1fr;
    } */
}

@media (max-width:768px) {
    .page2-nav>.columnBox {
        grid-template-columns: repeat(2, 1fr);
    }

    .page2-nav>.columnBox>.navItem>.ImgBox {
        height: auto;
        aspect-ratio: 2 / 1.5;
    }

    .b-info>.imgBox {
        width: 100%;
    }

    .proList {
        grid-template-columns: 1fr;
    }

    .proItem {
        grid-template-columns: 0.6fr 1.4fr;
    }

    .proItem>h6 {
        order: 2;
    }

    .proItem>.imgBox {
        order: 1;
        grid-row: span 2 !important;
    }

    .proItem>div:last-child {
        order: 3;
    }

    .com1Box>.comItem {
        flex-direction: column;
    }

    .com1Box>.comItem:last-of-type {
        flex-direction: column-reverse;
    }

    .com1Box>.comItem>div {
        width: 100% !important;
        padding-left: 0 !important;
        margin-bottom: 30px;
        padding: 0;
    }

    .com1Box>.comItem:first-child {
        margin-bottom: 0;
    }

    .fixImgBox {
        height: 280px;
    }

    .fixImgBox>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .cho1>div {
        flex-direction: column-reverse;
    }

    .cho1>div>ul {
        margin-bottom: 30px;
    }

    .cho1>div>div,
    .cho1>div>ul {
        width: 100%;
    }

    .cho2 {
        height: auto;
    }

    .cho2>h3 {
        margin-bottom: 100px;
    }

    .cho2>.Labeling {
        flex-direction: column;
    }

    .cho2>.Labeling>li {
        border: 0px !important;
        padding: 0 !important;
    }

    .cho3>div {
        flex-direction: column;
    }

    .cho3>div>h3,
    .cho3>div>p,
    .cho3>div>ul,
    .cho3>div>div {
        width: 100% !important;
    }

    .cho3>div>h3 {
        margin-bottom: 30px;
    }

    .cho3>div:first-child>h3>br {
        display: none;
    }

    .cho4 {
        flex-direction: column-reverse;
    }

    .cho4>div {
        width: 100% !important;
    }

    .cho4>div:last-child {
        margin-bottom: 30px;
    }

    .cho4>div>img {
        height: 500px !important;
    }

    .newList {
        grid-template-columns: repeat(2, 1fr);
    }

    .mapBox {
        flex-direction: column;
    }

    .mapBox>div {
        width: 100% !important;
    }

    .mapBox>div:first-child {
        margin-bottom: 30px;
    }

    .mapBox>div:last-child {
        height: 300px;
    }

    .messageBox>form>.row {
        flex-direction: column;
    }

    .messageBox>form>.row>.column {
        width: 100% !important;
    }

    .messageBox>form>.row>.column:first-child {
        margin-bottom: 25px;
    }

    .messageBox>form>.row>.column>textarea {
        height: 200px;
    }

    .messageBox>form>.submitBox {
        align-items: center;
    }

    .messageBox button {
        height: 60px;
    }

    .page2-nav>.columnBox>.navItem:last-child {
        height: 100%;
    }
}

@media (max-width:480px) {
    .banner>h2 {
        width: 90%;
    }

    .page2-nav>.columnBox>.navItem:last-child {
        min-height: 150px;
        grid-column: span 1;
    }

    .page2-nav>.columnBox {
        grid-template-columns: repeat(1, 1fr);
    }

    .page3-nav {
        height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .p3Nav-left>img {
        width: 100%;
    }

    .p3Nav-left,
    .p3Nav-right {
        width: 100%;
        height: 250px;
        position: relative;
        -webkit-clip-path: none;
        clip-path: none;
    }

    .proItem {
        grid-template-columns: 1fr !important;
    }

    .proItem>h6 {
        order: 1;
    }

    .proItem>.imgBox {
        order: 2;
        grid-row: span 1 !important;
    }

    .proItem>div:last-child {
        order: 3;
    }

    .fixImgBox>div>h4>br,
    .comInfo>h3>br {
        display: none;
    }

    .newList {
        grid-template-columns: 1fr;
    }

    .newInfo {
        flex-direction: column;
    }

    .newInfo>p {
        line-height: 30px;
        margin-right: 0 !important;
    }

    .verifyBox {
        flex-wrap: wrap;

    }

    .messageBox>form>.row>.column>div>div>input {
        margin-right: 0px;
        margin-bottom: 25px;
    }

    .messageBox>form>.row>.column>div>div>img {
        flex: 0;
        margin-left: auto;
    }

    .mapBox>div:first-child>.infoItem:nth-child(2),
    .mapBox>div:first-child>.infoItem:nth-child(3) {
        width: 100% !important;
    }

    .mapBox>div:first-child>.infoItem:nth-child(3) {
        margin-left: 0;
    }

    .usaPhone {
        margin-top: 0 !important;
    }

    .cho2>.Labeling>li{
        width: 100% !important;
    }
    .cho2>.Labeling>li::before{
        width: 0;
        height: 0;
    }

    .cho4>div:last-child>div{
        flex-wrap: wrap;
    }

    .cho4>div:last-child>div>num{
        margin-left: 0 !important;
        width: 100%;
    }
    .cho4>div:last-child>div>num:first-child{
        padding-bottom: 20px;
    }
    .cho4>div:last-child>div>num:first-child::after{
        width: 100%;
        height: 1px;
        top: auto;
        bottom: 0;
        left: 0;
        right: auto;
        background: linear-gradient(90deg, transparent 0%, rgba(203, 210, 204, 1) 20%, rgba(203, 210, 204, 1) 80%, transparent 100%);
    }
    .cho4>div:last-child>div>num:first-child{
        margin-bottom: 20px;
    }
}


@media (max-width:350px) {
    .page2-nav>.columnBox>.navItem:last-child>.info {
        width: 100%;
    }

    .page2-nav>.columnBox>.navItem:last-child>img {
        display: none;
    }
}

@media (max-height:750) {}