﻿.section-title-img{
    position: relative;
    top: -0.1rem;
    height: 0.65rem;
    margin-right: 0.10rem;
}

.list-card-des{
    padding-bottom: 0.1rem;
    border-bottom: 1px solid rgb(234, 234, 234);
    line-height: 200%;
    height: 1rem;
}

.list-card-items{
    margin-top: 0.40rem;
}

.data-card-group{
    margin-bottom: 0.25rem;
}

.data-card-data{
    font-family: 'DinFontLight';
    font-size: 0.5rem;
    color: rgb(253, 179, 0);
    margin-bottom: 0px;
}

.data-card-data .unit{
    font-family: 'PuHuiFontLight';
    font-size: 0.24rem;
    margin-left: 0.03rem;
}

.dual-content{
    display: flex;
    flex-direction: row;
}

.dual-content .list-card-items:first-child{
    padding-right: 0.4rem;
    border-right: 1px solid rgb(234, 234, 234);
}

.dual-content .list-card-items:last-child{
    padding-left: 0.4rem;
}

.about-card-section{
    margin-bottom: 0.20rem;
}

.about-card-section .intro-card{
    margin-bottom: 0;
}

.about-card-section:hover{
    box-shadow: 0px 0px 0.3rem 0 rgba(11,16,51,0.2);
}

.check-icon-group span.icon {
    display: inline-block;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 100%;
    position: relative;
    top: 0px;
    left: -3px;
}
.icon:before,
.icon:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    /* border: 1px solid #fff;
    border-top: 1px solid rgb(152, 125, 230);
    border-left: 1px solid rgb(152, 125, 230);
    border-bottom: 1px solid rgb(152, 125, 230); */
}
.icon:before {
    z-index: 100;
    animation: spin 1s infinite;
    animation-iteration-count: 1;
    animation-direction: alternate-reverse;
    background-image: url('../image/check.png');
    /* background-position: 60% 35%; */
    background-size: cover;
}

.icon:after {
    border: 1px solid #fff;
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.done {
    width: 0.4rem;;
    height: 0.4rem;;
    border-radius: 50%;
    display: block;
    stroke-width: 5;
    stroke: rgb(152,125,230);
    fill: rgb(152,125,230);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px rgb(152,125,230);
    animation: fill-green 0.5s ease-in-out 0.5s forwards, scale 0.3s ease-in-out 0.7s both;
}
.done .circle {
    stroke-dasharray: 0, 134, 134, 0;
    stroke-dashoffset: -134;
    stroke-width: 5;
    stroke-miterlimit: 10;
    stroke: rgb(152,125,230);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation-direction: alternate-reverse;
}
.done .check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.7s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}
