/*
 * Copyright (c) 2022.  Liuhongbin All rights reserved.
 * @domain http://dkyx.cc
 * @author liuhongbin <514660094@qq.com>
 */

.dk-row {
    max-width: 750px;
    overflow: hidden;
}

/**diy*/
.diy-fixed {
    position: fixed;
    z-index: 99
}

.diy-fixed.right-top {
    right: 0;
    top: 0;
}

.diy-fixed.right-down {
    right: 0;
    bottom: 0;
}

.diy-fixed.left-top {
    left: 0;
    top: 0;
}

.diy-fixed.left-down {
    left: 0;
    bottom: 0;
}

.diy-fixed.center-down {
    bottom: 0;
    width: 100%;
    right: 0;
    margin: 0 auto;
    left: 0;
}

.diy-fixed.center-top {
    top: 0;
    bottom: 0;
    width: 100%;
    right: 0;
    margin: 0 auto;
    left: 0;
}

.common-btn .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.common-btn .f-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.common-btn .f-btn .f-btn-content {
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.common-btn .f-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}


.dk-music {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dk-music .dk-music-icon {
    background: #fff;
    border-radius: 100%;
    border: 2px solid #fff;
    font-weight: 800;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    color: #f56c6c;
}

.dk-music .dk-music-img {
    border-radius: 100%;
}

.dk-music .changeRight {
    animation-name: changeRightRotate;
}

.dk-music .changeLeft {
    animation-name: changeLeftRotate;
}

.dk-title {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.dk-title .title-left {
    display: flex;
    align-items: center;
}


.dk-image.dk-image-default {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.dk-image.dk-image-slide {
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
}
.dk-image.dk-image-slide .dk-image-content {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
}
.dk-image .dk-image-content {
    overflow: hidden;
    position: relative;
    font-size: 0;
}
.dk-image .dk-image-content:last-child {
    margin: 0 !important;
}
.dk-image .dk-image-content .text-type-footer {
    text-align: center;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
}
.dk-image .dk-image-content .text-type-default {
    color: #fff;
    text-align: center;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.75)));
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
    bottom: 0;
    height: 48px;
    line-height: 48px;
    width: 100%;
}

.van-divider{
    margin: 0;
}

.bullet-notice-swipe {
    height: 30px;
    line-height: 30px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border-radius: 100px;
}
.bullet-notice-swipe .bullet-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 20px;
    margin: 5px;
    font-size: 12px;
}
.bullet-notice-swipe .bullet-content img {
    width: 20px;
    height: 20px;
    border-radius: 100%;
}
.bullet-notice-swipe .bullet-content span {
    padding: 0 5px;
}
.dk-tabbar .van-tabbar-item--active, .dk-tabbar .van-tabbar {
    background: none;
}
@keyframes changeRightRotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes changeLeftRotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(-180deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}
