@font-face {
    font-family: 'futianB';
    src: url('../../fonts/FotonType-Bold.woff2');
}
@font-face {
    font-family: 'futianL';
    src:url('../../fonts/FotonType-Light.woff2');
}
@font-face {
    font-family: 'futianM';
    src:url('../../fonts/FotonType-Medium.woff2');
}
*{
    font-family: "futianL";
    padding: 0;
    margin: 0;
    color: #101010;
}
body{
    background-color: #fafafa;
}
a{
    text-decoration: none;
}

.sj-banner{
    display: none;
}
.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}
.slider img{
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /*transition: opacity 2s ease-in-out;*/
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
    background-size: cover;
    background-position: center;
}

.slide.s-active{
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease; 
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    color: white;
}

.slide-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.slide-desc {
    font-size: 1.1rem;
    max-width: 80%;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.8s ease;
}

.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.arrow {
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 6px;
}

.arrow-left {
    transform: rotate(135deg);
    margin-right: 3px;
}

.arrow-right {
    transform: rotate(-45deg);
    margin-left: 3px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.s-active, .dot:hover {
    background: white;
    /*transform: scale(1.2);*/
}

.pro-content{
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;

}
.pro-info{
    width: calc(33% - 20px);
    margin-bottom: 60px;
    background-color: #f0f0f0;
}
.pro-info a{
    width: 100%;
    display: inline-block;
}
.pro-info img{
    width: 100%;
}
.pro-info div{
    width: 90%;
    margin-left: 5%;
    padding-bottom: 30px;
}
.pro-info div p{
    font-size: 20px;
    line-height: 32px;
    font-family: "futianM";
    margin-top: 30px;
    margin-bottom: 20px;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.pro-info div span{
    font-size: 16px;
    color: #636060;
    font-family: "futianM";

}
.pro-content:after {
    content: '';
    width: calc(33% - 20px);
}

.foot{
    width: 100%;
    background-color: #f0f0f0;
    margin-top: 200px;
}
.link{
    width: 100%;
    text-align: center;
    padding-top: 30px;
}
.link a{
    margin: 0 20px;
}
.multimedia{
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.multimedia div{
    margin: 0 25px;
}
.multimedia div span{
    font-size: 14px;
    display: block;
    margin-top: 8px;
}
.info{
    font-size: 12px;
    margin-top: 30px;
    text-align: center;
    padding-bottom: 10px;
}


@media screen and (min-width: 1200px) and (max-width: 1400px){

.pro-content{
    margin-top: 40px;
}
.pro-info{
    width: calc(50% - 20px);
    margin-bottom: 40px;
}
.pro-info div p{
    font-size: 18px;
    font-family: "futianM";
    margin-top: 25px;
    margin-left: 0px;
    margin-bottom: 10px;
}
.pro-info div span{
    font-size: 18px;
    font-family: "futianM";
    margin-left: 0px;

}


}


@media screen and (min-width: 768px) and (max-width: 1200px){

.pro-content{
    margin-top: 30px;
}
.pro-info{
    width: calc(50% - 15px);
    margin-bottom: 30px;
}
.pro-info div{
    padding-bottom: 20px;
}
.pro-info div p{
    font-size: 16px;
    line-height: 24px;
    font-family: "futianM";
    margin-top: 20px;
    margin-left: 0px;
    margin-bottom: 7px;
}
.pro-info div span{
    font-size: 14px;
    font-family: "futianM";
    margin-left: 0px;

}
.foot{
    width: 100%;
    background-color: #f0f0f0;
    margin-top: 100px;
}


}



@media screen and (max-width: 768px){
.banner{
    display: none;
}
.sj-banner{
    display: block;
}

.pro-content{
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;

}
.pro-info{
    width: 100%;
    margin-bottom: 30px;
}
.pro-info img{
    width: 100%;
}
.pro-info div p{
    font-size: 16px;
    font-family: "futianM";
    margin-top: 15px;
    margin-left: 0px;
    margin-bottom: 5px;
    line-height: 26px;
}
.pro-info div span{
    font-size: 14px;
    font-family: "futianM";
    margin-left: 0px;

}
.dot {
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 5px;
}
   
    .foot{
        width: 100%;
        background-color: #f0f0f0;
        margin-top: 100px;
    }
    .link{
        width: 100%;
        text-align: center;
        padding-top: 30px;
    }
    .link a{
        margin: 0 20px;
        font-size: 12px;
    }
    .multimedia{
        text-align: center;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        width: 90%;
        margin-left: 5%;
    }
    .multimedia div{
        margin: 0 2%;
        width: 23%;
    }
    .multimedia div img{
        width: 100%;
    }
    .multimedia div span{
        font-size: 0.5rem;
        display: block;
        margin-top: 8px;
    }
    .info{
        font-size: 0.5rem;
        margin-top: 30px;
        text-align: center;
        padding-bottom: 20px;
    }
}