.row2 {
    width: 100%;
    height: 565px;
    padding: 0 25px;
}
.emhot {
    width: 470px;
    height: 565px;
    border-radius: 10px;
    position: absolute;
}
.row2 .article {
    width: 930px;
    height: 100%;
}

.copyright {
    width: 100%;
    height: 145px;
    padding: 0px 25px;
}
.partener-cotaioner {
    width: 100%;
    height: 246px;
}
.color1 {
    color: #000;
}
/* 热门基调 */
.board {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    font-size: 14px;
    width: 470px;
    color: #fff;
}
.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;
}
.board-footer {
    padding: 10px;
    height: 50px;
}
.list-type {
    margin-left: 10px;
}
.board-list {
    width: 100%;
    height: 450px;
    background-color: #fff;
    color: initial;
}
.board-item {
    width: 100%;
    height: 45px;
    line-height: 45px;
    padding: 0 17px;
    font-size: 14px;
    color: #000;
    text-align: left;
    overflow: hidden;
}
.board-item .item-content {
    width: 100%;
    height: 44px;
    border-bottom: 1px solid #eee;
}

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

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

.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%;
}
.board-item .item-copy:hover {
    background-image: url("./img/copy_hover.png");
}

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

.board-item .item-icon {
    width: 72px;
    margin-left: 5px;
}

.item-em {
    width: 54px;
    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;
}
.close-btn {
    position: absolute;
    width: 28px;
    height: 28px;
    cursor: pointer;
    right: 10px;
    top: 10px;
}
.close-btn img {
    width: 100%;
    height: 100%;
}
.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;
}
.btn {
    letter-spacing: 2px;
    padding: 4px 12px 4px 14px;
    cursor: pointer;
    border-radius: 4px;
    background-color: #7452ff;
    transition: all 0.3s;
}
.btn.active {
    color: #7452ff;
    background-color: #fff;
}
/* 文章列表 */
.article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.article-item {
    width: 456px;
    height: 130px;
    border-radius: 10px;
    padding: 5px;
    background-color: #eae7ee;
}
.article-item .article-img {
    width: 185px;
    height: 100%;
    background-size: 100% auto;
    background-position: center;
    border-radius: 10px;
}
.article-item .article-content {
    color: #000;
    width: 250px;
}
.article-item .article-title {
    height: 20px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bolder;
    margin-bottom: 5px;
}
.article-item .article-desc {
    height: 80px;
    text-indent: 2em;
    font-size: 12px;
}
.article-item .article-btn {
    height: 20px;
    text-align: right;
    font-size: 14px;
    color: #8a7cb8;
    cursor: pointer;
    float: right;
}

/* 版权申明 */
.copyright-container {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 15px 60px;
    background-color: #eae7ee;
}
.copyright-text {
    font-size: 18px;
    font-weight: bolder;
    color: #5c5c5c;
    letter-spacing: 3px;
    text-indent: 2em;
    line-height: 24px;
    margin-top: 15px;
}
/* 合作伙伴 */
@keyframes moveList {
    0% {
        transform: translate3d(-33.33%, 0, 0);
    }
    to {
        transform: translateZ(0);
    }
}
@keyframes moveReverList {
    0% {
        transform: translateZ(0);
    }
    to {
        transform: translate3d(-33.33%, 0, 0);
    }
}
.partener-list-wrapper {
    width: 100%;
    display: flex;
    margin-top: 10px;
    overflow: hidden;
}
.partener-list {
    flex-wrap: nowrap;
    flex-shrink: 0;
    animation: moveList 30s linear infinite;
}
.partener-list2 {
    animation: moveReverList 30s linear infinite;
}
.partener-item {
    height: 70px;
    border-radius: 10px;
    background-color: #edeaf2;
    padding: 0 10px;
    margin-right: 24px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    color: #000;
    font-size: 20px;
}
.partener-item img {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    margin-right: 10px;
}

/* 搜索框 */
.searchBoxWrapper {
    padding-top: 50px;
    padding-bottom: 100px;
    width: 600px;
    margin: 0 auto;
}
.searchBoxWrapper .searchBox {
    font-size: 18px;
    height: 50px;
}
.searchBoxWrapper .searchBox .logo {
    width: 60px;
    margin-right: 30px;
}
.searchBoxWrapper .searchBox input {
    width: 600px;
    height: 50px;
    background-color: #fff;
    padding: 5px 50px 5px 20px;
    outline: none;
    font-size: 18px;
    background-image: url("./img/emSearch/search.png");
    background-repeat: no-repeat;
    background-position: 98% center;
    background-size: 22px;
    border: 3px solid #4e6ef2;
    border-radius: 10px;
}
.searchBoxWrapper .searchBox input:focus {
    outline: none;
}
.searchBoxWrapper .searchBtn {
    width: 600px;
    height: 50px;
    color: #fff;
    background-color: #4e6ef2;
    cursor: pointer;
    user-select: none;
    padding: 0 30px;
    border-radius: 0px 10px 10px 0px;
}

.searchBoxWrapper .resultBox {
    min-height: 50px;
    width: 100%;
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
}
.searchBoxWrapper .result-item {
    height: 50px;
    line-height: 50px;
}
.searchBoxWrapper .result-item .music-name {
    width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.searchBoxWrapper .result-item .em {
    width: 200px;
    text-align: right;
    color: #3385ff;
}
