@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100;300;400;500;600;800&family=Roboto:wght@100;400;500&display=swap");
.catalogArea .item {
    transition: all .5s;
}

@-webkit-keyframes bannerTxtAnimation {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bannerTxtAnimation {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes progressBarHorizontal {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes progressBarHorizontal {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes progressBarVertical {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

@keyframes progressBarVertical {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

@-webkit-keyframes progressCircleAnimation {
    0% {
        stroke-dashoffset: 153.86;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes progressCircleAnimation {
    0% {
        stroke-dashoffset: 153.86;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes bannerScrollAnimation {
    0% {
        height: 0;
    }
    50% {
        height: 100%;
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

@-webkit-keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.popWin {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    width: 100%;
    height: 100vh;
    font-size: 15px;
    line-height: 1.8;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .7s;
}

.popWin .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all .7s;
}

.popWin .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    max-width: 90%;
    max-height: 85vh;
    opacity: 0;
    background-color: #fff;
    transition: all .7s;
}

.popWin .popContent {
    max-height: 85vh;
    overflow-y: auto;
}

.popWin img {
    display: block;
    max-width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.popWin .Txt {
    padding: 30px;
}

.popWin .Txt .popTitle {
    font-size: 25px;
    margin-bottom: 25px;
}

.popWin .close {
    position: absolute;
    right: -23px;
    top: -23px;
    z-index: 1;
    width: 46px;
    height: 46px;
    background-color: rgba(0, 0, 0, 0.7);
    /* background-color: #fff; */
    border-radius: 50%;
}

.popWin .close::before, .popWin .close::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 23px;
    width: 25px;
    height: 1px;
    background-color: #bca480;
    /* border-radius:  50%; */
}

.popWin .close::before {
    transform: rotate(45deg);
}

.popWin.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.popWin.show .mask,
.popWin.show .inner {
    opacity: 1;
}

.popWin .close::after {
    transform: rotate(-45deg);
}

@media (max-width: 1180px) {
    .popWin .close {
        right: 0;
        top: 0;
        border-radius: 0;
    }
    .popWin .popContent {
        max-height: calc(100vh - 150px);
    }
}

.mainArea {
    padding: 0;
}

.bannerArea {
    padding-top: 80px;
    position: relative;
}

.bannerArea .bannerBox {
    position: relative;
}

.bannerArea .bannerList {
    position: relative;
    z-index: 1;
}

.bannerArea .bannerList.slick-dotted {
    margin-bottom: 0;
}

.bannerArea .bannerItem {
    padding-bottom: 120px;
    position: relative;
}

.bannerArea .bannerItem .Txt {
    max-width: 960px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px 0 350px;
    z-index: 2;
    pointer-events: none;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bannerArea .bannerItem .Txt .textBox {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.bannerArea .bannerItem .Txt .title {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 2px;
    opacity: 0;
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.24);
    padding-bottom: 20px;
}

.bannerArea .bannerItem .Txt .subtitle {
    display: block;
    color: #e60012;
    font-size: 15px;
    line-height: 18px;
    font-weight: 800;
    letter-spacing: 0px;
    padding-bottom: 18px;
    opacity: 0;
}

.bannerArea .bannerItem .Txt .text {
    color: #fff;
    display: block;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.5px;
    margin-top: 10px;
    opacity: 0;
}

.bannerArea .bannerItem .Txt .bannerBtn {
    opacity: 0;
    padding-top: 30px;
    margin: 0 auto;
    display: block;
    width: 226px;
}

.bannerArea .bannerItem .Txt .bannerBtn a {
    background-color: #4d4d4d;
    color: #fff;
    width: 100%;
    display: inline-block;
    letter-spacing: 0.5px;
    padding: 15px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
}

.bannerArea .bannerItem .Txt .bannerBtn a span {
    font-weight: 800;
}

.bannerArea .bannerItem .Txt .bannerBtn a:hover {
    background-color: #e60012;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.bannerArea .bannerItem .Img {
    position: relative;
    z-index: 1;
    height: calc(100vh - 200px);
}

.bannerArea .bannerItem .Img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.bannerArea .bannerItem .productImg {
    position: absolute;
    bottom: 0px;
    right: calc(50% - 750px);
    z-index: 2;
    opacity: 0;
}

.bannerArea .bannerItem.slick-current .Txt .title {
    -webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
            animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}

.bannerArea .bannerItem.slick-current .Txt .subtitle {
    -webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
            animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}

.bannerArea .bannerItem.slick-current .Txt .text {
    -webkit-animation: bannerTxtAnimation 0.8s 0.6s ease-in-out forwards;
            animation: bannerTxtAnimation 0.8s 0.6s ease-in-out forwards;
}

.bannerArea .bannerItem.slick-current .Txt .bannerBtn {
    -webkit-animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
            animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
}

.bannerArea .bannerItem.slick-current .productImg {
    -webkit-animation: bannerTxtAnimation 0.8s 1.0s ease-in-out forwards;
            animation: bannerTxtAnimation 0.8s 1.0s ease-in-out forwards;
}

.bannerArea .arrowBox {
    position: static;
}

.bannerArea .arrowBox::before {
    display: none;
}

.bannerArea .arrowBox .arrow {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: 50px;
    height: 50px;
    z-index: 1;
}

.bannerArea .arrowBox .arrow::before {
    top: 10px;
    left: 18px;
    width: 30px;
    height: 30px;
    border-color: #fff;
    border-width: 2px;
}

.bannerArea .arrowBox .arrowPrev {
    left: 0;
}

.bannerArea .arrowBox .arrowNext {
    right: 0;
}

.bannerArea .arrowBox .arrowNext:before {
    left: auto;
    right: 18px;
}

.bannerArea .slick-dots {
    bottom: 110px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1500px) {
    .bannerArea .bannerItem {
        padding-bottom: 100px;
    }
    .bannerArea .bannerItem .productImg {
        right: calc(50% - 400px);
    }
    .bannerArea .bannerItem .productImg img {
        display: block;
        width: 400px;
    }
    .bannerArea .bannerItem .Txt {
        padding: 50px 0 400px;
    }
}

@media (max-width: 1500px) {
    .bannerArea .bannerItem .Img {
        height: calc(100vh - 180px);
    }
}

@media (max-width: 1180px) {
    .bannerArea {
        padding-top: 0;
    }
    .bannerArea .bannerItem .productImg {
        right: calc(50% - 200px);
    }
    .bannerArea .bannerItem .productImg img {
        display: block;
        width: 400px;
    }
    .bannerArea .bannerItem .Img {
        height: calc(100vh - 240px);
    }
    .bannerArea .bannerItem .Txt {
        padding: 60px 20px 300px;
    }
    .bannerArea .bannerItem .Txt .title {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: 1px;
        padding-bottom: 12px;
    }
    .bannerArea .bannerItem .Txt .subtitle {
        padding-bottom: 10px;
    }
    .bannerArea .bannerItem .Txt .bannerBtn {
        padding-top: 20px;
    }
}

@media (max-width: 840px) {
    .bannerArea .bannerItem .Img {
        height: 640px;
    }
    .bannerArea .bannerItem .Txt .title {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 0.5px;
        padding-bottom: 10px;
    }
    .bannerArea .bannerItem .Txt .subtitle {
        font-size: 13px;
        padding-bottom: 6px;
    }
}

@media (max-width: 640px) {
    .bannerArea .bannerItem .Img {
        height: 580px;
    }
    .bannerArea .arrowBox .arrow {
        width: 30px;
        height: 30px;
    }
    .bannerArea .arrowBox .arrow::before {
        top: 8px;
        left: 11px;
        width: 15px;
        height: 15px;
    }
    .bannerArea .arrowBox .arrowNext:before {
        left: auto;
        right: 9px;
    }
}

@media (max-width: 440px) {
    .bannerArea .bannerItem {
        padding-bottom: 80px;
    }
    .bannerArea .bannerItem .productImg {
        right: calc(50% - 140px);
    }
    .bannerArea .bannerItem .productImg img {
        display: block;
        width: 280px;
    }
    .bannerArea .bannerItem .Img {
        height: 540px;
    }
    .bannerArea .bannerItem .Txt {
        padding: 60px 20px 240px;
    }
    .bannerArea .bannerItem .Txt .title {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 0.5px;
    }
    .bannerArea .bannerItem .Txt .bannerBtn {
        padding-top: 10px;
    }
}

.newsArea {
    background-color: #fafafa;
    position: absolute;
    bottom: 150px;
    left: 30px;
    width: 430px;
    height: 260px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 20px;
    z-index: 20;
}

.newsArea.hide {
    display: none;
}

.newsArea .newsBox {
    transition: all 0.5s;
    height: 100%;
    position: relative;
}

.newsArea .item {
    padding: 35px 20px 20px;
    position: relative;
    height: 100%;
}

.newsArea .closeBtn {
    position: absolute;
    top: 0px;
    right: 0px;
    display: block;
    width: 22px;
    height: 22px;
    transform: rotate(45deg);
    z-index: 2;
}

.newsArea .closeBtn::before {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background-color: #5b5b5b;
    position: absolute;
    top: calc(50% - 0.5px);
    left: 0;
}

.newsArea .closeBtn::after {
    content: "";
    width: 1px;
    height: 22px;
    background-color: #5b5b5b;
    position: absolute;
    top: 0;
    left: calc(50% - 0.5px);
}

.newsArea .closeBtn:hover {
    transform: scale(1.1) rotate(45deg);
}

.newsArea .closeBtn:hover::before, .newsArea .closeBtn:hover::after {
    background-color: #e60012;
}

.newsArea .Txt {
    position: relative;
}

.newsArea .Txt .date {
    position: absolute;
    top: 0;
    left: 0;
}

.newsArea .Txt .date .day {
    font-size: 40px;
    line-height: 30px;
    letter-spacing: 0;
    color: #e60012;
    font-weight: 600;
}

.newsArea .Txt .date .year {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.2px;
    color: #e60012;
    font-weight: 500;
    text-align: center;
}

.newsArea .Txt .title a {
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #353535;
}

.newsArea .Txt .title a:hover {
    color: #e60012;
}

.newsArea .Txt .title.ellipsis {
    height: 50px;
}

.newsArea .Txt .exp {
    font-size: 13px;
    line-height: 19px;
    color: #6d6d6d;
    font-weight: 400;
    letter-spacing: 0;
}

.newsArea .Txt .exp.ellipsis {
    height: 78px;
}

.newsArea .Txt .moreBtn {
    margin-top: 5px;
}

@media (max-width: 1440px) {
    .newsArea {
        width: 380px;
        height: 240px;
        padding: 15px;
    }
    .newsArea .item {
        padding: 30px 0 10px;
    }
}

@media (max-width: 1180px) {
    .newsArea {
        width: 100%;
        height: 60px;
        bottom: auto;
        top: 0;
        left: 0;
        border-radius: 0;
        padding: 0 20px;
    }
    .newsArea .closeBtn {
        top: 19px;
        left: 0px;
    }
    .newsArea .item {
        padding: 0 0 0 30px;
    }
    .newsArea .Txt {
        padding: 5px 80px 5px 70px;
        height: 60px;
        display: flex;
        align-items: center;
    }
    .newsArea .Txt .title.ellipsis {
        height: auto;
        max-height: 50px;
    }
    .newsArea .Txt .date {
        top: 8px;
    }
    .newsArea .Txt .exp {
        display: none;
    }
    .newsArea .Txt .moreBtn {
        position: absolute;
        top: calc(50% - 17px);
        right: 0;
    }
    .newsArea .Txt .moreBtn .text {
        display: none;
    }
}

@media (max-width: 640px) {
    .newsArea .Txt {
        padding: 5px 60px 5px 50px;
    }
    .newsArea .Txt .title a {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .newsArea .Txt {
        padding: 5px 0 0px 50px;
    }
    .newsArea .Txt .title a {
        font-size: 13px;
        line-height: 18px;
    }
    .newsArea .Txt .title.ellipsis {
        max-height: 54px;
    }
    .newsArea .Txt .moreBtn {
        display: none;
    }
}

.adArea {
    padding: 0 0 45px;
}

.adArea .adList {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 456px 16px 456px 16px 456px;
    grid-template-columns: repeat(3, 456px);
    -ms-grid-rows: 274px 16px 274px 16px 274px;
    grid-template-rows: repeat(3, 274px);
    grid-gap: 16px;
}

.adArea .adList > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.adArea .adList > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.adArea .adList > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}

.adArea .adList > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

.adArea .adList > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

.adArea .adList > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
}

.adArea .adList > *:nth-child(7) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
}

.adArea .adList > *:nth-child(8) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
}

.adArea .adList > *:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
}

.adArea li:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
}

.adArea li:nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
}

.adArea li:nth-child(3) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
}

.adArea li:nth-child(4) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
}

.adArea li:nth-child(5) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
}

.adArea li:nth-child(6) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2/4;
}

.adArea .item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.adArea .Img.imgStyle1 {
    width: 456px;
    height: 564px;
}

.adArea .Img.imgStyle2 {
    width: 928px;
    height: 274px;
}

.adArea .Img.imgStyle3 {
    width: 456px;
    height: 274px;
}

.adArea .Img a {
    display: block;
    width: 100%;
    height: 100%;
}

.adArea .Img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.adArea .Txt {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 40px;
}

.adArea .Txt .title {
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.adArea .moreBox {
    padding: 40px 0 0;
    margin: 0 auto;
    text-align: center;
}

.adArea .moreBox .moreBtn {
    display: inline-flex;
}

@media (max-width: 1440px) {
    .adArea .adList {
        max-width: 1400px;
        max-height: 854px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
        grid-template-columns: repeat(3, 1fr);
        -ms-grid-rows: 1fr 10px 1fr 10px 1fr;
        grid-template-rows: repeat(3, 1fr);
        grid-gap: 10px;
    }
    .adArea .adList > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .adArea .adList > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .adArea .adList > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
    .adArea .adList > *:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .adArea .adList > *:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }
    .adArea .adList > *:nth-child(6) {
        -ms-grid-row: 3;
        -ms-grid-column: 5;
    }
    .adArea .adList > *:nth-child(7) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }
    .adArea .adList > *:nth-child(8) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }
    .adArea .adList > *:nth-child(9) {
        -ms-grid-row: 5;
        -ms-grid-column: 5;
    }
    .adArea .item {
        width: 100%;
        height: 100%;
    }
    .adArea .Img.imgStyle1, .adArea .Img.imgStyle2, .adArea .Img.imgStyle3 {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 1280px) {
    .adArea .Txt {
        padding: 20px;
    }
    .adArea .Txt .title {
        font-size: 22px;
        line-height: 26px;
    }
}

