@charset "utf-8";

/* banner */
#banner ul li a {
    display: block;
    position: relative;
}

#banner ul li a img {
    width: 100%;
    height: auto;
    display: block;
}

#banner ul li a span {
    width: 320px;
    background: rgba(255, 255, 255, .85);
    color: #000;
    font-size: 21px;
    line-height: 26px;
    text-align: center;
    padding: 23px 10px;
    display: block;
    position: absolute;
    top: 50%;
    right: 4%;
    margin-top: -35px;
    z-index: 997;
}

#banner .owl-nav {
    display: none;
}

#banner .owl-dots {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 10px;
}

#banner .owl-dots button {
    width: 25px;
    height: 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

#banner .owl-dots button span {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: .6;
    border-radius: 50%;
    display: block;
}

#banner .owl-dots button.active span {
    opacity: 1;
}

/* prod */
#prod {
    width: 90%;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 50px 0;
}

#prod h2 {
    font-size: 33px;
    padding-right: 20px;
}

#prod h2 a {
    color: #000;
}

#prod .slide {
    max-width: 1420px;
    width: 100%;
}

#prod .slide a {
    background: #000;
    display: block;
    position: relative;
}

#prod .slide a img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: all 1s;
}

#prod .slide a span {
    width: 100%;
    color: #fff;
    font-size: 14px;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -7px;
    opacity: .7;
    transition: all .3s;
    pointer-events: none;
}

#prod .slide a:hover span {
    opacity: 1;
}

#prod .slide a:hover img {
    opacity: .5;
}

#prod .owl-carousel {
    position: relative;
    padding: 0 40px;
    box-sizing: border-box;
}

#prod .owl-dots {
    display: none;
}

#prod .owl-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -20px;
    z-index: -1;
}

#prod .owl-nav button {
    width: 40px;
    height: 40px;
    background-size: 12px 20px;
    border: none;
}

#prod .owl-nav button.owl-prev {
    background: url('../images/arrow1-l.svg') left no-repeat;
}

#prod .owl-nav button.owl-next {
    background: url('../images/arrow1-r.svg') right no-repeat;
}

#prod .owl-nav button span {
    display: none;
}

/* about */
#about {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
}

#about::after {
    content: "";
    width: 60%;
    height: 100%;
    background: #f4f3ee;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

#about .left {
    max-width: 1090px;
}

#about .left img {
    width: 100%;
    height: auto;
    display: block;
}

#about .right {
    width: 500px;
    padding-left: 8%;
    padding-right: 2%;
}

#about .right h2 {
    font-size: 33px;
    letter-spacing: 1px;
}

#about .right p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    margin-top: 25px;
}

#about .right .more {
    color: #000;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 20px;
    transition: all .3s;
    opacity: 1;
}

#about .right .more:hover {
    opacity: .5;
}

/* case */
#case {
    margin-top: 50px;
}

#case h3 {
    width: 90%;
    max-width: 1600px;
    font-size: 26px;
    text-align: right;
    margin: 0 auto;
}

#case h3 a {
    color: #000;
    display: block;
}

#case h3 a::after {
    content: "";
    width: 16px;
    height: 14px;
    background: url('../images/arrow2.svg');
    display: inline-block;
    position: relative;
    bottom: 3px;
    margin-left: 10px;
}

#case .list {
    display: flex;
    margin-top: 30px;
}

#case .list li {
    width: 33%;
    text-align: center;
    margin-right: 0.5%;
}

#case .list li:last-child {
    margin-right: 0;
}

#case .list li img {
    width: 100%;
    height: auto;
    display: block;
}

#case .list li .text {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 20px 40px;
    border: 1px solid #ddd;
    display: inline-block;
    margin-top: 20px;
    transition: all .3s;
}

#case .list li .text:hover {
    background: #f4f3ee;
    color: rgba(0, 0, 0, .5);
    border-color: #f4f3ee;
}

#case .list li a {
    display: block;
}

/* contact */
#contact {
    background: #f4f3ee;
    letter-spacing: 1px;
    margin-top: 80px;
    padding: 100px 5%;
}

#contact h2 {
    font-size: 33px;
    text-align: center;
}

#contact h4 {
    font-size: 24px;
    text-align: center;
    margin-top: 30px;
}

#contact h4 span {
    font-size: 14px;
    font-weight: normal;
    margin-left: 20px;
}

#contact p {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

#contact p span {
    margin: 0 20px;
}

#contact .form {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#contact .form li {
    padding-bottom: 10px;
}

#contact .form li label {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

#contact .form li input {
    width: 100%;
    height: 36px;
    background: #fff;
    border: none;
    padding: 0 10px;
    box-sizing: border-box;
}

#contact .form li textarea {
    width: 100%;
    height: 240px;
    background: #fff;
    border: none;
    padding: 10px;
    box-sizing: border-box;
}

#contact .form li button {
    width: 140px;
    background: none;
    border: 1px solid #ddd;
    padding: 10px 0;
    margin: 0 3px;
}

#contact .form .info {
    width: 32%;
}

#contact .form .message {
    width: 100%;
}

#contact .form .btns {
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

@media screen and (max-width: 1200px) {
    #banner ul li a span {
        width: auto;
        font-size: 18px;
        padding: 10px 15px;
    }

    #prod {
        display: block;
        padding: 30px 0;
    }

    #prod h2 {
        font-size: 26px;
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
    }

    #about {
        padding-bottom: 30px;
    }

    #about .right h2 {
        font-size: 26px;
    }

    #about .left {
        width: 60%;
    }

    #about .right {
        padding: 0 3%;
    }

    #contact h2 {
        font-size: 26px;
    }
}

@media screen and (max-width: 1023px) {
    #about {
        background: #f4f3ee;
        display: block;
        padding: 30px 5%;
    }

    #about::after {
        display: none;
    }

    #about .left {
        width: 100%;
    }

    #about .right {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    #contact {
        margin-top: 30px;
        padding: 50px 5%;
    }

    #contact h4 {
        font-size: 18px;
        margin-top: 20px;
    }

    #contact h4 span {
        display: block;
        margin-top: 10px;
    }

    #contact p span {
        margin: 0;
        padding: 5px 10px;
        display: inline-block;
    }
}

@media screen and (max-width: 767px) {
    #case .list {
        display: block;
        padding: 0 5%;
    }

    #case .list li {
        width: 100%;
        padding-bottom: 15px;
    }

    #case .list li a {
        display: block;
        margin-top: 0;
    }
}

@media screen and (max-width: 479px) {
    #banner ul li a span {
        width: 100%;
        font-size: 14px;
        padding: 10px 0;
        right: 0;
        top: 0;
        margin-top: 0;
    }

    #banner .owl-dots button {
        width: 20px;
        height: 20px;
    }

    #contact {
        padding-top: 80px;
    }

    #contact .form {
        padding-top: 25px;
    }

    #contact .form .info {
        width: 100%;
    }
}

@media screen and (max-width: 320px) {
    #contact .form li button {
        width: 120px;
    }
}