body,
html {
    font-family: MicrosoftYaHei-Bold;
}

body {
    overflow-y: scroll;
    scrollbar-base-color: transparent;
    scrollbar-darkshadow-color: transparent;
    scrollbar-highlight-color: transparent;
    scrollbar-face-color: transparent;
}



.liveTop {
    width: 100%;
    justify-content: space-between;
    display: flex;
    padding-bottom: 10px;
}

.liveTop .botation-box {
    /* width: 810px;
  height: 455px;*/

    height: 487px;
    width: 1247px;
}


.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide a {
    width: 810px;
    height: 455px;
    border-radius: 5px;
    overflow: hidden;
}

.swiper-slide a>img {
    width: 100%;
    height: 100%;
}

.liveTop nav {
    width: 360px;
    height: 455px;
    background-color: #000000;
    border-radius: 10px;
    opacity: 0.75;
}

.liveBox .liveNav {
    height: 80px;
    background: #ffffff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    /* position: sticky;
 top: 100px;
 z-index: 90; */
}

.liveBox .liveNav .middle {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.liveBox .liveNav .middle .navbox {
    display: flex;
    height: 100%;
    align-items: center;
}

.liveBox .liveNav .middle .navbox li {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-right: 40px;
    cursor: pointer;
}

.liveBox .liveNav .middle .navbox li:last-child {
    margin-right: 0px;
}

.liveBox .liveNav .middle .navbox .select {
    color: #000000;
    font-weight: bold;
    position: relative;
}

.liveBox .liveNav .middle .navbox .select::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    background: #0099AD;
    top: 46px;
    left: 0;
}

.liveBox .liveNav .middle .input {
    height: 40px;
    padding: 0 11px;
    background: #f7f7f7;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.liveBox .liveNav .middle .input input {
    width: 170px;
    margin-right: 10px;
    border: none;
    background: #f7f7f7;
    color: #000000;
    outline: none;
    transition: all .1s ease;

}

.liveBox .liveNav .middle .input .liveInputno {
    width: 0px;
    margin: 0;
}

.liveBox .liveNav .middle .input input::-webkit-input-placeholder {
    color: #999999;
}

.liveBox .liveNav .middle .input input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999999;
}

.liveBox .liveNav .middle .input input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999999;
}

.liveBox .liveNav .middle .input input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #999999;
}

.liveBox .liveNav .middle .input .search {
    width: 18px;
    height: 18px;
    background: url("../../v2/img/search2.png") no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}

.liveBox .liveItem {
    width: 1200px;
    margin: 0 auto;
    margin-top: 10px;
}

.liveBox .liveItem .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.liveBox .liveItem .title h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 32px;
    color: #000000;
    padding-left: 8px;
    position: relative;
}

.liveBox .liveItem .title h3::before {
    position: absolute;
    content: '';
    width: 4px;
    height: 22px;
    background: #0099AD;
    border-radius: 2px;
    left: 0;
    top: 6px;
}

.liveBox .liveItem .title>a {
    color: #333333;
    font-size: 16px;
}

.liveBox .liveItem .title>a:hover {
    color: #0099AD;
}

.liveBox .liveItem .liveList {
    display: flex;
    flex-wrap: wrap;
}

.liveBox .liveItem .liveList .item {
    width: 285px;
    height: 228px;
    margin-bottom: 30px;
    position: relative;
    margin-right: 20px;
    border-radius: 10px;
    display: block;
}

.liveBox .liveItem .liveList .item .box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s ease;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}

.liveBox .liveItem .liveList .item:hover .box {
    top: -10px;
}

.liveBox .liveItem .liveList .item img {
    width: 285px;
    height: 160px;
    border-radius: 10px;
}

.liveBox .liveItem .liveList .item h4 {
    padding: 0 10px;
    margin-top: 7px;
    font-size: 16px;
    font-family: Source Han sans-serif;
    font-weight: bold;
    line-height: 22px;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.liveBox .liveItem .liveList .item .information {
    padding: 0 10px;
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.liveBox .liveItem .liveList .item .information>article {
    display: flex;
    align-items: center;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
}

.liveBox .liveItem .liveList .item .information>.name>span {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.liveBox .liveItem .liveList .item .information article::before {
    display: block;
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.liveBox .liveItem .liveList .item .information .name::before {
    background: url("../../v2/img/liveName.png") no-repeat;
    background-size: 100% 100%;
}

.liveBox .liveItem .liveList .item .information .money,
.liveBox .liveItem .liveList .item .information .jf,
.liveBox .liveItem .liveList .item .information .free {
    height: 24px;
    background: #fff1ec;
    padding: 0 6px 0 4px;
    border-radius: 12px;
    margin-left: auto;
}

.liveBox .liveItem .liveList .item .information .money::before {
    background: url("../../v2/img/liveMoney.png") no-repeat;
    background-size: 100% 100%;
}

.liveBox .liveItem .liveList .item .information .jf::before {
    background: url("../../v2/img/liveJf.png") no-repeat;
    background-size: 100% 100%;
}

.liveBox .liveItem .liveList .item .information .jf {
    background: #ffeff4;
    margin-left: 6px !important;
}

.liveBox .liveItem .liveList .item .information .free {
    background: #fbfbfb;
    font-size: 12px;
    line-height: 12px;
}

.liveBox .liveItem .liveList .item .information .free::before {
    background: url("../../v2/img/liveFree.png") no-repeat;
    background-size: 100% 100%;
}

.liveBox .liveItem .liveList .item .look {
    position: absolute;
    padding: 0 6px 0 4px;
    height: 24px;
    background: #00000030;
    border-radius: 12px;
    left: 10px;
    top: 10px;
    z-index: 100;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: Bahnschrift;
    font-weight: 400;
    color: #ffffff;
}

.liveBox .liveItem .liveList .item .look::before {
    display: block;
    content: '';
    width: 16px;
    height: 16px;
    background: url("../../v2/img/liveLook.png") no-repeat;
    background-size: 100% 100%;
    margin-right: 4px;
}

.liveBox .liveItem .liveList .item:nth-child(4n) {
    margin-right: 0px;
}