html {
    font-size: 13px;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body {
    background: #fafafa;
    background-size: 600px 600px;
    color: #323232;
    font-family: '微软雅黑', tahoma, arial, 'Hiragino Sans GB', \5b8b\4f53, sans-serif;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color .2s ease-out;
}

.loading-anim {
    margin-top: 200px;
    position: relative;
    width: 200px;
    height: 200px;
    /*margin: auto;*/
    perspective: 800px;
    transform-style: preserve-3d;
    transform: translateZ(-100px) rotateY(-90deg) rotateX(90deg) rotateZ(90deg) scale(0.5);
    opacity: 0;
    transition: all .2s ease-out;
}

.loading-anim .circle {
    width: 100%;
    height: 100%;
    animation: spin 5s linear infinite;
}

.loading-anim .border {
    position: absolute;
    border-radius: 50%;
    border: 3px solid #81ee75;
}

.loading-anim .out {
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: spin 2s linear reverse infinite;
}

.loading-anim .in {
    top: 18%;
    left: 18%;
    width: 64%;
    height: 64%;
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: spin 2s linear infinite;
}

.loading-anim .mid {
    top: 40%;
    left: 40%;
    width: 20%;
    height: 20%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: spin 1s linear infinite;
}

.loading .loading-anim {
    transform: translateZ(0) rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1);
    opacity: 1;
}

.loading .loading-overlay {
    background: rgba(255, 255, 255, 0.5);
}

.dot {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0e9948;
    animation: jitter 5s ease-in-out infinite, fade-in-out 5s linear infinite;
}

.dot:nth-child(1) {
    top: 90px;
    left: 180px;
    animation-delay: 0s;
}

.dot:nth-child(2) {
    top: 135px;
    left: 168px;
    animation-delay: 0.41667s;
}

.dot:nth-child(3) {
    top: 168px;
    left: 135px;
    animation-delay: 0.83333s;
}

.dot:nth-child(4) {
    top: 180px;
    left: 90px;
    animation-delay: 1.25s;
}

.dot:nth-child(5) {
    top: 168px;
    left: 45px;
    animation-delay: 1.66667s;
}

.dot:nth-child(6) {
    top: 135px;
    left: 12px;
    animation-delay: 2.08333s;
}

.dot:nth-child(7) {
    top: 90px;
    left: 0px;
    animation-delay: 2.5s;
}

.dot:nth-child(8) {
    top: 45px;
    left: 12px;
    animation-delay: 2.91667s;
}

.dot:nth-child(9) {
    top: 12px;
    left: 45px;
    animation-delay: 3.33333s;
}

.dot:nth-child(10) {
    top: 0px;
    left: 90px;
    animation-delay: 3.75s;
}

.dot:nth-child(11) {
    top: 12px;
    left: 135px;
    animation-delay: 4.16667s;
}

.dot:nth-child(12) {
    top: 45px;
    left: 168px;
    animation-delay: 4.58333s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes jitter {
    0% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.7, 0.7);
    }

    50% {
        transform: scale(1, 1);
    }

    75% {
        transform: scale(1.3, 1.3);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes fade-in-out {
    0% {
        opacity: 0.8;
    }

    25% {
        opacity: 0.2;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

[v-cloak] {
    display: none;
}

.custom-indicator {
    position: absolute;
    right: 1px;
    bottom: 1px;
    padding: 2px 5px;
    color: #fff;
    font-size: 13px;
    line-height: 13px;
    width: 30px;
    text-align: center;
    border-radius: 50px 0 0 50px;
    background: rgba(7, 7, 7, 0.3);
}

.product-title {
    margin: 15px 0 0 10px;
    font-size: 20px;
    font-weight: bold;
}

.product-slogan {
    font-size: 15px;
    letter-spacing: 1px;
    margin: 8px 0 5px 0;
    padding: 5px 10px;
    background-color: #2c9dc2;
    color: #ffffff;
    /*margin: 10px;*/
    max-width: 80%;
    display: inline-block;
    border-radius: 5px
}


.tab-box {
    height: 80px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    background-color: #e6e6e6;
    overflow-x: scroll;
    width: 100%;
}

.tab-box::-webkit-scrollbar {
    display: none;
}

.tab-item {
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid #cccccc;
}

.tab-item-text {
    width: 73px;
    margin-top: 5px;
}

.tab-item-act {
    background-color: #A4C747;
    color: #ffffff;
}

.content-title-box {
    text-align: center;
    display: flex;
    width: 100%;
    height: 30px;
    align-items: center;
    flex-direction: row;
    padding: 10px 0;
    border-bottom: #cccccc 1px solid;
}

.content-title-img {
    width: 30px;
    height: 30px;
    margin-left: 20px;
}

.content-title-icon {
    margin-right: 20px;
    width: 20px;
    height: 20px;
    float: right;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chanping-content-item {
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
}

.chanping-content-item-type {
    color: #aaaaaa;
    width: 120px;
    min-width: 120px;
}

.chanping-content-item-content {
    word-break: break-all;
    line-height: 200%;
    letter-spacing: 1px;
    padding: 0 5px 0 5px;

}

.chanping-content-item-content2 {
    line-height: 200%;
}

.flex-row {
    display: flex;
    align-items: center;
    flex-direction: row;
    object-fit: cover;
}

.flex-img {
    width: 31%;
    height: 31vw;
    padding: 2px;
    object-fit: cover;
}

.video-name {
    text-align: center;
    margin-top: 10px;
    width: 100%;
    /*假设，5个字符的宽度是50*/
    white-space: nowrap;
    /*禁止换bai行*/
    text-overflow: ellipsis;
    /*文本超出隐藏du*/
    -o-text-overflow: ellipsis;
    /*跟上面一样，只是为zhi了兼容其他浏览器*/
    overflow: hidden;
    /*隐藏，跟text-overflow配合使用*/
}

.flex-video {
    width: 100%;
    height: 31vw;
    padding: 2px;
}

.line {
    height: 1px;
    width: 100%;
    background-color: #dcdcdc;
    margin-top: 10px;
}

.font-bold {
    font-weight: bold;
    font-size: 15px;
    margin-left: 5px;
    color: #00abab;
}

.block-box {
    display: flex;
    border-radius: 10px;
    align-items: center;
    flex-direction: row;
    padding: 10px 0;
    margin: 15px 0 15px 0;
    background-color: #eafbf4;
    justify-content: start;
    height: 60px;
}

.data-cont-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 10px;
}

.data-cont-item>div {
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: start;
}

.data-cont-item>div>span {
    margin-left: 5px;
}


.pic-box>img {
    width: 15px;
    height: 15px;
}

#tempChartCont {
    width: 100%;
    height: 250px;
    font-size: 8px;
    margin-left: -40px;
}

canvas {
    font-size: 12px;
}

.adimg-container {
    text-align: center;
    width: 100%;
    background: #eaeaea;
}

.adimg-container img {
    width: 95%;
    vertical-align: middle;
    padding-bottom: 10px;
}

.title-left {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 5px;
}

.title-right {
    padding-right: 5px;
    text-align: right;
}