@media (max-width: 1180px) {
    .adArea .adList {
        width: 100%;
        max-width: 1400px;
        max-height: 1126px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 10px 1fr;
        grid-template-columns: repeat(2, 1fr);
        -ms-grid-rows: 1fr 10px 1fr 10px 1fr 10px 1fr;
        grid-template-rows: repeat(4, 1fr);
        grid-gap: 10px;
    }
    .adArea .adList > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .adArea .adList > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .adArea .adList > *:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .adArea .adList > *:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }
    .adArea .adList > *:nth-child(5) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }
    .adArea .adList > *:nth-child(6) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }
    .adArea .adList > *:nth-child(7) {
        -ms-grid-row: 7;
        -ms-grid-column: 1;
    }
    .adArea .adList > *:nth-child(8) {
        -ms-grid-row: 7;
        -ms-grid-column: 3;
    }
    .adArea li:nth-child(1) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1/2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        grid-row: 1/3;
    }
    .adArea li:nth-child(2) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2/3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1/2;
    }
    .adArea li:nth-child(3) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2/3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2/3;
    }
    .adArea li:nth-child(4) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1/2;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        grid-row: 3/4;
    }
    .adArea li:nth-child(5) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1/2;
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
        grid-row: 4/5;
    }
    .adArea li:nth-child(6) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2/3;
        -ms-grid-row: 3;
        -ms-grid-row-span: 2;
        grid-row: 3/5;
    }
    .adArea .moreBox {
        padding: 30px 0 0;
    }
}

