/* #region 基础 */
body {
    background: #f6f9fe url(/static/icon/background.png) no-repeat center 160px;
}

.module {
    margin-top: 20px;
}

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

.banners {
    height: 500px;
}

.banner {
    display: flex;
    justify-content: space-between;
}

.banner .infos {
    width: 640px;
    margin-top: 60px;
}

.banner .infos h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
}
.banner .infos h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
}

.banner .infos .intro {
    margin-top: 10px;
    color: #bcd7fc;
    font-size: 15px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.banner .infos .views {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.banner .infos .views div {
    flex: 1;
    color: #fff;
    text-align: center;
}

.banner .infos .views span {
    font-size: 15px;
}

.banner .infos .views p {
    font-size: 32px;
    line-height: 64px;
    font-weight: 600;
}

.banner .rank {
    position: relative;
    width: 720px;
    height: 360px;
    background: url(/static/icon/ladder.png) no-repeat center bottom;
}

.banner .rank .item {
    position: absolute;
    text-align: center;
}

.banner .rank .img {
    position: relative;
    width: 130px;
    height: 130px;
    background: #fff;
    border: 6px solid transparent;
    border-radius: 100%;
}

.banner .rank .img::before {
    position: absolute;
    top: -25px;
    left: -35px;
    width: 64px;
    height: 64px;
    content: "";
    background-image: url(/static/icon/crown.png);
    background-repeat: no-repeat;
}

.banner .rank .img img {
    border-radius: 100%;
}

.banner .rank .img a:hover img {
    opacity: 0.9;
}

.banner .rank .item>a {
    display: block;
    height: 36px;
    margin-top: 28px;
    line-height: 36px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.banner .rank .item>p {
    color: #fff;
    font-size: 14px;
    line-height: 28px;
}

.banner .rank .top1 {
    top: 70px;
    left: 284px;
}

.banner .rank .top1 .img {
    border-color: #efb149;
}

.banner .rank .top1 .img::before {
    background-position: 0 0;
}

.banner .rank .top2 {
    top: 100px;
    left: 113px;
}

.banner .rank .top2 .img {
    border-color: #ced5dc;
}

.banner .rank .top2 .img::before {
    background-position: -64px 0;
}

.banner .rank .top3 {
    top: 100px;
    left: 460px;
}

.banner .rank .top3 .img {
    border-color: #ffbe8e;
}

.banner .rank .top3 .img::before {
    background-position: -128px 0;
}

/* #endregion */

/* #region 排行榜 */
.ranking .title {
    padding: 0 20px;
    padding-bottom: 0;
    border-bottom: 0;
}

.ranking .title img {
    width: 37px;
    height: 34px;
}

.ranking .title h2 h1 {
    color: #000;
    font-size: 32px;
    font-weight: 500;
}

.ranking .title span {
    margin-top: auto;
    color: #999;
    font-size: 24px;
    font-weight: 500;
}

.ranking .content {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.ranking .content::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 20px;
    content: '';
    background: linear-gradient(180deg, #FFF8F1 0%, #FFFFFF 100%);
}

.ranking .left {
    width: 640px;
}

.ranking .left .list li {
    height: 174px;
    padding: 1px;
    border-radius: 12px;
}

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

.ranking .left .list li .name {
    position: relative;
    height: 52px;
    padding-left: 66px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
    border-radius: 12px 12px 0 0;
}

.ranking .left .list li .name::before {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 10;
    width: 44px;
    height: 47px;
    content: "";
    background-repeat: no-repeat;
    background-size: 100%;
}

.ranking .left .list .top1 .name {
    background: linear-gradient(270deg, #faddc3 0, #d79861 100%);
}

.ranking .left .list .top1 .name::before {
    background-image: url(/static/icon/top1.png);
}

.ranking .left .list .top2 .name {
    background: linear-gradient(270deg, #dfe5f0 0, #99a6bd 100%);
}

.ranking .left .list .top2 .name::before {
    background-image: url(/static/icon/top2.png);
}

.ranking .left .list .top3 .name {
    background: linear-gradient(270deg, #ffd2aa 0, #f4945b 100%);
}

.ranking .left .list .top3 .name::before {
    background-image: url(/static/icon/top3.png);
}

.ranking .left .list li .info {
    box-sizing: border-box;
    position: relative;
    top: -10px;
    display: flex;
    gap: 24px;
    height: 136px;
    padding: 21px;
    background-image: url(/static/icon/rank-bg.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.ranking .left .list li .info p {
    flex: 1;
    height: 90px;
    color: #666;
    font-size: 15px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ranking .left .list li .img {
    width: 88px;
    height: 88px;
    padding: 4px;
    border: 1px solid #eee;
    border-radius: 12px;
}

.ranking .left .list li .img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.ranking .right {
    width: 652px;
    padding: 0 24px;
    background: linear-gradient(170deg, #f8fafc 0, #ffffff 100%);
    border: 1px solid #eef0f4;
    border-radius: 12px;
}

.ranking .right .list {
    counter-reset: section 3;
}

.ranking .right .list li {
    position: relative;
    padding: 16px 0;
    padding-left: 36px;
    border-bottom: 1px solid #eee;
}

.ranking .right .list li::before {
    position: absolute;
    top: 27px;
    left: 0;
    width: 26px;
    height: 28px;
    counter-increment: section;
    content: counter(section);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    background-image: url(/static/icon/rank-icon.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

.ranking .right .list li>h4 {
    color: #222;
    font-size: 18px;
    line-height: 24px;
}

.ranking .right .list li>p {
    margin-top: 4px;
    color: #999;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* #endregion */

/* #region 推荐 */
.commend {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.commend .title {
    padding-bottom: 0;
    border-bottom: 0;
}

.commend .title h2 {
    color: #000;
    font-size: 32px;
    font-weight: 500;
}

.commend .content {
    display: flex;
    justify-content: space-between;
}

.commend .left {
    width: 540px;
}

.commend .left a {
    display: block;
    font-size: 0;
}

.commend .left .img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 262px;
    border-radius: 8px;
}

.commend .left .img span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 44px;
    height: 20px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    background: #498ce9;
    border-radius: 8px 0 8px 0;
}

.commend .left h3 {
    margin: 10px 0 15px;
    padding-left: 5px;
    font-weight: 700;
    border-left: 6px solid #3375e2;
    font-weight: 600;
    transition: 0.3s;
}

.commend .left h3 a {
    color: #3375e2;
    font-size: 20px;
}

.commend .left a:hover {
    color: #498ce9;
}

.commend .left p {
    margin-top: 10px;
    height: 48px;
    color: #666;
    font-size: 14px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.commend .left>span {
    display: inline-block;
    margin-top: 10px;
    color: #999;
    font-size: 12px;
    line-height: 17px;
}

.commend .right {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 40px;
    width: 800px;
}

.commend .right .list {
    width: 100%;
}

.commend .right .list li {
    position: relative;
    padding-left: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
}

.commend .right .list li>span {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    color: #498ce9;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    border: 1px solid #498ce9;
    border-radius: 2px;
    user-select: none;
}

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

.commend .right .list .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.commend .right .list .flex a {
    display: block;
    width: 70%;
    color: #333;
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: 0.3s;
}

.commend .right .list .flex a:hover {
    color: #498ce9;
}

.commend .right .list .flex span {
    color: #999;
    font-size: 12px;
    line-height: 17px;
}

.commend .right .list li>p {
    margin-top: 10px;
    height: 40px;
    color: #666;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* #endregion */

/* #region 热门城市 */
.hot-city {
    display: flex;
    gap: 30px;
}

.hot-city div {
    flex-shrink: 0;
    min-width: 96px;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.hot-city ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 20px;
}

.hot-city ul a {
    display: block;
    color: #666;
    font-size: 16px;
    transition: .3s;
}

.hot-city ul a:hover {
    color: #3375e2;
}

/* #endregion */

/* #region 省 */
.province {
    margin-top: 30px;
}

.province .title {
    padding: 0;
    border-bottom: 0;
}

.province .table {
    margin-top: 30px;
    width: 100%;
}

.province .table,
.province .table tr,
.province .table td {
    border: 1px solid #ddd;
}

.province .table td:first-child {
    vertical-align: middle;
    width: 50px;
    height: 100%;
    color: #666;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background: #eceff9;
}

.province .table td:nth-child(2) {
    vertical-align: middle;
}

.province ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 10px;
}

.province a {
    color: #666;
    font-size: 14px;
    transition: .3s;
}

.province a:hover {
    color: #3375e2;
}

.province .table table,
.province .table table tr,
.province .table table td {
    border: 0;
}

.province .table table td:first-child {
    padding: 8px 16px;
    color: #333;
    font-size: 18px;
    font-weight: normal;
    background: none;
}

.province .table table td:nth-child(2) {
    padding: 10px 12px;
    border-left: 1px solid #ddd;
}

/* #endregion */

.list .name a {
    color: #ffffff;
}