/* #region 基础 */
.module {
    margin-top: 40px;
}

.module .content {
    margin-top: 20px;
}

.banners .banner {
    height: 540px;
}

/* #endregion */

/* #region 推荐 */
.recommend {
    width: 980px;
}

.recommend .content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    height: 340px;
}

#recommend {
    flex-shrink: 0;
    overflow: hidden;
    width: 444px;
    height: 340px;
    margin: 0;
    border-radius: 3px;
}

.recommend .box {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.recommend .box .img {
    width: 100%;
    height: 100%;
}

.recommend .box .info {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    padding: 12px;
    background: rgba(0, 32, 66, 0.5);
    backdrop-filter: blur(20px);
}

.recommend .box .info p {
    color: #fff;
    font-size: 18px;
    line-height: 153%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recommend .pagination {
    position: absolute;
    right: 12px;
    bottom: 62px;
    z-index: 1;
    display: flex;
    gap: 10px;
}

.recommend .pagination li {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.recommend .pagination .active {
    background: #2cdb58;
}

.recommend .list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.recommend .list li:not(:first-child) {
    margin-top: 20px;
}

.recommend .list .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.recommend .list .info a {
    color: #333;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: 0.3s;
}

.recommend .list .info a:hover {
    color: #3375e2;
    transition: 0.3s;
}

.recommend .list .sub {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.recommend .list .sub a:nth-child(1) {
    color: #b2caff;
}

.recommend .list .sub span:last-child {
    color: #999;
}

.recommend .list .img {
    overflow: hidden;
    width: 130px;
    height: 100px;
    border-radius: 3px;
}

/* #endregion */

/* #region 指南 */
.guide {
    width: 390px;
}

.guide .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 340px;
}

.guide .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.guide .list li {
    width: 27%;
}

.guide .list a {
    display: block;
    font-size: 0;
    text-align: center;
}

.guide .list a>img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.guide .list a:hover img {
    animation: shake .8s ease-in-out infinite;
}

@keyframes shake {
    0% {transform: translateY(0px);}
    50% {transform: translateY(3px);}
    100% {transform: translateY(0px);}
}

.guide .list a>div {
    margin-top: 5px;
    color: #333;
    font-size: 16px;
    transition: 0.3s;
}

.guide .list a:hover>div {
    color: #3375e2;
    transition: 0.3s;
}

.guide .list a>p {
    margin-top: 5px;
    color: #999;
    font-size: 14px;
    transition: 0.3s;
}

.guide .list a:hover>p {
    color: #b2caff;
    transition: 0.3s;
}

.guide .gradient {
    width: 100%;
    height: 54px;
    background: linear-gradient(270deg,
    rgba(69, 116, 219, 1) 0%,
    rgba(69, 116, 219, 0) 100%);
}

/* #endregion */

/* #region 资讯 */
.news {
    margin-top: 20px;
}

.news .box {
    width: 640px;
}

.news .top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.news .top .img {
    overflow: hidden;
    width: 250px;
    height: 180px;
    border-radius: 3px;
}

.news .top .info {
    overflow: hidden;
    flex: 1;
}

.news .top .info a {
    display: block;
    width: 100%;
    color: #333;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.3s;
}

.news .top .info a:hover {
    color: #3375e2;
    transition: 0.3s;
}

.news .top .info p {
    margin-top: 15px;
    color: #999;
    font-size: 16px;
    line-height: 153%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news .top .tags {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    height: 34px;
    margin-top: 10px;
}

.news .top .tags span {
    display: inline-block;
    font-size: 14px;
    border: 1px solid #3375e2;
    border-radius: 17px;
}

.news .top .tags span a {
    padding: 5px 10px;
    color: #3375e2;
    font-size: 14px;
}

.news .top .sub {
    margin-top: 25px;
    color: #999;
    font-size: 14px;
}

.news .top .sub i {
    display: inline-block;
    vertical-align: 3px;
    width: 3px;
    height: 3px;
    margin: 0 8px;
    background: #999;
    border-radius: 50%;
}

.news .list {
    margin-top: 20px;
}

.news .list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 20px;
}

.news .list li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 0;
    height: 0;
    content: "";
    border-top: 8px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 6px solid #3375e2;
}

.news .list li:not(:first-child) {
    margin-top: 20px;
}

.news .list li>span a {
    color: #3375e2;
    font-size: 16px;
}

.news .list li>span:nth-child(3) {
    color: #999;
    font-size: 16px;
    margin-left: auto;
}

.news .list li>a {
    display: inline-block;
    width: 65%;
    color: #333;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.3s;
}

.news .list li>a:hover {
    color: #3375e2;
    transition: 0.3s;
}

/* #endregion */

/* #region 关注 */
.concern {
    height: 409px;
}

.concern .fill {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 409px;
    background: #f1f1f1;
}

.concern .content {
    height: 100%;
    margin: 0;
    padding: 40px 0;
}

.concern .left {
    width: 320px;
}

.concern .left h3 {
    color: #333;
    font-size: 30px;
    font-weight: 700;
}

.concern .left p {
    margin-top: 40px;
    color: #4c4c4c;
    font-size: 18px;
    line-height: 153%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.concern .left a {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 60px;
    color: #fff;
    font-size: 20px;
    background: #3375e2;
    border-radius: 30px;
}

.concern .right {
    position: relative;
    width: 970px;
    height: 329px;
}

#concern {
    width: 830px;
    padding: 0 5px 5px;
}

.concern .box {
    overflow: hidden;
    width: 250px;
    height: 329px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.concern .box .img {
    width: 100%;
    height: 192px;
}

.concern .box .info {
    box-sizing: border-box;
    width: 100%;
    height: 137px;
    padding: 10px 25px 18px;
    text-align: center;
    background: #fff;
}

.concern .box .info h4 a {
    color: #333;
    font-size: 20px;
}

.concern .box .info p {
    margin-top: 5px;
    color: #999;
    font-size: 12px;
    line-height: 153%;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.concern .box .info>a {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 26px;
    color: #3375e2;
    font-size: 12px;
    border: 1px solid #3375e2;
    border-radius: 15px;
    transition: 0.3s;
}

.concern .box .info>a:hover {
    color: #fff;
    background: #3375e2;
    transition: 0.3s;
}

.concern-button-prev,
.concern-button-next {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: url(/static/icon/02.png) no-repeat;
    border-radius: 50%;
    cursor: pointer;
}

.concern-button-next {
    left: auto;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}

.concern-button-disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* #endregion */

/* #region 问答 */
#question .box {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 400px;
}

#question .box .img {
    overflow: hidden;
    width: 700px;
    height: 100%;
    border-radius: 10px;
}

#question .box .info {
    flex: 1;
}

#question .box .headline {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

#question .box .doctor {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#question .box .doctor .img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

#question .box .doctor .name h4 {
    color: #b2caff;
    font-size: 18px;
}