@media (max-width: 640px) {
    .adArea .titleBox.titleStyle1 {
        margin-bottom: 20px;
    }
    .adArea .adList {
        max-width: 100%;
        max-height: 100%;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: calc(50% - 5px) 10px calc(50% - 5px);
        grid-template-columns: repeat(2, calc(50% - 5px));
        -ms-grid-rows: 160px 10px 160px 10px 160px;
        grid-template-rows: repeat(3, 160px);
        grid-gap: 10px;
    }
    .adArea .adList > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .adArea .adList > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .adArea .adList > *:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .adArea .adList > *:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }
    .adArea .adList > *:nth-child(5) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }
    .adArea .adList > *:nth-child(6) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }
    .adArea li:nth-child(1) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1/2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1/2;
    }
    .adArea li:nth-child(2) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2/3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1/2;
    }
    .adArea li:nth-child(3) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1/2;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2/3;
    }
    .adArea li:nth-child(4) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2/3;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2/3;
    }
    .adArea li:nth-child(5) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1/2;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        grid-row: 3/4;
    }
    .adArea li:nth-child(6) {
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-column: 2/3;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        grid-row: 3/4;
    }
    .adArea .Txt {
        padding: 10px 12px;
    }
    .adArea .Txt .title {
        font-size: 18px;
        line-height: 20px;
    }
    .adArea .moreBox {
        padding: 20px 0 0;
    }
}

