﻿
.contentoll {
    display: flex;
    flex-direction: column;
}

.contents {
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
}

.animalAC {
    padding: 20px 0;
    padding-top: 0;
}

    .animalAC ul {
        display: flex;
        justify-content: center;
    }

        .animalAC ul li {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 115px;
            color: #e0dde6;
            font-size: 16px;
            cursor: pointer;
        }

            .animalAC ul li .animalACsIms {
                width: 50px;
                height: 50px;
                object-fit: contain;
                margin-right: 10px;
            }

            .animalAC ul li .animalACSpan {
                color: #b2adbe;
                font-weight: bold;
                padding-bottom: 15px;
            }

            .animalAC ul li .active {
                border-bottom: 4px solid #23b7b6;
                color: #23b7b6;
                margin-top: 4px;
            }

.animalACBor {
    border-right: 1px solid #e3e3e3;
}

    .animalACBor span {
        margin-right: 5px;
    }

.DogListAC {
    width: 100%;
    display: flex;
    justify-content: center;
}

    .DogListAC ul {
        display: flex;
        width: 42%;
    }

        .DogListAC ul li {
            width: 20%;
            display: flex;
            justify-content: center;
        }

            .DogListAC ul li span {
                padding: 10px 0;
                color: #ada7ba;
                font-size: 16px;
                cursor: pointer;
            }

            .DogListAC ul li .active {
                color: #23b7b6;
                border-bottom: 3px solid #23b7b6;
            }

.ClearPet {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.ClearPetSpan {
    font-size: 18px;
    font-weight: bold;
    width: 50%
}
.centerBox {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 200px;
    align-items: center;
}

.ClearPet .centerImg {
    margin-top: 60px;
    width: 180px;
}
.PetClassName {
    margin: 20px 0;
    width: 100%;
    text-align: center;
    height: 18px;
    font-size: 18px;
    font-weight: bold;
    color: rgba(83,83,83,1);
}
    .ClearPetSpan {
     /*   font-size: 18px;
        font-weight: bold;
        width: 50%*/
    }


    .ClearPetSpan span {
        cursor: pointer;
        color: #586060;
    }


.tableBox {
    margin: 20px 0;
}

    .tableBox table tr {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

        .tableBox table tr td {
            width: 20%;
            border: 1px solid #e0e0e0;
            margin: -1px -1px 0 0;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow: hidden;
        }

            .tableBox table tr td:hover .tableDiv img {
                transform: scale(1.2);
                cursor: pointer;
            }

            .tableBox table tr td:hover .tableDiv span {
                color: #23b7b6;
            }

.tableDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .tableDiv img {
        width: 163px;
        height: 154px;
        object-fit: contain;
        transition: all .48s ease;
    }

    .tableDiv span {
        margin-top: 30px;
        color: #888293;
        font-size: 16px;
    }

.searchBox {
    height: 50px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

    .searchBox input {
        width: 37%;
        height: 100%;
        background-color: #f5f5f5;
        padding: 0 20px;
    }

    .searchBox div {
        height: 100%;
        width: 80px;
        background-color: #23b7b6;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        cursor: pointer;
    }

.geneticDisease {
    margin-bottom: 20px;
}

    .geneticDisease ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .geneticDisease ul:after {
            content: '';
            width: 24%;
            border: 1px solid transparent;
        }

        .geneticDisease ul li {
            width: 24%;
            border: 1px solid #e2e2e2;
            padding: 30px;
            position: relative;
            margin-top: 20px;
        }

            .geneticDisease ul li:after {
                position: absolute;
                top: 0;
                left: 0;
                content: '';
                z-index: 10;
                width: 0;
                height: 6px;
                background-color: #23b7b6;
                transition: width .4s ease;
            }

            .geneticDisease ul li:hover:after {
                width: 100%;
            }

.diseaseOne {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #55545a;
    font-size: 18px;
    font-weight: bold;
}

    .diseaseOne img {
        cursor: pointer;
    }

.diseaseTow {
    font-size: 16px;
    color: #6c6c6c;
    padding: 20px 0 30px 0;
    display: -webkit-box; /** 对象作为伸缩盒子模型显示 **/
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical; /** 设置或检索伸缩盒对象的子元素的排列方式 **/
    -webkit-line-clamp: 3; /** 显示的行数 **/
    overflow: hidden;
    height: 87px;
}

.diseaseThree {
    border-top: 1px solid #e2e2e2;
    margin-top: 12px;
    font-size: 14px;
    color: #979797;
    padding-top: 20px;
    display: -webkit-box; /** 对象作为伸缩盒子模型显示 **/
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical; /** 设置或检索伸缩盒对象的子元素的排列方式 **/
    -webkit-line-clamp: 2; /** 显示的行数 **/
    height: 60px;
    overflow: hidden;
    margin-bottom: 10px;
}

.jobMoney {
    font-size: 18px;
    color: #23b7b6;
    padding-bottom: 30px;
    font-weight: bold; 
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.jobMoneyBtn {
   
    font-size:14px;
    cursor:pointer;
}
.diseaseBtn {
    display: flex;
    align-items: center;
    color: #23b7b6;
    font-size: 16px;
    justify-content:space-between;
}

    .diseaseBtn button {
        width: 100px;
        height: 40px;
        background-color: #23b7b6;
        color: #fff;
        cursor: pointer;
        border-radius: 5px;
    }

    .diseaseBtn span {
        cursor: pointer;
        margin-left: 30px;
    }

.contentsList ul {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
}

    .contentsList ul li {
        width: 24%;
        overflow: hidden;
    }

.school_MesImg {
    width: 100%;
    height: 3rem;
    min-height: 300px;
    overflow: hidden;
}

.school_MesText {
    height:120px;
    padding: 20px;
    background-color: #d3cac2;
    color: #fff;
    transition: all 0.5s;
}

.school_MesImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .48s ease;
}

.school_MesText h3 {
    font-size: 18px;
    font-weight: bold;
}

.school_MesText p {
    margin-top: 10px;
    font-size: 14px;
    display: -webkit-box;
    word-break: break-all;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 36px;
}

.school_Mes ul li:hover .school_MesText {
    background-color: #23b7b6;
}

.school_Mes ul li:hover .school_MesImg img {
    transform: scale(1.1);
}

.backtrackoll {
    position:absolute;
    top:25px;
    left:5px;

    padding: 0 20px;
    font-size: 18px;
    font-weight: bold;
    color: #535353;
    display: flex;
    align-items: center;
    width: 150px;
    cursor: pointer;
}

    .backtrackoll span {
        margin-left: 15px;
        cursor: pointer;
    }
  