@charset "gb2312";
/* CSS Document */
   /* 标题文字区域 */
        .video-title {
            flex: 1;
            margin-left: 12px;
            font-size: 16px;
            color: #333;
            line-height: 1.4;
        }
		
		
		
		 /* 顶部用户信息栏 */
        .user-info {
            display: flex;
            align-items: center;
            padding: 12px 5px;
        }

        /* 用户头像 */
        .avatar_sp {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #eee;
            overflow: hidden;
            margin-right: 10px;
        }

        .avatar_sp img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 用户名称和时间 */
        .user-detail {
            flex: 1;
        }

        .username {
            font-size: 16px;
            color: #333;
            font-weight: 500;
            margin-bottom: 2px;
        }

        .publish-time {
            font-size: 12px;
            color: #999;
        }

        /* 更多操作按钮 */
        .more-btn {
            width: 20px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
        }

        .more-btn span {
            display: block;
            width: 4px;
            height: 4px;
            background: #999;
            border-radius: 50%;
            margin: 0 auto;
        }

        /* 视频标题/文案区域 */
        .video-desc {
            padding: 0 5px 10px;
            font-size: 15px;
            color: #333;
            line-height: 1.5;
        }

        /* 话题标签样式 */
        .topic-tag {
            color: #1677ff;
            text-decoration: none;
        }
	/* 电话标签样式 */
        .phone-tag {
            color: #ff3333; /* 红色文字 */
            text-decoration: none;
            margin-left: 5px;
            font-weight: bold;
        }
        .phone-tag i {
            font-style: normal;
            margin-right: 3px;
			background-image: url("/images/dianhua.png")
        }


       .video-item {
        width: 100%;
        padding: 0 0 20px 2px;
        border-bottom: #f4f4f4 solid 10px;
        display: flex;
        justify-content: flex-start;
        cursor: pointer;
    }
    .img-box {
        position: relative;
        width: 66.666%;
        aspect-ratio: 3/4;
    }
    .video-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .play-btn {
        position: absolute;
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        background: rgba(0,0,0,0.6);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        animation: scale 1.2s ease-in-out infinite;
    }
    .play-btn::after {
        content: "";
        width: 0;
        height: 0;
        border-left: 14px solid #fff;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        margin-left: 4px;
    }
    @keyframes scale {
        0%,100% { transform: scale(1); }
        50%    { transform: scale(0.85); }
    }