
/*index banner -----------------------------------------------------------------*/
.index-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 20px 10px;
}

.index-banner nav>ul {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 0 10px 1px #eee;
}

.index-banner nav>ul>li {
    border-bottom: 1px dotted #ddd;
    cursor: pointer;
    padding: 5px;

    &:last-child {
        border-bottom: none;
    }
}

.index-banner-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 20px 10px;
    transition: all 0.3s ease;

    &:hover {
        background: #f5f5f5;
        color: #ff6600;
        border-radius: 5px;
    }

}

.index-banner img {
    width: 100%;
}

@media (max-width: 750px) {
    .index-banner {
        padding:0px;
    }
}

/* index-products--------------------------------------------------------------------*/
.index-products-hot {
    background: #ff6600;
    padding: 0px 5px;
    color: #fff;
    border-radius: 3px;
}

.index-products-brief {
    color: #666;
    padding-top: 10px;
    font-size:14px;
}

.index-products-per {
    color: #888;
    padding-top: 5px
}

.index-products-more {
    text-align: right;
    padding-top: 5px;
    color: #ff6600;
}

.index-products-title{
    border-bottom:1px solid #003277;
    color:#666;
}
.index-products-title-ename{
   width:220px;
   background: #003277;
   clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 50% 100%, 0% 100%, 0% 100%);
   height: 40px;
   line-height: 40px;
   padding: 0px 20px;
   color: #fff;
   border-radius:10px 0px 0px 0px
}
.index-products-title-more{
   text-align:right;
   padding:15px 10px 0px 0px;
   font-size:14px;
   a:hover{
     color:#ff6600;
    }
}

/*about---------------------------------------------------------------------------------------*/
/*about1*/
.index-about{
    background:#f5f5f5;padding:50px 30px;border-radius:10px;
}
.index-about1{
    border-right:2px dashed #ddd;min-height:260px;
    p{
       padding:20px 50px 20px 0px;
       color:#666;
    }
    button{
       color:#FF6600;border-color:#FF6600;
    }
}
.index-about1-hr{
    width: 80px;height: 3px;border-radius: 5px;background: #FF6600;
}

.index-about1-num{
    height:130px;padding-top:30px;
    span{
        font-size:25px
    }
}

/*about3*/
.index-about3{
    height:600px;background:url(/style/images/index/about_05.png) no-repeat left / 65% 100%;border-radius:15px;
    img{
        width:65%;position:relative;top:100px;left:30%;
    }
}

.index-about3-list{
    text-align:right;padding:20px;
}
.index-about3-hr-div{
    display: flex;align-items: center;justify-content:flex-end;
}
.index-about3-hr{
    width: 80px;height: 3px;border-radius: 5px;background: #FF6600;
}

.index-about3-list-div{
    display: flex;align-items: center;gap: 30px;justify-content:flex-end;margin-top:35px;color:#333;
    i{
        font-size:35px;color:#A0522D;
    }
}

/*news btn ----------------------------------------------------------------------------------------------*/
/*news img hover big*/
.image-big {
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid #eee;
    background:#fff;
}

.image-big img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.image-big p {
    color:#666;
    font-size:14px;
    margin-top:10px;
}

.image-big:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 50px #ddd, -5px -20px 30px #ffffff;

    img {
        transform: scale(1.1);
    }
}


.index-news-view {
    color: #666;
    font-size: 14px;
    padding-top: 10px
}

.button-new-wrap {
    border: 1px solid #e3e3e3;
    display: inline-block;
    padding: 5px;
    background: linear-gradient(#f2f2f2, #FFF);
    border-radius: 200px;
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    
}

.button-new {
    font-weight: 300;
    font-size: 16px;
    font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    height: 40px;
    padding: 0 40px;
    margin: 0;
    display: inline-block;
    appearance: none;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    transition-property: all;
    transition-duration: .3s;
}

.button-new-pill {
    border-radius: 200px;
}

.button-new-raised.button-new-primary {
    border-color: #088ef0;
    background: linear-gradient(#f12711, #f5af19);
}

.button-new-primary {
    color: #FFF;
}

.button-new:hover {
    background: linear-gradient(#f5af19, #f12711);
    text-decoration: none;
    outline: none;
}