@charset "utf-8";
.in-banner{
    width: 100%;
    position: relative;
    z-index: 9999;
}
.in-banner img{
    width: 100%;
    display: block;
}
.in-banner .swiper-pagination .swiper-pagination-bullet{
    width: 30px;
    height: 6px;
    margin:0 6px;
    background: #fff;
    opacity: 1;
    position: relative;
    -webkit-transform: skew(-20deg);
    transform: skew(-20deg);
    border-radius: 3px;
}
.in-banner .swiper-pagination .swiper-pagination-bullet-active{
    background: #ec4825;
}
@media screen and (max-width: 1024px) {
    .in-banner .swiper-pagination .swiper-pagination-bullet{
        width: 10px;
    }
}

.in-type{
    margin-top: 50px;
}
.in-type ul{
    display: flex;
    flex-wrap: wrap;
}
.in-type li{
    width:23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
}
.in-type li:nth-child(4n){
    margin-right: 0;
}
.in-type a{
    border:1px #e0e0e0 solid;
    display: block;
    position: relative;
}
.in-type .word{
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #ec4825;
    text-align: center;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    padding:0 15px;
    white-space: nowrap;
    overflow: hidden; /* 防止文本溢出 */
    text-overflow: ellipsis; /* 当文本溢出时显示省略号 */
}
.in-type .mask{
    width: 100%;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    background: rgba(0, 0, 0, .6);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
.in-type a:hover .mask{
    opacity: 1;
    visibility: visible;
}
.in-type .mask .box{
    width: 100%;
    padding: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.in-type .mask .box .f_18{
    font-weight: bolder;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.in-type .mask .box .f_18:after{
    content: "";
    width:20px;
    height: 1px;
    background: #ffffff;
    position: absolute;
    margin-left: -10px;
    left:50%;
    bottom:0;
}
@media screen and (max-width: 1024px) {
    .in-type{
        margin-top: 5%;
        margin-bottom: 5%;
    }
    .in-type li{
        width:49%;
    }
    .in-type li:nth-child(4n){
        margin-right: 2%;
    }
    .in-type li:nth-child(2n){
        margin-right: 0;
    }
    .in-type .word{
        height: 30px;
        font-size: 12px;
    }
}

.in-about{
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.in-about .title{
    font-weight: bolder;
    color: #ec4825;
}
.in-about .subtitle{
    margin-top: 10px;
    margin-bottom: 10px;
}
.in-about .content{
    margin-top: 30px;
    line-height: 1.5;
}
.in-about .more{
    margin-top: 50px;
}
.in-about .more a{
    width: 180px;
    height: 44px;
    color: #ec4825;
    border:1px #ec4825 solid;
    border-radius: 4px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.in-about .more a:hover{
    background: #ec4825;
    color: #ffffff;
}
@media screen and (max-width: 1024px) {
    .in-about{
        margin-top: 5%;
        margin-bottom: 5%;
    }
    .in-about .content{
        margin-top: 3%;
    }
    .in-about .more{
        margin-top: 5%;
    }
}