.bannerBox .bannerTitle,
.bannerBox .bannerTxt,
.bannerBox .btn, .bannerIconList .item, .bannerIconList .item::before, .bannerIconList strong, .bannerIconList img, .productList .item.moreBox, .productList .item.moreBox a::after, .productList .item.moreBox span::before, .productList .item.moreBox span::after, .productList .Img img {
    transition: all .5s;
}

/***** bannerArea *****/
.bannerArea::after {
    display: none;
}

.bannerBox {
    position: relative;
    background-color: #b6d89c;
}

.bannerBox .bannerList {
    background-color: #fff;
}

.bannerBox .Img img {
    min-height: 250px;
}

.bannerBox .Txt {
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    pointer-events: none;
}

@media (min-width: 1181px) {
    .bannerBox .Txt {
        padding: 70px 30px 50px;
    }
}

@media (min-width: 641px) and (max-width: 1180px) {
    .bannerBox .Txt {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .bannerBox .Txt {
        padding: 15px;
    }
}

.bannerBox .Txt * {
    max-width: 620px;
    pointer-events: auto;
}

@media (min-width: 961px) and (max-width: 1300px) {
    .bannerBox .Txt * {
        max-width: 800px;
    }
}

.bannerBox .bannerTitle {
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1501px) {
    .bannerBox .bannerTitle {
        font-size: 49px;
    }
}

@media (min-width: 1301px) and (max-width: 1500px) {
    .bannerBox .bannerTitle {
        font-size: 40px;
    }
}

@media (min-width: 401px) and (max-width: 1300px) {
    .bannerBox .bannerTitle {
        font-size: 32px;
    }
}

@media (max-width: 400px) {
    .bannerBox .bannerTitle {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .bannerBox .bannerTitle br {
        display: none;
    }
}

.bannerBox .bannerTitle::after {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    margin: 15px auto 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
    .bannerBox .bannerTitle::after {
        width: 70px;
    }
}

.bannerBox .bannerTxt {
    margin-top: 20px;
    font-size: 16px;
    line-height: calc(24 / 16);
}

@media (min-width: 961px) and (max-width: 1300px) {
    .bannerBox .bannerTxt {
        font-size: 14px;
    }
}

@media (max-width: 960px) {
    .bannerBox .bannerTxt {
        display: none;
    }
}

.bannerBox .btn {
    margin-top: 20px;
    color: #fff;
}

.bannerBox .btn:not(:hover) {
    border-color: #fff;
}

.bannerBox .bannerTitle,
.bannerBox .bannerTxt,
.bannerBox .btn {
    opacity: 0;
    transform: translateY(30px);
}

.bannerBox .bannerItem.show .bannerTitle {
    animation: bannerTxtIn .8s ease forwards;
}

.bannerBox .bannerItem.show .bannerTxt {
    animation: bannerTxtIn .8s .1s ease forwards;
}

.bannerBox .bannerItem.show .btn {
    animation: bannerTxtIn .8s .25s ease forwards;
}

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

.bannerIconList {
    margin: -103px auto 0;
}

@media (min-width: 1301px) {
    .bannerIconList {
        max-width: 1000px;
    }
}

@media (min-width: 961px) and (max-width: 1300px) {
    .bannerIconList {
        max-width: 900px;
    }
}

@media (min-width: 641px) and (max-width: 960px) {
    .bannerIconList {
        max-width: 600px;
    }
}

@media (max-width: 640px) {
    .bannerIconList {
        max-width: 400px;
    }
}

@media (max-width: 1300px) {
    .bannerIconList {
        padding-left: 70px;
        padding-right: 70px;
    }
}

.bannerIconList li {
    padding: 48px 18px;
}

@media (min-width: 961px) {
    .bannerIconList li {
        width: 20%;
    }
}

.bannerIconList li.show .item {
    transform: scale(1.23);
}

.bannerIconList li.show .item::before {
    background-color: transparent;
    opacity: 1;
}

.bannerIconList li.show strong {
    transform: scale(calc(1 / 1.23));
}

.bannerIconList li.show img {
    transform: scale(calc(1 / 1.23));
}

.bannerIconList .item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    padding: 20px;
    margin: auto;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
}

.bannerIconList .item::before {
    content: '';
    position: absolute;
    top: -9px;
    left: -9px;
    width: calc(100% + 9px * 2);
    height: calc(100% + 9px * 2);
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.3;
}

.bannerIconList .item::after {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    width: calc(100% + 9px * 4);
    height: calc(100% + 9px * 4);
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 0.2;
}

@media (max-width: 1300px) {
    .bannerIconList {
        margin: -62px auto 0;
    }
    .bannerIconList li {
        padding: 32px 12px;
    }
    .bannerIconList .item {
        width: 90px;
        height: 90px;
    }
    .bannerIconList .item::before {
        top: -6px;
        left: -6px;
        width: calc(100% + 6px * 2);
        height: calc(100% + 6px * 2);
    }
    .bannerIconList .item::after {
        top: -12px;
        left: -12px;
        width: calc(100% + 6px * 4);
        height: calc(100% + 6px * 4);
    }
}

@media (max-width: 640px) {
    .bannerIconList {
        margin: -42px auto 0;
    }
    .bannerIconList .item {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
}

.bannerIconList strong {
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #35b67e;
    line-height: calc(18 / 15);
    letter-spacing: 0;
    text-align: center;
}

@media (min-width: 641px) and (max-width: 1300px) {
    .bannerIconList strong {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .bannerIconList strong {
        display: none;
    }
}

.bannerIconList img {
    position: relative;
    display: block;
    max-width: 100%;
}

@media (min-width: 641px) and (max-width: 1300px) {
    .bannerIconList img {
        width: 45px;
    }
}

.bannerIconList .arrowPrev, .bannerIconList .arrowNext {
    position: absolute;
    bottom: 45px;
    z-index: 5;
}

@media (max-width: 640px) {
    .bannerIconList .arrowPrev, .bannerIconList .arrowNext {
        bottom: 25px;
    }
}

@media (min-width: 1301px) {
    .bannerIconList .arrowPrev {
        right: calc(100% + 80px);
    }
}

@media (max-width: 1300px) {
    .bannerIconList .arrowPrev {
        left: 20px;
    }
}

@media (min-width: 1301px) {
    .bannerIconList .arrowNext {
        left: calc(100% + 80px);
    }
}

@media (max-width: 1300px) {
    .bannerIconList .arrowNext {
        right: 20px;
    }
}

.productArea .mainTitle,
.newsArea .mainTitle {
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

@media (min-width: 1181px) {
    .productArea .mainTitle,
    .newsArea .mainTitle {
        font-size: 42px;
    }
}

.productArea .mainTitle::after,
.newsArea .mainTitle::after {
    content: '';
    display: block;
    width: 65px;
    height: 1px;
    margin: 25px auto 0;
    background-color: currentColor;
}

/***** productArea *****/
.productArea {
    background: url(../images/home/bg_product.png) no-repeat bottom center, #f7f7f7;
}

@media (min-width: 1181px) {
    .productArea {
        padding: 70px 0 120px;
        background-size: cover;
    }
}

@media (min-width: 641px) and (max-width: 1180px) {
    .productArea {
        padding: 60px 0;
    }
}

@media (max-width: 640px) {
    .productArea {
        padding: 40px 0 90px;
        background-position: 65% 100%;
    }
}

@media (max-width: 960px) {
    .productArea .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.productList {
    display: flex;
    flex-wrap: wrap;
    margin-left: -6px;
    margin-right: -6px;
}

.productList li {
    padding: 6px;
    min-width: 150px;
}

@media (max-width: 400px) {
    .productList li {
        width: 100%;
    }
}

.productList li > a {
    display: block;
    width: 100%;
    height: 100%;
}

.productList .item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    border: 1px solid #e3e3e3;
    background-color: #fff;
    overflow: hidden;
    min-height: 88px;
}

.productList .item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, rgba(226, 226, 226, 0.7) 0%, rgba(226, 226, 226, 0) 100%);
}

.productList .item:hover .Img img {
    transform: scale(1.1) translateX(4%);
}

.productList .item.moreBox {
    padding: 25px;
    background-color: #35b67e;
}

.productList .item.moreBox:hover {
    background-color: #35b67e;
}

.productList .item.moreBox:hover a::after {
    width: 36px;
}

.productList .item.moreBox:hover span::before {
    transform: translate(18px) rotate(-35deg);
}

.productList .item.moreBox:hover span::after {
    transform: translate(18px) rotate(35deg);
}

.productList .item.moreBox::before {
    content: '';
    bottom: 5px;
    left: 5px;
    width: calc(100% - 5px * 2);
    height: calc(100% - 5px * 2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
}

.productList .item.moreBox a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.productList .item.moreBox a::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    margin-top: 25px;
    background-color: #fff;
}

.productList .item.moreBox span {
    position: relative;
}

.productList .item.moreBox span::before, .productList .item.moreBox span::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 1px;
    height: 10px;
    background-color: #fff;
}

.productList .item.moreBox span::before {
    top: calc(100% + 15px);
    transform-origin: bottom right;
}

.productList .item.moreBox span::after {
    top: calc(100% + 25px);
    transform-origin: top right;
}

@media (max-width: 640px) {
    .productList .item.moreBox a {
        font-size: 12px;
    }
    .productList .item.moreBox a::after {
        margin-top: 20px;
    }
    .productList .item.moreBox span::before {
        top: calc(100% + 10px);
    }
    .productList .item.moreBox span::after {
        top: calc(100% + 20px);
    }
}

.productList .Img {
    position: relative;
    flex-shrink: 0;
    width: 47%;
    max-width: 190px;
}

@media (max-width: 640px) {
    .productList .Img {
        width: 35%;
        height: 88px;
    }
}

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

.productList .Txt {
    padding: 10px;
}

@media (min-width: 401px) and (max-width: 640px) {
    .productList .Txt {
        width: 70%;
        margin-left: -5%;
    }
}

.productList h3 {
    position: relative;
    flex-grow: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: calc(20 / 16);
    letter-spacing: 0;
    color: #515151;
}

@media (min-width: 401px) and (max-width: 640px) {
    .productList h3 {
        font-size: 14px;
    }
}

/***** newsArea *****/
.newsArea {
    background-color: #35b67e;
}

@media (min-width: 1181px) {
    .newsArea {
        padding: 75px 0;
        background: url(../images/home/bg_news_full.png) no-repeat 5% 100%, #35b67e;
    }
}

@media (min-width: 801px) and (max-width: 1180px) {
    .newsArea {
        padding: 60px 0;
    }
}

@media (max-width: 800px) {
    .newsArea {
        padding: 45px 0;
    }
}

.newsArea .mainTitle {
    color: #fff;
}

@media (min-width: 1181px) {
    .newsList {
        padding-left: 70px;
        padding-right: 70px;
    }
}

@media (min-width: 961px) and (max-width: 1180px) {
    .newsList {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.newsList.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.newsList li {
    padding: 0;
}

.newsList .item {
    background-color: #fff;
}

@media (min-width: 801px) {
    .newsList .item {
        display: flex;
        flex-wrap: wrap;
    }
    .newsList .Img {
        width: 50%;
    }
    .newsList .Txt {
        width: 50%;
        min-height: 245px;
        padding: 35px;
    }
}

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

.newsList .Txt {
    border: 1px solid #e3e3e3;
    background: url(../images/home/bg_news.png) no-repeat bottom right;
}

@media (max-width: 800px) {
    .newsList .Txt {
        padding: 20px;
        background-size: 50%;
    }
}

@media (max-width: 360px) {
    .newsList .Txt {
        padding: 15px 10px;
    }
}

.newsList h3 {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 961px) {
    .newsList h3 {
        margin-top: 20px;
    }
}

@media (max-width: 960px) {
    .newsList h3 {
        margin-top: 15px;
    }
}

.newsList .classTitle {
    display: inline-block;
    padding: 0 10px;
    margin-right: 15px;
    color: #fff;
    line-height: 24px;
    background-color: #35b67e;
}

.newsList .newsDate {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #9a9a9a;
    letter-spacing: 1.5pt;
}

.newsList .txtExp {
    max-height: calc(22px * 2);
    margin-top: 10px;
    font-size: 13px;
    overflow: hidden;
}

.newsList .btn {
    margin-top: 30px;
}

.newsList .arrowPrev, .newsList .arrowNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 1181px) {
    .newsList .arrowPrev {
        left: 0;
    }
    .newsList .arrowNext {
        right: 0;
    }
}

@media (max-width: 1180px) {
    .newsList .arrowPrev {
        left: -30px;
    }
    .newsList .arrowNext {
        right: -30px;
    }
}

.newsList ul.dots {
    margin-top: 10px;
}

/***** aboutArea *****/
.aboutArea {
    position: relative;
    overflow: hidden;
    /*&::before {
			content: '';
			position: absolute;
			bottom: 0;
			right: -20px;
			width: 515px;
			height: 102px;
			background: url(../images/home/about_wave02.png) no-repeat left bottom;
			@include media(640) {
				right: auto;
				left: 15%;
			}
		}
		&::after {
			@include media(-1551) {
				content: '';
				position: absolute;
				bottom: 0;
				left: 0;
				width: 450px;
				height: 330px;
				background: url(../images/home/about_wave01.png) no-repeat right bottom;
			}
		}*/
}

@media (min-width: 1181px) {
    .aboutArea {
        padding: 80px 0 70px;
    }
}

@media (min-width: 641px) and (max-width: 1180px) {
    .aboutArea {
        padding: 60px 0;
    }
}

@media (max-width: 640px) {
    .aboutArea {
        padding: 40px 0;
    }
}

.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%;
    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: #35b67e;
    border-radius: 50%;
}

.popWin .close::before, .popWin .close::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 23px;
    width: 25px;
    height: 1px;
    background-color: #fff;
}

.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);
    }
}
