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

.right .module .title {
    padding-bottom: 10px;
}

.right .module .title span {
    font-size: 20px;
}

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

.banners .banner {
    height: 540px;
}

.city .left {
    width: 970px;
}

.city .right {
    width: 390px;
}

.city .title {
    padding: 0;
    border: 0;
}

.advertise {
    height: 200px;
}

/* #endregion */


/* #region 地区 */
.region .align {
    display: flex;
    gap: 20px;
}

.region .align:not(:first-child) {
    margin-top: 20px;
}

.region .align div {
    margin-top: 4px;
    padding: 0 0 20px 20px;
    color: #999;
    font-size: 16px;
}

.region .align ul {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px 20px 0;
    padding-left: 0;
    border-bottom: 1px solid #e5e5e5;
}

.region .align li>a {
    display: inline-block;
    padding: 3px 16px;
    color: #999;
    font-size: 16px;
    background: #f1f1f1;
    border: 1px solid #e5e5e5;
    border-radius: 15px;
    transition: 0.3s;
}

.region .align li>a:hover {
    color: #3375e2;
    background: #edf7fb;
    border: 1px solid #3375e2;
    transition: 0.3s;
}

.region .align .active a {
    color: #3375e2;
    background: #ffffff;
    border: 1px solid #3375e2;
}

/* #endregion */

/* #region 医院列表 */
.city-list .title span {
    color: #3388ff;
}

.city-list .list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.city-list .list li {
    width: 31.9%;
    height: 310px;
}

.city-list .list li>a {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.city-list .list .img {
    width: 100%;
    height: 100%;
}

.city-list .list .name {
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 60px;
    padding: 14px;
    background: linear-gradient(90deg, rgba(69, 116, 219, 1) 59.03%, rgba(69, 116, 219, 0) 100%);
}

.city-list .list .name img {
    width: 32px;
    height: 32px;
}

.city-list .list .name div {
    color: #fff;
    font-size: 25px;
}

/* #endregion */

/* #region 文章标题 */
.article-title {
    padding: 10px;
    background: #eceff9;
}

.article-title .content {
    margin-top: 0;
    padding: 32px 16px;
    background: #fff;
    border: 1px dashed #3375e2;
}

.article-title .content h1 {
    color: #333;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

.article-title .content p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 180%;
    text-indent: 2em;
}

.article-title .content span {
    display: inline-block;
    margin-top: 10px;
    color: #999;
    font-size: 14px;
}

/* #endregion */

/*#region 文章*/
.article .content h2 {
    margin: 15px 0;
    padding-left: 5px;
    color: #3375e2;
    font-size: 20px;
    font-weight: 700;
    border-left: 6px solid #3375e2;
}

.article .content p {
    margin: 15px 0;
    color: #333;
    font-size: 16px;
    line-height: 153%;
}

.article .content p>strong {
    font-weight: bold;
}

.article .content p img {
    max-width: 100%;
}

.article .content p a {
    color: #3375e2;
}

.article .content .echart {
    width: 100%;
    height: 400px;
}

/*#endregion*/

/* #region 排行榜 */
.right .rank .list {
    overflow: hidden;
    position: relative;
    counter-reset: section;
}

.right .rank .list li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding-left: 34px;
}

.right .rank .list li::before {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    counter-increment: section;
    content: counter(section);
    color: #3375e2;
    font-size: 14px;
    text-align: center;
    background: #ffffff;
    border: 2px solid #3375e2;
    border-radius: 2px;
}

.right .rank .list li:nth-child(1):before {
    color: #fff;
    background: #ff8578;
    border: 2px solid #ff8578;
}

.right .rank .list li:nth-child(2):before {
    color: #fff;
    background: #ffa96b;
    border: 2px solid #ffa96b;
}

.right .rank .list li:nth-child(3):before {
    color: #fff;
    background: #ffc773;
    border: 2px solid #ffc773;
}

.right .rank .list li:not(:first-child) {
    margin-top: 15px;
}

.right .rank .list li:last-child {
    margin-bottom: 2px;
}

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

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

.right .rank .list div {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.right .rank .list div>i {
    display: block;
    width: 12px;
    height: 14px;
}

.right .rank .list .rise div>i {
    background: url(../static/icon/rise.png) no-repeat;
    background-size: 100%;
}

.right .rank .list .fall div>i {
    background: url(../static/icon/fall.png) no-repeat;
    background-size: 100%;
}

.right .rank .list span {
    color: #666;
}

.right .rank .list span>i {
    color: #ed757b;
}

#feiyong-chart,#sanjia-chart,#zhuanke-chart {
      width: 100%;height: 400px
    }
    .price-info {
      text-align: center;
    }
    .price-info span {
      color: red;
      font-size: 20px;
    }
    .yiyuan-table {
      width: 100%;
    }
    .neighbor-cities {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
    }
    .rank-table {
      margin: 0 auto;
      display: block;
      width: 80%;
    }
    .rank-table td {
      text-align: left !important;
    }
    .article .content h3 {
      font-weight: bold;
    }

/* #endregion */