.clear {
    clear: both;
}

.container-fluid {
    padding: 0px!important;
}


/* index */


/* //数据 */


/* Counter Index-1*/

@-webkit-keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes hvr-pulse {
    25% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@media screen and (max-width: 767px) {
    .counters-wrapper.index-1 {
        padding: 35px 0;
    }
}

.counters-wrapper.index-1 .counters .counter-outer {
    overflow: hidden;
    text-align: center;
    position: relative;
    height: 220px;
    width: 85%;
    border: 1px dashed transparent;
    margin: 15px auto;
    cursor: pointer;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

.counters-wrapper.index-1 .counters .counter-outer i {
    position: absolute;
    top: 12%;
    bottom: 0;
    right: 0;
    left: 0;
    font-size: 155px;
    color: rgba(51, 51, 51, 0.06);
}

.counters-wrapper.index-1 .counters .counter-outer .counter-inner {
    position: relative;
    top: 35%;
}

.counters-wrapper.index-1 .counters .counter-outer .counter-inner .counter {
    font-size: 50px;
    font-weight: 300;
}

.counters-wrapper.index-1 .counters .counter-outer .counter-inner h2 {
    margin-top: 18px;
}

.counters-wrapper.index-1 .counters .counter-outer.color-1 {
    border: 1px dashed #55b5bd;
}

.counters-wrapper.index-1 .counters .counter-outer.color-1 .counter {
    color: #55b5bd;
}

.counters-wrapper.index-1 .counters .counter-outer.color-2 {
    border: 1px dashed #9ebe3b;
}

.counters-wrapper.index-1 .counters .counter-outer.color-2 .counter {
    color: #9ebe3b;
}

.counters-wrapper.index-1 .counters .counter-outer.color-3 {
    border: 1px dashed #ffa800;
}

.counters-wrapper.index-1 .counters .counter-outer.color-3 .counter {
    color: #ffa800;
}

.counters-wrapper.index-1 .counters .counter-outer.color-4 {
    border: 1px dashed #3d98ff;
}

.counters-wrapper.index-1 .counters .counter-outer.color-4 .counter {
    color: #3d98ff;
}

.counters-wrapper.index-1 .counters .counter-outer:hover i {
    -webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@media screen and (max-width: 500px) {
    .counters-wrapper.index-1 .counters .col-xs-6 {
        width: 100%;
    }
    .counters-wrapper.index-1 .counters .counter-outer {
        width: 100%;
    }
}

.alignC {
    text-align: center;
    line-height: 20px;
    margin: 6rem 0 3rem 0;
}

@media screen and (max-width: 500px) {
    .alignC {
        margin: 3rem 0;
    }
}

.alignC p:first-child {
    font-size: 36px;
    color: #ffe200;
}

.alignC p:nth-child(3) {
    font-size: 20px;
    color: #ffe200;
}

.alignC span {
    font-size: 30px;
    color: #ffe200;
    margin: 0 20px;
}

.alignC .dian {
    margin-top: -10px;
}
.card{
    margin-bottom: 2rem;
}

/* //气泡框 */

.div {
    width: 10%;
    height: auto;
    padding: .5rem;
    border: 2px solid #CCCCCC;
    border-radius: 10px;
    /*圆角弧度为7px*/
    position: relative;
    -webkit-box-shadow: 0 0 15px rgba(182, 172, 249, 1);
    -moz-box-shadow: 0 0 15px rgba(182, 172, 249, 1);
    box-shadow: 0 0 15px rgba(182, 172, 249, 1);
}

.div::before {
    content: '';
    width: 0;
    height: 0;
    border: 20px solid;
    position: absolute;
    bottom: -40px;
    left: 60%;
    border-color: #fff transparent transparent;
}

.bubble::after {
    content: '';
    width: 0;
    height: 0;
    border: 20px solid;
    position: absolute;
    bottom: -36px;
    left: 60%;
    border-color: #fff transparent transparent;
}

@media screen and (max-width:1000px) {
    .div {
        width: 20%;
        height: auto;
        padding: .5rem;
        border: 2px solid #CCCCCC;
        border-radius: 10px;
        /*圆角弧度为7px*/
        position: relative;
        -webkit-box-shadow: 0 0 15px rgba(182, 172, 249, 1);
        -moz-box-shadow: 0 0 15px rgba(182, 172, 249, 1);
        box-shadow: 0 0 15px rgba(182, 172, 249, 1);
    }
    .div::before {
        content: '';
        width: 0;
        height: 0;
        border: 10px solid;
        position: absolute;
        bottom: -20px;
        left: 40%;
        border-color: #fff transparent transparent;
    }
    .bubble::after {
        content: '';
        width: 0;
        height: 0;
        border: none;
        border-style: none;
        position: absolute;
    }
}


/* 合作 */

.conPartner {
    border-radius: 20px;
    box-shadow: 0px 0px 5px #CCCCCC;
}

.conPartner ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.partner li {
    margin: 25px;
    padding: 13px;
    text-align: center;
    /* background: #1ABC9C; */
}

.partner li img {
    width: 200px;
    max-width: 150px;
}

@media screen and (max-width: 767px) {
    .partner li img {
        width: 100%;
    }
}

.bgDingwei {
    position: relative;
}


/* 资质 */

.imgZizhi img {
    width: 250px;
    height: 200px;
    margin: 0 auto;
    /* background: #002752; */
    padding: 5px;
}
.cardbottom{
	width:100%;
	border-radius:5%;
	margin-bottom: 5px;
}
@media screen and (max-width:500px) {
    .imgZizhi img {
        width: 250px;
        height: 200px;
        margin: 0 auto;
        /* background: #002752; */
        padding: 5px;
    }
}

.imgZizhi {
    width: 100%;
    height: auto;
    padding: 3rem 3rem;
    background-size: contain;
    text-align: center;
    line-height: 16rem;
    border-bottom-left-radius: 6rem;
    border-top-right-radius: 6rem;
    border: 1px solid #CCCCCC;
    -webkit-box-shadow: 0 0 15px rgba(182, 172, 249, 1);
    -moz-box-shadow: 0 0 15px rgba(182, 172, 249, 1);
    box-shadow: 0 0 15px rgba(182, 172, 249, 1);
}
.imgZizhi-sm{
	width: 100%;
	height: auto;
	/* padding: 3rem 1rem; */
	text-align: center;
	line-height: 16rem;
	/* border-radius:5rem;
	border: 1px solid #CCCCCC;
	
	margin: 0 auto;
	*/
}
.zizhiCard{
	width:100%;
	border-radius:5%;
	margin-bottom: 10px;
	-webkit-box-shadow: 0 0 10px rgba(182, 172, 249, 1);
	-moz-box-shadow: 0 0 10px rgba(182, 172, 249, 1);
	box-shadow: 0 0 10px rgba(182, 172, 249, 1); 
}
.Lcard{
	width:100%;
	border-radius:5%;
	margin-bottom:10px;
	
}
.imgZizhiL {
    width: 100%;
    height: auto;
    text-align: center;
    border-bottom-left-radius: 6rem;
    border-top-right-radius: 6rem;
    border: 1px solid #CCCCCC;
    -webkit-box-shadow: 0 0 15px rgba(182, 172, 249, 1);
    -moz-box-shadow: 0 0 15px rgba(182, 172, 249, 1);
    box-shadow: 0 0 15px rgba(182, 172, 249, 1);
    margin-top: 5rem;
}

.imgZizhiR {
    width: 100%;
    height: auto;
    padding: 1rem;
    text-align: center;
    border-bottom-left-radius: 6rem;
    border-top-right-radius: 6rem;
    border: 1px solid #CCCCCC;
    -webkit-box-shadow: 0 0 15px rgba(182, 172, 249, 1);
    -moz-box-shadow: 0 0 15px rgba(182, 172, 249, 1);
    box-shadow: 0 0 15px rgba(182, 172, 249, 1);
    margin-top: 5rem;
}

.imgZizhiBottom {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0 auto 10px auto;
    padding: 5rem 2rem 3rem 2rem;
    border-bottom-left-radius: 6rem;
    border-top-right-radius: 6rem;
    border: 1px solid #CCCCCC;
    -webkit-box-shadow: 0 0 15px rgba(123, 123, 219, 1);
    -moz-box-shadow: 0 0 15px rgba(123, 123, 219, 1);
    box-shadow: 0 0 15px rgba(123, 123, 219, 1);
}

.topic {
    position: relative;
    width: 18rem;
    margin: 5rem auto 2rem auto;
}

.topic .img1 {
    position: absolute;
}

.topic .img2 {
    position: absolute;
    margin-top: 2rem;
    margin-left: -1.5rem;
}

.topic .img3 {
    position: absolute;
    margin-top: 3rem;
    margin-left: 4.5rem;
    z-index: -1;
}

.topic .span1 {
    position: relative;
    font-size: 2rem;
    color: #ffe200;
    margin-left: 1.25rem;
    line-height: 4rem;
}

.topic .span2 {
    position: absolute;
    margin-top: 3rem;
    font-size: 1.375rem
}

.imgZizhiL .icon1 {
    position: absolute;
    margin-top: -4rem;
    margin-left: -15rem
}

.imgZizhiL div {
    width: 90%;
    padding: 2.5rem 0 0 3.5rem;
    line-height: 1rem;
}

.p-1 {
    /* background: #0056B3; */
    font-size: 1.25rem;
    font-weight: 800;
    color: #000000;
    margin: 0 0rem;
}

.p-2 {
    /* background: #00AEFF; */
    font-size: 1rem;
    color: #000000;
    /* text-align: left; */
}

.imgZizhiL .img1 {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 1rem 2rem 2rem;
}

.imgZizhiR .icon2 {
    position: absolute;
    margin-top: -5rem;
    margin-left: -18rem;
}

.imgZizhiR .img1 {
    margin: 1rem 3rem;
}

.imgZizhiR div {
    line-height: 1rem;
    /* background: #004085; */
}

.imgZizhiR .p-1 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #000000;
    margin: 0 0rem;
    /* text-align: left; */
}

.imgZizhiR .p-2 {
    font-size: 1rem;
    color: #000000;
    /* text-align: left; */
}

.imgZizhiR .imgZs {
    width: 100%;
}

.imgZizhiBottom .div1 {
    width: 100%;
}

.imgZizhiBottom .div2 {
    width: 100%;
    text-align: center;
}

.imgZizhiBottom .div2 img {
    width: 100%;
    /* margin-top: 20%; */
}

.imgZizhi:hover {
    -webkit-box-shadow: 0 0 25px rgba(123, 123, 219, 1);
    -moz-box-shadow: 0 0 25px rgba(123, 123, 219, 1);
    box-shadow: 0 0 25px rgba(123, 123, 219, 1);
}

.imgZizhiL:hover {
    -webkit-box-shadow: 0 0 25px rgba(123, 123, 219, 1);
    -moz-box-shadow: 0 0 25px rgba(123, 123, 219, 1);
    box-shadow: 0 0 25px rgba(123, 123, 219, 1);
}

.imgZizhiR:hover {
    -webkit-box-shadow: 0 0 25px rgba(123, 123, 219, 1);
    -moz-box-shadow: 0 0 25px rgba(123, 123, 219, 1);
    box-shadow: 0 0 25px rgba(123, 123, 219, 1);
}

.imgZizhiBottom:hover {
    -webkit-box-shadow: 0 0 25px rgba(123, 123, 219, 1);
    -moz-box-shadow: 0 0 25px rgba(123, 123, 219, 1);
    box-shadow: 0 0 25px rgba(123, 123, 219, 1);
}


/* 社区 */

.cardFooter span {
    margin: 0.625rem;
}