/*
    首页部分附加
*/
#slideshow ul {
	list-style: none;
}
#slideshow {
	width: 100%;
	height: 76vh;
	overflow: hidden;
	position: relative;
 	margin: 0 auto;
	background-color: #fff;
}
        
        #imglist li {
            width: 100%;
            height: 76vh;
            position: absolute;
            /* 全部图片设为透明 */
            opacity: 0;
            transition: opacity 3.5s;
          background-position: center center;
    background-size: cover;
        }
        
        #dotlist {
            position: absolute;
            bottom: 10px;
            /*width: 100px; */
            display: flex;
            justify-content: space-between;
            left: 50%;
            transform: translate(-50%);
        }
        
        #dotlist>li {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgb(206, 16, 16);
            /* 全部小圆点设为半透明 */
            opacity: 0.3;
            cursor: pointer;
            user-select: none;
            margin: 4px;
        }
        /* 具有appear类的元素设为 不透明 即显示 */
        
        #imglist>li.appear,
        #dotlist>li.appear {
            opacity: 1;
        }
        #imglist li a img{
            height: 15px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0.5;
        }
  /* 左右轮播按钮 */
        
        #pre,
        #next {
            position: absolute;
            font-size: 100px;
            color: rgba(0, 0, 0, .3);
            top: 50%;
            transform: translate(0, -50%);
            font-weight: 100;
            cursor: pointer;
            user-select: none;
        }
        
        #pre {
            left: 20px;
        }
        
        #next {
            right: 20px;
        }
        
        #pre:hover,
        #next:hover {
            color: rgba(255, 255, 255, .3);
        }
  @media screen and (max-width: 1300px) {
          #slideshow {
            height: 55vh;
        }
        
        #imglist li {
          height: 55vh;}
  }
  @media screen and (max-width: 900px) {
          #slideshow {
            height: 35vh;
        }
        #pre,
        #next {
            visibility: hidden
        }
        #imglist li {
          height: 35vh;}
  }
  @media screen and (max-width: 600px) {
          #slideshow {
            height: 20vh;
        }
        #imglist li {
          height: 20vh;}}
          
.about{
    height: 400px;
    display: flex;
    justify-content: space-between;
}
.about .image,.about .text{
    width: 49%;
}
.about .text .ne{
    font-size: 2rem;
}
.about .text .ne p{padding-right: 1em;}
.about .text .ne h3{
    border-bottom: #f00 2px solid;
    padding-bottom: 10px;
    font-size: 1.5em;
    margin: 20px 0 10px 0;
}
.about .image{
    background-position: center center;
    background-size: cover;
}
@media screen and (max-width: 1160px) {
    .about .text .ne{
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 977px) {
    .about {
        height: auto;
        flex-direction: column;
        padding: var(--page-outer-padding);
    padding-top: calc(var(--page-gap) * 2);
    }
    .about .image,.about .text{
        width: 100%;
    }
    .about .text .ne{
        font-size: 1.5rem;
    }
    .about .text .ne p{padding-right: 0;}
    .about .text .ne h3{
        font-size: 2rem;
        border-bottom: none;
    }
    .submitB{
        margin: 20px auto;
    }
    .about h3 {
  width: 100%; color: #ff0000; font-weight: normal; text-align: center; position: relative; z-index: 100
}
    .about h3::before {
  display: block; content: ''; width: 50px; height: 1px; margin-left: -120px; position: absolute; top: 50%; left: 50%; background: #ff0000
}
    .about h3::after {
  display: block; content: ''; width: 50px; height: 1px; margin-right: -120px; position: absolute; top: 50%; right: 50%; background: #ff0000
}
}
    .cpfl{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        text-align: center;
        font-size: 1.2em;
    }
    .cpfl .more,.cpfl .mod{padding: 45px 0;color: #FFF;text-decoration: none;}
    .cpfl .mod{
        width: 18%;
    }
    .cpfl .more{
        width: 10%;
        background-color: #F00
    }
    .cpfl .more:hover,.cpfl .mod:hover{color: #000;background-color: rgb(255, 187, 187) !important;}
    .cpfl .a,.cpfl .c,.cpfl .e{background-color: #bb0000}
    .cpfl .b,.cpfl .d,.cpfl .f{background-color: #F00}
@media screen and (max-width: 1120px) {
    .cpfl .more,.cpfl .mod{width: 50%;padding: 25px 0;}
    .cpfl .a,.cpfl .d,.cpfl .e{background-color: #bb0000}
    .cpfl .b,.cpfl .c,.cpfl .f{background-color: #F00}
}