.top{
    width: 100%;
    height: 4rem;
    line-height: 4rem;
    background: #f1f1f1;
}

.top .topleft {
    float: left;
    color: #888;
    font-size: 1.4rem;
}

.top .topright{
    float: right;
    position: relative;
}

.top .topright .icon{
    font-size: 2rem;
}

.top .topright .wxcode{
    position: absolute;
    left: 0;
    top: 4rem;
    width: 10rem;
    display: block;
}

.topright .wxcode .wxpic{
    
}


/*logo部分*/
.head{
    width: 100%;
    height: 10.5rem;
    background: #fff;
    line-height: 10.5rem;
}

.head .logo{
    float: left;
}

.head .logo img{
    vertical-align: middle;
}

.head .tel .shouzhi{
    color: #c91119;
    font-size: 3rem;
}

.shouzhi {
    animation: shake 0.5s infinite;
    /* 调用shake动画，0.5s为动画时长，infinite表示无限循环 */

}

@keyframes shake {

    0%,
    100% {
        transform: translateX(-0.5rem);
        /* 起始和结束位置 */
    }

    50% {
        transform: translateX(0.5rem);
        /* 中间位置向右移动10px */
    }
}

.nav ul li:nth-child(4) {
    animation: dong3 0.5s infinite linear;
    transform-origin: center center;
    background-color: #fef504;
}

.nav ul li:nth-child(4) a em{
    color: #000;
}

@keyframes dong3 {

    0%,
    100% {
        transform: scale(1);
        /* 起始和结束位置，图片保持原始大小 */
    }

    50% {
        transform: scale(1.1);
        /* 在动画周期的一半时，图片放大到原始大小的1.2倍 */
    }
}

.head .tel{
    font-size: 2rem;
    float: right;
    color: #c91119;
    font-weight: bold;
    margin-right: 10rem;
    line-height: 5rem;
}

.nav{
    width: 100%;
    height: 5rem;
    line-height: 5rem;
    background: #c91119;
}

.nav ul li{
    float: left;
    width: 11.11%;
    text-align: center;
    position: relative;
}

.nav ul li a{
    color: #fff;
}

.nav ul li a em{
    position: relative;
    z-index: 9;
    color: #fff;
}

.nav ul li a:hover em{
    font-weight: bold;
    color: #000;
}

.donghua::after{ /*伪类, 添加一个下划线, 但是不给宽度*/
    content: '';
    height: 5rem;
    background-color: #fef504;
    position:absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
}

.donghua:hover:after{ /*hover的时候给一个动画*/
    animation-name: ani;
    animation-duration:.5s;
    animation-fill-mode:forwards; /*动画停在最后100%时候的状态*/
    animation-direction:alternate;
}

@keyframes ani{ /*这个动画的意思就是宽度从0-100*/

    from{
        width: 0;
    }
    to{
        width: 85%;
    }
}


.w100{
    width: 100%;
    margin: 0 auto;
}

.w60{
    width: 60%;
    margin: 0 auto;
}

.w70{
    width: 70%;
    margin: 0 auto;
}

/*增加的样式*/

.indexlan h1{
    -webkit-text-stroke: 1px #d3d3d3;
    color: rgba(0, 0, 0, 0);
    font-size: 3rem;
    text-align: center;
    font-weight: bolder;
    margin: 2rem auto;
    text-transform: uppercase;
    background-color: #fff;
}

.indexlan em{
    font-size: 4rem;
    font-weight: bold;
    color: rgba(25,25,25,1);
    position: relative;
    text-align: center;
    display: block;
}

.indexlan i{
    background: rgba(225,4,24,1);
    width: 3rem;
    height: 0.3rem;
    display: block;
    margin: 2rem auto;
}

.ladiesdl a{
    width: calc(25% - 2.25rem);
    float: left;
    display: block;
    margin-left: 3rem;
    margin-top: 3rem;
}

.ladiesdl a:nth-child(4n+1){
    margin-left: 0rem;
}

.ladiesdl a:hover dd{
    font-weight: bold;
    color: #c91119;
}

.ladiesdl dl dt{
    width: 100%;
    position: relative;
    padding-top: 135%;
    overflow: hidden;
}

