/* 热门基调 */
.emhot {
    width: 470px;
    height: 565px;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
}
.emhot * {
    box-sizing: border-box;
}
.emhot.bg1 {
    background: linear-gradient(to right bottom, #987fe4, #f0c6d2);
}
.emhot .title {
    font-family: "SimHei", "黑体", sans-serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 5px;
}
.emhot .titile1 {
    font-family: "SimHei", "黑体", sans-serif;
    color: #8a7cb8;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 5px;
}
.emhot .subtitle {
    font-family: "SimHei", "黑体", sans-serif;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 1px;
}

.emhot .flex {
    display: flex;
    align-items: center;
}

.emhot .flex.between {
    justify-content: space-between;
}

.emhot .flex.end {
    justify-content: flex-end;
}

.emhot .flex.center {
    justify-content: center;
}

.emhot .board {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    font-size: 14px;
    width: 470px;
    color: #fff;
}
.emhot .board-header {
    padding: 10px 0;
    height: 65px;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    cursor: default;
    position: relative;
}
.emhot .board-footer {
    padding: 10px;
    height: 50px;
}
.emhot .list-type {
    margin-left: 10px;
}
.emhot .board-list {
    width: 100%;
    height: 450px;
    background-color: #fff;
    color: initial;
}
.emhot .board-item {
    width: 100%;
    height: 45px;
    line-height: 45px;
    padding: 0 17px;
    font-size: 14px;
    color: #000;
    text-align: left;
    overflow: hidden;
}
.emhot .board-item .item-content {
    width: 100%;
    height: 44px;
    border-bottom: 1px solid #eee;
}

.emhot .board-item .item-index {
    width: 20px;
}

.emhot .board-item.top-three .item-index {
    font-size: 15px;
    font-style: italic;
    font-weight: 600;
}
.emhot .board-item.top-three-1 .item-index {
    color: #f94e4c;
}
.emhot .board-item.top-three-2 .item-index {
    color: #ff910f;
}
.emhot .board-item.top-three-3 .item-index {
    color: #ffbe00;
}

.emhot .board-item .item-copy {
    width: 14px;
    height: 14px;
    margin: 0 3px;
    cursor: pointer;
    transition: all 0.3s;
    background-image: url("./img/copy.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.emhot .board-item .item-copy:hover {
    background-image: url("./img/copy_hover.png");
}

.emhot .board-item .item-music {
    max-width: 260px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.emhot .board-item .item-icon {
    width: 72px;
    margin-left: 5px;
}
.emhot .board-item .item-icon .i {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.emhot .board-item .item-icon .i.icon1 {
    background-image: url("./img/1.png");
}
.emhot .board-item .item-icon .i.icon2 {
    background-image: url("./img/1.png");
}
.emhot .board-item .item-icon .i.icon3 {
    background-image: url("./img/1.png");
}

.emhot .item-em {
    width: 68px;
    text-align: right;
}
/* 简单弹框 */
#simpleModal {
    display: none;
    /* 默认隐藏 */
    position: fixed;
    top: 10%;
    left: 50%;
    border-radius: 3px;
    transform: translate(-50%, -50%);
    background-color: rgb(0, 0, 0);
    padding: 5px 20px;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    z-index: 1000;
    color: #fff;
}
.emhot .close-btn {
    position: absolute;
    width: 28px;
    height: 28px;
    cursor: pointer;
    right: 10px;
    top: 10px;
}
.emhot .close-btn img {
    width: 100%;
    height: 100%;
}
.emhot .emhot-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.emhot .btn {
    letter-spacing: 2px;
    padding: 4px 12px 4px 14px;
    cursor: pointer;
    border-radius: 4px;
    background-color: #7452ff;
    transition: all 0.3s;
}
.emhot .btn.active {
    color: #7452ff;
    background-color: #fff;
}
