.product1 {
    padding: 119px 0 55px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product1 .item {
    cursor: pointer
}

.product1 .item:not(:last-child) {
    margin: 0 121px 0 0
}

.product1 .item.on .text {
    color: var(--color)
}

.product1 .item:hover .img img {
    transform: scale(1.05)
}

.product1 .item:hover .text {
    color: var(--color)
}

.product1 .item .img {
    width: 98px;
    height: 98px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product1 .item .img img {
    object-fit: contain;
    transition: .6s ease
}

.product1 .item .text {
    font-weight: 400;
    font-size: 16px;
    color: #1A1A1A;
    text-align: center;
    transition: .6s ease
}

.product2 {
    background: #F8F8F8;
    padding: 200px 0 180px
}

.product2 .top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 29px
}

.product2 .top .l .title {
    font-weight: bold;
    font-size: 36px;
    color: #1A1A1A;
}

.product2 .cut1{
    display: flex;
    border-bottom: 1px solid #EAEAEA;
    gap: 60px;
    margin: 0 0 38px;
}
.product2 .cut1 a{
    font-weight: 500;
    font-size: 18px;
    color: #1A1A1A;
    padding: 0 0 26px;
    position: relative;
    transition: .6s ease;
}
.product2 .cut1 a.on,.product2 .cut1 a:hover{
    color: var(--color);
}
.product2 .cut1 a.on:after,.product2 .cut1 a:hover:after{
    transform: scaleX(1);
}

.product2 .cut1 a:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #0090D5;
    transform-origin: left;
    transform: scaleX(0);
    transition: .4s ease;
}

.product2 .cut2{
    display: flex;
    flex-wrap: wrap;
    gap: 19px 72px;
    margin: 0 0 110px;
}
.product2 .cut2 .list{
    display: flex;
    align-items: center;
    gap: 10px;
}
.product2 .cut2 .list .bor{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #C3C3C3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease;
}
.product2 .cut2 .list .bor div{
    width: 7px;
    height: 7px;
    background: #C3C3C3;
    border-radius: 50%;
    transition: .4s ease;
}
.product2 .cut2 .list p{
    font-weight: bold;
    font-size: 14px;
    color: #1A1A1A;
    transition: .4s ease;
}
.product2 .cut2 .list.on .bor{
    border: 1px solid var(--color);
}
.product2 .cut2 .list.on .bor div{
    background: var(--color);
}

.product2 .cut2 .list.on p{
    color: var(--color);
}


.product2 .top .l .cut {
    display: flex
}

.product2 .top .l .cut a {
    width: fit-content;
    padding: 0 34px;
    height: 56px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    color: #1A1A1A;
    transition: .6s ease;
    cursor: pointer
}

.product2 .top .l .cut a:hover {
    color: var(--color)
}

.product2 .top .l .cut a.on {
    background: var(--color);
    color: #fff
}

.product2 .top .l .cut a:not(:last-child) {
    margin: 0 10px 0 0
}

.product2 .top form {
    width: 434px;
    height: 56px;
    background: #FFFFFF;
    border-radius: 28px;
    padding: 0 32px 0 38px;
    display: flex
}

.product2 .top form input {
    width: 100%;
    height: 100%;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid transparent
}

.product2 .top form input::placeholder {
    color: #B7B7B7
}

.product2 .top form button {
    font-size: 20px;
    color: #1B1B1B;
    background: transparent
}
.product2 .list1 .list_title{
    font-size: 32px;
    color: #1a1a1a;
    font-weight: bold;
    margin: 0 0 30px;
}
.product2 .list1 .matter:not(:last-child) {
    margin: 0 0 50px;
}
.product2 .content {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px 18px
}

.product2 .content .item {
    width: 386px;
    height: 480px;
    background: #FFFFFF;
    border-radius: 18px;
    padding: 55px 10px 50px 10px
}

.product2 .content .item:hover .img img {
    transform: scale(1.05)
}

.product2 .content .item:hover .text .p1 {
    color: var(--color)
}

.product2 .content .item .img {
    width: 265px;
    height: 288px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px
}

.product2 .content .item .img img {
    object-fit: contain;
    transition: 1s
}

.product2 .content .item .text {
    text-align: center
}