.ladiesdl dl dt img{
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.ladiesdl dl dd{
    width: 100%;
    height: 4.5rem;
    text-align: center;
    background: #ccc;
    line-height: 4.5rem;
}

.ad{
    width: 100%;
    height: 30rem;
}

.homer h1 {
    font-family: Microsoft Yahei;
    font-size: 2.8rem;
    font-weight: bold;
    color: #c91119;
    /* background-image: -webkit-linear-gradient(0deg, rgba(234,102,81,1) 50%,rgba(201,17,25,1) 50%); */
    background: linear-gradient(to right, #ea6651, #c91119);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.homer span {
    display: block;
    margin: 2.5rem 0;
}
.homer{
    display: block;
    float: left;
}

.home{
    display: block;
    float: right;
}

.indexnewscon dl {
    width: 32%;
    display: block;
    float: left;
    padding-top: 2rem;
    border-top: 1px solid #f2f2f2;
    margin-left: 2%;
}

.indexnewscon dl:nth-child(1) {
    margin-left: 0%;
}

.indexnewscon dl .dd_time {
    font-size: 1.2rem;
    color: #999;
}

.indexnewscon dl .dd_tltle {
    color: #333;
    font-size: 1.8rem;
    height: 5.5rem;
}

.indexnewscon dl .dd_des {
    color: #666;
}

.indexnewscon dl dt {
    margin-top: 1.5rem;
    width: 100%;
    height: 21rem;
    overflow: hidden;
}

.index_case{
    width: 100%;
    padding-bottom: 5rem;
    background: #fff url(../images/aboutbg.jpg) no-repeat left top;
}

.index_case .icomleft{
    width: calc(42% - 1.5rem);
    float: left;
    background: #fff;
    padding: 1.5rem;
    border-radius: 2rem;
}

.index_case .icomleft dl{
    width: 100%;
    overflow: hidden;
}

.index_case .icomleft dl dt{
    width: 100%;
    padding-top: 66%;
    position: relative;
    overflow: hidden;
}

.index_case .icomleft dl dt img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.index_case .icomleft dl dd.dd_tltle{
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.index_case .icomleft dl dd.dd_des{
    color: #666;
}

.index_case .icomleft dl dd.dd_time{
    color: #666;
}
.index_case .icomleft dl dd.dd_time i{
    display: block;
    float: right;
    font-size: 2rem;
    transform: rotate(180deg);
}


.index_case .icomright{
    width: 55%;
    float: right;
}

.icomright dl{
    width: 100%;
    display: block;
    background: #f6f6f6;
    border-radius: 1.5rem;
    margin-top: 1.5rem;
    padding: 1rem 0;
}

.icomright dl:nth-child(1){
    margin-top: 0;
}

.icomright dl dt{
    width: calc(30% - 2rem);
    display: block;
    float: left;
    overflow: hidden;
    margin-left: 2rem;
    padding-top: 22.5%;
    position: relative;
}

.icomright dl dt img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.icomright dl dd{
    width: 68%;
    display: block;
    float: right;
}

.icomright dl dd.case_tltle{
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
}

.icomright dl dd.case_tltle em{
    font-size: 1.6rem;
    font-weight: normal;
    margin-right: 2rem;
    color: #666;
    float: right;
}

.icomright dl dd.case_dd_des{
    color: #999;
    width: calc(68% - 2rem);
    padding-right: 2rem;
}


/*首页关于我们*/
.index_about{
    width: 100%;
    min-height: inherit;
    overflow: hidden;
    position: static;
    background: #fff url(../images/aboutbg.jpg) no-repeat center top;
    border-top: 1px #efefef solid;
    border-bottom: 1px #efefef solid;
}


.indexab_left {
    width: 50%;
    display: block;
    float: left;
}

.indexab_left em {
    font-size: 3.6rem;
    color: #c91119;
    display: block;
    text-transform: uppercase;
    font-weight: bolder;
}

.indexab_left span {
    color: #333;
    line-height: 1.8;
}

.indexab_right {
    width: 48%;
    display: block;
    float: left;
    margin-left: 2%;
}

.indexab_right dl {
    float: left;
    width: calc(49% - 2rem);
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
    text-align: left;
    border-left: 1px solid #ccc;
}

.indexab_right dl::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 3px;
    height: 30%;
    background: #c91119;
    z-index: 1;
}

.indexab_right dl dt {
    font-family: 'Alternate Gothic', sans-serif !important;
    font-size: 4rem;
    color: #333;
    line-height: 4rem;
    font-weight: bold;
    display: inline-block;
}

.indexab_right dl dt i {
    color: #c91119;
    text-align: right;
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    font-size: 1.8rem;
}

.indexab_right dl dd {
    color: #999;
    font-size: 1.4rem;
    line-height: 3rem;
}

.indexabbottom {
    margin: 4rem 0 7rem;
}

.indexabbottom ul li:nth-child(1) {
    margin-left: 0;
}

.indexabbottom ul li {
    width: 23.5%;
    float: left;
    margin-left: 2%;
    margin-right: 0px;
    /* box-shadow: 0 10px 20px rgb(0 0 0 / 10%); */
    transition: all .5s ease;
    min-height: inherit;
    background: #fff;
}

.indexabbottom ul li div.jituan {
    background: url(../images/zjituan.png) #fff no-repeat bottom right;
    background-size: 18rem;
}
.indexabbottom ul li div.tuandui {
    background: url(../images/ztuandui.png) #fff no-repeat bottom right;
    background-size: 20rem;
}
.indexabbottom ul li div.wenhua {
    background: url(../images/zshiming.png) #fff no-repeat bottom right;
    background-size: 16rem;
}
.indexabbottom ul li div.rongyu {
    background: url(../images/zrongyu.png) #fff no-repeat bottom right;
    background-size: 15rem;
}
.indexabbottom ul li div {
    /* padding: 0px 30px; */
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    transition: all .5s ease;
    min-height: inherit;
    width: 92%;
    overflow: hidden;
    position: static;
    padding-left: 8%;
}

.indexabbottom ul li em {
    color: #000;
    margin-top: 6rem;
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
}

.indexabbottom ul li i {
    margin-top: 5rem;
    display: block;
}

.indexabbottom ul li span {
    display: block;
    width: 60%;
    color: #000;
    margin-top: 3.7rem;
    display: block;
    margin-bottom: 8rem;
}


/*底部菜单*/
.footer {
    /* height: 260px; */
    background-color: #ebebeb;
}

.footer ul {
    padding-top: 65px;
}

.footer  ul li {
    display: inline-block;
    vertical-align: top;
}

.footer  ul li img{
    
}

.footer ul li h3 {
    color: #c91119;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
}

.footer ul li p {
    line-height: 35px;
    font-size: 14px;
}

.footer ul li p {
    line-height: 35px;
    font-size: 14px;
}

.footer .copyright {
    text-align: center;
    border-top: 1px solid #ddd;
    color: #999;
    height: 6rem;
    line-height: 6rem;
    margin-top: 3rem;
}



