#question .box .doctor .name span {
    display: inline-block;
    margin-top: 10px;
    color: #999;
    font-size: 16px;
}

#question .box .info p {
    margin-top: 20px;
    color: #999;
    font-size: 16px;
    line-height: 153%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

#question .box .info .entry {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 60px;
    color: #fff;
    background: #3375e2;
    border-radius: 30px;
}

#question .pagination {
    position: absolute;
    left: 720px;
    bottom: 0;
    z-index: 1;
    display: flex;
    gap: 10px;
}

#question .pagination li {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    cursor: pointer;
}

#question .pagination .active {
    background: #3375e2;
    border: 1px solid #3375e2;
}

.question-button-prev,
.question-button-next {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: url(/static/icon/02.png) no-repeat;
    border-radius: 50%;
    opacity: 0;
    cursor: pointer;
}

.question-button-next {
    left: auto;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}

#question:hover .question-button-prev,
#question:hover .question-button-next {
    opacity: 1;
}

.question-button-disabled {
    cursor: not-allowed;
}

#question:hover .question-button-disabled {
    opacity: 0.7;
}

.ask-module {
    margin-top: 20px;
}

.ask-module .content>.hide {
    display: none;
}

.ask-module .content>.active {
    display: block;
}

.ask-module .nav {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #3375e2;
}