@media (max-width: 480px) {
    .adArea .adList {
        -ms-grid-rows: 122px 10px 122px 10px 122px;
        grid-template-rows: repeat(3, 122px);
    }
    .adArea .Txt {
        padding: 10px 8px;
    }
    .adArea .Txt .title {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 400px) {
    .adArea .Txt {
        padding: 10px 8px;
    }
    .adArea .Txt .title {
        font-size: 14px;
        line-height: 18px;
    }
}

.catalogArea {
    padding: 80px 0 100px;
    background-color: #ededed;
}

.catalogArea .catalogMBox {
    position: relative;
}

.catalogArea .titleBox.titleStyle1 {
    margin-bottom: 20px;
}

.catalogArea .item {
    padding: 40px 0 30px;
    max-width: 350px;
    margin: 0 auto;
}

.catalogArea .item .Img {
    width: 100%;
    height: 300px;
}

.catalogArea .item .Img a {
    display: block;
    width: 100%;
    height: 100%;
}

.catalogArea .item .Img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.catalogArea .item .Txt {
    padding: 0 40px 20px;
    position: relative;
}

.catalogArea .item .Txt::before {
    content: "";
    width: 30px;
    height: 2px;
    display: block;
    background-color: #e60012;
    position: absolute;
    bottom: 0;
    left: 40px;
}

.catalogArea .item .Txt .num {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0;
    font-weight: 600;
    color: #5e5e5e;
    padding: 0 0 10px;
}

.catalogArea .item .Txt .title {
    min-height: 50px;
}

.catalogArea .item .Txt .title a {
    display: inline-block;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0;
    color: #353535;
    font-weight: 600;
}

.catalogArea .item .Txt .title a:hover {
    color: #e60012;
}

.catalogArea .item:hover {
    transform: translateY(-40px);
}

.catalogArea .arrowBox2 {
    position: absolute;
    top: calc(50% - 30px);
    left: -100px;
}

.catalogArea .arrowBox2.right {
    left: auto;
    right: -100px;
}

@media (max-width: 1640px) {
    .catalogArea {
        padding: 80px 20px;
    }
    .catalogArea .arrowBox2 {
        left: -20px;
    }
    .catalogArea .arrowBox2.right {
        right: -20px;
    }
}

@media (max-width: 1080px) {
    .catalogArea {
        padding: 50px 0 80px;
    }
}

@media (max-width: 640px) {
    .catalogArea {
        padding: 50px 0 40px;
    }
    .catalogArea .titleBox.titleStyle1 {
        margin-bottom: 0px;
    }
}

@media (max-width: 440px) {
    .catalogArea {
        padding: 40px 0 20px;
    }
    .catalogArea .item .Img {
        height: auto;
    }
}

.aboutArea {
    padding: 50px 0 140px;
}

.aboutArea .wrap {
    display: flex;
    flex-wrap: wrap;
}

.aboutArea .leftBox {
    width: 748px;
    position: relative;
    padding-bottom: 16px;
}

.aboutArea .rightBox {
    width: calc(100% - 748px);
    padding-left: 95px;
}

.aboutArea .aboutList li {
    display: block;
}

.aboutArea .aboutList .Img {
    width: 748px;
    height: 484px;
    overflow: hidden;
}

.aboutArea .aboutList .Img a {
    display: block;
    width: 100%;
    height: 100%;
}

.aboutArea .aboutList .Img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.aboutArea .moreBtn {
    position: absolute;
    bottom: 0;
    right: 0;
}

.aboutArea .arrowBox {
    position: absolute;
    bottom: 6px;
    left: 0;
	display:none;
}

.aboutArea .slick-dots {
    text-align: left;
    padding-left: 0px;
    bottom: -40px;
	
}

.aboutArea .slick-dots li {
    display: inline-block;
}

.aboutArea .slick-dots li button {
    position: relative;
}

.aboutArea .slick-dots li button::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #d5d5d5;
    opacity: 1;
    position: absolute;
    top: calc(50% - 4.5px);
    left: calc(50% - 4.5px);
}