.product2 .content .item .text .p1 {
    font-weight: bold;
    font-size: 20px;
    color: #1A1A1A;
    margin: 0 auto 16px;
    transition: .6s ease;
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



.product2 .content .item .text .p2 {
    font-weight: 400;
    font-size: 16px;
    color: #888888;
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: auto;
}

.proSearch1 {
    padding: 200px 0 178px
}

.search_end {
    font-weight: bold;
    font-size: 36px;
    color: #1A1A1A
}

.search_end span {
    color: var(--color)
}

@media screen and (max-width: 1919px) {
    .product1{
        padding: 6.1979166667vw 0px 2.8645833333vw;
    }
    .product1 .item:not(:last-child){
        margin: 0px 6.3020833333vw 0px 0px;
    }
    .product1 .item .img{
        width: 5.1041666667vw;
        height: 5.1041666667vw;
        margin: 0px auto 1.1458333333vw;
    }
    .product1 .item .text{
        font-size: 0.8333333333vw;
    }
    .product2{
        padding: 10.4166666667vw 0px 9.375vw;
    }
    .product2 .top{
        margin: 0px 0px 1.5104166667vw;
    }
    .product2 .top .l .title{
        font-size: 1.875vw;
    }
    .product2 .cut1{
        gap: 3.125vw;
        margin: 0px 0px 1.9791666667vw;
    }
    .product2 .cut1 a{
        font-size: 0.9375vw;
        padding: 0px 0px 1.3541666667vw;
    }
    .product2 .cut1 a::after{
        height: 0.1041666667vw;
    }
    .product2 .cut2{
        gap: 0.9895833333vw 3.75vw;
        margin: 0px 0px 5.7291666667vw;
    }
    .product2 .cut2 .list{
        gap: 0.5208333333vw;
    }
    .product2 .cut2 .list .bor{
        width: 0.78125vw;
        height: 0.78125vw;
    }
    .product2 .cut2 .list .bor div{
        width: 0.3645833333vw;
        height: 0.3645833333vw;
    }
    .product2 .cut2 .list p{
        font-size: 0.7291666667vw;
    }
    .product2 .top .l .cut a{
        padding: 0px 1.7708333333vw;
        height: 2.9166666667vw;
        border-radius: 1.4583333333vw;
        font-size: 0.8333333333vw;
    }
    .product2 .top .l .cut a:not(:last-child){
        margin: 0px 0.5208333333vw 0px 0px;
    }
    .product2 .top form{
        width: 22.6041666667vw;
        height: 2.9166666667vw;
        border-radius: 1.4583333333vw;
        padding: 0px 1.6666666667vw 0px 1.9791666667vw;
    }
    .product2 .top form input{
        font-size: 0.8333333333vw;
    }
    .product2 .top form button{
        font-size: 1.0416666667vw;
    }
    .product2 .list1 .list_title{
        font-size: 1.6666666667vw;
        margin: 0px 0px 1.5625vw;
    }
    .product2 .list1 .matter:not(:last-child){
        margin: 0px 0px 2.6041666667vw;
    }
    .product2 .content{
        gap: 1.0416666667vw 0.9375vw;
    }
    .product2 .content .item{
        width: 20.1041666667vw;
        height: 25vw;
        border-radius: 0.9375vw;
        padding: 2.8645833333vw 0.5208333333vw 2.6041666667vw;
    }
    .product2 .content .item .img{
        width: 13.8020833333vw;
        height: 15vw;
        margin: 0px auto 1.4583333333vw;
    }
    .product2 .content .item .text .p1{
        font-size: 1.0416666667vw;
        margin: 0px auto 0.8333333333vw;
    }
    .product2 .content .item .text .p2{
        font-size: 0.8333333333vw;
    }
    .proSearch1{
        padding: 10.4166666667vw 0px 9.2708333333vw;
    }
    .search_end{
        font-size: 1.875vw;
    }
}

@media screen and (max-width: 1024px) {
    .product2{
        padding: 100px 0 40px;
    }
    .product2 .top{
        margin: 0 0 10px;
        flex-direction: column;
        align-items: unset;
    }
    .product2 .top .l .title{
        font-size: 24px;
    }
    .product2 .top form{
        width: 100%;
        height: 45px;
        border-radius: 28px;
        padding: 0 15px;
        margin: 20px 0;
    }
    .product2 .top form input{
        font-size: 14px;
    }
    .product2 .top form button{
        font-size: 16px;
    }
    .product2 .cut1{
        gap: 20px;
        margin: 0 0 22px;
    }
    .product2 .cut1 a{
        font-size: 14px;
        padding: 0 0 15px;
    }
    .product2 .cut2{
        gap: 20px 15px;
        margin: 0 0 22px;
    }
    .product2 .cut2 .list{
        gap: 9px;
    }
    .product2 .cut2 .list .bor{
        width: 15px;
        height: 15px;
    }
    .product2 .cut2 .list p{
        font-size: 13px;
    }
    .product2 .cut2 .list .bor div{
        width: 5px;
        height: 5px;
    }
    .product2 .content{
        display: flex;
        flex-direction: column;
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
    }
    .product2 .content .item{
        width: 100%;
        height: auto;
        border-radius: 10px;
        padding: 20px 10px 30px 10px;
        display: block;
    }
    .product2 .content .item .img{
        width: 50%;
        height: auto;
        margin: 0 auto 20px;
    }
    .product2 .content .item .text .p1{
        font-size: 16px;
        margin: 0 auto 10px;
    }
    .product2 .content .item .text .p2{
        font-size: 13px;
    }
    .product2 .list1 .list_title{
        font-size: 16px;
        margin: 0 0 16px;
    }
    .search_end{
        font-size: 16px;
    }
    .product2 .list1 .matter:not(:last-child){
        margin: 0 0 30px;
    }
}

@media screen and (max-width: 620px) {
    .product2 .content{
        grid-template-columns: repeat(1,1fr);
    }
}
