.sort {
    background-color: #e3f4fd;
    padding: 40px 50px;
    margin-top: 50px;
}

.sort dl {
    padding: 10px 0;
}

.sort dt {
    font-weight: bold;
    color: #2056aa;
    width: 90px;
    line-height: 30px;
}

.sort dd {
    margin-left: 120px;
    text-transform: uppercase;
}

.sort dd a {
    padding: 0 10px;
    line-height: 30px;
}
.sort dd a:hover{color:inherit}

.sort dd .on {
    color: #FFF;
    background-image: linear-gradient(90deg, #3171d6, #2aa9e4);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.list{margin-left:-80px}
.list li {
    width: calc(50% - 80px);
    margin-left: 80px;
    margin-top: 60px;
    position: relative;
}
.list li .bg {
    padding: 10px;
    box-sizing: border-box;
    height:220px;
    width: 220px;
    border: 1px dashed #3171d6;
    position: absolute;
    border-radius: 50%;
    top: 20px;
    left: 20px;
    transform: translate(-20%,-20%);
    opacity: 0;
    animation: bgrotate 50s linear 0s infinite reverse;
    transition: .3s all ease-in;
}

@keyframes bgrotate {
    0% {
        transform:translate(-20%,-20%) rotate(0);
    }

    100% {
        transform:translate(-20%,-20%) rotate(360deg);
    }
}
.list li .bg::before {
    display: block;
    content: '';
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: url(../images/cir.jpg) 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.list li:hover .bg {
    opacity: 1;
    top: 0;
    left: 0;
}

.list li:hover .pic img{
    border-radius: 40px 0 0 0;
}
.list li:nth-child(even) {
    margin-right: 0;
}

.list li .pic {
    width: 182px;
    height: 260px;
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, .2);
}

.list li .pic img {
    width: 100%;
    height: 100%;
}

.list li .text-content {
    margin-left: 220px;
    /* padding-top: 15px; */
}

.list li .text-content::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 30px;
    width: 50px;
    /*height: 4px;*/
    background-color: #3171d6;
    background-image: linear-gradient(90deg, #3171d6, #2aa9e4);
}

.list li:hover .text-content:before{background-color:#f39800;background-image: linear-gradient(90deg, #f39800, #f39800);}

.list li .name {
    font-size: 28px;
    height: 78px;
}

.list li .txt {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-top: 10px;
    border-bottom: 1px #e5e5e5 solid;
    padding-bottom: 30px;
}

.list li .more {
    width: 100%;
    height: 60px;
    background: url(../images/icon1.png)no-repeat left bottom;
    margin-top: 20px;
    /* padding-top: 20px; */
}

.list li .more a {
    color: #2056aa;
    padding-right: 50px;
    line-height: 50px;
}

.list li .more span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #2056aa dashed;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -20px;
}

.list li .more span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #2056aa url(../images/jia.png)no-repeat center;
    width: 34px;
    height: 34px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@media (max-width:1440px) {
    .list li .pic {
        width: 160px;
        height: 225px;
    }
    .list li .text-content {
        margin-left: 180px;
        padding-top: 0;
    }
    .list li .txt {
        margin-top: 20px;
        padding-bottom: 20px;
    }
    .list li .more {
        margin-top: 10px;
        padding-top: 10px;
    }
    .list li .bg{
        width: 150px;
        height: 150px;
    }
}

@media (max-width:1199px) {
    .accordion {
        display: none;
    }
    .sort {
        margin-top: .5rem;
        padding: .4rem;
    }
    .sort dl {
        display: flex;
        padding: .1rem 0;
    }
    .sort dt {
        width: 1.2rem;
        margin-right: .2rem;
    }
    .sort dd {
        flex: 1;
        margin-left: 0;
    }
    .sort dd a {
        line-height: .4rem;
        padding: 0 .2rem;
    }
    .list li {
        margin-top: .6rem;
        display: flex;
    }
    .list li .pic {
        width: 1.8rem;
        height: 2.55rem;
        margin-right: .5rem;
    }
    .list li .text-content {
        margin-left: 0;
        flex: 1;
    }
    .list li .text-content::before {
        top: .3rem;
        left: -.7rem;
        width: .5rem;
    }
    .list li .name {
        font-size: .3rem;
        height: .7rem;
    }
    .list li .txt {
        font-size: .16rem;
        margin-top: .2rem;
        padding-bottom: .2rem;
    }
    .list li .more {
        height: .5rem;
        margin-top: .1rem;
        padding-top: .1rem;
        background-size: auto 100%;
    }
    .list li .more a {
        line-height: .5rem;
        padding-right: .55rem;
    }
    .list li .more span {
        width: .4rem;
        height: .4rem;
        margin-top: -.2rem;
    }
    .list li .more span::after {
        width: .32rem;
        height: .32rem;
        background-size: .15rem;
    }
}

@media (max-width:767px) {
    .sort dl {
        flex-flow: column;
    }
    .sort dt {
        width: 100%;
    }
    .sort dd {
        margin-top: .15rem;
    }
    .list{margin-left:0}
    .list li {
        width: 100%;
        margin-left: 0;
    }
    .list li .name{height:auto}
}

.details {
    margin-top: 50px;
}

.details .pic {
    width: 270px;
    height: 380px;
    margin-top: -100px;
    margin-left: 20px;
    z-index: 2;
}

.details .pic img {
    width: 100%;
}

.details .pic::before {
    content: '';
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: 270px;
    height: 380px;
    background-image: linear-gradient( #3171d6, #2aa9e4);
    z-index: -1;
}

.details .text-content {
    margin-left: 340px;
}

.details .text-content .name {
    font-size: 42px;
    color: #2056aa;
    font-family: 'Georgia';
    padding-left: 45px;
}

.details .text-content .name span {
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-image: linear-gradient(90deg, #3171d6, #2aa9e4);
    width: 30px;
    height: 30px;
}

.details .text-content .name span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #FFF;
    z-index: 1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.details .text-content .con {
    border-top: 1px #e5e5e5 solid;
    margin-top: 40px;
    padding-top: 10px;
}

.details .text-content .item {
    border-bottom: 1px #e5e5e5 solid;
    padding-bottom: 10px;
}

.details .text-content .txt {
    width: 50%;
    line-height: 40px;
    padding-left: 30px;
}

.details .text-content .txt::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #e5e5e5 solid;
    position: absolute;
    left: 10px;
    top: 15px;
    z-index: 1;
}

.details .body {
    margin-top: 90px;
    padding-left: 56px;
}

.details .body::before {
    content: '';
    position: absolute;
    left: 56px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #e8eef6;
}

.details .body .item {
    margin-top: 20px;
    padding-left: 50px;
}

.details .body .item .tit {
    font-size: 26px;
    color: #2056aa;
}

.details .body .item .txt {
    margin-top: 20px;
}

.details .body .item .txt p {
    margin: 0;
    text-indent: 2em;
}

.details .body .item span {
    position: absolute;
    left: -13px;
    top: 5px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #2056aa dashed;
    z-index: 2;
}

.details .body .item span::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background-color: #2056aa;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.details .body .first {
    padding-left: 70px;
}

.details .body .first .tit {
    font-size: 36px;
}

.details .body .first span {
    position: absolute;
    left: -55px;
    top: -25px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px #2056aa dashed;
    z-index: 2;
}

.details .body .first span::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #2056aa url(../images/l1.png)no-repeat center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@media (max-width:1199px) {
    .details {
        margin-top: 1.2rem;
    }
    .details .info {
        display: flex;
    }
    .details .pic {
        width: 2.7rem;
        height: 3.8rem;
        margin-top: -1rem;
        margin-left: .2rem;
        margin-right: .8rem;
    }
    .details .pic::before {
        width: 2.7rem;
        height: 3.8rem;
        left: -.2rem;
        bottom: -.2rem;
    }
    .details .text-content {
        margin-left: 0;
        flex: 1;
    }
    .details .text-content .name {
        font-size: .42rem;
        padding-left: .5rem;
    }
    .details .text-content .name span {
        width: .3rem;
        height: .3rem;
    }
    .details .text-content .name span::after {
        width: .16rem;
        height: .16rem;
    }
    .details .text-content .con {
        margin-top: .4rem;
        padding-top: .1rem;
    }
    .details .text-content .txt {
        line-height: .5rem;
        padding-left: .4rem;
    }
    .details .text-content .txt::before {
        left: .1rem;
        top: .15rem;
        width: .1rem;
        height: .1rem;
    }
    .details .body {
        margin-top: .9rem;
        padding-left: .56rem;
    }
    .details .body::before {
        left: .56rem;
    }
    .details .body .item .tit {
        font-size: .32rem;
    }
    .details .body .first .tit {
        font-size: .42rem;
    }
    .details .body .item {
        margin-top: .6rem;
        padding-left: .5rem;
    }
    .details .body .item span {
        width: .26rem;
        height: .26rem;
        left: -.13rem;
        top: .05rem;
    }
    .details .body .item span::before {
        width: .18rem;
        height: .18rem;
    }
    .details .body .first {
        padding-left: .7rem;
    }
    .details .body .first span {
        width: 1rem;
        height: 1rem;
        left: -.5rem;
    }
    .details .body .first span::before {
        width: .8rem;
        height: .8rem;
        background-size: .6rem;
    }
    .details .body .item .txt {
        margin-top: .2rem;
    }
}

@media (max-width:767px) {
    .details .pic {
        margin-right: .2rem;
    }
    .details .text-content .txt {
        width: 100%;
    }
}