﻿
/*轮播图*/
.banner {
    position: relative;
    overflow:hidden;
}

    .banner img {
        width: 100%;
        margin: 0;
        padding: 0;
    }

.bannercircle {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    color: #fff;
    z-index:100;
}

    .bannercircle li {
        cursor:pointer;
        display: inline-block;
        background: rgba(255,255,255,1);
        width:60px;
        height:6px;
        margin: 5px;
        border-radius: 1px;
    }

    .bannercircle ul {
        text-align: center;
    }

    .bannercircle .selected {
        background: #035cac;
    }
.bannervideo {
    position: absolute;
    z-index: 20;
    width:1000px;
    height:600px;
    left:50%;
    top:50%;
    margin-left:-500px;
    margin-top:-300px; 
}


/*产品图片切换*/
.productsbox {
    padding:0 6%;
}

.imgwindow {
    overflow: hidden;
    position: relative;
    margin: 20px 0 0 0;
}

.imglist {
    display: flex;
    position: relative;
    overflow: hidden;
    left: 0;
    top: 0;
}

.imgitem {
    display: flex;
    align-items: center;
    margin:0 15px 0 0;
}


.leftarrow {
    position: absolute;
    left: 1.5%;
    top: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    z-index: 50;
    margin-top: -25px
}
    .leftarrow img {
        display: block;
        width: 30px;
        height: 30px;
        transform: rotate(180deg);
        margin: 10px auto;
    }

.rightarrow {
    position: absolute;
    right: 1.5%;
    top: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    z-index: 50;
    margin-top:-25px
}

    .rightarrow img {
        display: block;
        width: 30px;
        height: 30px;
        margin: 10px auto;
    }
.newsbox {
    display: flex;
    flex-flow: column nowrap;
    padding: 35px 6%;
    height:100%;
}
.newstit {
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
}
    .newstit h2 {
        font-size: 48px;
        font-weight: normal;
        color: #de0010;
    }
    .newstit a {
        font-size:20px;
        color:#808080;
    }
        .newstit a:hover {
            color: #de0010;
        }
.newslist {
    margin: 20px 0;
}
    .newslist ul {
        display:flex;
        flex-flow:row nowrap;
    }
    .newslist li {
        width:23%;
        cursor:pointer;
        margin:0 35px 0 0;
    }
    .newslist li .newsimg {
        height: 285px;
        background: #ccc;
    }
        .newslist li .newsimg img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }
        .newslist li  span {
            font-size:18px;
            height:25px;
            overflow:hidden;
            margin:15px 0 10px 0;
            display:block;
        }
        .newslist li  p {
            overflow: hidden;
            height:40px;
            color:#808080;
        }
    .newslist li:hover span, .newslist li:hover p {
        text-decoration:underline;
    }

    /*新闻列表页样式*/
    .indexnewslistbox {
        padding: 20px 6%;
        display: flex;
        flex-flow: column wrap;
        display: none;
    }

.indexnewslist {
    display: flex;
    flex-flow: row nowrap;
    border-bottom: 1px solid #eeeeee;
    height: 110px;
    margin: 0 0 30px 0;
}

.indexnewslistleft {
    display: flex;
    flex-flow: column nowrap;
    width: 90px;
    height: 90px;
    margin: 0 20px 0 0;
    background: #e9e9ee;
    justify-content: center;
    align-items: center;
}

    .indexnewslistleft h1 {
        font-size: 35px;
        color: #de0010;
    }

    .indexnewslistleft p {
        font-size: 18px;
    }

        .indexnewslistleft p b {
            font-weight: normal;
        }

.indexnewslistright {
    display: flex;
    flex: 1;
    flex-flow: column nowrap;
    overflow: hidden;
}

    .indexnewslistright a:hover {
        cursor: pointer;
        text-decoration: underline;
    }

    .indexnewslistright span {
        font-size: 20px;
        height: 20px;
        overflow: hidden;
    }

    .indexnewslistright p {
        color: #808080;
        height: 40px;
        margin: 15px 0 0 0;
        height: 40px;
        overflow: hidden;
    }
