.container {
    width: 100%;
    margin-top: 100px;
}

.container .row {
    width: 100%;
    background-color: #f0f0f0;
}

.container .row .bread {
    width: 80%;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
}

.breadcrumb-item {
    color: #606266;
    text-decoration: none;
}

.breadcrumb-item a {
    color: #606266;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #409eff;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #c0c4cc;
}

.breadcrumb-item:last-child {
    color: #303133;
}

.titles {
    width: 80%;
    margin: 0 auto;
    display: flex;
}

.titles h1 {
    width: 100%;
    margin: 20px 0;
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0;
    border-bottom: 2px solid #409eff;
}

.equipment p {
    width: 50%;
    color: #555;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
}

.profile {
    width: 80%;
    min-height: 55vh;
    margin: 30px auto;
    display: flex;
    justify-content: space-between;
}

.profile .img {
    width: 45%;
}

.profile .img img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.profile .content {
    width: 50%;
}

.profile .content p {
    font-size: 16px;
    line-height: 30px;
    margin: 16px 0;
}

.el-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.el-divider--horizontal {
    height: 1px;
    width: 100%;
    background-color: #e5e7eb;
    position: relative;
}

.el-divider__text {
    padding: 0 10px;
    background-color: #fff;
    color: #606266;
    font-size: 16px;
    font-weight: 500;
}

.el-divider--horizontal.content-position-center .el-divider__text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 576px) {
    .container .row .bread,
    .title {
        width: 90%;
    }
    .container {
        margin-top: 60px;
    }
    .profile {
        width: 100%;
        flex-direction: column;
    }

    .profile .img,
    .profile .content {
        width: 90%;
        margin: 0 auto;
    }

    .profile .img {
        margin-bottom: 20px;
    }

    .el-divider--horizontal {
        margin: 20px auto;
    }
}
