/**
 * 合作伙伴页面样式
 * 包含战略合作伙伴、样板医院合作伙伴图片展示及页脚。
 * 与 css/shared.css 共同使用。
 */

/* ==========================================
   主容器
   ========================================== */
.mainContent {
    display: flex;
    flex-direction: column;
    /* position: relative;
    top: 6rem; */
    margin-top: 6rem;
    width: 100%;
    height: auto;
    align-items: center;
}

/* ==========================================
   战略合作伙伴区块
   ========================================== */
.partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 15%;
}

.partners .head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 6rem;
}

.partners .head .text {
    font-size: 1.3rem;
    color: #3d3d3d;
    letter-spacing: 0.1rem;
    font-weight: 600;
}

.partners .head .dash {
    height: 1px;
    background-color: #3d3d3d;
    flex: 1;
    margin-left: 2rem;
}

.partners img {
    margin-top: 3.8rem;
    width: 100%;
    height: auto;
}

/* ==========================================
   样板医院合作伙伴区块
   ========================================== */
.hospital {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 15%;
}

.hospital .head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 6rem;
    font-weight: 600;
}

.hospital .head .text {
    font-size: 1.3rem;
    color: #3d3d3d;
    letter-spacing: 0.1rem;
}

.hospital .head .dash {
    height: 1px;
    background-color: #3d3d3d;
    flex: 1;
    margin-left: 2rem;
}

.hospital img {
    margin-top: 3.5rem;
    width: 100%;
    height: auto;
}

.textWrap {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: end;
    color: #3d3d3d;
    font-size: 0.8rem;
}

/* ==========================================
   页脚
   ========================================== */
.mainContent .footWrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2% 15%;
    width: 100%;
    margin-top: 5rem;
}

.mainContent .footWrap .urlWrap {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.mainContent .footWrap .urlWrap a {
    color: #ffffff;
    text-decoration: none;
}

.mainContent .footWrap .urlWrap .parent {
    font-size: 1.1rem;
    font-weight: 600;
}

.mainContent .footWrap .urlWrap .child {
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 0.8rem;
}

.mainContent .footWrap .publicWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 9rem;
}

.mainContent .footWrap .publicWrap img {
    width: 6rem;
    height: auto;
}

.mainContent .footWrap .publicWrap .text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 1rem;
}