:root {
    --contentPadding: 60px;
}
@media screen and (max-width: 1440px) {
    :root {
        --contentPadding: 40px;
    }
}
@media screen and (max-width: 1000px) {
    :root {
        --contentPadding: 30px;
    }
}
@media screen and (max-width: 767px) {
    :root {
        --contentPadding: 30px;
    }
}
.products .unitTitle {
    font-size: 2.625rem;
    font-weight: 700;
    margin: 20px 0 30px;
    text-align: center;
}
@media screen and (max-width: 1000px) {
    .products .unitTitle {
        font-size: 2rem;
        margin: 0 0 50px;
    }
}
.products .listBox {
    --gap: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}
@media screen and (max-width: 1000px) {
    .products .listBox {
        --gap: 20px;
    }
}
.products .item {
    width: calc((100% - var(--gap) * 3) / 4);
    background: #e2e1e6;
    border: 1px solid #e2e1e6;
    box-shadow: 0 0 30px 0px rgba(247, 155, 63, 0);
    transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
    .products .item {
        width: calc((100% - var(--gap)) / 2);
    }
}
@media screen and (max-width: 575px) {
    .products .item {
        width: 100%;
    }
}
.products .item a {
    height: 100%;
    padding: 20px 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.products .item a::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    aspect-ratio: 1;
    bottom: 0;
    border-radius: 50%;
    transform: scale(1.4);
    background: radial-gradient(ellipse at center, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 60%);
}
.products .item .pic {
    position: relative;
    z-index: 5;
    width: 100%;
    margin: 0 auto;
	height:100%;
}
.products .item .pic img {
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.25));
}
.products .item .title {
    color: #000;
    font-size: 1.75rem;
    font-weight: normal;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    z-index:9;
    padding: 0 15px;
}
@media screen and (max-width: 1000px) {
    .products .item .title {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 767px) {
    .products .item .title {
        font-size: 1.25rem;
    }
}
.products .item .description {
    color: #666666;
    font-size: 1rem;
}
.products .item:hover {
    border-color: #f39627;
    background: #fff;
    box-shadow: 0 0 30px 0px rgba(247, 155, 63, 0.5);
}
.sliderMore {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.sliderMore.active {
    display: block;
}
.showMore {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0.7;
    color: #fff;
    z-index: 9;
    width: 100%;
    max-width: 200px;
    height: 50px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    padding: 0 25px;
    background: linear-gradient(to right, rgb(3, 73, 177) 0%, rgb(0, 151, 253) 100%);
    transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
    .showMore {
        font-size: 13px;
        max-width: 180px;
        padding: 0 15px;
        height: 40px;
        white-space: nowrap;
    }
}
.showMore::after {
    content: '';
    position: absolute;
    width: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    background: #0099ff;
    z-index: -1;
    transition: all 0.3s ease;
}
.showMore:hover {
    color: #fff;
    border-color: #0099ff;
}
.showMore:hover::after {
    width: 100%;
    left: 0;
}
.productsDetailBox .banner, .productsBox .banner {
    isolation: isolate;
    position: relative;
    padding-bottom: 67px;
    overflow: hidden;
    /*display: flex;
    align-items: stretch;*/
}
.productsDetailBox .banner::after, .productsBox .banner::after {
    content: '';
    position: absolute;
    display: block;
    width: 50%;
    height: 135px;
    bottom: 0;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, rgb(141, 150, 156) 49%, rgb(255, 255, 255) 100%);
}
@media screen and (max-width: 1000px) {
    .productsDetailBox .banner::after, .productsBox .banner::after {
        display: none;
    }
}
.productsDetailBox .banner .pic, .productsBox .banner .pic {
    position: relative;
    isolation: isolate;
    height: 320px;
    overflow:hidden;
}
@media(max-width:768px){
    .productsDetailBox .banner .pic, .productsBox .banner .pic{
        height: 180px;
    }
}
.productsDetailBox .banner .pic::before, .productsBox .banner .pic::before {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    background: #555555;
    opacity: 0.75;
    z-index: 1;
}
.productsDetailBox .banner .pic img, .productsBox .banner .pic img {
    -o-object-fit: cover;
    object-fit: cover;
}
.productsDetailBox .banner .container, .productsBox .banner .container {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    z-index: 2;
    transform: translateX(-50%);
}
.productsDetailBox .banner .container .title, .productsBox .banner .container .title {
    font-size: 3.75rem;
    line-height: 1;
    padding-top: 3.5%;
    font-weight: 700;
    color: #fff;
}
.productsDetailBox .banner .container .title-sub, .productsBox .banner .container .title-sub{
	width: 50%;
    color: white;
    font-size: 1.4em;
    line-height: 1.6em;
    margin-top: 1em;
    font-weight: normal;
	height: 4.5em;
	overflow:hidden;
}
@media screen and (max-width: 1000px) {
    .productsDetailBox .banner .container .title, .productsBox .banner .container .title {
        font-size: 3.125rem;
    }
	.productsDetailBox .banner .container .title-sub, .productsBox .banner .container .title-sub{
		width: 60%;
		color: white;
		font-size: 1.3em;
		line-height: 1.5em;
		margin-top: 1em;
		font-weight: normal;
	}
}
@media screen and (max-width: 767px) {
    .productsDetailBox .banner .container .title, .productsBox .banner .container .title {
        font-size: 2.5rem;
        padding-top: 30px;
    }
	.productsDetailBox .banner .container .title-sub, .productsBox .banner .container .title-sub{
		width: 100%;
		color: white;
		font-size: 1.2em;
		line-height: 1.4em;
		margin-top: 1em;
		font-weight: normal;
	}
}
@media screen and (max-width: 575px) {
    .productsDetailBox .banner .container .title, .productsBox .banner .container .title {
        font-size: 1.875rem;
    }
	.productsDetailBox .banner .container .title-sub, .productsBox .banner .container .title-sub{
		width: 100%;
		color: white;
		font-size: 1.2em;
		line-height: 1.5em;
		margin-top: 1em;
		font-weight: normal;
	}
}
.productsDetailBox .banner .container .info, .productsBox .banner .container .info {
    height: 135px;
    width: 35%;
    font-size: 1.5rem;
    color: #000;
    position: absolute;
    line-height: 1.3;
    bottom: 0;
    background: linear-gradient(to bottom, rgb(141, 150, 156) 49%, rgb(255, 255, 255) 100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    padding: 20px 50px 50px 0px;
    left: var(--contentPadding);
}
@media screen and (max-width: 1000px) {
    .productsDetailBox .banner .container .info, .productsBox .banner .container .info {
        width: 100%;
        height: auto;
        padding: 20px 20px 30px var(--contentPadding);
        font-size: 1.25rem;
        -webkit-clip-path: none;
        clip-path: none;
        left: 0;
    }
}
@media screen and (max-width: 767px) {
    .productsDetailBox .banner .container .info, .productsBox .banner .container .info {
        font-size: 1.125rem;
    }
}
.productsDetailBox .description, .productsBox .description {
    line-height: 1.45;
    font-size: 1.125rem;
}
.productsDetailBox .subTitle, .productsBox .subTitle {
    font-size: 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 2px;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    line-height: 2;
}
.productsDetailBox .subTitle::before, .productsBox .subTitle::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 5px;
    background: #f39627;
}
.productsDetailBox .contentBox, .productsBox .contentBox {
    display: flex;
}
.productsDetailBox .contentBox .pic{
	width:100%;
}
@media(min-width:769px){
	.productsDetailBox .contentBox .pic{
		width:50%;
	}
}
@media screen and (max-width: 767px) {
    .productsDetailBox .contentBox, .productsBox .contentBox {
        flex-direction: column;
        gap: 30px;
    }	
}
.productsDetailBox .contentBox .tableBox, .productsBox .contentBox .tableBox {
    width: 100%;
}
.productsBox .contentBox.tableArrow {
    padding-bottom: 25px;
    position: relative;
}
.productsBox .contentBox.tableArrow::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background-image: url("../images/icon/icon_scroll.svg");
    background-size: cover;
    background-position: center;
    width: 70px;
    height: 12px;
    -webkit-animation: shake-horizontal 5s linear infinite both;
    animation: shake-horizontal 5s linear infinite both;
    display: block;
}
@media(min-width:1110px) {
    .productsBox .contentBox.tableArrow::after {
        display: none;
    }
}
@-webkit-keyframes shake-horizontal {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    75% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes shake-horizontal {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    75% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.productsDetailBox .contentBox .tableBox table, .productsBox .contentBox .tableBox table {
    width: 100%;
    min-width: 1000px;
    font-size: 1rem;
}
.productsDetailBox .contentBox .tableBox table thead th, .productsBox .contentBox .tableBox table thead th {
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 9px 20px;
    line-height: 1.2em;
}
.productsDetailBox .contentBox .tableBox table thead th, .productsBox .contentBox .tableBox table thead th:first-child{
    text-align:left;
    padding: 9px 40px;
    min-width:100px;
    max-width:145px;
}
.productsDetailBox .contentBox .tableBox table thead tr:nth-child(2) th, .productsBox .contentBox .tableBox table thead tr:nth-child(2) th {
    border-top: none;
    padding: 0 20px 5px;
}
.productsDetailBox .contentBox .tableBox table td, .productsBox .contentBox .tableBox table td {
    text-align: center;
    border: 1px solid #ddd;
    padding: 8px 10px;
    line-height: 1.2rem;
    min-width: 130px;
}
.productsDetailBox .contentBox .tableBox table tbody th, .productsBox .contentBox .tableBox table tbody th {
    border: 1px solid #ddd;
    padding: 5px 40px;
    text-align:left;
    line-height: 1.2rem;
    min-width:100px;
    max-width:145px;
    font-weight:normal;
}
.productsDetailBox .contentBox + h2, .productsDetailBox .contentBox + .contentBox, .productsBox .contentBox + h2, .productsBox .contentBox + .contentBox {
    margin-top: 30px;
}
.productsDetailBox .contentBox .info, .productsBox .contentBox .info {
    width: 50%;
    padding-right: 6%;
}
@media screen and (max-width: 767px) {
    .productsDetailBox .contentBox .info, .productsBox .contentBox .info {
        width: 100%;
        padding: 0;
        order: 5;
    }
}
.productsDetailBox .contentBox .info li, .productsBox .contentBox .info li {
    font-size: 1.125rem;
    padding-left: 30px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .productsDetailBox .contentBox .info li, .productsBox .contentBox .info li {
        font-size: 1rem;
    }
}
.productsDetailBox .contentBox .info li::before, .productsBox .contentBox .info li::before {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    background: #f39627;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}
.productsDetailBox .contentBox .side, .productsBox .contentBox .side {
    width: 50%;
    line-height: 0;
}
@media screen and (max-width: 767px) {
    .productsDetailBox .contentBox .side, .productsBox .contentBox .side {
        width: 100%;
    }
    .productsDetailBox .contentBox:nth-of-type(2) .side, .productsBox .contentBox:nth-of-type(2) .side {
        order: 5;
    }
}
.productsDetailBox .contentBox .side .pic, .productsBox .contentBox .side .pic {
    margin-top: -50%;
}
@media screen and (max-width: 767px) {
    .productsDetailBox .contentBox .side .pic, .productsBox .contentBox .side .pic {
        margin: 0;
    }
}
.productsDetailBox .contentBox .side .pic img, .productsBox .contentBox .side .pic img {
    filter: drop-shadow(15px 10px 8px rgba(0, 0, 0, 0.25));
}
.productsBox .mainBox {
    padding-top: 0px;
}
.productsBox .mainBox .side .pic {
    width: 80%;
}
.productsBox2 .container {
    max-width: 1440px;
}
.products2 .listBox {
    --gap: 24px;
    width:100%;
}
.products2 .listBox .item {
    width: calc((100% - var(--gap) * 3) / 4);
}
@media screen and (max-width: 1000px) {
    .products2 .listBox .item {
        width: calc((100% - var(--gap) * 2) / 3);
    }
}
@media screen and (max-width: 767px) {
    .products2 .listBox .item {
        width: calc((100% - var(--gap)) / 2);
    }
}
@media screen and (max-width: 575px) {
    .products2 .listBox .item {
        width: 100%;
    }
}
.products2 .listBox .title {
    font-size: 1.25rem;
    z-index:9;
}
@media screen and (max-width: 1000px) {
    .products2 .listBox .title {
        font-size: 1.125rem;
    }
}
.productsDetailBox .banner {
    padding-bottom: 67px;
}
@media screen and (max-width: 767px) {
    .productsDetailBox .banner {
        overflow: visible;
    }
    .productsDetailBox .banner .pic {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        height: 250px;
    }
}
.productsDetailBox .banner::after {
    display: block;
}
.productsDetailBox .productsDetail {
    line-height: 1.75;
    z-index: 9;
    position: relative;
}
.productsDetailBox .productsDetail .top {
    font-size: 1.3125rem;
    line-height: 1.45;
    font-weight: 500;
    margin-bottom: 5%;
}
@media screen and (max-width: 1000px) {
    .productsDetailBox .productsDetail .top {
        font-size: 1.125rem;
    }
    .productsDetailBox .banner::after {
        display: none;
    }
}
.productsDetailBox .productsDetail .description {
    font-size: 1.125rem;
}
@media screen and (max-width: 1000px) {
    .productsDetailBox .productsDetail .description {
        font-size: 1rem;
    }
}
.mfp-bg {
    background: #fff;
}
.mfp-figure figure {
    max-height: 90vh;
}
.mfp-figure figure img {
    width: 100%;
    height: 100%;
    max-height: 90vh !important;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    padding: 0;
}
.mfp-image-holder .mfp-figure {
    padding: 20px;
    background: #fff;
}
.mfp-image-holder .mfp-close, .mfp-image-holder .mfp-close {
    background: #f39627;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    line-height: 0.8;
    padding: 0 0 0 0;
    text-align: center;
    cursor: pointer !important;
}
.productsSearchBox {
    background: #f39627;
    position: sticky;
    top: 70px;
    z-index: 9;
}
@media screen and (max-width: 1000px) {
    .productsSearchBox {
        top: 50px;
    }
}
@media screen and (max-width: 767px) {
    .productsSearchBox .container {
        padding: 0;
    }
}
.productsSearchBox .mobileSearchBtn {
    display: none;
    background: none;
    border: none;
    position: absolute;
    inset: 0;
    z-index: 9;
}
@media screen and (max-width: 767px) {
    .productsSearchBox .mobileSearchBtn {
        display: block;
    }
}
.productsSearchBox .searchForm {
    display: flex;
    align-items: center;
    padding: 20px 0px 20px 0;
}
@media screen and (max-width: 767px) {
    .productsSearchBox .searchForm {
        display: block;
        padding: 0;
    }
}
.productsSearchBox .searchForm li {
    position: relative;
}
.productsSearchBox .searchForm .title {
    color: #fff;
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0 30px 0 0;
    white-space: nowrap;
    position: relative;
}
@media screen and (max-width: 1000px) {
    .productsSearchBox .searchForm .title {
        font-size: 1.25rem;
        margin: 0 20px 0 0;
    }
}
@media screen and (max-width: 767px) {
    .productsSearchBox .searchForm .title {
        font-size: 1.125rem;
        margin: 0;
        padding: 20px;
    }
}
.productsSearchBox .searchForm .title::after {
    content: '+';
    font-weight: 300;
    font-size: 1.875rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}
@media screen and (max-width: 767px) {
    .productsSearchBox .searchForm .title::after {
        display: block;
    }
}
.productsSearchBox .searchForm .selectBox {
    display: flex;
    gap: 12px;
    isolation: isolate;
}
@media screen and (max-width: 767px) {
    .productsSearchBox .searchForm .selectBox {
        display: none;
        padding: 0 20px 20px;
    }
}
.productsSearchBox .searchForm .selectBox > li:nth-child(1), .productsSearchBox .searchForm .selectBox > li:nth-child(3) {
    width: 40%;
}
.productsSearchBox .searchForm .selectBox > li:nth-child(2) {
    width: 55%;
}
@media screen and (max-width: 767px) {
    .productsSearchBox .searchForm .selectBox > li {
        width: 100% !important;
        margin: 5px 0;
    }
}
.productsSearchBox .searchForm .inputItem {
    position: relative;
}
.productsSearchBox .searchForm .inputItem::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #0099ff transparent;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.productsSearchBox .searchForm .inputItem input {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    height: 43px;
    padding: 10px 30px 10px 10px;
}
.productsSearchBox .searchForm .inputItem input::-moz-placeholder {
    color: #fff;
}
.productsSearchBox .searchForm .inputItem input::placeholder {
    color: #fff;
}
.productsSearchBox .searchForm .list {
    width: 100%;
    position: absolute;
    color: #fff;
    top: calc(100% + 20px);
    max-height: 50vh;
    max-height: 50dvh;
    display: none;
    overflow-y: auto;
    scrollbar-color: #0099ff rgba(0, 0, 0, 0.2);
    scrollbar-width: thin;
    background: #fff;
    z-index: 9;
}
@media screen and (max-width: 767px) {
    .productsSearchBox .searchForm .list {
        top: 100%;
    }
}
.productsSearchBox .searchForm .list::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.productsSearchBox .searchForm .list::-webkit-scrollbar-thumb {
    border-radius: 100px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #0099ff;
}
.productsSearchBox .searchForm .list::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}
.productsSearchBox .searchForm .list li {
    background: #f39627;
    font-size: 1.125rem;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
    .productsSearchBox .searchForm .list li {
        border: none;
    }
}
.productsSearchBox .searchForm .list li:hover {
    background: #0099ff;
} /*# sourceMappingURL=products.css.map */