.bratopimg {
    width: 95%;
    margin: 3.75rem auto 0.625rem;
    box-sizing: border-box;
}

.bravidInfo {
    width: 100%;
    height: 20rem;
    box-sizing: border-box;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
}

    .bravidInfo video {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 14rem;
        border-radius: 0.75rem;
        z-index: 0;
        background: #dfdfdf;
    }
    .bravidInfo .btopimg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 14rem;
        border-radius: 0.75rem;
        z-index: 0;
        background: #dfdfdf;
        object-fit: cover;
    }

.bravidInfoNav {
    width: 100%;
    height: 2rem;
    padding: 0 0.5rem;
    box-sizing: border-box;
    position: absolute;
    top: 1rem;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .bravidInfoNav img {
        width: 1rem;
        height: 1rem;
    }

.bravidInfoNavList {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE 和 Edge */
    scrollbar-width: none; /* 火狐 */
}

.bravidInfoNavItem {
    flex-shrink: 0;
    border-radius: 4rem;
    background: #fff;
    padding: 0.1rem 0.5rem;
    color: #333;
}

    .bravidInfoNavItem.active {
        background: #3aa0ff;
        font-weight: 500;
        color: #ffffff;
    }

.bravidpara {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0.5rem;
    padding: 0 0.5rem;
    box-sizing: border-box;
    z-index: 69;
}

.bravidparaimgbtn {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.bravidparaimg {
    display: flex;
    gap: 0.25rem;
}
.bravidparaimg span {
	width:2.2rem;
	height:2.2rem;
	background:#fff;
	border-radius:0.25rem;
	text-align:center;
	line-height:2rem;
}
    .bravidparaimg img {
        max-width: 1.8rem;
        max-height: 1.8rem;

        object-fit: cover;
    }

    .bravidparaimg div > p:first-of-type {
        color: #fff;
        font-weight: bold;
        font-size: 1.2rem;
        transform: translateY(0.04rem);
    }

    .bravidparaimg div > p:last-of-type {
        color: #fff;
        font-weight: bold;
        transform: translateY(0.05rem);
        font-size: 0.75rem;
        font-weight: normal;
    }

.bravidparabtn {
    display: flex;
    gap: 0.5rem;
}

    .bravidparabtn div {
        height: 1.6rem;
        font-size: 0.875rem;
        padding: 0 0.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fbc200;
        border-radius: 0.25rem;
        color: #333;
        white-space: nowrap;
        border-top-left-radius: 0.8rem;
    }
    .bravidparabtn a {
        height: 1.6rem;
        font-size: 0.875rem;
        padding: 0 0.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fbc200;
        border-radius: 0.25rem;
        color: #333;
        white-space: nowrap;
        border-top-right-radius: 0.8rem;
    }

    .bravidparabtn div img, .bravidparabtn a img {
        width: 1rem;
        height: 1rem;
    }

.bravidparatxt {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    margin-top: 0.375rem;
    gap: 0.25rem;
}

.bravidparatxtItem {
    font-size: 0.75rem;
    color: #fff;
}

.bravidparashow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10rem;
    z-index: 1;
    background: linear-gradient( to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8) 100% );
}

.bratopSmla {
    width: 100%;
    padding: 1rem 0.3rem 0;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
	justify-content: center;
}