.ask-module .nav li {
    padding: 16px 20px;
    color: #333;
    font-size: 20px;
    cursor: pointer;
}

.ask-module .nav li:hover {
    color: #3375e2;
}

.ask-module .nav .active {
    color: #fff;
    background: #3375e2;
    border-radius: 10px 10px 0px 0px;
}

.ask-module .nav .active:hover {
    color: #fff;
}

.ask-module .left {
    width: 980px;
}

.ask-module .list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 20px;
}

.ask-module .list li {
    display: flex;
    gap: 20px;
    width: 47.95%;
}

.ask-module .list .img {
    overflow: hidden;
    width: 150px;
    height: 120px;
    border-radius: 5px;
}

.ask-module .list .info {
    overflow: hidden;
    position: relative;
    flex: 1;
}

.ask-module .list .info::before {
    position: absolute;
    top: 1px;
    z-index: -1;
    width: 24px;
    height: 24px;
    content: "问";
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    background: #3375e2;
    border-radius: 5px;
}

.ask-module .list .info a {
    display: block;
    padding-left: 29px;
    color: #000;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .3s;
}

.ask-module .list .info a:hover {
    color: #3375e2;
    transition: .3s;
}

.ask-module .list .info p {
    margin-top: 14px;
    color: #999;
    font-size: 16px;
    line-height: 153%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ask-module .list .info .sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.ask-module .list .info .sub span a {
    color: #999;
    font-size: 14px;
}
.ask-module .list .info .sub span a:hover {
    color: #3375e2;
}

.ask-module .list .info .doctor {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ask-module .list .info .doctor h4 {
    color: #3375e2;
    font-size: 16px;
}

.ask-module .list .info .img {
    overflow: hidden;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.ask-module .right {
    width: 390px;
}

.ask-module .box {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    border-radius: 3px;
}

.ask-module .box:nth-child(2) {
    margin-top: 22px;
}

.ask-module .box .img {
    width: 100%;
    height: 100%;
}

.ask-module .box .info {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 120px;
    padding: 15px;
    background: rgba(44, 72, 153, 0.2);
    backdrop-filter: blur(20px);
}

.ask-module .box .info p {
    color: #fff;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ask-module .box .info span {
    color: #fff;
    font-size: 12px;
}

.ask-module .box .info span>i {
    display: inline-block;
    vertical-align: 3px;
    width: 3px;
    height: 3px;
    margin: 0 8px;
    background: #fff;
    border-radius: 50%;
}
.ask-module .box .info a {
    color: white;
}
.ask-module .box .info>a {
    position: absolute;
    right: 15px;
    bottom: 15px;
    padding: 8px 30px 8px 18px;
    color: #3375e2;
    font-size: 16px;
    background: #fff;
    border: 1px solid #3375e2;
    border-radius: 20px;
    transition: 0.3s;
}

.ask-module .box .info>a:hover {
    color: #fff;
    background: #3375e2;
    transition: 0.3s;
}

.ask-module .box .info>a::before,
.ask-module .box .info>a::after {
    position: absolute;
    right: 16px;
    content: "";
    width: 7px;
    height: 1.5px;
    background: #3375e2;
    border-radius: 0.75px;
    transition: 0.3s;
}

.ask-module .box .info>a::before {
    top: 17px;
    transform: rotate(45deg);
}

.ask-module .box .info>a::after {
    top: 21px;
    transform: rotate(-45deg);
}

.ask-module .box .info>a:hover:before,
.ask-module .box .info>a:hover:after {
    background: #fff;
    transition: 0.3s;
}

.ask-module .advertise {
    height: 386px;
}

/* #endregion */

/* #region 共同 */
.common {
    height: 409px;
}

.common .fill {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 409px;
    background: #f1f1f1;
}

.common .content {
    height: 100%;
    margin: 0;
    padding: 40px 0;
}

.common .left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 942px;
    height: 329px;
}

.common .box {
    box-sizing: border-box;
    width: 260px;
    height: 100%;
    padding: 20px 25px;
    font-size: 0;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.common .box img {
    width: 100px;
    height: 100px;
}

.common .box h4 {
    margin-top: 20px;
    color: #3375e2;
    font-size: 30px;
    font-weight: 700;
}

.common .box .link {
    margin-top: 20px;
    height: 57px;
    font-size: 14px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.common .box .link>a {
    color: #999;
    transition: .3s;
    margin-right: 5px;
}

.common .box .link>a:hover {
    color: #3375e2;
}

.common .box>a {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 26px;
    color: #3375e2;
    font-size: 12px;
    border: 1px solid #3375e2;
    border-radius: 15px;
}

.common .box>a:hover {
    color: #fff;
    background: #3375e2;
    transition: 0.3s;
}

.common .right {
    width: 320px;
    margin-top: 41px;
}

.common .right h3 {
    color: #333;
    font-size: 30px;
    font-weight: 700;
}

.common .right p {
    margin-top: 40px;
    color: #4c4c4c;
    font-size: 18px;
    line-height: 153%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.common .right a {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 60px;
    color: #fff;
    font-size: 20px;
    background: #3375e2;
    border-radius: 30px;
}

/* #endregion */

/* #region 知识 */
.knowledge .left {
    width: 300px;
}

.knowledge .title {
    display: block;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 120px;
    background: linear-gradient(221.36deg, rgba(0, 166, 41, 1) 0%, rgba(0, 133, 222, 1) 100%);
}

.knowledge .title img {
    position: absolute;
    right: 206px;
    bottom: 24px;
    width: 30px;
    height: 30px;
}

.knowledge .title h2 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    color: #fff;
}

.knowledge .title span {
    position: absolute;
    right: 2px;
    bottom: 5px;
    z-index: 0;
    color: rgba(255, 255, 255, 0.1);
}

.knowledge .nav {
    margin-top: 20px;
    text-align: right;
}

.knowledge .nav li {
    padding-bottom: 14px;
    color: #999;
    font-size: 20px;
    border-bottom: 1px dashed #E5E5E5;
    cursor: pointer;
    transition: .3s;
}

.knowledge .nav li:hover {
    color: #3375e2;
    transition: .3s;
}

.knowledge .nav li:not(:first-child) {
    padding-top: 14px;
}

.knowledge .nav .active {
    color: #3375e2;
}

.knowledge .right {
    width: 1060px;
}

.knowledge .right .hide {
    display: none;
}

.knowledge .right .active {
    display: block;
}

.knowledge .top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.knowledge .box {
    overflow: hidden;
    position: relative;
    flex: 1;
    height: 200px;
    border-radius: 3px;
}

.knowledge .box .img {
    width: 100%;
    height: 100%;
}

.knowledge .box .info {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 58px;
    padding: 0 15px;
    background: rgba(0, 53, 128, 0.3);
    backdrop-filter: blur(30px);
    transition: .3s;
}

.knowledge .box:hover .info {
    height: 68px;
    transition: .3s;
}

.knowledge .box .info h3 {
    font-size: 18px;
    font-weight: 700;
}

.knowledge .box .info h3>a {
    color: #fff;
}

.knowledge .box .info span {
    display: inline-block;
    margin-top: 5px;
    color: #eee;
    font-size: 12px;
}

.knowledge .link {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    column-gap: 20px;
    row-gap: 15px;
    min-height: 300px;
    margin-top: 20px;
}

.knowledge .link li {
    width: 196px;
    padding: 11px 0;
}

.knowledge .link h3 {
    font-size: 20px;
    text-align: center;
}

.knowledge .link h3>a {
    display: block;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .3s;
}

.knowledge .link h3>a:hover {
    color: #3388FF;
    transition: .3s;
}

.knowledge .more {
    box-sizing: border-box;
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 70px;
    margin-top: 26px;
    padding-right: 20px;
    background: linear-gradient(270deg, rgba(69, 116, 219, 1) 0%, rgba(69, 116, 219, 0) 100%);
}

.knowledge .more a {
    display: block;
    color: #fff;
    font-size: 20px;
}

.knowledge .more a>img {
    vertical-align: -10px;
    margin-left: 10px;
}

/* #endregion */
