* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        a {
            text-decoration: none;
            color: inherit;
            outline: none;
            cursor: pointer;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: rgba(8, 35, 50, 1)!important;
            color: #e0e0e0;
            line-height: 1.6;
        }

        .container {
            max-width: 1260px;
            margin: 0 auto;
        }

        .video-section {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            /* margin-top: 69px; */
        }

        .video-container {
            width: 1260px;
            height: 710px;
        }

        .video-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-title {
            font-size: 48px;
            font-weight: bold;
            color: #fff;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            margin-bottom: 20px;
            text-align: center;
        }

        .video-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(0, 0, 0, 0.6);
            padding: 10px 20px;
            border-radius: 30px;
        }

        .play-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(2, 139, 243, 1);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .play-btn:hover {
            background: #0080cc;
            transform: scale(1.1);
        }

        .play-btn::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 12px solid #fff;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            margin-left: 3px;
        }

        .progress-bar {
            width: 300px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            cursor: pointer;
        }

        .progress-fill {
            width: 35%;
            height: 100%;
            background: rgba(2, 139, 243, 1);
            border-radius: 2px;
        }

        .time-display {
            color: #fff;
            font-size: 14px;
        }

        .video-settings {
            display: flex;
            gap: 15px;
            color: #fff;
            font-size: 16px;
        }

        .main-content {
            display: flex;
            gap: 20px;
        }

        .left-column {
            flex: 7;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .right-column {
            flex: 3;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .module {
            background-color: rgba(0, 46, 68, 1);
            border-radius: 8px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .module.no-bg {
            background-color: transparent;
            border: none;
            padding: 0;
        }

        .content-section {
            /* margin-bottom: 20px; */
        }

        .content-section .module-title {
            margin-bottom: 10px;
        }
        .content-section .module-content{
            border-top: 1px solid rgba(37, 91, 117, 1);
            border-bottom: 1px solid rgba(37, 91, 117, 1);
            padding: 20px 0;
        }

        .module-content p {
            text-align: justify;
            color: rgba(255, 255, 255, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 16px;
        }

        .module-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            padding-bottom: 10px;
            /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .module-title::before {
            content: '';
            width: 4px;
            height: 18px;
            background: rgba(2, 139, 243, 1);
            /* border-radius: 2px; */
        }
        .module-title .comment-warning{
            display: flex;
            align-items: center;
            color: rgba(174, 193, 201, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 14px;
            margin-left: auto;
        }
        .module-title .comment-warning span{
            width: 14px;
            height: 14px;
            display: inline-block;
            background: url('../img/png/shaixuan.png') no-repeat center center;
            background-size: cover;
            margin-right: 4px;
        }

        .module-right-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(37, 91, 117, 1);
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }
        .module-right-title-content{
            display: flex;
            align-items: center;
             position: relative;
             gap: 5px;
        }
        .module-right-title-content::after{
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            right: 0;
            height: 3px;
            width: 100%;
            background-color: rgba(2, 139, 243, 1);
        }
        .module-right-title .side-icon1{
            width: 20px;
            height: 20px;
            background: url('../img/png/video-tag.png') no-repeat center center;
            background-size: cover;
        }
        .module-right-title .side-icon2{
            width: 20px;
            height: 20px;
            background: url('../img/png/video-side.png') no-repeat center center;
            background-size: cover;
        }

        .sticky-content {
            margin-bottom: 15px;
        }

        .sticky-badge {
            display: inline-block;
            background: #ff6b6b;
            color: #fff;
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 4px;
            margin-right: 8px;
        }

        .sticky-text {
            color: #b8b8b8;
            font-size: 14px;
            line-height: 1.8;
            text-indent: 2em;
        }

        .article-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .article-item:last-child {
            border-bottom: none;
        }

        .article-image {
            width: 221px;
            height: 144px;
            border-radius: 6px;
            /* object-fit: cover;
            flex-shrink: 0; */
            overflow: hidden;
            cursor: pointer;
            position: relative;
        }
        .article-image img{
            width: 100%;
            height: 100%;
            border-radius: 6px;
            transition: transform 1s;
        }
        .article-image img:hover{
            transform: scale(1.1);
        }
        .article-image .icon_read{
            width: 14px;
            height: 14px;
            background: url('../build/static/eye-221028.png') no-repeat center center;
            background-size: cover;
            display: inline-block;
        }
        .article-image .icon_like{
            width: 14px;
            height: 14px;
            background: url('../build/static/hj2-221028.png') no-repeat center center;
            background-size: cover;
            display: inline-block;
        }

        .article-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .article-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            transition: color 0.3s;
        }

        .article-title:hover {
            color: rgba(2, 139, 243, 1);
            cursor: pointer;
        }

        .article-desc {
            color: rgba(255, 255, 255, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 16px;
            line-height: 173%;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .article-meta {
            display: flex;
            gap: 15px;
            font-size: 12px;
            color: #666;
        }

        .comment-section {
            display: flex;
            gap: 15px;
        }

        .main-content .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(2, 139, 243, 1), #00cc88);
            flex-shrink: 0;
        }

        .comment-input-wrap {
            flex: 1;
        }

        .comment-input {
            flex: 1;
            height: 63px;
            background: rgba(0, 46, 68, 1);
            border-radius: 6px;
            padding: 8px 12px;
            border: none;
            color: rgba(174, 193, 201, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 16px;
            resize: none;
        }

        .comment-input:focus {
            border-color: rgba(2, 139, 243, 1);
        }

        .comment-input::placeholder {
            color: rgba(174, 193, 201, 1);
        }

        .submit-btn {
            width: 110px;
            height: 33px;
            border-radius: 4px;
            background: rgba(2, 139, 243, 1);
            border: none;
            color: #fff;
            font-size: 14px;
            cursor: pointer;
            float: right;
            margin-top: 20px;
        }

        .submit-btn:hover {
            background: #0080cc;
        }

        .video-intro {
            color: #b8b8b8;
            font-size: 14px;
            line-height: 1.8;
        }

        .intro-text {
            margin-bottom: 20px;
            text-indent: 2em;
        }

        .credits {
            margin-top: 20px;
        }

        .credits p {
            margin-bottom: 5px;
        }

        .credits span {
            color: #666;
        }

        .article-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            /* margin-bottom: 8px; */
        }

        .article-time {
            font-size: 12px;
            color: rgba(174, 193, 201, 1);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .article-time .icon_time{
            width: 14px;
            height: 14px;
            background: url('../build/static/video-time-icon.png') no-repeat center center;
            background-size: cover;
            display: inline-block;
        }

        .article-source {
            color: rgba(174, 193, 201, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
        }

        .article-stats {
            display: flex;
            gap: 12px;
            font-size: 12px;
            color: #fff;
            position: absolute;
            bottom: 10px;
            left: 10px;
            width: 100%;
            box-sizing: border-box;
            padding: 5px 10px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 1.58%, rgba(0, 0, 0, 0.6) 100%);
        }
        .article-stats span{
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .avatar-sm {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(2, 139, 243, 1), #00cc88);
        }
        .avatar-sm img{
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        .avatar-xs {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(2, 139, 243, 1), #00cc88);
            flex-shrink: 0;
            cursor: pointer;
        }

        .comment-input-section {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .comment-item {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .comment-item:last-child {
            border-bottom: none;
        }

        .comment-header {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }

        .comment-meta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comment-author {
            color: rgba(255, 255, 255, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 16px;
            cursor: pointer;
        }
        .comment-author:hover {
            color: rgba(2, 139, 243, 1);
        }

        .comment-time {
            color: rgba(174, 193, 201, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 14px;
        }

        .comment-content {
            color: rgba(255, 255, 255, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 16px;
            margin-bottom: 10px;
            padding-left: 42px;
        }

        .comment-actions {
            display: flex;
            padding-left: 42px;
            margin-bottom: 10px;
            justify-content: space-between;
        }
        .like-btn .icon_like{
            width: 20px;
            height: 20px;
            background: url('../img/png/coment-zan1.png') no-repeat center center;
            background-size: cover;
            display: inline-block;
        }
        .like-btn .icon_like2{
            width: 20px;
            height: 20px;
            background: url('../img/png/coment-zan2.png') no-repeat center center;
            background-size: cover;
            display: inline-block;
        }
        .reply-time{
            color: rgba(174, 193, 201, 1);
            font-family: "Alibaba PuHuiTi";
            font-weight: 400;
            font-size: 14px;
            line-height: 125%;
        }

        .like-btn, .reply-btn {
            color: rgba(174, 193, 201, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .like-btn:hover, .reply-btn:hover {
            color: rgba(2, 139, 243, 1);
        }
        .like-btn:hover .icon_like{
            background: url('../img/png/coment-zan2.png') no-repeat center center;
            background-size: cover;
        }   

        .reply-input-wrap {
            display: none;
            gap: 10px;
            padding-left: 42px;
            margin-bottom: 10px;
            align-items: center;
        }

        .reply-input {
            flex: 1;
            height: 36px;
            height: 60px;
            border-radius: 6px;
            background: rgba(0, 46, 68, 1);
            padding: 8px 12px;
            color: rgba(174, 193, 201, 1);
            font-size: 13px;
            outline: none;
            resize: none;
            border:transparent
        }

        .reply-input:focus {
            border-color: rgba(2, 139, 243, 1);
        }
        .reply-btn{
            margin-left: auto;
        }

        .reply-btn-sm {
           width: 82px;
            height: 32px;
            border-radius: 4px;
            background: rgba(2, 139, 243, 1);
            border: none;
            color: rgba(255, 255, 255, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 16px;
            cursor: pointer;
        }

        .nested-replies {
            margin-left: 42px;
        }

        .reply-item {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .reply-item:last-child {
            border-bottom: none;
        }

        .reply-header {
            display: flex;
            gap: 8px;
            align-items: center;
            margin-bottom: 6px;
        }

        .reply-author {
            font-size: 16px;
            color: #fff;
            font-weight: 500;
            font-family: "Microsoft YaHei";
            cursor: pointer;
        }
        .reply-author:hover {
            color: rgba(2, 139, 243, 1);
        }

        .reply-target {
            font-size: 16px;
            color: #666;
        }

        .reply-content {
            font-size: 16px;
            color: #b8b8b8;
            line-height: 1.5;
        }

        .reply-actions {
            display: flex;
            gap: 15px;
            font-size: 12px;
            color: rgba(174, 193, 201, 1);
            align-items: center;
        }
        .search-box {
            position: relative;
        }

        .search-input {
            width: 100%;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 0 45px 0 20px;
            color: #fff;
            font-size: 14px;
            outline: none;
        }

        .search-input:focus {
            border-color: rgba(2, 139, 243, 1);
        }

        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #666;
            font-size: 16px;
            cursor: pointer;
        }

        .category-list, .tag-list {
            list-style: none;
        }

        .category-item, .tag-item {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }

        .category-item:hover, .tag-item:hover {
            color: rgba(2, 139, 243, 1);
            cursor: pointer;
        }

        .category-count, .tag-count {
            color: #666;
            font-size: 12px;
            background: rgba(255, 255, 255, 0.05);
            padding: 2px 8px;
            border-radius: 10px;
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-item {
            border: none;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            font-size: 13px;
        }

        .hot-list {
            list-style: none;
        }

        .hot-item {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .hot-item:last-child {
            border-bottom: none;
        }

        .hot-rank {
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .hot-rank.top {
            background: #ff6b6b;
            color: #fff;
        }

        .hot-info {
            flex: 1;
        }

        .hot-title {
            font-size: 14px;
            color: #fff;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hot-title:hover {
            color: rgba(2, 139, 243, 1);
            cursor: pointer;
        }

        .hot-meta {
            font-size: 12px;
            color: #666;
        }

        .hot-image {
            width: 80px;
            height: 60px;
            border-radius: 4px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .topic-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .topic-tag {
            padding: 3px 10px;
            border-radius: 42px;
            background: rgba(0, 58, 84, 1);
            font-size: 14px;
            color: rgba(174, 193, 201, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            cursor: pointer;
            border: 1px solid transparent;
        }

        .topic-tag:hover {
            border: 1px solid rgba(37, 91, 117, 1);
            background: rgba(0, 58, 84, 1);
            color: #fff;
        }

        .category-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .category-tag {
            padding: 6px 12px;
            background: rgba(0, 168, 255, 0.15);
            border-radius: 4px;
            font-size: 13px;
            color: rgba(2, 139, 243, 1);
            cursor: pointer;
            transition: all 0.3s;
        }

        .category-tag:hover {
            background: rgba(0, 168, 255, 0.3);
        }

        .video-collection {
            position: relative;
            padding-top: 10px;
            max-height: 500px;
            overflow-y: auto;
            padding-right: 30px;
        }
        /* 滚动条整体 */
        .video-collection::-webkit-scrollbar {
            width: 7px;
        }

        /* 滚动条轨道 */
        .video-collection::-webkit-scrollbar-track {
            background: transparent;
            border-radius: 3px;
             margin: 10px 0;
        }

        /* 滚动条滑块 */
        .video-collection::-webkit-scrollbar-thumb {
            background: rgba(174, 193, 201, 1);
            border-radius: 3px;
        }

        .video-collection::-webkit-scrollbar-thumb:hover {
            background: rgba(174, 193, 201, 1);
        }

        .collection-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            cursor: pointer;
            transition: background 0.3s;
            position: relative;
        }

        /* .collection-item:hover {
            background: rgba(255, 255, 255, 0.03);
        } */

        .collection-item.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            background: rgba(2, 139, 243, 1);
            border-radius: 50%;
        }

        .collection-item .video-title {
            color: rgba(255, 255, 255, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 16px;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 0px;
            text-align: left;
        }
        .collection-item .video-title:hover{
            color: rgba(2, 139, 243, 1);
        }
        .collection-item .video-duration {
            color: rgba(174, 193, 201, 1);
            font-family: "Alibaba PuHuiTi";
            font-weight: 400;
            font-size: 16px;
            flex-shrink: 0;
        }
        .jiaobiao{
            position: relative;
            padding: 30px 0px 30px 30px;
        }
        .jiaobiao .xilie-box{
            margin-right: 30px;
            border-bottom: 1px solid rgba(37, 91, 117, 1);
        }
        .video-jiaobiao{
            position: absolute;
            top: 0;
            right: 0;
            width: 54px;
            height: 54px;
            background: url('../img/png/video-jiaobiao.png') no-repeat center center;
            background-size: cover;
        }

        .more-videos {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .more-video-item {
            display: flex;
            gap: 12px;
            /* cursor: pointer; */
            transition: opacity 0.3s;
        }

        /* .more-video-item:hover {
            opacity: 0.8;
        } */

        .video-thumb {
            width: 210px;
            height: 123px;
            border-radius: 4px;
            object-fit: cover;
            flex-shrink: 0;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        .video-thumb img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 1s;
        }
        .video-thumb img:hover{
            transform: scale(1.1);
        }
        .video-thumb .video-time-box{
            position: absolute;
            bottom: 0px;
            right: 0px;
            color: rgba(255, 255, 255, 1);
            font-family: "Alibaba PuHuiTi";
            font-weight: 400;
            font-size: 14px;
            background: linear-gradient(180deg, rgba(27, 27, 27, 0) 8.58%, rgba(0, 0, 0, 0.6) 100%);
            width: 100%;
            text-align: right;
            box-sizing: border-box;
            padding: 5px 10px;
        }

        .video-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-width: 0;
        }

        .video-title-sm {
            color: rgba(255, 255, 255, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            cursor: pointer;
        }
        .video-title-sm:hover{
            color: rgba(2, 139, 243, 1);
        }

        .video-author {
            color: rgba(174, 193, 201, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 14px;
            margin-bottom: 4px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .video-author span{
            cursor: pointer;
        }
        .video-author span:hover{
            color: rgba(2, 139, 243, 1);
        }

        .video-stats {
            color: rgba(174, 193, 201, 1);
            font-family: "Microsoft YaHei";
            font-weight: 400;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        .video-stats .video-icon-right{
            width: 14px;
            height: 14px;
            margin-right: 3px;
            display: inline-block;
            background: url('../img/png/video-icon-right.png') no-repeat center center;
            background-size: cover;
        }

        .right-sidebar {
            position: sticky;
            top: 20px;
            max-width: 391px;
            margin-bottom: 30px;
        }

        .scroll-top {
            position: fixed;
            right: 30px;
            bottom: 30px;
            width: 48px;
            height: 48px;
            background: rgba(0, 46, 68, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: rgba(2, 139, 243, 1);
            border-color: rgba(2, 139, 243, 1);
        }

        .scroll-top::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 10px solid #fff;
        }

        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }

            .video-title {
                font-size: 28px;
            }

            .progress-bar {
                width: 150px;
            }
        }

/* 右侧区域 */
.vit-right .st_right{
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 300px;
  justify-content: flex-end;
}
.vit-right .st_right .sp1{
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 14px;
}
.vit-right .st_right .sp2{
  font-size: 14px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  line-height: 14px;  
  padding: 0px 8px;
  margin-left: 50px;
}
.vit-right .st_right .sp2 a:hover{
  color:#2784bd;
}


.vit-right .st_right .sp2 img{
  border-radius: 50%;
    position: absolute;
    margin-top: -13px;
    margin-left: -50px;
}
.vit-right .st_right .sp3{
  color: #fff;
  font-family: "Microsoft YaHei";
  font-weight: 400;
  font-size: 16px;  
  line-height: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.vit-right .st_right .sp3 a{
  color: #fff;
  font-family: "Microsoft YaHei";
  font-weight: 400;
  font-size: 16px;  
  line-height: 16px;

}
.vit-right .st_right .sp3 a:hover{
  color: #028BF3;
}
.vit-right .st_right .sp3 .sp3_avatar{ 
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.vit-right .st_right .sp4{
  border-left:1px solid #fff;
  /* margin-left: 20px; */
  padding-left: 10px;
  padding-right: 0px;
  cursor: pointer;
  font-size: 14px;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #fff;
    line-height: 14px;
}
.vit-right .st_right .sp4 .icon_wb{
  background:url(/public/island/img/png/xfwb1.png) center no-repeat;
  background-size: cover;
  width: 26px;
  height: 26px;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
}
.vit-right .st_right .sp4 .icon_wb:hover{
  background:url(/public/island/img/png/xfwb2.png) center no-repeat;
}
.vit-right .st_right .sp4 .icon_share{
  background:url(/kpd/img/article_share3.png) center no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
  margin-right: 8px;
}
.vit-right .st_right .sp4 .icon_share:hover{
  background:url(/kpd/img/article_share2.png) center no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
}
.vit-right .st_right .sp5{
  border-left:1px solid #fff;
  padding-left: 10px;
  padding-right: 0px;
  cursor: pointer;
}
.vit-right .st_right .sp5 .icon_wx{
  background:url(/public/island/img/png/xfwx1.png) center no-repeat;
  width: 20px;
  height: 20px;
  background-size: cover;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
}
.vit-right .st_right .sp5 .icon_wx:hover{
  background:url(/public/island/img/png/xfwx2.png) center no-repeat;
}
.vit-right .st_right .sp5 .icon_shareimg{
  background:url(/public/island/img/png/shareimg1.png) center no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  background-size: cover;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
}
.vit-right .st_right .sp5:hover .icon_shareimg{
  background:url(/public/island/img/png/shareimg2.png) center no-repeat;
  background-size: cover;
}
.vit-right .st_right .sp5 .hb{
  color:#fff;
  margin-left:5px;
  font-size: 14px;
}
.vit-right .st_right .sp5:hover .hb{
  color:#2784bd;
  margin-left:5px;
}
.vit-right .st_right .sp6{
  border-left:1px solid #fff;
  padding-left: 10px;
  padding-right: 0px;
  font-size: 14px;
font-family: Microsoft YaHei-Regular, Microsoft YaHei;
font-weight: 400;
color: #fff;
line-height: 14px;
cursor: pointer;
}
.vit-right .st_right .sp6 .icon_star{
  background:url(/kpd/img/xfstar3.png) center no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
  margin-right: 5px;
}
.vit-right .st_right .sp6 .icon_star2{
  background:url(/kpd/img/xfstar2.png) center no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
  margin-right: 5px;
}
.vit-right .st_right .sp6 .icon_star:hover{
  background:url(/kpd/img/xfstar2.png) center no-repeat;
  background-size: 20px 20px;
}
.vit-right .st_right .sp6:hover span{
  color:#2784bd;
}
.vit-right .st_right .sp7{
  border-left:1px solid #fff;
  padding-left: 10px;
  padding-right: 0px;
  font-size: 14px;
font-family: Microsoft YaHei-Regular, Microsoft YaHei;
font-weight: 400;
color: #fff;
line-height: 14px;
cursor: pointer;
}
.vit-right .st_right .sp7 .icon_huojian{
  background:url(/kpd/img/png/huojian_icn4.png) center no-repeat;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
  margin-right: 5px;
}
.vit-right .st_right .sp7 .icon_huojian2{
  background:url(/kpd/img/png/huojian_icn3.png) center no-repeat;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
  margin-right: 8px;
}
.vit-right .st_right .sp7 .icon_huojian:hover{
  background:url(/kpd/img/png/huojian_icn2.png) center no-repeat;
  background-size: 20px 20px;
}
.vit-right .st_right .sp7:hover span{
  color:#2784bd;
}
.vit-right .st_right .sp8{
  border-left:1px solid #fff;
  padding-left: 15px;
  padding-right: 0px;
  font-size: 14px;
font-family: Microsoft YaHei-Regular, Microsoft YaHei;
font-weight: 400;
color: #fff;
line-height: 14px;
cursor: pointer;
}
.vit-right .st_right .sp8 .icon_pinglun{
  background:url(/kpd/img/xfpl3.png) center no-repeat;
  width: 20px;
  height: 20px;
  background-size: cover;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
  margin-right: 8px;
}
.vit-right .st_right .sp8 .icon_pinglun2{
  background:url(/kpd/img/xfpl2.png) center no-repeat;
  width: 20px;
  height: 20px;
  background-size: cover;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
  margin-right: 8px;
}
.vit-right .st_right .sp8 .icon_pinglun:hover{
  background:url(/kpd/img/xfpl2.png) center no-repeat;
  background-size: cover;
}

.vit-right .st_right .sp9{
  border-left:1px solid #fff;
  padding-left: 15px;
}
.vit-right .st_right .sp9 .icon_listen{
  background:url(/kpd/img/png/head_listen1.png) center no-repeat;
  width: 20px;
  height: 20px;
  background-size: cover;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
  margin-right: 0px;
}
.vit-right .st_right .sp9 .icon_listen2{
  background:url(/kpd/img/png/head_listen2.png) center no-repeat;
  width: 20px;
  height: 20px;
  background-size: cover;
  display: inline-block;
  margin-bottom: 3px;
  vertical-align: middle;
  margin-right: 0px;
}
.vit-right .st_right .sp9 .icon_listen:hover{
  background:url(/kpd/img/png/head_listen2.png) center no-repeat;
  background-size: cover;
}
.vit-right .st_right .tougao_btn{
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgb(228, 86, 73);
    border-radius: 6px;
    padding: 5px 10px;
    cursor: pointer;
}
.vit-right .st_right .tougao_btn:hover{
    background: #ec7063;
}
.vit-right .st_right .tougao_btn .tb_icon{
    width: 25px;
    height: 16px;
    background: url(/kpd/img/png/head_tg.png) no-repeat center;
    background-size: cover;
}
.vit-right .st_right .tougao_btn .tb_text{
    color: rgba(255, 255, 255, 1);
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: 16px;
}

/* 阅读进度条 */
.reading-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, #2784bd, #028BF3);
  width: 0%;
  transition: width 0.1s ease-out;
}
.common_right_share_box .crsb_box .crsb_dv{

}
.common_right_share_box .crsb_box .crsb_dv1{
    width: 50px;
    height: 42px;
    background: rgba(0, 46, 68, 1);
    display: inline-block;
    cursor: pointer;
    margin-bottom: -3px;
    border-bottom: 0px;
}
.common_right_share_box .crsb_box .crsb_dv1 .crsb_dv1_icn1{
  width: 24px;
  height: 24px;
  background: url('/kpd/img/png/common_phone3.png') no-repeat center;
  background-size: cover;
  margin: 9px auto 0px;
}
.common_right_share_box .crsb_box .crsb_dv1 .crsb_dv1_icn2{
  width: 24px;
  height: 24px;
  background: url('/kpd/img/png/common_wb3.png') no-repeat center;
  background-size: cover;
  margin: 9px auto 0px;
}
.common_right_share_box .crsb_box .crsb_dv1 .crsb_dv1_icn3{
  width: 24px;
  height: 24px;
  background: url('/kpd/img/png/common_wx3.png') no-repeat center;
  background-size: cover;
  margin: 9px auto 0px;
}

.common_right_share_box .crsb_box .crsb_dv1 .crsb_dv1_icn5{
  width: 24px;
  height: 24px;
  background: url('/kpd/img/png/common_jinggao3.png') no-repeat center;
  background-size: cover;
  margin: 9px auto 0px;
}
.common_right_share_box .crsb_box .crsb_dv1 .crsb_dv1_icn6{
  width: 24px;
  height: 24px;
  background: url('/kpd/img/png/common_back3.png') no-repeat center;
  background-size: cover;
  margin: 9px auto 0px;
}
.common_right_share_box .crsb_box .crsb_dv1 .crsb_dv1_icn7{
  width: 24px;
  height: 24px;
  background: url('/kpd/img/png/common_b3.png') no-repeat center;
  background-size: cover;
  margin: 9px auto 0px;
}
.common_right_share_box .crsb_box .crsb_dv1 .crsb_dv1_icn8{
  width: 24px;
  height: 24px;
  background: url('/kpd/img/png/common_dy3.png') no-repeat center;
  background-size: cover;
  margin: 9px auto 0px;
}
.comment-bar-fixed {
            position: fixed;
            bottom: 0;
            z-index: 999;
            background: #fff;
            border-top: 1px solid rgba(37, 91, 117, 1);
            padding: 16px 20px;
            display: none;
            background: rgba(8, 35, 50, 1);
        }
        .comment-bar-fixed .comment-form {
            max-width: 800px;
            margin: 0 auto;
        }
/*分享弹出框*/
.appreciate-box-share{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}
.appreciate-box-share .sharebx{
    width:380px;
    min-height:0;
    background:#fff;
    border:1px solid rgba(230,230,230,1);
    box-shadow:0 1px 7px 0 rgba(153,152,146,0.24);
    border-radius:3px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -282px;
    margin-left: -191px;
}
.appreciate-box-share .sharebx .n1{
    width: auto;
    height: 46px;
    background: white;
    border-bottom:1px solid rgba(230,230,230,1);
    padding: 0 24px;
    position: relative;
}
.appreciate-box-share .sharebx .n1 .n1-l{
    display: inline-block;
    height: 46px;
    position: absolute;
    top: 0;
    left: 20px;
    line-height: 46px;
}
.appreciate-box-share .sharebx .n1 .n1-l span{
    height: 44px;
    line-height: 44px;
    float: left;
    font-size:14px;
    font-weight:400;
    color: #464646;
}
.appreciate-box-share .sharebx .n1 .n1-l span .s_icn{
  width: 14px;
  height: 14px;
  margin-right: 5px;
  background: url('/public/island/img/png/s_icn.png') no-repeat center;
  background-size: cover;
  display: inline-block;
  margin-bottom: -2px;
}
.appreciate-box-share .sharebx .n1 .n1-r{
    display: inline-block;
    height: 46px;
    position: absolute;
    right: 0;
}
.appreciate-box-share .sharebx .n1 .n1-r .close{
    width: 46px;
    height: 46px;
    float: right;
}
.appreciate-box-share .sharebx .n1 .n1-r .close a{
    display: block;
    width: 46px;
    height: 46px;
    background: url(/public/fiction/capterimg/png/v7.png) center no-repeat;
    background-size: cover;
}
.appreciate-box-share .sharebx .n2{
    padding:30px 50px;
    height: 150px;
    /* width: 280px; */
    margin-top: 0px;
    box-shadow: 0 0 0px;
}
.appreciate-box-share .sharebx .n2 .code1{
    float: left;
    display: inline-block;
}
.appreciate-box-share .sharebx .n2 .code1 .dv1{
    width: 100px;
    height: 100px;
}
.appreciate-box-share .sharebx .n2 .code1 .dv2{
    font-size: 13px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #464646;
    line-height: 17px;
    text-align: center;
    margin-top: 20px;
}
.appreciate-box-share .sharebx .n2 .code2{
    float: right;
    display: inline-block;
}
.appreciate-box-share .sharebx .n2 .code2 .dv1{
    width: 100px;
    height: 100px;
}
.appreciate-box-share .sharebx .n2 .code2 .dv2{
    font-size: 13px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #464646;
    line-height: 17px;
    text-align: center;
    margin-top: 20px;
}
.appreciate-box-share .sharebx .n3{
    padding:0px 50px 20px;
    display: inline-flex;
    margin-top: 50px;
    width: 100%;
}
.appreciate-box-share .sharebx .n3 .dv1{
    display: inline-block;
    
}
.appreciate-box-share .sharebx .n3 .dv1 a .pic{
    background: url('/public/fiction/capterimg/png/cp_url.png') no-repeat center;
    background-size: cover;
    width: 42px;
    height: 42px;
    margin-left: 3px;
    margin-bottom: 8px;
}
.appreciate-box-share .sharebx .n3 .dv1 a div{
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 17px;
}
.appreciate-box-share .sharebx .n3 .dv2{
    margin-left: 64px;
    display: inline-block;
}
.appreciate-box-share .sharebx .n3 .dv2 a .pic{
    background: url('/public/fiction/capterimg/png/wbpic.png') no-repeat center;
    background-size: cover;
    width: 42px;
    height: 42px;
    margin-left: 4px;
    margin-bottom: 8px;
}
.appreciate-box-share .sharebx .n3 .dv2 a div{
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 17px;
}
.appreciate-box-share .sharebx .n3 .dv3{
    margin-left: 63px;
    display: inline-block;
}
.appreciate-box-share .sharebx .n3 .dv3 a .pic{
    background: url('/public/fiction/capterimg/png/qqpic.png') no-repeat center;
    background-size: cover;
    width: 42px;
    height: 42px;
    margin-left: 3px;
    margin-bottom: 8px;
}
.appreciate-box-share .sharebx .n3 .dv3 a div{
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #3F3F3F;
    line-height: 17px;
}
.Chapter-reporting-box{
    width: 100%;
    height: 100%;
    /*background: rgba(0,0,0,0.5);*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
}
.Chapter-reporting-box .Chapter-reporting{
    width:522px;
    height:680px;
    background:rgba(255,255,255,1);
    border:1px solid rgba(230,230,230,1);
    box-shadow:0px 1px 7px 0px rgba(153,152,146,0.24);
    border-radius:3px;
    position: absolute;
    top: 46%;
    left: 50%;
    margin-top: -236px;
    margin-left: -261px;
    overflow: hidden;
}

.Chapter-reporting-box .Chapter-reporting .n1{
    width: auto;
    height: 46px;
    padding: 0 20px;
    position: relative;
}
.Chapter-reporting-box .Chapter-reporting .n1 .n1-l{
    display: inline-block;
    height: 46px;
    position: absolute;
    top: 0;
    left: 24px;
    line-height: 46px;
}
.Chapter-reporting-box .Chapter-reporting .n1 .n1-l span{
    font-size:18px;
    font-weight:400;
    color:rgba(51,51,51,1);
}

.Chapter-reporting-box .Chapter-reporting .n1 .n1-r{
    display: inline-block;
    height: 46px;
    position: absolute;
    right: 0;
}
.Chapter-reporting-box .Chapter-reporting .n1 .n1-r .close{
    width: 46px;
    height: 46px;
    float: right;
}
.Chapter-reporting-box .Chapter-reporting .n1 .n1-r .close a{
    display: block;
    width: 46px;
    height: 46px;
    background: url(/public/fiction/capterimg/png/v7.png) center no-repeat;
    background-size: cover;
}

.Chapter-reporting-box .Chapter-reporting .n1 .n1-r .Account-number{
    width: 100%;
    height: 46px;
}

.Chapter-reporting-box .Chapter-reporting .n2{
    width: auto;
    padding: 0 34px;
    min-height: 0;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 0px;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v1{
    width: 100%;
    height: 40px;
    text-align: center;
    position: relative;
    display: block;
    padding: 0;
    margin-bottom: 10px;
    border: 0;
}

.Chapter-reporting-box .Chapter-reporting .n2 .v1 span{
    font-size:20px;
    font-family:Microsoft YaHei;
    font-weight:400;
    color:rgba(51,51,51,1);
}

.Chapter-reporting-box .Chapter-reporting .n2 .v2{
    width: 100%;
    height: 34px;
    padding-top: 15px;
    line-height: 34px;
    border-bottom: 1px solid #e5e5e5;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v2 span{
    font-size:16px;
    font-family:Microsoft YaHei;
    font-weight:400;
    color:rgba(51,51,51,1);
}

.Chapter-reporting-box .Chapter-reporting .n2 .v3{
    width: 100%;
    height: 37px;
    padding-top: 14px;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v3 span{
    display: inline-block;
    height: 37px;
    line-height: 37px;
    float: left;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v3 span.sp1{
    font-size:16px;
    font-family:Microsoft YaHei;
    font-weight:bold;
    color:rgba(51,51,51,1);
}
.Chapter-reporting-box .Chapter-reporting .n2 .v3 span.sp2{
    font-size:16px;
    font-family:Microsoft YaHei;
    font-weight:bold;
    color: #2784bd;
    margin-left: 4px;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v3 span.sp3{
    width: 14px;
}

.Chapter-reporting-box .Chapter-reporting .n2 .v3 span.sp3 > a{
    display: block;
    width: 14px;
    height: 14px;
    background: url(/public/fiction/capterimg/png/v16.png) center no-repeat;
    background-size: cover;
    margin: 11px 10px 12px;
}

.Chapter-reporting-box .Chapter-reporting .n2 .v4{
    width: 100%;
    min-height: 0;
    overflow: hidden;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v4 .li{
    width: 140px;
    height: 37px;
    margin-left: 10px;
    float: left;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v4 .li label{
    display: inline-block;
    height: 37px;
    line-height: 37px;
    padding-left: 24px;
    position: relative;

    font-size:16px;
    font-family:Microsoft YaHei;
    font-weight:400;
    color:rgba(51,51,51,1);
    cursor: pointer;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v4 .li label > i{
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border:1px solid rgba(218,218,218,1);
    position: absolute;
    top: 11px;
    left: 0;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v4 .li label > i.show{
    background: url(/public/fiction/capterimg/png/v17.png) center no-repeat;
    background-size: cover;
}

.Chapter-reporting-box .Chapter-reporting .n2 .v4 .li label > input{
    display: none;
}


.Chapter-reporting-box .Chapter-reporting .n2 .v5{
    width: 100%;
    height: 40px;
    margin-top: 40px;
    text-align: center;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v5 > a{
    display: block;
    width:150px;
    height:40px;
    line-height: 40px;
    text-align: center;
    background:rgba(228,86,73,1);
    border-radius:2px;

    font-size:15px;
    font-family:Microsoft YaHei;
    font-weight:400;
    color:rgba(255,254,254,1);
    margin: 0 auto;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v5 > a:hover{
    background: rgb(209, 79, 67);
}

.Chapter-reporting-box .Chapter-reporting .n2 .v6{
    width: 100%;
    margin-top: 20px;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v6 .v6tit{
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v6 .v6txt{
    width: 100%;
    height: 100px;
    margin-top: 10px;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v6 .v6txt textarea{
    width: 443px;
    height: 100px;
    padding: 10px;
    box-sizing: border-box;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v6 .v6ipt{
    width: 100%;
    height: 30px;
    margin-top: 10px;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v6 .v6ipt span{
   font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333; 
    display: inline-block;
    width: 60px;
}
.Chapter-reporting-box .Chapter-reporting .n2 .v6 .v6ipt input{
   line-height: 30px;
   height: 30px;
   width: 385px;
   box-sizing: border-box;
   padding-left: 10px;
}
.navbar-bottom{
    background:rgb(0, 46, 68);
}
.navbar-bottom .bottom_content{
    color:#fff;
}
.navbar-bottom .bottom_content .content-left .menu li a{
    color:#fff;
}
.navbar-bottom .bottom_content .search-input-blank .search-input{
    background-color: rgb(0, 46, 68);
    color: rgb(174, 193, 201);
}
.navbar-bottom .bottom_content .search-input-blank .search-input::placeholder{
    color: rgb(174, 193, 201);
}
.navbar-bottom .bottom_content .search-input-blank .search-blank{
    background-color: rgb(0, 46, 68);
}
.navbar-bottom .bottom_content .search-input-blank .recent_search li{
    color: #fff!important;
}
.navbar-bottom .bottom_content .search-input-blank .search-submit{
    color: #fff;
}
.navbar-bottom .bottom_content .search-input-blank .recent_search i{
    color: rgb(174, 193, 201);
}
.navbar-bottom .bottom_content .search-input-blank .hide-search{
    background: url(/kpd/img/png/close.png) no-repeat center;
    background-size: cover;
}
.navbar-bottom .bottom_content .search-input-blank{
    border: 1px solid rgb(174, 193, 201);

}
.navbar-bottom .bottom_content .content-left .home{
    background: url(/kpd/img/png/menu.png) no-repeat center;
    background-size: cover;
}
.navbar-bottom .bottom_content .content-right .icon-fangdajing{
    color: #fff;
}
/* ==================== 视频信息头部 ==================== */
.video-info-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 0;
    margin-bottom: 20px;
    width: 1260px;
    margin: 0 auto;
    align-items: center;
}

/* 左侧：标题 + 信息 */
.video-info-title .vit-left {
    min-width: 0;
    width: 50%;  
    overflow: hidden;
    flex-wrap: wrap;
    white-space: nowrap;

}

.video-info-title .vit-title {
  color: rgba(255, 255, 255, 1);
  font-family: "Microsoft YaHei";
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  word-break: break-all;
}

.video-info-title .vit-info {
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(174, 193, 201, 1);
  font-family: "Microsoft YaHei";
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
}

.video-info-title .vit-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.video-info-title .vit-info .icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.video-info-title .vit-info .icon_play {
    background-image: url('../img/png/icon_vt_play.png');
}

.video-info-title .vit-info .icon_comment {
    background-image: url('../img/png/icon_vt_comment.png');
}

/* 右侧：创作者信息 */
.video-info-title .vit-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-size: 14px;
    color: #666;
}

.video-info-title .vit-right > span:first-child {
    color: rgba(255, 255, 255, 1);
  font-family: "Microsoft YaHei";
  font-weight: 400;
  font-size: 16px;
}
.video-info-title .vit-right a{
   color: rgba(255, 255, 255, 1);
  font-family: "Microsoft YaHei";
  font-weight: 400;
  font-size: 16px; 
}
.video-info-title .vit-right a:hover{
    color: #028BF3;
}

.video-info-title .vit-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.video-info-title .vit-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}