.bratopSmlaItem {
    font-size: 0.75rem;
    padding: 0.1rem 0.93rem;
    color: #333;
    background: linear-gradient(to right, #4be6cf, #d4f8ae);
    /* 如果需要兼容旧版浏览器，可添加前缀 */
    background: -webkit-linear-gradient(left, #4be6cf, #d4f8ae);
    background: -moz-linear-gradient(left, #4be6cf, #d4f8ae);
    border-radius: 1rem 0.3rem 1rem 0.3rem;
	margin-right:0.36rem;
}

.text-container {
    width: 100%;
    margin: 1.25rem auto;
    padding: 0.75rem;
    background: #f8f8f8;
    border-radius: 0.5rem;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', sans-serif;
}

.content-box {
    color: #333;
    font-size: 0.875rem;
    line-height: 1.5;
    max-height: 4.5em; /* 3行高度（1.5行高 * 3） */
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    position: relative;
}

    .content-box p {
        font-size: 0.875rem;
    }

    .content-box::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1.25rem;
        /* background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1) 75%
  ); */
    }

.expanded {
    max-height: 62.5rem; /* 足够大的展开高度 */
}

    .expanded::after {
        display: none;
    }

.toggle-btn {
    margin: 0.35rem auto 0;
    width: 5rem;
    border-radius: 0.5rem;
    border: 0.0625rem solid #dfdfdf;
    color: #3aa0fe;
    padding: 0.3125rem 0.75rem;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-align: center;
}
.ArtTitle {
    width: 100%;
    margin: 0 auto 2rem;
    padding-top: 2.2rem;
}

    .ArtTitle p {
        text-align: center;
        font-weight: bold;
        color: #333;
        font-size: 1.4rem;
    }

    .ArtTitle div {
        width: 3rem;
        height: 0.25rem;
        border-radius: 0.5rem;
        margin: 0 auto;
    }
.MorPro {
    width: 95%;
    margin: 0 auto;
    background-color: #f8f8f8;
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-sizing: border-box;
}

.MorProNav {
    width: 100%;
    margin: 0.5rem 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.MorProNavItem {
    color: #333;
    flex: 1;
    padding: 0.3rem 0.2rem;
    line-height: 1.1rem;
    background: #fff;
    box-shadow: 0 0 0.5rem rgb(0, 0, 0, 0.1);
    border-radius: 0.25rem;
}

    .MorProNavItem.active {
        color: #fff;
        background: #3aa0ff;
    }

.MorProNavItemName {
    font-size: 0.875rem;
    text-align: center;
}

.MorProNavItemNum {
    font-size: 0.75rem;
    text-align: center;
}

.MorProTerList {
    width: 100%;
}

.MorProTerItem {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 0.0625rem dashed #dbdbdb;
}

    .MorProTerItem img {
        width: 9.75rem;
        height: 7.4rem;
        border-radius: 0.25rem;
        object-fit: cover;
    }

.MorProTerInfo {
    color: #999;
    width: 12.75rem;
}

    .MorProTerInfo h3 {
        color: #333;
        font-size: 1.0rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0.25rem;
    }

.MorProTerRow {
    font-size: 0.75rem;
    display: -webkit-box; /* 旧版 WebKit 兼容 */
    -webkit-box-orient: vertical; /* 文本方向为垂直排列 */
    -webkit-line-clamp: 1; /* 限制显示的行数 */
    overflow: hidden; /* 隐藏溢出内容 */
}

.MorProTerBtn {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

    .MorProTerBtn a {
        font-size: 0.825rem;
        color: #fff;
        background: #ff6600;
        padding: 0.1rem 0.5rem;
        border-radius: 0.25rem;
    }

.MorProTerRowMulLin {
    font-size: 0.75rem;
    display: -webkit-box; /* 旧版 WebKit 兼容 */
    -webkit-box-orient: vertical; /* 文本方向为垂直排列 */
    -webkit-line-clamp: 4; /* 限制显示的行数 */
    overflow: hidden; /* 隐藏溢出内容 */
}

.MorProTerPar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

    .MorProTerPar span {
        color: #333;
        font-size: 0.75rem;
    }

.MorProBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3aa0fe;
    margin: 1rem 0;
}

    .MorProBtn a {
        font-size: 0.875rem;
        padding: 0.2rem 0.5rem;
        border-radius: 0.5rem;
        border: 0.0625rem solid #dedede;
        color: #3aa0fe;
    }

.textContainer {
    /* line-height: 1.5; */
    font-size: 0.875rem;
    color: #666;
    position: relative;
}
.textContainer img{
    max-width:100%;
}

.truncated {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.expand-btn {
    font-size: 0.875rem;
    color: #007bff;
    background: linear-gradient( 90deg, #f8f8f8 0%, #f8f8f8 100% );
    padding-left: 1rem;
    position: absolute;
    right: 0;
    bottom: 0;
}

.MorProTerTxtItem {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 0.0625rem dashed #dbdbdb;
}

.MorProTerTxtName {
    color: #333;
    font-size: 1.0rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.Traitiref {
    width: 95%;
    margin: 0.625rem auto;
    box-sizing: border-box;
}

.Traitiref-Ti {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 0.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #1974d0;
    margin: 0.4rem 0;
}

.Traitiref-Ti-L {
    font-size: 1.3rem;
}

.Traitiref-Ti img {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.2rem;
}

.Traitiref-Ti-R {
    font-size: 1rem;
}

    .Traitiref-Ti-R span, .Traitiref-Ti-R a {
        color: #666;
        font-size: 0.8rem;
        font-weight: 400;
    }
    .Traitiref-Ti-R a {
        color: #3aa0fe;
    }

.Traitiref-Item {
    width: 100%;
    border-radius: 0.5rem;
    padding: 0.8rem 0.3rem;
    background: #f8f8f8;
    box-sizing: border-box;
    display: flex;
    gap: 0.4rem;
}

.Traitiref-num {
    position: relative;
    width: 2.2rem;
}

    .Traitiref-num img {
        width: 2.2rem;
        height: 2.2rem;
    }

    .Traitiref-num span {
        position: absolute;
        left: 1.1rem;
        top: 0.9rem;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 0.94rem;
    }

.Traitiref-info {
    flex: 1;
}

.Traitiref-xzbtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 0 0.3125rem rgb(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 0.3rem 0.4rem;
}

.Traitiref-jrbt {
    color: #1974d0 !important;
    display: flex;
    align-items: center;
}

    .Traitiref-jrbt span {
        font-size: 1.1rem;
    }

.Traitiref-xzan {
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0.1rem solid #3aa0fe;
}

    .Traitiref-xzan img {
        width: 1rem;
        height: 1rem;
        transition: transform 0.3s ease;
    }

.rotated {
    transform: rotateZ(180deg);
}

.Traitiref-tiem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0.4rem 0 0;
}

    .Traitiref-tiem div {
        color: #666;
        display: flex;
        align-items: center;
    }

    .Traitiref-tiem img {
        width: 1rem;
        height: 1rem;
        margin-right: 0.2rem;
    }

.Traitiref-zdbf {
    display: none;
    box-sizing: border-box;
    margin-right: 0.3rem;
    overflow: hidden;
}

    .Traitiref-zdbf div {
        color: #666;
        display: flex;
        align-items: center;
    }

    .Traitiref-zdbf img {
        width: 1rem;
        height: 1rem;
        margin-right: 0.2rem;
    }

    .Traitiref-zdbf p {
        color: #333;
        font-size: 0.9rem;
        margin-top: 0.3rem;
    }

.Traitiref-cont {
    width: 100%;
    border-radius: 0.5rem;
    padding: 0.3rem;
    background: #f8f8f8;
    box-sizing: border-box;
}

.Traitiref-para p {
    color: #333;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.Traitiref-para ol {
    margin-left: 2rem;
    color: #333;
}

.Traitiref-para li {
    font-size: 0.9rem;
}

.TraitirefList {
    width: 100%;
    padding-bottom: 4rem;
}

.TraitirefList-Item {
    box-sizing: border-box;
    box-shadow: 0 0 0.3125rem rgb(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.3rem;
    margin: 0.625rem 0;
}

.TraitirefList-user {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

    .TraitirefList-user > img {
        width: 1.6rem;
        height: 1.6rem;
        border-radius: 50%;
    }

.TraitirefList-user-call {
    color: #333;
    font-size: 1rem;
    font-weight: bold;
}

.TraitirefList-user-jingpai {
    display: flex;
    align-items: center;
    background: #ffbc1a;
    color: #fff;
    padding: 0.1rem 0.3rem;
    border-radius: 1rem;
    font-size: 0.8rem;
}

    .TraitirefList-user-jingpai img {
        width: 1rem;
        height: 1rem;
    }

.TraitirefList-cont {
    display: flex;
    align-items: flex-start;
    gap: 0.2rem;
    margin: 0.625rem 0;
}

.TraitirefList-article {
    font-size: 0.9rem;
    color: #666;
    display: -webkit-box; /* 旧版 WebKit 兼容 */
    -webkit-box-orient: vertical; /* 文本方向为垂直排列 */
    -webkit-line-clamp: 5; /* 限制显示的行数 */
    overflow: hidden; /* 隐藏溢出内容 */
}

.TraitirefList-figure {
    flex-shrink: 0;
    width: 6.4rem;
    height: 6.4rem;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

    .TraitirefList-figure img {
        width: 6.4rem;
        height: 6.4rem;
        object-fit: cover;
    }

    .TraitirefList-figure div {
        position: absolute;
        bottom: 0;
        right: 0;
        background: #33333355;
        color: #fff;
        font-size: 0.8rem;
        padding: 0.2rem;
        border-top-left-radius: 0.25rem;
    }
/* 遮罩层样式（优化版） */
.modal-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 999;
    pointer-events: none; /* 默认禁止点击 */
}

/* 内容区域样式（添加关闭动画） */
.modal-content {
    position: fixed;
    left: 2%;
    bottom: 0;
    width: 95%;
    height: 66.67vh;
    background: #fff;
    border-radius: 0.75rem 0.75rem 0 0;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 1.25rem;
    box-sizing: border-box;
    box-shadow: 0 0 0.5rem rgb(0, 0, 0, 0.4);
}

/* 激活状态 */
.modal-mask.active {
    opacity: 1;
    pointer-events: auto; /* 激活时允许点击 */
    display: block;
}

.modal-content.active {
    transform: translateY(0);
}

/* 关闭按钮样式 */
.close-btn {
    position: absolute;
    top: 0.625rem;
    right: 1.25rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* 滚动锁定优化 */
body.modal-open {
    overflow: hidden;
    /*position: fixed;
    width: 100%;
    height: 100%;*/
}

.modal-title {
    position: absolute;
    top: 0.625rem;
    left: 50%;
    font-size: 1.2rem;
    transform: translateX(-50%);
    color: #333;
}

.modaList {
    width: 100%;
    height: 98%;
    margin-top: 8%;
    box-sizing: border-box;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE 和 Edge */
    scrollbar-width: none; /* 火狐 */
}

    .modaList::-webkit-scrollbar {
        display: none; /* WebKit */
    }

.moda-Item {
    padding: 0.625rem 0;
    border-top: 0.0625rem dashed #dbdbdb;
}

.moda-title {
    color: #333;
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.moda-info {
    display: flex;
    line-height: 1.5;
    font-size: 0.80rem;
}

.moda-infoL {
    width: 78%;
}

    .moda-infoL img {
        width: 0.675rem;
        height: 0.675rem;
        margin-right: 0.2rem;
        margin-top: -0.2rem;
    }

.moda-infoItem {
    color: #666666;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.moda-infoItem-span{
    font-size:0;
}
    .moda-infoItem-span label {
        font-size: 0.85rem;
    }

    .moda-infoItem-span span {
        font-size: 0.69rem;
        color: #333;
        border-radius: 0.25rem;
        padding: 0 0.1875rem;
        margin-right: 0.2rem;
        background: linear-gradient(to right, #4de6ce, #d3f8ae);
        /* 如果需要兼容旧版浏览器，可添加前缀 */
        background: -webkit-linear-gradient(left, #4de6ce, #d3f8ae);
        background: -moz-linear-gradient(left, #4de6ce, #d3f8ae);
    }
    .moda-infoItem-span span:last-child {
        margin-right: 0;
    }

.moda-infoR {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.moda-infoR-btn {
    flex: 1;
}

    .moda-infoR-btn div:nth-of-type(1) {
        text-align: center;
        color: #333;
        font-size: 0.8rem;
        white-space: nowrap;
    }

        .moda-infoR-btn div:nth-of-type(1) span {
            font-size: 1.1rem;
            color: #ff5454;
        }

    .moda-infoR-btn div:nth-of-type(2), .moda-infoR-btn a {
        padding: 0.125rem 0.1875rem;
        border-radius: 0.25rem;
        text-align: center;
        background: #fbc200;
        color: #333;
        display: inline-block;
        font-size: 0.8rem;
		padding:0.3rem 0.66rem;
    }
.dnavFixed {
    position: fixed;
    top: 1.6rem;
    left: 0;
    background: #fff;
    z-index: 8888;
}
.nopros {
    padding: 0.625rem 0;
    border-top: 0.0625rem dashed #dbdbdb;
    text-align: center;
    color: #999;
    line-height: 5rem;
}
.nocomm {
    line-height: 5rem;
    text-align: center;
    color: #999;
}