/* font */
@font-face {
    font-family: "msyh";
    src: url('../font/msyh.ttf') format('truetype');
}
@font-face {
    font-family: "msyhbd";
    src: url('../font/msyhbd.ttf') format('truetype');
}
@font-face {
    font-family: "msyhl";
    src: url('../font/msyhl.ttf') format('truetype');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "msyh";
}

img {
    object-fit: cover;
}

a {
    text-decoration: none;
    color: #000000;
}

li {
    list-style: none;
}
body{
    overflow-x: hidden;
}
/* header */
.header1{
    width: 100%;
    height: 35px;
    background: #282E3B;
}
.header1 > div{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header1 > div > span{
    color: #AEB4BF;
    font-size: 12px;
    line-height: 14px;
    position: relative;
    padding-left: 10px;
}
.header1 > div > span::before{
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #3399FB;
    border-left: 2px solid #3399FB;
}
.header1_nav{
    display: flex;
    align-items: center;
}
.header1_nav > a{
    color: #AEB4BF;
    font-size: 12px;
    line-height: 14px;
    padding: 0 15px;
    border-right: 1px solid #626469;
}
.header1_login{
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.header1_login img{
    width: 12px;
    height: auto;
}
.header1_login span{
    font-size: 12px;
    color: #AEB4BF;
    line-height: 14px;
}
.header1_main_nav{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px;
    background-color: #FFA63E;
    gap: 6px;
}
.header1_main_nav img{
    width: 14px;
    height: auto;
}
.header1_main_nav span{
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
}
.header2{
    width: 100%;
    background: #ffffff;
}
.header2 > div{
    width: 1200px;
    padding: 20px 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header2_logo{
    display: flex;
    gap: 10px;
}
.header2_logo img{
    width: 64px;
    height: auto;
}
.header2_logo > div{
    display: flex;
    flex-direction: column;
}
.header2_logo > div > span:first-of-type{
    font-size: 44px;
    line-height: 44px;
    color: #333333;
    font-family: "msyhbd";
}
.header2_logo > div > span:last-of-type{
    font-size: 18px;
    color: #565656;
    line-height: 20px;
}
.header2_nav{
    display: flex;
    align-items: center;
    gap: 50px;
}
.header2_navs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 70px;
}
.header2_navs > img{
    width: 46px;
    height: 46px;
    object-fit: contain;
}
.header2_navs > span{
    font-size: 18px;
    color: #333333;
    line-height: 24px;
    height: 24px;
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}
.header2_navs:hover > span{
    color: #3399FA;
}
.header3{
    width: 100%;
    height: 50px;
    background: #3399FB;
    overflow: hidden;
}
.header3 > div{
    width: 1200px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.header3 > div > a{
    font-size: 16px;
    color: #FFFFFF;
    line-height: 50px;
    height: 50px;
    text-align: center;
    display: block;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.header3 > div > a:hover,
.header3 > div > a.active{
    background: #1E8BF3;
}

/* main */
.indexmain{
    width: 1200px;
    margin: 0 auto;
}
.indexmain1{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.indexmain1 > a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 10px;
    position: relative;
    padding-left: 5px;
}
.indexmain1 > a:first-of-type{
    padding-left: 0;
    justify-content: left;
    flex: 0 0 auto;
    padding-right: 30px;
}
.indexmain1 > a:last-of-type{
    justify-content: right;
    flex: 0 0 auto;
    padding-left: 30px;
}
.indexmain1 > a:first-of-type::before{
    display: none;
}
.indexmain1 > a::before{
    position: absolute;
    content: "";
    left: 0;
    top: 2px;
    width: 1px;
    height: 15px;
    background-color: #272727;
    transform: rotate(15deg);
}
.indexmain1 > a img{
    width: 18px;
    height: auto;
    filter: grayscale(100%);
    opacity: .8;
}
.indexmain1 > a span{
    font-size: 16px;
    color: #030303;
    line-height: 20px;
    font-family: "msyhbd";
}
.indexmain1 > a:hover img,
.indexmain1 > a.active img{
    filter: grayscale(0%);
    opacity: 1;
}
.indexmain1 > a:hover span,
.indexmain1 > a.active span{
    color: #3399FA;
}
.indexmain2{
    width: 100%;
    margin-top: 20px;
    background: #F5F5F5;
    border-radius: 8px;
    padding: 14px 0;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    display: none;
}
.indexmain2.active{
    display: flex;
}
.indexmain2::-webkit-scrollbar {
    display: none; /* Chrome / Safari */
  }
.indexmain2s{
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}
.indexmain2s img{
    width: 90px;
    height: 90px;
    border-radius: 20px;
}
.indexmain2s span{
    font-size: 14px;
    color: #333333;
    line-height: 19px;
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 5px;
    text-align: center;
}
.indexmain2 {
    cursor: grab;
}
.indexmain2.dragging {
    cursor: grabbing;
}
.indexmain3{
    width: 100%;
    margin-top: 20px;
    background: linear-gradient( 181deg, #F5F5F5 0%, #FFFFFF 100%);
    border-radius: 8px;
    border: 1px solid #F2F7FF;
    padding: 20px;
    padding-top: 30px;
}
.indexmain3_title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.indexmain3_title img{
    width: 20px;
    height: auto;
}
.indexmain3_title h2{
    font-size: 24px;
    color: #0A0A0B;
    line-height: 31px;
    font-family: "msyhbd";
}
.indexmain3 > p{
    font-size: 18px;
    color: #71717C;
    line-height: 24px;
    text-align: center;
    margin-top: 13px;
}
.indexmain3 > span{
    display: block;
    width: 100%;
    height: 1px;
    background-color: #F2F7FF;
    margin-top: 20px;
}
.indexmain3_nav{
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.indexmain3_nav > span{

    font-size: 16px;
    color: #333333;
    line-height: 20px;
}
.indexmain3_nav > a{
    font-size: 16px;
    color: #3498FB;
    line-height: 20px;
}
.indexmain3M{
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.indexmain3M > div{
    width: 50%;
}
.indexmain3ML1{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.indexmain3ML1L{
    display: flex;
    align-items: center;
    gap: 8px;
}
.indexmain3ML1L img{
    width: 18px;
    height: auto;
}
.indexmain3ML1L > span:first-of-type{
    font-size: 18px;
    color: #0A0A0B;
    line-height: 24px;
    font-weight: 500;
}
.indexmain3ML1L > span:last-of-type{
    font-size: 14px;
    color: #314158;
    line-height: 24px;
    height: 24px;
    background: #E9F0F8;
    border-radius: 12px;
    padding: 0 10px;
}
.indexmain3ML_clean{
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;

}
.indexmain3ML_clean:hover img{
    filter: grayscale(0%);
}
.indexmain3ML_clean:hover span{
    color: #3498FB;
}
.indexmain3ML_clean img{
    width: 16px;
    height: auto;
    filter: grayscale(100%);
}
.indexmain3ML_clean span{
    font-size: 14px;
    color: #71717C;
    line-height: 19px;
}
.indexmain3ML2{
    width: 100%;
    margin-top: 20px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E4E4E4;
    padding: 20px;
    /* height: 300px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.indexmain3ML2 textarea{
    width: 100%;
    height: 208px;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    resize: none;
    flex: 0 0 auto;
    border: none;
}
.indexmain3ML2 textarea:focus {
    outline: none;
}
.indexmain3ML2 textarea::placeholder{
    color: #8B8B93;
}
.indexmain3ML2_info{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.indexmain3ML2_infos{
    display: flex;
    align-items: center;
    gap: 13px;
}
.indexmain3ML2_infos1_show{
    height: 32px;
    background: #F6F6F6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    padding-left: 10px;
    cursor: pointer;
}
.indexmain3ML2_infos1_show_img{
    width: 24px;
    height: auto;
    filter: grayscale(95%);
} 
.indexmain3ML2_infos1_show > span{
    font-size: 14px;
    color: #333333;
    line-height: 19px;
}
.indexmain3ML2_infos1_show > img:last-of-type{
    width: 10px;
    height: auto;
    margin-left: 5px;
}
.indexmain3ML2_infos1{
    position: relative;
}
.indexmain3ML2_infos1_hide{
    position: absolute;
    top: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px 0px #E3EBF6;
    border-radius: 4px;
}
.indexmain3ML2_infos1_hides{
    display: flex;
    align-items: center;
    padding: 1px 5px;
    cursor: pointer;
}
.indexmain3ML2_infos1_hides:hover{
    background: #F1F8FF;
    border-radius: 4px;
}
.indexmain3ML2_infos1_hides.active{
    background: #F1F8FF;
    border-radius: 4px;
}
.indexmain3ML2_infos1_hides.active span{
    color: #3498FB;
}
.indexmain3ML2_infos1_hides.active img{
    filter: grayscale(0%);
}
.indexmain3ML2_infos1_hides img{
    width: 24px;
    height: auto;
    filter: grayscale(95%);
}
.indexmain3ML2_infos1_hides span{
    font-size: 14px;
    color: #333333;
    line-height: 19px;
    white-space: nowrap;
}
.indexmain3ML2_infos2{
    position: relative;
}
.indexmain3ML2_infos2_show{
    height: 32px;
    background: #F6F6F6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    padding-left: 10px;
    cursor: pointer;
}
.indexmain3ML2_infos2_show_img{
    width: 24px;
    height: auto;
    filter: grayscale(95%);
} 
.indexmain3ML2_infos2_show > span{
    font-size: 14px;
    color: #333333;
    line-height: 19px;
}
.indexmain3ML2_infos2_show > img:last-of-type{
    width: 10px;
    height: auto;
    margin-left: 5px;
}
.indexmain3ML2_infos2_hide{
    position: absolute;
    top: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px 0px #E3EBF6;
    border-radius: 4px;
}
.indexmain3ML2_infos2_hides{
    display: flex;
    align-items: center;
    padding: 3px 5px;
    cursor: pointer;
}
.indexmain3ML2_infos2_hides span{
    font-size: 14px;
    color: #333333;
    line-height: 19px;
    white-space: nowrap;
}
.indexmain3ML2_infos2_hides.active{
    background: #F1F8FF;
    border-radius: 4px;
}
.indexmain3ML2_infos2_hides.active span{
    color: #3498FB;
}
.indexmain3ML2_infos3{
    position: relative;
}
.indexmain3ML2_infos3_show{
    height: 32px;
    background: #F6F6F6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    padding-left: 10px;
    cursor: pointer;
}
.indexmain3ML2_infos3_show_img{
    width: 24px;
    height: auto;
    filter: grayscale(95%);
} 
.indexmain3ML2_infos3_show > span{
    font-size: 14px;
    color: #333333;
    line-height: 19px;
}
.indexmain3ML2_infos3_show > img:last-of-type{
    width: 10px;
    height: auto;
    margin-left: 5px;
}
.indexmain3ML2_infos3_hide{
    position: absolute;
    top: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px 0px #E3EBF6;
    border-radius: 4px;
}
.indexmain3ML2_infos3_hides{
    display: flex;
    align-items: center;
    padding: 3px 5px;
    cursor: pointer;
}
.indexmain3ML2_infos3_hides span{
    font-size: 14px;
    color: #333333;
    line-height: 19px;
    white-space: nowrap;
}
.indexmain3ML2_infos3_hides.active{
    background: #F1F8FF;
    border-radius: 4px;
}
.indexmain3ML2_infos3_hides.active span{
    color: #3498FB;
}
.indexmain3ML_btn{
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: linear-gradient( 270deg, #3351FB 0%, #3399FB 100%);
    border-radius: 8px;
    cursor: pointer;
}
.indexmain3ML_btn img{
    width: 16px;
    height: auto;
}
.indexmain3ML_btn span{
    font-size: 14px;
    color: #FFFFFF;
    line-height: 16px;
}
.indexmain3ML2_infos1_hide,
.indexmain3ML2_infos2_hide,
.indexmain3ML2_infos3_hide {
  display: none;
}

/* 显示状态 */
.indexmain3ML2_infos1_hide.show,
.indexmain3ML2_infos2_hide.show,
.indexmain3ML2_infos3_hide.show {
  display: flex;
}
.indexmain3MR_title{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.indexmain3MR_title > div{
    display: flex;
    align-items: center;
    gap: 8px;
}
.indexmain3MR_title > div img{
    width: 18px;
    height: auto;
}
.indexmain3MR_title > div  span{
    font-size: 18px;
    color: #0A0A0B;
    line-height: 20px;
    font-weight: bold;
}
.indexmain3MR_history{
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.indexmain3MR_history img{
    width: 17px;
    height: auto;
    filter: grayscale(100%);
}
.indexmain3MR_history:hover img{
    filter: grayscale(0%);
}
.indexmain3MR_history span{
    font-size: 14px;
    color: #71717C;
    line-height: 16px;
}
.indexmain3MR_history:hover span{
    color: #3498FB;
}
.indexmain3MR_M{
    width: 100%;
    margin-top: 20px;
    height: 302px;
    position: relative;
}
.indexmain3MR_M textarea{
    width: 100%;
    height: 100%;
    background: #EAF4FF;
    border-radius: 8px;
    border: 1px solid #D6E3F6;
    border: none;
    resize: none;
    padding: 20px;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
}
.indexmain3MR_M textarea:focus {
    outline: none;
}
.indexmain3MR_M_blocking{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.indexmain3MR_M_blocking img{
    width: 24px;
    height: auto;
    margin-bottom: 24px;
}
.indexmain3MR_M_blocking span{
    font-size: 16px;
    color: #8B8B93;
    line-height: 24px;
    text-align: center;
}
.indexmain3MR_M_copy,
.indexmain3MR_M_like,
.indexmain3MR_M_like_test{
    position: absolute;
    bottom: 20px;
    border: none;
    background-color: transparent;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.indexmain3MR_M_copy{
    right: 88px;
}
.indexmain3MR_M_like{
    right: 54px;
}
.indexmain3MR_M_like_test{
    right: 20px;
}
.indexmain3MR_M_copy img,
.indexmain3MR_M_like img,
.indexmain3MR_M_like_test img{
    width: 100%;
    height: 100%;
    filter: grayscale(95%);
}
.indexmain3MR_M_copy:hover img,
.indexmain3MR_M_like:hover img,
.indexmain3MR_M_like_test:hover img{
    filter: grayscale(0%);
}
.indexmain3MR_M_like.active img{
    filter: grayscale(0%) !important;
}
.indexmain4{
    width: 100%;
    margin-top: 50px;
}
.indexmain4_top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.indexmain4_title{
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
}
.indexmain4_title img{
    width: 24px;
    height: auto;
}
.indexmain4_title h2{
    font-size: 24px;
    color: #000000;
    line-height: 30px;
    font-weight: 700;
}
.indexmain4_topnav{
    flex: 1;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    height: 26px;
    overflow: hidden;
}
.indexmain4_topnav > a{
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    padding: 0 15px;
    border: 1px solid #ffffff;
}
.indexmain4_topnav > a:hover,
.indexmain4_topnav > a.active{
    color: #3498FB;
    background: #F5FAFF;
    border-radius: 12px;
    border: 1px solid #3498FB;
}
.indexmain4_more{
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
}
.indexmain4_more span{
    font-size: 16px;
    color: #3498FB;
    line-height: 20px;
}
.indexmain4_more img{
    width: 7px;
    height: auto;
}
.indexmain4_bottom{
    width: 100%;
    margin-top: 27px;
    display: none;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    overflow: hidden;
}
.indexmain4_bottom.active{
    display: grid;
}
.indexmain4_empty{
    grid-column: 1 / -1;
    padding: 36px 0;
    text-align: center;
    color: #999999;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #F5F5F5;
}
.indexmain4s{
    width: 100%;
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #F5F5F5;
}
.indexmain4s1{
    width: 100%;
    padding: 0 20px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.indexmain4s1 > span,
.indexmain4s1 > a{
    flex: 1;
    width: auto;
    font-size: 18px;
    color: #3498FB;
    line-height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.indexmain4s1 > a:hover{
    color: #1688F8;
    text-decoration: underline;
}
.indexmain4s1 > div{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
}
.indexmain4s1 > div img{
    width: 11px;
    height: auto;
}
.indexmain4s1 > div span{
    font-size: 14px;
    color: #383C44;
    line-height: 16px;
}
.indexmain4s2{
    width: 100%;
    margin-top: 17px;
    padding: 0 15px;
}
.indexmain4s2 > div{
    background: #F5FAFF;
    border-radius: 4px;
    width: 100%;
    padding: 6px 10px;
}
.indexmain4s2 > div p{
    width: 100%;
    font-size: 16px;
    color: #000000;
    line-height: 22px;
    height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    font-weight: bold;
}
.indexmain4s3{
    width: 100%;
    margin-top: 16px;
    padding: 0 15px;
}
.indexmain4s3 p{
    width: 100%;
    font-size: 14px;
    color: #333333;
    line-height: 18px;
    height: 54px;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.indexmain4s4{
    width: 100%;
    margin-top: 20px;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    height: 32px;
    overflow: hidden;
}
.indexmain4s4 span{
    font-size: 14px;
    color: #999999;
    line-height: 30px;
    padding: 0 12px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #F3F3F3;
}
.indexmain4s5{
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid #F5F5F5;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.indexmain4s5 > button{
    width: 50%;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    height: 30px;
    background: #F5F5F5;
    border-radius: 4px;
    cursor: pointer;
}
.indexmain4s5 > button:hover{
    background: #3498FB;
}
.indexmain4s5 > button img{
    width: 18px;
    height: auto;
}
.indexmain4s5 > button span{
    font-size: 16px;
    color: #333333;
    line-height: 21px;
}
.indexmain4s5 > button:hover span{
    color: #FFFFFF;
}
.indexmain4s_copy.copied:hover{
    background: #F5F5F5;
}
.indexmain4s_copy.copied span{
    color: #3498FB;
}
.indexmain4s_copy.copied:hover span{
    color: #3498FB;
}
.indexmain4s_like.active span{
    color: #FF7E00;
}
.indexmain5{
    width: 100%;
    margin-top: 50px;
}
.indexmain5M{
    width: 100%;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.indexmain5M1{
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.indexmain5M1s{
    width: 100%;
}
.indexmain5M_top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}
.indexmain5M_top > img{
    width: 13px;
    height: auto;
    flex: 0 0 auto;
}
.indexmain5M_top > span{
    font-size: 18px;
    color: #000000;
    line-height: 24px;
    flex: 1;
}
.indexmain5M_top > a{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
}
.indexmain5M_top > a span{
    font-size: 16px;
    color: #3498FB;
    line-height: 21px;
}
.indexmain5M_top > a img{
    width: 7px;
    height: auto;
}
.indexmain5M1s_M{
    width: 100%;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.indexmain5M1s_M::before{
    content: "";
    left: 3px;
    top: 0;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #EEEEEE;
}
.indexmain5M1s_Ms{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 16px;
    gap: 15px;
    position: relative;
}
.indexmain5M1s_Ms::before{
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 8px;
    height: 8px;
    background: #B0B0B0;
    border-radius: 50%;
}
.indexmain5M1s_Ms > a{
    font-size: 16px;
    color: #444444;
    line-height: 21px;
    /* display: block; */
    width: auto;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 2px;
}
.indexmain5M1s_Ms > a span{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: "msyhl";
}
.indexmain5M1s_Ms > a img{
    width: 22px;
    height: auto;
}
.indexmain5M1s_Ms > span{
    font-size: 12px;
    color: #BABFC8;
    line-height: 18px;
    padding: 0 4px;
    background: #F9FAFB;
    border-radius: 2px;
}
.indexmain5M1s_Ms:hover a{
    color: #FF535B;
}
.indexmain5M1s_Ms:hover::before{
    background: #ffffff;
    border: 1px solid #FF634F;
}
.indexmain5M1s_Ms.hot img{
    flex: 0 0 auto;
}
.indexmain5M2{
    width: 420px;
}
.indexmain5M2_top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 11px;
}
.indexmain5M2_tops{
    width: 50%;
    height: 114px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.indexmain5M2_tops > a{
    display: block;
    width: 100%;
    height: 100%;
}
.indexmain5M2_tops > a:hover img{
    transform: scale(1.2);
}
.indexmain5M2_tops > a img{
    width: 100%;
    height: 100%;
    transition: transform 0.2s;
}
.indexmain5M2_tops > span{
    position: absolute;
    top: 4px;
    left: 4px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 18px;
    padding: 0 5px;
}
.indexmain5M2_tops > span.apptips{
    background: #EC4799;
}
.indexmain5M2_tops > span.designtips{
    background: #3498FB;
}
.indexmain5M2_tops > p{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
    border-radius: 0px 0px 4px 4px;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 28px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 8px;
}
.indexmain5M2 .indexmain5M1s_M{
    margin-top: 24px;
}
.indexmain5M3{
    width: 320px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    row-gap: 15px;
}
.indexmain5M3s{
    width: 100%;
    overflow: hidden;
}
.indexmain5M3s_img{
    width: 100%;
    display: block;
    height: 86px;
    border-radius: 4px;
    overflow: hidden;
}
.indexmain5M3s_img:hover img{
    transform: scale(1.2);
}
.indexmain5M3s_img img{
    width: 100%;
    height: 100%;
    transition: transform 0.2s;
}
.indexmain5M3s_span{
    width: 100%;
    font-size: 14px;
    color: #444444;
    line-height: 18px;
    margin-top: 5px;
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.indexmain5M3s_span:hover{
    color: #FF535B;
}
.indexmain6{
    width: 100%;
    margin-top: 50px;
}
.indexmain6M{
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.indexmain6ML{
    width: 920px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.indexmain6MLs{
    width: 100%;
    height: 95px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding: 6px 10px;
    background: linear-gradient( 217deg, #F5F5F5 0%, #FFFFFF 100%);
    border: 1px solid #E6E6E6;
}
.indexmain6MLs_bg{
    width: 64px;
    position: absolute;
    right: 0;
    top: 0;
    height: auto;
    -webkit-mask: linear-gradient(
        to top right,
        transparent 0%,
        transparent 20%,
        white 100%
      );
      mask: linear-gradient(
        to top right,
        transparent 0%,
        transparent 20%,
        white 100%
      );
}
.indexmain6MLs > a{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}
.indexmain6MLs > a img{
    width: 24px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
    flex: 0 0 auto;
}
.indexmain6MLs > a span{
    font-size: 18px;
    color: #000000;
    line-height: 24px;
    flex: 1;
    width: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.indexmain6MLs > p{
    width: 100%;
    margin-top: 7px;
    font-size: 16px;
    color: #444444;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.indexmain6MR{
    width: 260px;
    background: linear-gradient( 180deg, #F5F5F5 0%, #FFFFFF 100%);
    border-radius: 8px;
    padding: 12px;
}
.indexmain6MR_top{
    width: 100%;
    position: relative;
    padding-top: 8px;
}
.indexmain6MR_top img{
    position: absolute;
    top: 0;
    left: 5px;
    width: 17px;
    height: auto;
}
.indexmain6MR_top span{
    font-size: 18px;
    color: #000000;
    line-height: 24px;
    font-family: "msyhbd";
}
.indexmain6MR_top span b{
    color: #3498FB;
    font-family: "msyhbd";
}
.indexmain6MRM{
    width: 100%;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.indexmain6MRM_1{
    display: flex;
    justify-content: space-between;
    gap: 9px;
    position: relative;
    align-items: center;
}
.indexmain6MRM_1 > span{
    display: block;
    width: 18px;
    height: 19px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 19px;
    flex: 0 0 auto;
    z-index: 1;
    text-align: center;
    align-self: start;
}
.indexmain6MRM_ranking{
    position: absolute;
    width: 18px;
    height: 19px;
    top: 0;
    left: 0;
}
.indexmain6MRM_1_logo{
    display: block;
    width: 62px;
    height: 62px;
    border-radius: 4px;
    overflow: hidden;
    flex: 0 0 auto;
}
.indexmain6MRM_1_logo img{
    width: 100%;
    height: 100%;
}
.indexmain6MRM_1_info{
    flex: 1;
    width: auto;

}
.indexmain6MRM_1_info a{
    font-size: 16px;
    color: #333333;
    line-height: 21px;
    width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.indexmain6MRM_1_info a:hover{
    color: #FF535B;
}
.indexmain6MRM_1_info p{
    font-size: 14px;
    color: #666666;
    line-height: 19px;
    margin-top: 5px;
    width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.indexmain6MRM_1_info span{
    font-size: 14px;
    color: #FF9B00;
    line-height: 19px;
    margin-top: 15px;
    width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.indexmain6MRMs{
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    gap: 9px;
    overflow: hidden;
}
.indexmain6MRMs.indexmain6MRM_2 > span,
.indexmain6MRMs.indexmain6MRM_3 > span{
    display: block;
    width: 18px;
    height: 19px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 19px;
    flex: 0 0 auto;
    z-index: 1;
    text-align: center;
}
.indexmain6MRMs > a{
    flex: 1;
    width: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
}
.indexmain6MRMs > a span{
    display: block;
    font-size: 16px;
    color: #333333;
    line-height: 21px;
    width: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.indexmain6MRMs > span{
    width: 18px;
    height: 19px;
    font-size: 12px;
    color: #686868;
    line-height: 19px;
    flex: 0 0 auto;
    text-align: center;
}
.indexmain6MRMs .hot-icon{
    width: 21px;
    height: auto;
}
.indexmain6MRMs .rise-icon{
    width: 31px;
    height: auto;
}
.indexmain6MRMs > a:hover span{
    color: #FF535B;
}
.indexmain7{
    width: 100%;
    margin-top: 50px;
}
.indexmain7M{
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.indexmain7Ms{
    width: 224px;
    height: 126px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.indexmain7Ms a{
    display: block;
    width: 100%;
    height: 100%;
}
.indexmain7Ms a img{
    width: 100%;
    height: 100%;
    transition: transform 0.2s;
}
.indexmain7Ms span{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
    border-radius: 4px;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 38px;
    padding: 0 10px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.indexmain7Ms:hover img{
    transform: scale(1.2);
}
footer{
    background: #121726;
    width: 100%;
    margin-top: 50px;
}
.footer{
    width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 24px
}
.footer1{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.footer11 a{
    display: flex;
    align-items: center;
    gap: 9px;
}
.footer11 a > img{
    width: 64px;
    height: 64px;
}
.footer11 a div span:first-of-type{
    font-size: 44px;
    color: #FFFFFF;
    line-height: 45px;
    font-family: "msyhbd";
}
.footer11 a div span:last-of-type{
    font-size: 18px;
    color: #FFFFFF;
    line-height: 19px;
}
.footer11 > span{
    display: block;
    font-size: 16px;
    color: #969DA9;
    line-height: 21px;
    margin-top: 7px;
}
.footer13{
    width: 432px;
}
.footer13 > span{
    display: block;
    font-size: 18px;
    color: #D1D5DB;
    line-height: 24px;
    padding-bottom: 20px;
}
.footer13 > p{
    font-size: 16px;
    color: #646B78;
    line-height: 24px;
}
.footer13 > p a{
    color: #3498FB;
}
.footer12{
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer12 > span{
    display: block;
    font-size: 18px;
    color: #D1D5DB;
    line-height: 24px;
    padding-bottom: 9px;
}
.footer12 > a{
    font-size: 16px;
    color: #646B78;
    line-height: 21px;
}
.footer > span{
    display: block;
    width: 100%;
    height: 1px;
    background-color: #36435D;
    margin-top: 37px;
}
.footer > p{
    width: 100%;
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    color: #757C88;
    line-height: 21px;
}
.historical_prompt{
    display: none;
}
.historical_prompt.active{
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}
.historical_prompt > div{
    width: 800px;
    height: 857px;
    background: linear-gradient( 118deg, #FFFFFF 0%, #EAF4FF 99.93%, #EAF4FF 100%);
    border-radius: 8px;
    border: 1px solid #EDF1F6;
    padding: 30px;
}
.historical_prompt_top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.historical_prompt_top > span{
    font-size: 24px;
    color: #000000;
    line-height: 31px;
    font-weight: bold;
}
.historical_prompt_top > div{
    display: flex;
    align-items: center;
    gap: 10px;
}
.historical_prompt_amount{
    height: 28px;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.historical_prompt_amount > span:last-of-type{
    font-size: 14px;
    color: #637086;
    line-height: 19px;
}
.historical_prompt_amount > span:first-of-type{
    width: 10px;
    height: 10px;
    background: #EDF5FE;
    border: 1px solid #3498FB;
    border-radius: 50%;
    position: relative;
}
.historical_prompt_amount > span:first-of-type::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #3498FB;
    border-radius: 50%;
}
.historical_prompt_clean{
    height: 28px;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: none;
    cursor: pointer;
}
.historical_prompt_clean img{
    width: 16px;
    height: auto;
}
.historical_prompt_clean span{
    font-size: 14px;
    color: #637086;
    line-height: 19px;
}
.historical_prompt_close{
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.historical_prompt_close img{
    width: 12px;
    height: auto;
}
.historical_prompt > div > p{
    width: 100%;
    margin-top: 16px;
    font-size: 16px;
    color: #C2C2CE;
    line-height: 21px;
}
.historical_promptM{
    width: 100%;
    margin-top: 14px;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    height: 744px;
    scrollbar-width: thin;
    scrollbar-color: #CED2DF transparent;
}
.historical_promptM::-webkit-scrollbar {
    width: 6px;
    border-radius: 8px;
}
.historical_promptM::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}
.historical_promptM::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 8px;
}
.historical_promptM::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.historical_promptMs_f{
    width: 100%;
    padding-left: 18px;
    position: relative;
    cursor: pointer;
}
.historical_promptMs_f > span{
    font-size: 12px;
    color: #999999;
    line-height: 16px;
}
.historical_promptMs{
    width: 100%;
    margin-top: 7px;
    background: #FBFCFD;
    border-radius: 8px;
    border: 1px solid #EDF1F6;
    padding: 20px;
}
.historical_promptMs_top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.historical_promptMs_top > span{
    flex: 1;
    width: auto;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 18px;
    color: #444444;
    line-height: 24px;
}
.historical_promptMs_top > div{
    height: 28px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #E2E8F0;
    padding: 0 4px;
    padding-right: 9px;
    display: flex;
    align-items: center;
}
.historical_promptMs_top > div img{
    width: 24px;
    height: auto;
    filter: grayscale(95%);
}
.historical_promptMs_top > div span{
    font-size: 14px;
    color: #67768D;
    line-height: 19px;
}
.historical_promptMs_p {
    position: relative;
    margin-top: 7px;
    display: inline-block;
  }
  
  /* 默认：3行限制 */
  .historical_promptMs_p p {
    font-size: 16px;
    color: #556274;
    line-height: 24px;
  
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  
    overflow: hidden;
    word-break: break-all;
  }
  
  /* 重点：展开状态只取消 clamp，不要改 display */
  .historical_promptMs_p.open p {
    -webkit-line-clamp: unset;
    display: inline; 
  }
  
  /* 按钮右下角 */
  .historical_promptMs_p_show {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 16px;
    line-height: 24px;
    color: #3498FB;
    cursor: pointer;
    background: #fff;
  }
  .historical_promptMs_p_show::before{
    content: "...";
    color: #556274;
  }
  .historical_promptMs_p.open .historical_promptMs_p_show{
    position: static;
    display: inline;
    white-space: nowrap;
  }
  .historical_promptMs_p.open .historical_promptMs_p_show::before{
    display: none;
  }
  .historical_promptMs_info{
    width: 100%;
    margin-top: 16px;
    background: #EAF4FF;
    border-radius: 8px;
    border: 1px solid #F6F8FA;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .historical_promptMs_info img{
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex: 0 0 auto;
  }
  .historical_promptMs_info span{
    font-size: 16px;
    color: #555555;
    line-height: 21px;
    flex: 1;
    width: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .historical_promptMs_tips{
    width: 100%;
    margin-top: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .historical_promptMs_tips span:first-of-type{
    font-size: 14px;
    color: #C2C2CE;
    line-height: 19px;
  }
  .historical_promptMs_tips span:last-of-type{
    font-size: 14px;
    color: #3498FB;
    line-height: 19px;
  }
  .historical_promptMs_f::before{
    content: "";
    width: 1px;
    height: 100%;
    background-color: #DFEDFA;
    position: absolute;
    left: 9px;
    top: 0;
  }
  .historical_promptMs_f > span{
    position: relative;
  }
  .historical_promptMs_f > span::before{
    content: "";
    position: absolute;
    left: -13px;
    top: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #AAAAAA;
    box-shadow: 0px 0px 8px 2px rgba(130,130,130,0.38);
    border: 1px solid #F0F0F0;
  }
  .historical_promptMs_f:hover .historical_promptMs{
    border-left: 2px solid #3498FB;
  }
  .historical_promptMs_f:hover > span{
    color: #3498FB;
  }
  .historical_promptMs_f:hover > span::before{
    background: #ffffff;
    width: 4px;
    height: 4px;
    border: 2px solid #3498FB;
    box-shadow: 0px 0px 8px 2px rgba(92, 146, 246, 0.38);
  }
  .login_signup{
    display: none;
  }
.login_signup.login_tab_show,
.login_signup.signup_tab_show,
.login_signup.Reset_tab_show{
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
    z-index: 9;
}
/* 默认全部隐藏 */
.login_signup .login_tab,
.login_signup .signup_tab,
.login_signup .Reset_tab {
  display: none;
}

/* 对应显示 */
.login_signup.login_tab_show .login_tab {
  display: block;
}

.login_signup.signup_tab_show .signup_tab {
  display: block;
}

.login_signup.Reset_tab_show .Reset_tab {
  display: block;
}
.login_tab,
.signup_tab,
.Reset_tab{
    width: 565px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(180,185,203,0.8);
    border-radius: 18px;
    padding: 35px 50px;
    padding-top: 45px;
    position: relative;
}
.login_signup_close{
    position: absolute;
    width: 16px;
    height: 16px;
    border: none;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background-color: #ffffff;
}
.login_signup_close img{
    width: 100%;
    height: 100%;
}
.login_tab_top{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-bottom: 10px;
}
.login_tab_top > a{
    font-size: 24px;
    color: #A5A5A5;
    line-height: 31px;
}
.login_tab_top > a.active{
    color: #000000;
    font-weight: bold;
    position: relative;
}
.login_tab_top > a.active::after{
    content: "";
    position: absolute;
    background: #3498FB;
    border-radius: 2px;
    width: 32px;
    height: 4px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.login_signup_input{
    width: 100%;
    margin-top: 16px;
}
.login_signup_input > span{
    font-size: 18px;
    color: #000000;
    line-height: 24px;
}
.login_signup_input > div{
    width: 100%;
    margin-top: 7px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #E2E3E8;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.login_signup_input > div img{
    max-width: 15px;
}
.login_signup_input > div input{
    font-size: 14px;
    color: #333333;
    line-height: 19px;
    border: none;
    flex: 1;
}
.login_signup_input > div input:focus {
    outline: none;           
    box-shadow: none;        
  }
.login_signup_input > div input::placeholder{
    color: #848484;
}
.passward_input_btn{
    flex: 0 0 auto;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.login_signup_info{
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.login_signup_info > div{
    display: flex;
    align-items: center;
    gap: 5px;
}
.login_signup_info > div span{
    font-size: 14px;
    color: #848484;
    line-height: 19px;
}
.login_signup_info > a{
    font-size: 14px;
    color: #3498FB;
    line-height: 19px;
}
.login_tab_btn{
    width: 100%;
    margin-top: 20px;
    height: 47px;
    background: linear-gradient( 270deg, #3351FB 0%, #3399FB 100%);
    border-radius: 24px;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 24px;
    border: none;
    cursor: pointer;
}
.login_tab > p{
    width: 100%;
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: #A6A6A6;
    line-height: 19px;
}
.login_tab > p a{
    color: #3498FB;
}
.login_signup_input > div > span{
    display: block;
    width: 1px;
    height: 29px;
    background-color: #E2E3E8;
}
.login_signup_input .get_code{
    font-size: 14px;
    color: #848484;
    line-height: 19px;
}
.signup_tab_tips{
    display: block;
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    color: #848484;
    line-height: 19px;
}
.signup_tab_btn{
    width: 100%;
    margin-top: 20px;
    height: 47px;
    background: linear-gradient( 270deg, #3351FB 0%, #3399FB 100%);
    border-radius: 24px;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 24px;
    border: none;
    cursor: pointer;
}
.signup_tab > p,
.Reset_tab > p{
    width: 100%;
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: #A6A6A6;
    line-height: 19px;
}
.signup_tab > p a,
.Reset_tab > p a{
    color: #3498FB;
}
/* conversation */
.conversation{
    width: 100%;
    display: flex;
    height: 100vh;
}
.conversation_log{
    width: 279px;
    height: 100%;
    background: #F3F6FF;
    padding: 15px;
    flex: 0 0 auto;
    transition: all 0.2s;
}
.conversation_logo{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
}
.conversation_logo > img{
    width: 32px;
    height: 32px;
}
.conversation_logo > div{
    display: flex;
    flex-direction: column;
}
.conversation_logo > div span:first-of-type{
    font-size: 22px;
    color: #333333;
    line-height: 22px;
    font-family: "msyhbd";
}
.conversation_logo > div span:last-of-type{
    font-size: 9px;
    color: #565656;
    line-height: 10px;
}
.conversation_nav{
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.conversation_navs{
    width: 100%;
    height: 36px;
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.conversation_navs.active{
    background: #E7EEFD;
    border: 1px solid #3498FB;
}
.conversation_navs:hover{
    background: #E7EEFD;
}
.conversation_navs img{
    width: 14px;
    height: auto;
    flex: 0 0 auto;
}
.conversation_navs img.hoverimg{
    display: none;
}
.conversation_navs.active img{
    display: none;
}
.conversation_navs.active img.hoverimg{
    display: block;
}
.conversation_navs span{
    font-size: 14px;
    color: #040404;
    line-height: 19px;
    flex: 1;
    display: block;
    width: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.conversation_navs.active span{
    color: #3498FB;
}
.conversation_history{
    width: 100%;
    margin-top: 40px;
}
.conversation_history > span{
    font-size: 12px;
    color: #9B9B9B;
    line-height: 16px;
}
.conversation_historyM{
    width: 100%;
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: calc(100vh - 410px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #CED2DF transparent;
}
.conversation_historyM::-webkit-scrollbar {
width: 6px;
border-radius: 8px;
}
.conversation_historyM::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 8px;
}
.conversation_historyM::-webkit-scrollbar-thumb {
background: #888;
border-radius: 8px;
}
.conversation_historyM::-webkit-scrollbar-thumb:hover {
background: #555;
}
.conversation_historyMs{
    width: 100%;
    height: 36px;
    border-radius: 8px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}
.conversation_historyMs img{
    width: 18px;
    height: auto;
    flex: 0 0 auto;
}
.conversation_historyMs span{
    flex: 1;
    width: auto;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #272725;
    line-height: 19px;
}
.conversation_historyMs.active{
    background: #FFFFFF;
}
.dialogue{
    flex: 1;
    width: auto;
    position: relative;
    height: 100vh;
}
.dialogue_top{
    width: 100%;
    height: 56px;
    background: #FFFFFF;
    border-bottom: 1px solid #DBE1EF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    padding-left: 33px;
    position: absolute;
    top: 0;
    left: 0;
}
.conversation_log_close{
    width: 21px;
    height: 21px;
    border: none;
    cursor: pointer;
}
.conversation_log_close img{
    width: 100%;
    height: 100%;
}
.dialogue_top > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.dialogue_top > div span{
    font-size: 14px;
    color: #131314;
    line-height: 19px;
}
.dialogue_top > div p{
    font-size: 12px;
    color: #D0D0D0;
    line-height: 16px;
}
.dialogue_top > .header1_login{
    padding: 0 25px;
    height: 38px;
    background: #3498FB;
    border-radius: 8px;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 38px;
}
.dialogue_top > .header1_login span{
    color: #FFFFFF;
}
.conversation_log.hide{
    width: 0px;
    overflow: hidden;
    padding: 0;
}
.dialogue_M{
    width: 920px;
    margin: 0 auto;
    margin-top: 56px;
    height: calc(100vh - 250px);
    overflow-y: auto;
    /* scrollbar-width: thin;
    scrollbar-color: #CED2DF transparent; */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.dialogue_M::-webkit-scrollbar {
    display: none;
width: 6px;
border-radius: 8px;
}
.dialogue_M::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 8px;
}
.dialogue_M::-webkit-scrollbar-thumb {
background: #888;
border-radius: 8px;
}
.dialogue_M::-webkit-scrollbar-thumb:hover {
background: #555;
}

.dialogue_bottom{
    width: 920px;
    margin: 0 auto;
    margin-top: 20px;
    height: 156px;
    background: #FFFFFF;
    box-shadow: 0px 0px 12px 0px #C0C4CF;
    border-radius: 24px;
    border: 1px solid rgba(51, 151, 251, 1);
    padding: 23px;
}
.dialogue_bottom textarea{
    width: 100%;
    height: calc(100% - 32px);
    font-size: 16px;
    color: #333333;
    line-height: 21px;
    border: none;
    resize: none;
}
.dialogue_bottom textarea::placeholder{
    color: #7F7F7F;
}
.dialogue_bottom textarea:focus {
    outline: none;
}
.dialogue_bottom .indexmain3ML2_infos1_hide,
.dialogue_bottom .indexmain3ML2_infos2_hide,
.dialogue_bottom .indexmain3ML2_infos3_hide{
    top: auto;
    bottom: 32px;
}
.dialogue_M_new{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.dialogue_M_new_top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.dialogue_M_new_top img{
    width: 20px;
    height: auto;
}
.dialogue_M_new_top h2{
    font-size: 24px;
    color: #0A0A0B;
    line-height: 31px;
    font-family: "msyhl";
}
.dialogue_M_new_M{
    width: 744px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.dialogue_M_new_M > a{
    font-size: 14px;
    color: #0A0A0A;
    line-height: 42px;
    padding: 0 18px;
    background: #F3F6FF;
    border-radius: 12px;
}
.dialogue_M_question{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.dialogue_M_Q{
    align-self: flex-end;
}
.dialogue_M_QM{
    max-width: 706px;
    background: #EBF5FF;
    border-radius: 14px 0px 14px 14px;
    padding: 12px 16px;
    font-size: 16px;
    color: #0E142D;
    line-height: 24px;
    align-self: flex-end;
}
.dialogue_M_Q_btn{
    width: 100%;
    margin-top: 8px;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px;
    height: 24px;
}
.dialogue_M_Q_btn > button{
    width: 24px;
    height: 24px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    display: none;
}
.dialogue_M_Q_btn > button:hover{
    background-color: #eeeeee;
    border-radius: 4px;
}
.dialogue_M_Q_btn > button img{
    width: 100%;
    height: 100%;
}
.dialogue_M_Q:hover .dialogue_M_Q_btn > button{
    display: block;
}
.dialogue_M_A{
    width: 100%;
    align-self: flex-start;
}
.dialogue_M_AM{
    width: 100%;

}
.dialogue_M_AM h2{
    font-size: 18px;
    color: #0A0A0A;
    line-height: 24px;
}
.dialogue_M_AM p{
    font-size: 16px;
    color: #454545;
    line-height: 24px;
    margin: 20px 0;
    width: 100%;
    
}
.dialogue_M_AM a{
    color: #3498FB;
}
.dialogue_M_A_btn{
    width: 100%;
    margin-top: 23px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 8px;
}
.dialogue_M_A_btn > button{
    width: 24px;
    height: 24px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    position: relative;
}
.dialogue_M_A_btn > button:hover{
    background-color: #eeeeee;
    border-radius: 4px;
}
.dialogue_M_A_btn > button img{
    width: 100%;
    height: 100%;
}
.dialogue_M_A_btn > button:hover > span{
    display: block;
}
.dialogue_M_A_btn > button > span{
    position: absolute;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 16px;
    padding: 2px 3px;
    background: rgba(51,51,51,0.85);
    border-radius: 2px;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: none;
}
.dialogue_M_A_other{
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 10px;
}
.dialogue_M_A_other > a{
    padding: 0 17px;
    display: flex;
    align-items: center;
    gap: 2px;
    background: #FBFBFC;
    border-radius: 8px;
}
.dialogue_M_A_other > a:hover span{
    color: #3498FB;
}
.dialogue_M_A_other > a span{
    font-size: 14px;
    color: #3B3B3D;
    line-height: 40px;
}
.dialogue_M_A_other > a img{
    width: 14px;
    height: auto;
}
.dialogue_M_A_other > a img.hoverimg{
    display: none;
}
.dialogue_M_A_other > a:hover img{
    display: none;
}
.dialogue_M_A_other > a:hover img.hoverimg{
    display: block;
}
.dialogue_M_Q.error{
    position: relative;
}
.dialogue_M_Q.error .dialogue_M_Q_btn{
    display: none;
}
.errorimg{
    width: 18px;
    height: 18px;
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
}
.dialogue_M_Q.edit .dialogue_M_QM{
    display: none;
}
.dialogue_M_Q.edit .dialogue_M_Q_btn{
    display: none;
}
.dialogue_M_QM_edit{
    width: 920px;
    height: auto;
    /* min-height: 120px; */
    background: #FFFFFF;
    box-shadow: 0px 0px 12px 0px #C0C4CF;
    border-radius: 14px;
    border: 1px solid rgba(51, 151, 251, 1);
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.dialogue_M_QM_edit textarea{
    width: 100%;
    height: auto;
    border: none;
    resize: none;
    min-height: 120px;
    font-size: 16px;
    color: #0E142D;
    line-height: 24px;
    flex: 1;
}
.dialogue_M_QM_edit textarea::placeholder{
    color: #7F7F7F;
}
.dialogue_M_QM_edit textarea:focus {
    outline: none;
}
.dialogue_M_QM_edit > div{
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}
.dialogue_M_QM_edit > div > button{
    font-size: 14px;
    line-height: 28px;
    padding: 0 10px;
    border-radius: 4px;
    border: none;
}
.dialogue_M_QM_edit_cancel{
    background: #F3F6FF;
    color: #333333;
}
.dialogue_M_QM_edit_btn{
    background: #3498FB;
    color: #FFFFFF;
}
.dialogue_M_Q .dialogue_M_QM_edit{
    display: none;
}
.dialogue_M_Q.edit .dialogue_M_QM_edit{
    display: flex;
}
.dialogue_M_A_loading {
    position: relative;
    width: 50px;
    height: 24px;
  }
  
  /* 公共 */
  .star {
    position: absolute;
    top: 50%;
    left: 50%;
    will-change: transform;
  }
  
  /* 大星 */
  .big {
    width: 16px;
    height: 16px;
    animation: moveBig 1.6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  }
  
  /* 小星 */
  .small {
    width: 10px;
    height: 10px;
    opacity: 0.6;
    animation: moveSmall 1.6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  }
  
  /* 核心动画：更连续 */
  @keyframes moveBig {
    0% {
      transform: translate(-50%, -50%) translateX(-14px) translateY(2px) scale(0.85);
      z-index: 1;
    }
    50% {
      transform: translate(-50%, -50%) translateX(14px) translateY(-2px) scale(1.2);
      z-index: 3;
    }
    100% {
      transform: translate(-50%, -50%) translateX(-14px) translateY(2px) scale(0.85);
      z-index: 1;
    }
  }
  
  @keyframes moveSmall {
    0% {
      transform: translate(-50%, -50%) translateX(14px) translateY(-2px) scale(1.2);
      z-index: 3;
    }
    50% {
      transform: translate(-50%, -50%) translateX(-14px) translateY(2px) scale(0.85);
      z-index: 1;
    }
    100% {
      transform: translate(-50%, -50%) translateX(14px) translateY(-2px) scale(1.2);
      z-index: 3;
    }
  }