.aboutArea .slick-dots li.slick-active button::before {
    background-color: #e60012;
}

.aboutArea .subtitle {
    font-size: 15px;
    font-weight: 800;
    line-height: 18px;
    letter-spacing: 0;
    color: #e60012;
    padding-bottom: 15px;
}

.aboutArea .title {
    font-size: 50px;
    line-height: 56px;
    letter-spacing: 0;
    color: #353535;
    font-weight: 500;
    padding-bottom: 26px;
    padding-right: 80px;
}

.aboutArea .Txt {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #6d6d6d;
    font-weight: 400;
    padding-bottom: 20px;
}

.aboutArea .Txt .textEditor {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #6d6d6d;
    font-weight: 400;
}

.aboutArea .iconListBox {
    padding-top: 5px;
}

.aboutArea .iconListBox .iconList .item {
    width: 100%;
    max-width: 104px;
    margin: 0 auto;
    padding: 0px;
}

.aboutArea .iconListBox .iconList .Img {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background-color: #f6f6f6;
    padding: 27px;
    position: relative;
}

.aboutArea .iconListBox .iconList .Img::after {
    content: "";
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.13);
    position: absolute;
    top: 5px;
    left: 5px;
}

.aboutArea .iconListBox .iconList .Img img {
    position: relative;
    width: 50px;
    height: 50px;
    display: block;
    z-index: 5;
}

.aboutArea .iconListBox .iconList .title {
    padding: 10px 0 0;
    font-size: 13px;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 16px;
    color: #353535;
    text-align: center;
}

@media (max-width: 1440px) {
    .aboutArea .leftBox {
        width: 660px;
    }
    .aboutArea .rightBox {
        width: calc(100% - 660px);
        padding-left: 40px;
    }
    .aboutArea .aboutList .Img {
        width: 660px;
        height: 425px;
    }
    .aboutArea .arrowBox {
        top: calc(425px + 20px);
    }
    .aboutArea .moreBtn {
        top: calc(425px + 10px);
    }
}

@media (max-width: 1440px) {
    .aboutArea .leftBox {
        width: 660px;
    }
    .aboutArea .rightBox {
        width: calc(100% - 660px);
        padding-left: 40px;
    }
    .aboutArea .aboutList .Img {
        width: 660px;
        height: 425px;
    }
    .aboutArea .title {
        font-size: 46px;
        line-height: 50px;
    }
    .aboutArea .arrowBox {
        top: calc(425px + 20px);
    }
    .aboutArea .moreBtn {
        top: calc(425px + 10px);
    }
}

@media (max-width: 1280px) {
    .aboutArea .rightBox {
        padding-left: 20px;
    }
    .aboutArea .subtitle {
        padding-bottom: 10px;
    }
    .aboutArea .title {
        font-size: 40px;
        line-height: 48px;
        padding-bottom: 20px;
    }
}

@media (max-width: 1180px) {
    .aboutArea {
        padding: 50px 0 100px;
    }
    .aboutArea .leftBox {
        width: 100%;
    }
    .aboutArea .rightBox {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
    .aboutArea .aboutListBox {
        max-width: 660px;
        margin: 0 auto;
        position: relative;
    }
    .aboutArea .title {
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .aboutArea {
        padding: 50px 0 80px;
    }
    .aboutArea .leftBox {
        padding-bottom: 40px;
    }
    .aboutArea .aboutList .Img {
        width: 100%;
        height: 300px;
    }
    .aboutArea .slick-dots {
        bottom: -25px;
        //padding-left: 60px;
    }
    .aboutArea .arrowBox {
        top: calc(300px + 5px);
    }
    .aboutArea .moreBtn {
        top: calc(300px + 30px);
    }
    .aboutArea .subtitle {
        font-size: 13px;
    }
    .aboutArea .title {
        font-size: 40px;
        line-height: 45px;
        padding-bottom: 10px;
    }
}

@media (max-width: 440px) {
    .aboutArea .title {
        font-size: 30px;
        line-height: 36px;
    }
}

@media (max-width: 400px) {
    .aboutArea .aboutList .Img {
        width: 100%;
        height: 260px;
    }
    .aboutArea .arrowBox {
        top: calc(260px + 5px);
    }
    .aboutArea .moreBtn {
        top: calc(260px + 30px);
    }
}
/*# sourceMappingURL=home.css.map */