/*通用样式*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
}

em {
    font-style: normal;
}

th,
td,
tr,
table,
tbody {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    background-color: #fff;
}


ul,
ul li {
    list-style: none;
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 1rem;
}

body {
    font-family: arial;
    position: relative;
    margin: 0;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
    background-color: #EDF6FF;
    color: #333333;
    -webkit-touch-callout: none;
    font-size: 0.875rem;
}

@font-face {font-family: 'font';
    src: url('./font/font.woff') format('woff'),
    url('./font/font.woff2') format('woff2');
}

.font_style{
    font-family: 'font';
}

.page {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.order-box {
    -webkit-box-flex: 1;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.btn {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
    padding: 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

.btn-bg-green {
    background: #13B974;
}

.btn-bg-green:active {
    background: rgba(16, 161, 101, 1);
}

.btn-bg-blue {
    background: #3764D7;
}

.btn-bg-blue:active {
    background: #244fbd;
}

.btn-bg-red {
    background: #FF9990;
}

/* login */
.login {
    background: url(../images/login_bg.png) no-repeat center center;
    background-size: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2.5rem;
}

.login .login-head {
    width: 70%;
    margin-bottom: 2%;
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .login .login-head {
        width: 60%;
        margin-bottom: 0;
    }
}

@media (min-width: 2560px) {
    .login .login-head {
        width: 55%;
        margin-bottom: 0;
    }
}
.login .login-head img {
    height: 3.25rem;
    display: block;
}

.login_con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* width: 80%;
    min-width: 70rem; */
    /* flex: 1; */
}
@media (max-width: 1919px) {
    .login_con {
        width: 80%;
        min-width: 70rem;
        height: 80%;
    }
    .login_left{
        height: 100%;
        object-fit: cover;
    }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .login_con {
        width: 65%;
        min-width: 70rem;
        height: 70%;
    }
    .login_left{
        height: 75%;
        object-fit: cover;
    }
}

@media (min-width: 2560px) {
    .login_con {
        width: 60%;
        min-width: 70rem;
        height: 90%;
    }
    .login_left{
        height: 75%;
        object-fit: cover;
    }
}


.login_left img {
    height: 90%;
    display: block;
}

.login_right {
    border-radius: 0.5rem;
    background: #fff;
    /* width: 26.25rem; */
    /* height: 32.5rem; */
    padding: 3.75rem 1.875rem;
    display: flex;
    flex-direction: column;
}

.login_right .tab_1,
.login_right .tab_2 {
    display: flex;
    flex-direction: column;
}

.login_right h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.login_right .title {
    margin-bottom: 2.25rem;
    display: flex;
    flex: 1;
}

.login_right .title b.active,
.login_right .title b:hover {
    color: #3764D7;
}

.login_right .title b {
    display: flex;
    flex: 1;
    justify-content: center;
    font-size: 1.125rem;
    transition: all 0.25s;
    cursor: pointer;
}

.login_right .title span {
    color: #ddd;
    line-height: 1.5;
}

.verify {
    display: flex;
    flex: 1;
    margin-bottom: 2.25rem;
}

.login_right .input_group {
    display: flex;
    flex: 1;
    align-items: center;
    padding: 0 0.75rem;
    border: 0.0625rem solid #ddd;
    border-radius: 0.25rem;
}

.login_right .input_group img {
    height: 1.25rem;
    width: 1.25rem;
    margin-right: 0.625rem;
}

.login_right .input_group input {
    flex: 1;
    border: none;
    height: 2.5rem;
    font-size: 0.875rem;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.login_right .WeChat_Verification{
    display: flex;
}
.login_right .WeChat_Verification input{
    height: 2.5rem;
    border: 0.0625rem solid #ddd;
    border-radius: 0.25rem;
    flex: 1;
    padding: 0.25rem;
    text-align: center;
    width: 3.125rem;
    margin-right: 1.875rem;
    font-size: 1.5rem;
    font-weight: bold;
}
.login_right .WeChat_Verification input:last-child{
    margin: 0;
}
.WeChat_tip{
    display: flex;
    align-items: center;
    padding:0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #cedbff;
    background: #f1f5ff;
    border-radius: 0.25rem;
}
.WeChat_tip span{
    font-size: 0.875rem;
    color: #3764D7;
}
.WeChat_tip img{
    width: 1.25rem;
    margin-right: 0.5rem;
}
.verify button {
    margin-left: 1.25rem;
    border-radius: 0.25rem;
    background: none;
    border: 1px solid #3764D7;
    padding: 0 0.625rem;
    color: #3764D7;
    transition: all 0.25s;
    font-size: 0.875rem;
    cursor: pointer;
}

.verify button:hover {
    background-color: #5579d4;
    color: #fff;
}

.verify button:active {
    background: #244fbd;
}

.login_btn {
    transition: all 0.25s;
    margin: 2.25rem 0;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    border: none;
    background: #3764D7;
    color: #fff;
    border-radius: 0.25rem;
    cursor: pointer;
    justify-content: center;
    height: 2.5rem;
    width: 100%;
}

.login_btn:hover {
    background-color: #5579d4;
}

.login_btn:active {
    background: #244fbd;
}

.login_right p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.login_right p a {
    text-decoration: none;
    color: #3764D7;
}

.login_right .tab_2 {
    align-items: center;
}

.login_right .tab_2 img {
    width: 12.5rem;
    height: 12.5rem;
    margin-bottom: 2.25rem;
}

/* 首页 */
.index {
    display: flex;
    flex: 1;
    height: 100vh;
}

.public_left {
    background: #1B0943;
    width: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.public_left .logo {
    width: 48px;
    display: block;
    margin-top: 0.6875rem;
}

.public_menu {
    width: 100%;
    padding: 0.3125rem;
}

.public_menu ul {
    display: flex;
    flex-direction: column;
}

.public_menu ul li {
    margin: 1rem 0;
}

.public_menu ul li a {
    text-decoration: none;
    color: #fff;
    padding: 0.375rem 0;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.25s;
}

.public_menu ul li a.active,
.public_menu ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.public_menu ul li a img {
    width: 2rem;
    margin-bottom: 0.375rem;
}

.service {
    margin-bottom: 1.5rem;
    cursor: pointer;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.service:hover .QR_code {
    display: block;
}

.service .QR_code {
    display: none;
    position: absolute;
    bottom: 0;
    left: 5rem;
    background: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

.service a img {
    width: 2rem;
}

.service .QR_code img {
    width: 8.75rem;
}

.service .QR_code span {
    display: block;
    text-align: center;
    margin-top: 0.25rem;
}

/* index */
.index {
    background: url(../images/index_bg.png) no-repeat top left;
    background-size: 100%;
}

.public_right {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.top_right {
    display: flex;
    align-items: center;
}

.logo_text {
    width: 14.375rem;
    margin-left: 0.625rem;
}

.public_top {
    display: flex;
    height: 3.75rem;
    background: #fff;
    align-items: center;
    justify-content: space-between;
    padding-right: 1.5rem;
    position: relative;
}

.vip {
    width: 17.3125rem;
    align-items: center;
    height: 2rem;
    background: url(../images/vip_bg.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    padding: 0 0.75rem 0 3rem;
    justify-content: space-between;
    cursor: pointer;
}

.vip img {
    height: 0.875rem;
}

.vip span {
    color: #fff;
}

.vip b {
    color: #FFBB00;
}

.profile {
    height: 3.75rem;
    display: flex;
    align-items: center;
}

.profile .head_img {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
    margin-left: 1.5rem;
    border-radius: 100%;
    cursor: pointer;
}

.profile ul {
    display: none;
    position: absolute;
    right: 1.5rem;
    top: 3.75rem;
    background: #fff;
    border-radius: 0.25rem;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
    padding: 0.25rem;
}

.profile:hover ul {
    display: block;
}

.profile ul li a {
    text-decoration: none;
    color: #000000;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.625rem;
    transition: all 0.25s;
    border-radius: 0.25rem;
}

.profile ul li a:hover {
    background: #EDF6FF;
}

.profile ul li a img {
    width: 1rem;
    margin-right: 0.625rem;
}

.public_con {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
    overflow: auto;
    align-items: center;
}

@media (max-width: 1500px) {
    .w1200 {
        width: 45rem;
        display: grid;
        grid-template-columns: 1fr;
        grid-row-gap: 1.5rem;
    }
	.Carousel{
		/* margin-bottom: 1.5rem; */
		/* width: 75rem; */
	}
	.Carousel img{
	    width: 100%;
	    display: block;
	}
	.evaluation ul {
	    display: grid;
	    grid-template-columns: repeat(3, 1fr);
	    gap: 1.25rem;
		
	}
	
	.index_evaluation{
		grid-template-rows: repeat(2, auto) !important;
	}
	.index_evaluation ul li:nth-child(n+7) {
		display: none !important;
	}
	
	.w1200 .slogan img {
	    height: 1.25rem;
	    margin-bottom: 1.25rem;
	}
}
@media (min-width: 1501px) and (max-width: 1920px) {
    .w1200 {
        width: 56.25rem;
        min-width: 56.25rem;
        display: grid;
        grid-template-columns: 1fr;
        grid-row-gap: 2rem;
    }
	.Carousel{
		/* margin-bottom: 2rem; */
		max-width: 75rem;
		width: 100%;
	}
	.Carousel img{
	    width: 100%;
	    display: block;
	}
	.evaluation ul {
	    display: grid;
	    grid-template-columns: repeat(4, 1fr);
	    gap: 1.25rem;
	}
	
	
	
	.w1200 .slogan img {
	    height: 1.5rem;
	    margin-bottom: 1.25rem;
	}
}

@media (min-width: 1921px) and (max-width: 2559px) {
    .w1200 {
        width: 70rem;
        /* min-width: 62.5rem; */
        display: grid;
        grid-template-columns: 1fr;
        grid-row-gap: 2.5rem;
    }
	.Carousel{
		/* margin-bottom: 2.5rem; */
		/* width: 85rem; */
	}
	.Carousel img{
	    width: 100%;
	    display: block;
	}
	.evaluation ul {
	    display: grid;
	    grid-template-columns: repeat(4, 1fr);
	    gap: 1.25rem;
		/* grid-template-rows: repeat(2, auto); */
		
	}
	.w1200 .slogan img {
	    height: 1.875rem;
	    margin-bottom: 1.25rem;
	}
}

@media (min-width: 2560px) {
    .w1200 {
        width: 80rem;
        /* min-width: 62.5rem; */
        display: grid;
        grid-template-columns: 1fr;
        grid-row-gap: 2.5rem;
    }
	.Carousel{
		/* margin-bottom: 2.5rem; */
		width: 100rem;
	}
	.Carousel img{
	    width: 100%;
	    display: block;
	}
	.evaluation ul {
	    display: grid;
	    grid-template-columns: repeat(4, 1fr);
	    gap: 1.25rem;
		/* grid-template-rows: repeat(2, auto); */
		
	}
	.w1200 .slogan img {
	    height: 2rem;
	    margin-bottom: 1.25rem;
	}
}



.w1200 .slogan {
    display: flex;
    align-items: center;
    flex-direction: column;
}


.title{
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.title p{
    display: flex;
    flex: 1;
    align-items: center;
    background: rgb(240,246,255,0.2);
    border:0.0625rem solid rgb(191,219,254);
    border-radius: 0.25rem;
    position: relative;
}
.title p input{
    display: flex;
    flex: 1;
    padding: 0.5rem;
    border: none;
    background: none;
    font-size: 0.875rem;
}
.title p span{
    margin-right: 0.5rem;
    color: #999;
}
.title p em{
    position: absolute;
    background: #fcfdff;
    right: 0;
    color: #D00000;
    padding: 0 1rem;
}
.title>span{
    margin-right: 1rem;
    font-size: 0.875rem;
}
.title>span b{
    color: #F00000;
    padding-right: 0.25rem;
}
.guide {
    position: relative;
    padding-bottom: 1.5rem;
    background: #fff;
    border-radius: 0.25rem;
}
.guide ul{
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.guide ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 0 0.5rem;
}
.guide ul li span{
    display: flex;
    background: #fafafa;
	border: 0.0625rem solid #eee;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 1.125rem;
}
.guide ul li em{
    margin-left: 0.5rem;
    font-size: 0.875rem;
}
.guide p{
    left: 1rem;
    right: 1rem;
    height: 0.0625rem;
    background: #eee;
    position: absolute;
    top: 1rem;
}
.guide p span{
    height: 0.0625rem;
    background: #bfdbfe;
    position: absolute;
    width: 0;
    transition: all 0.25s;
}
.guide.one ul li:nth-child(1) span,.guide.two ul li:nth-child(1) span,.guide.three ul li:nth-child(1) span{
    color: #1e40af;
    background: #eff6ff;
    border: 0.0625rem solid #bfdbfe;
}
.guide.one ul li:nth-child(1) em,.guide.two ul li:nth-child(1) em,.guide.three ul li:nth-child(1) em{
    color: #3764D7;
}

.guide.two p span{
    width: 50%;
}
.guide.two ul li:nth-child(2) span,.guide.three ul li:nth-child(2) span{
    color: #1e40af;
    background: #eff6ff;
    border: 0.0625rem solid #bfdbfe;
}
.guide.two ul li:nth-child(2) em,.guide.three ul li:nth-child(2) em{
    color: #3764D7;
}
.guide.three ul li:nth-child(3) span{
    background: #3764D7;
    color: #fff;
}
.guide.three ul li:nth-child(3) em{
    color: #3764D7;
}
.guide.three p span{
    width: 100%;
}
.index_upload {
    background: #fff;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}
.index_upload input{
    display: none;
}

.upload_file {
    border-radius: 0.5rem;
    border: 1px dashed rgba(55, 100, 215, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    padding:1rem 0 1.875rem 0 ;
}
.upload_file:hover{
    border: 1px dashed #13B974;
}
.upload_file img{
    width: 6.25rem;
    height: 6.25rem;
}
.upload_file h3{
    /* margin-top: 1rem; */
    color: #3764D7;
}
.upload_file span{
    margin-top: 0.5rem;
    font-size: 0.75rem;
}
.upload_file b{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: normal;
}
.upload_file p.text_green{
    color: #13B974;
}
.upload_file p.text_red{
    color: #D00000;
}
.upload_btn_group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.upload_btn_group button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    font-size: 1rem;
    color: #3764D7;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 6.25rem;
    padding: 0.125rem 1rem;
    border: 1px solid #3764D7;
}

.upload_btn_group button:hover {
    background: #D9ECFF;
}

.upload_btn_group button:active {
    background: #bbddff;
}

.upload_btn_group button img {
    height: 2rem;
    width: 2rem;
}

.upload_btn_group button:nth-child(2) {
    margin-left: 1rem;
}
.upload_btn_group button.disabled{
    cursor: not-allowed;
    color: #999;
    background: #eee;
    border:1px solid #ddd;
}
.text_roll {
    padding-left: 1.5rem;
    background: url(../images/icon1.png) no-repeat left center;
    background-size: 1rem 1rem;
}

.evaluation h5 {
    background: url(../images/icon5.png) no-repeat left center;
    background-size: 1rem 1.25rem;
    padding-left: 1.625rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}



.evaluation ul li {
    padding: 1.25rem;
    background: #fff;
    border-radius: 0.5rem;
    transition: all 0.25s;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.evaluation ul li:hover {
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
    transition: all 0.25s;
    transform: translateY(-10px);
}

.evaluation ul li a {
    text-decoration: none;
    color: #000000;
    display: flex;
    flex-direction: column;
}

.evaluation_top {
    display: flex;
    flex-direction: column;
    padding-left: 3.5rem;
    height: 2.5rem;
    justify-content: space-between;
    margin-bottom: 0.625rem;
}

.progress .evaluation_top {
    background: url(../images/icon_pic1.png) no-repeat left center;
    background-size: 2.5rem;
}

.progress .evaluation_top span {
    color: #3764D7;
}
.font_top{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.success .evaluation_top {
    background: url(../images/icon_pic2.png) no-repeat left center;
    background-size: 2.5rem;
}

.success .evaluation_top span {
    color: #13B974;
}

.fail .evaluation_top {
    background: url(../images/icon_pic3.png) no-repeat left center;
    background-size: 2.5rem;
}

.fail .evaluation_top span {
    color: #666666;
}

.evaluation_top time {
    font-size: 0.75rem;
    color: #999999;
}

.evaluation ul li a p {
    white-space: nowrap;
    /* width: 15.3125rem; */
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn_group {
    display: flex;
    justify-content: end;
    /* margin-top: 1rem; */
}

.btn_group button {
    display: flex;
    align-items: center;
    /* padding: 0.375rem 0.625rem; */
    background: none;
    /* border-radius: 6.25rem; */
    border: none;
    margin-left: 0.625rem;
    /* color: #666; */
    cursor: pointer;
    transition: all 0.25s;
}

/* .btn_group button:hover {
    background: #eef7ff;
} */

.btn_group button img {
    height: 1rem;
    width: 1rem;
    margin-right: 0.25rem;
}

.evaluation_filter {
    display: flex;
    margin-bottom: 1.25rem;
}

.evaluation_filter span {
    height: 2.5rem;
    padding: 0 1.25rem;
    line-height: 2.5rem;
    border-radius: 6.25rem;
    background: #fff;
    margin-right: 1.25rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s;
}

.evaluation_filter span:hover {
    background: #5579d4;
    color: #fff !important;
}

.evaluation_filter span.active {
    background: #3764D7;
    color: #fff !important;
}

.evaluation_filter span:active {
    background: #244fbd;
}

.paging {
    margin-top: 1.25rem;
    display: flex;
    justify-content: end;
}

/* 协议 */
.agreement {
    line-height: 1.8rem;
    padding: 2rem 0;
}

.agreement u {
    font-weight: bold;
}

.agreement h2 {
    font-size: 2rem;
}

.agreement time {
    display: block;
    text-align: right;
    margin: 0.5rem 0;
}

.agreement p {
    text-indent: 2rem;
    margin: 0.5rem 0;
}

.agreement h4 {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.agreement h5 {
    font-size: 0.875rem;
    margin: 0.5rem 0;
    text-indent: 2rem;
}

/* 个人中心 */
.personal {
    display: flex;
    flex: 1;
    height: 100vh;
}

.personal_center {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.information {
    padding: 1.5rem;
    background: #fff;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.information_left {
    display: flex;
}

.information_left img {
    margin-right: 2rem;
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 100%;
}

.information_left ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.25rem;
    align-content: center
}

.information_left ul li label {
    color: #999;
}
.information_left ul li{
    width: 18.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
}
.information_right>button {
    height: 2rem;
    border-radius: 1rem;
    border: none;
    background: #EEEEEE;
    padding: 0 1rem;
    cursor: pointer;
    transition: all 0.25s;
}

.information_right>button:hover {
    background: #3764D7;
    color: #fff;
}

.information_right .btn-group {
    display: flex;
    justify-content: space-between;
}

.information_right .btn-group button {
    display: block;
    background: none;
    border: none;
    color: #999;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.25s;
}

.information_right .btn-group button:hover {
    color: #3764D7;
}

.Recharge {
    margin-top: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    flex: 1;
}

.Recharge .title {
    margin-bottom: 1rem;
    display: flex;
    border-bottom: 0.0625rem solid #EEEEEE;
}

.Recharge .title h4 {
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #3764D7;
    margin-bottom: -1px;
}

table {
    width: 100%;
    border-bottom: 1px solid #EEEEEE;
    border-right: 1px solid #EEEEEE;
    border-collapse: collapse;
}

table th,
table td {
    background: #EDF6FF;
    border-top: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    padding: 0.8125rem 1.25rem;
    text-align: left;
}

table td {
    background: none;
}

table td span {
    color: #14BC2F;
    padding: 0 0.25rem;
}

table td label.bg_blue {
    border-radius: 0.125rem;
    background: rgba(55, 100, 215, 0.1);
    border: 1px solid rgba(55, 100, 215, 0.2);
    padding: 0.25rem 0.5rem;
    color: #3764D7;
}

table td label.bg_green {
    border-radius: 0.125rem;
    background: rgba(19, 185, 116, 0.1);
    border: 1px solid rgba(19, 185, 116, 0.2);
    padding: 0.25rem 0.5rem;
    color: #13B974;
}

table td label.bg_gray {
    border-radius: 0.125rem;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
    color: #999999;
}

table td em {
    color: #8E6127;
}

table tr:hover {
    background: #fafafa;
}
table td img{
    width: 12.5rem;
    margin: 0 auto;
}
table td h3{
    display: block;
    text-align: center;
}

/* 弹窗样式 */
.modal {
    position: fixed;
    flex-direction: column;
    flex: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 40rem;
    animation: modalSlide 0.3s ease-out;
}

@keyframes modalSlide {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.modal_head {
    display: flex;
    padding: 1rem 1.5rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.0625rem solid #F0F0F0;
}

.modal_head .close-btn {
    font-weight: 100;
    font-size: 2rem;
    height: 1rem;
    line-height: 1rem;
    display: block;
}

.modal h4 {
    font-size: 1rem;
}

.modal_con {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.head_img {
    position: relative;
}

.head_img img {
    width: 6.25rem;
    border-radius: 100%;
}

.head_img .upload {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: #EEEEEE url(../images/Camera.png) no-repeat center center;
    background-size: 0.75rem 0.75rem;
    cursor: pointer;
    border-radius: 100%;
    border: 0.0625rem solid #fff;
}

.head_img .upload input {
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0;
}

.modal_con p {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    width: 60%;
}

.modal_con p label {
    display: flex;
    width: 6.25rem;
    justify-content: end;
}

.modal_con p input {
    display: flex;
    flex: 1;
    height: 2rem;
    padding: 0 0.5rem;
    border: 1px solid #D9D9D9;
    border-radius: 0.125rem;
    width: 20rem;
    color: #666;
}

.modal_con p span {
    display: flex;
    flex: 1;
}

.modal_con p span a {
    margin-left: 1rem;
    color: #3764D7;
    text-decoration: none;
}

.modal_foot {
    padding: 0.625rem 1.5rem;
    border-top: 0.0625rem solid #EEEEEE;
    display: flex;
    justify-content: end;
}

.modal_foot button {
    height: 2rem;
    border-radius: 1rem;
    padding: 0 1rem;
    background: #3764D7;
    border: none;
    color: #fff;
    transition: all 0.25s;
    cursor: pointer;
    margin-left: 0.5rem;
}

.modal_foot button:hover {
    background: #2692FF;
}

.modal_foot button:first-child {
    background: none;
    color: #000000;
    border: 0.0625rem solid #EEEEEE;
}

.modal_foot button:first-child:hover {
    background: #eee;
    color: #000000;
    border: 0.0625rem solid #EEEEEE;
}

/* 遮罩层 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 999;
}

/* 关闭按钮 */
.close-btn {
    float: right;
    cursor: pointer;
    font-weight: bold;
}

/* vip弹窗 */
.modal2 {
    width: 68.75rem;
    background: #EDF6FF url(../images/vip_box_bg.png) no-repeat top center;
    background-size: 68.75rem 14.5625rem;
}

.modal2 .close-btn {
    position: absolute;
    top: 0.5rem;
    right: 1.25rem;
    font-size: 2rem;
    color: #fff;
    font-weight: 100;
}

.modal2_head {
    display: flex;
    justify-content: space-between;
    padding: 2rem 5rem;
    align-items: center;
    color: #fff;
}

.modal2_head_left {
    display: flex;
    align-items: center;
}

.modal2_head_left>img {
    height: 3.75rem;
    width: 3.75rem;
    border-radius: 100%;
    margin-right: 1rem;
}

.modal2_head_text {
    display: flex;
    flex-direction: column;
}

.modal2_head_text p {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.modal2_head_text p img {
    width: 0.875rem;
    height: 0.75rem;
}

.modal2_head_text p span {
    color: #DEA254;
    margin: 0 0.5rem;
}

.modal2_head h1 {
    font-weight: 300;
    font-size: 1.5rem;
}

.modal2_content {
    display: flex;
}

.modal2_content_left {
    padding: 1.5rem;
}

.modal2_content_left h4 {
    font-size: 1.25rem;
    color: #8E6127;
    margin-bottom: 1.875rem;
}

.modal2_content_left ul>li {
    margin-bottom: 1.875rem;
}

.modal2_content_left ul>li:last-child {
    margin: 0;
}

.modal2_content_left ul>li h5 {
    color: #D2A872;
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.modal2_content_left ul>li li {
    color: #8E6127;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding-left: 1.625rem;
    background: url(../images/Check.png) no-repeat left center;
    background-size: 1rem;
}

.modal2_content_left ul>li li:last-child {
    margin: 0;
}

.modal2_content_right {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0 1.5rem 1.5rem 2rem;
}

.Recharge_Record {
    display: flex;
    justify-content: end;
}

.Recharge_Record a {
    display: flex;
    justify-content: end;
    padding: 0;
    color: #fff;
    align-items: center;
    text-decoration: none;
    height: 5rem;
    padding-top: 1.125rem;
}

.Recharge_Record a img {
    width: 18px;
    height: 1.125rem;
    margin-left: 0.25rem;
}

.set_menu {
    margin-top: 1.5rem;
}

.set_menu ul {
    display: flex;
}

.set_menu ul li {
    flex: 1;
    width: 1%;
    background: #ffffff80 url(../images/diamond_bg2.png) no-repeat right bottom;
    background-size: 4.875rem 4.625rem;
    position: relative;
    border-radius: 0.5rem;
    margin-left: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.25s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.set_menu ul li:first-child {
    margin: 0;
}

.set_menu ul li h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #8E6127;
}

.set_menu ul li p {
    font-size: 0.75rem;
    color: #666666;
}

.set_menu ul li .price {
    margin-top: 2rem;
}

.set_menu ul li .price em {
    font-size: 1.5rem;
    color: #8E6127;
}

.set_menu ul li .price strong {
    font-size: 2.25rem;
    color: #8E6127;
    margin-right: 0.5rem;
}

.set_menu ul li .price del {
    font-size: 1rem;
    color: #D2A872;
}

.set_menu ul li b {
    position: absolute;
    top: -12px;
    left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    background: linear-gradient(to right, #D00000, #DF9D48);
    color: #fff;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1.5rem;
    padding: 0 0.5rem;
}

.set_menu ul li.active,
.set_menu ul li:hover {
    background: #DEA25420 url(../images/diamond_bg1.png) no-repeat right bottom;
    background-size: 4.875rem 4.625rem;
    border: 0.0625rem solid #8E6127;
}

.tip {
    background: #DEA25420;
    height: 2rem;
    line-height: 2rem;
    margin-top: 1.5rem;
    border-radius: 0.25rem;
    padding: 0 1rem;
    color: #8E6127;
}

.payment_con {
    padding: 1rem;
    align-items: center;
    background: #fff;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.payment {
    display: flex;
    margin: 1.5rem 0 1rem 0;
    align-items: center;
}

.payment p {
    display: flex;
    align-items: center;
    border-radius: 0.25rem;
    margin-left: 0.625rem;
    height: 2rem;
    border: 0.0625rem solid #8E6127;
    padding: 0 0.75rem;
}

.payment p img {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.payment_con_left {
    display: flex;
    align-items: center;
}

.payment_con_left img {
    height: 7.5rem;
    width: 7.5rem;
    margin-right: 1rem;
}

.price_item .price {
    margin-bottom: 2rem;
}

.price_item .price span {
    font-size: 1rem;
}

.price_item .price em {
    font-size: 1rem;
    color: #8E6127;
}

.price_item .price strong {
    font-size: 1.5rem;
    color: #8E6127;
    margin-right: 0.5rem;
}

.price_item .price del {
    font-size: 1rem;
    color: #D2A872;
}

.price_item p {
    color: #666;
}

.price_item p a {
    text-decoration: none;
    color: #3764D7;
}

.payment_con_right {
    display: flex;
    flex-direction: column;
    position: relative;
}

.payment_con_right:before {
    position: absolute;
    content: "";
    top: 0.3125rem;
    height: 2rem;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255), rgba(255, 255, 255, 0));
}

.payment_con_right::after {
    position: absolute;
    content: "";
    bottom: 0.3125rem;
    height: 2rem;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255), rgba(255, 255, 255, 0));
}

.payment_con_right p {
    padding: 0 0.5rem;
    background: #eee;
    border-radius: 0.25rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    margin: 0.3125rem 0;
}

.payment_con_right p img {
    height: 1.25rem;
    width: 1.25rem;
    margin-right: 0.5rem;
}

.payment_con_right p span {
    color: #8E6127;
    margin-right: 0.25rem;
}

.payment_con_right p em {
    color: #666;
}

/* 评测详情 */
.Review_Details {
    display: flex;
    width: 100%;
    flex: 1;
    height: 100%;
    overflow-x: hidden;
}
.resizer {
    width: 1rem;
    /* background: #ccc; */
    cursor: col-resize;
    position: relative;
    transition: 0.3s background;
    display: flex;
    align-items: center;
    justify-content: center;
}
.resizer span{
    height: 2rem;
    width: 0.625rem;
    background-color: #ddd;
    border-radius: 5rem;
    position: relative;

    transition: 0.3s background;
}
.resizer span:before{
    position: absolute;
    content: "";
    top: 0.5rem;
    bottom: 0.5rem;
    width: 0.0625rem;
    left: 0.1875rem;
    background: #999;
}
.resizer span::after{
    position: absolute;
    content: "";
    top:0.5rem;
    bottom: 0.5rem;
    width: 0.0625rem;
    right: 0.1875rem;
    background: #999;
}
.resizer:hover span{
    background: #a2bcff;
}
.Review_Details_left,
.Review_Details_right {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    flex: 1;
    width: 1%;
}

.Review_Details_left {
    /* margin-right: 1rem; */
    flex: 2;
    display: flex;
    flex-direction: column;
    min-width: 12.5rem;
}

.Review_Details_right {
    flex: 3;
    display: flex;
    flex-direction: column;
    min-width: 47.5rem;
}

.Review_Details .title {
    /* margin-bottom: 1rem; */
    display: flex;
    border-bottom: 0.0625rem solid #EEEEEE;
    justify-content: space-between;
    align-items: start;
}
.title_group{
    display: flex;
}
.Review_Details .title h5 {
    padding: 0 0 1rem 0;
    margin-bottom: -1px;
    margin-right: 1rem;
    cursor: pointer;
}

.Review_Details .title h5.active {
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #3764D7;
    color: #3764D7;
    margin-bottom: -1px;
}
.Review_Details .title i{
    font-style: normal;
    color: #dea254;
}

.Review_Details_con {
    display: flex;
    flex: 1;
    overflow: auto;
    position: relative;
}

.Review_Details .bottom {
    display: flex;
    justify-content: end;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.Review_Details .bottom .con_tip {
    display: flex;
    flex: 1;
    align-items: center;
}

.Review_Details .bottom .con_tip span {
    margin-right: 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    color: #666;
}

.Review_Details .bottom .con_tip span:first-child:before {
    content: "";
    height: 1rem;
    width: 1rem;
    background: #F00000;
    /* border: 1px solid #FFEFAB50; */
    display: flex;
    margin-right: 0.5rem;
}

.Review_Details .bottom .con_tip span:nth-child(2):before {
    content: "";
    height: 1rem;
    width: 1rem;
    background: #FF7700;
    display: flex;
    margin-right: 0.5rem;
    /* border: 1px solid #FF5A5A20; */
}

.Review_Details .bottom .con_tip span:nth-child(3):before {
    content: "";
    height: 1rem;
    width: 1rem;
    background: #13B69D;
    display: flex;
    /* border: 1px solid #3764D720; */
    margin-right: 0.5rem;
}
.Review_Details .bottom button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6.25rem;
    border: none;
    height: 2.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.25s;
    font-size: 1rem;
    color: #fff;
    margin-left: 1rem;
}

.Review_Details .bottom button img {
    width: 1.25rem;
    height: 1.25rem;
}

.Review_Details .bottom button:hover {
    opacity: 0.8;
}

.Review_Details .title h5.result {
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #13B974;
    color: #13B974;
    margin-bottom: -1px;
}
.positioning{
    position: fixed;
    right: 3rem;
    top: 50%;
    border-radius: 1.25rem;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 25px 5px rgba(0,0,0,0.1);
}
.screen{
    position: fixed;
    right: 3rem;
	height: 2.5rem;
	width: 2.5rem;
    top: 42%;
    border-radius: 1.25rem;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 25px 5px rgba(0,0,0,0.1);
	cursor: pointer;
	transition: all 0.25s;
	background:rgba(255, 255, 255, 0.6) url(../images/screen.png) no-repeat center center;
	background-size: 80% 80%;
}
.screen:hover{
    box-shadow: 0 0 25px 5px rgba(0,0,0,0.1);
	background:rgba(55, 100, 215, 0.8) url(../images/screen1.png) no-repeat center center;
	background-size: 80% 80%;
}
.screen_meun{
	position:fixed;
	top: 42%;
	right: 6rem;
	z-index: 1;
	display: none;
	transform: translateX(50%);
	animation: menuAppear 0.3s ease-out forwards;
}
@keyframes menuAppear {
            from {
                opacity: 0;
                transform: translateY(0%) translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0%) translateX(0);
            }
        }
        
        .screen_meun.active {
            display: flex;
        }
.screen_meun ul{
	 background: rgba(255, 255, 255, 1);
	 box-shadow: 0 0 25px 5px rgba(0,0,0,0.1);
	 display: flex;
	 flex-direction: column;
	 border-radius: 0.5rem;
	 padding: 0.5rem;
}
.screen_meun ul li{
	padding: 0.375rem 2rem 0.375rem 0.625rem;
	border-radius: 0.25rem;
	cursor: pointer;
	font-size: 0.875rem;
	color: #666;
	transition: all 0.25s;
	background: #fff;
	position: relative;
	margin: 0.125rem;
}
.screen_meun ul li:hover{
	background: #eff6ff;
	
}
.screen_meun ul li.active{
	background: #eff6ff;
	color: #3764D7;
}
.screen_meun ul li.active:before{
	position: absolute;
	content: "";
	right: 0.5rem;
	border-bottom: 0.1rem solid #3764D7;
	border-left: 0.1rem solid #3764D7;
	width: 0.75rem;
	height: 0.375rem;
	transform: rotate(-45deg);
	top: 0.6125rem;
}
.arrow-line {
    display: flex;
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.25s;
    cursor: pointer;
}
.arrow-line:hover{
    background: rgba(55, 100, 215, 0.8);
}

/* 公共线段样式 */
.arrow-line::before,
.arrow-line::after {
    content: "";
    position: absolute;
    left: 50%;
    background: #333; /* 箭头颜色 */
    transform-origin: center;
}

/* 中间竖线（公共部分） */
.arrow-line::before {
    width: 2px; /* 线段粗细 */
    height: 1rem; /* 线段长度 */
    transform: translateX(-50%);
}

/* 箭头头部（动态旋转部分） */
.arrow-line::after {
    width: 0.625rem;
    height: 0.625rem;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    background: none;
    transform: translateX(-50%);
}

/* 向上箭头 */
.arrow-line.up::after {
    top: 0.875rem;
    transform: translateX(-50%) rotate(-45deg);
}
.arrow-line.up::before {
    top: 0.875rem;
}

/* 向下箭头 */
.arrow-line.down::after {
    bottom: 0.875rem;
    transform: translateX(-50%) rotate(135deg);
}
.arrow-line.down::before {
    bottom: 0.875rem;
}

/* 悬停效果示例 */
.arrow-line:hover::after {
    border-color: #fff;
}
.arrow-line:hover::before{
    background: #fff;
}

.default_icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
.default_icon img{
    width: 30rem;
}
.bg_yellow {
    border: 1px solid #FFEFAB50;
    background: #FFEFAB40;
}

.bg_red {
    border: 1px solid #FF5A5A20;
    background: #FF5A5A10;
}

.bg_blue {
    border: 1px solid #3764D720;
    background: #3764D710;
}

.result_box {
    display: flex;
    flex-direction: column;
    counter-reset: section;
}

.result_item {
    display: flex;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    flex-direction: column;
    /* counter-reset:subsection; */
    border: 0.0625rem solid rgba(229,231,235,1);
    border-radius: 0.25rem;
    padding: 1.5rem;
    position: relative;
}
.result_item h1:before{
    font-family: 'font';
    font-size: 1rem;
    font-weight: bold;
    counter-increment:section;
    content:counter(section);
    height: 2rem;
	min-width: 2rem;
	border-radius: 6.25rem;
	line-height: 2.25rem;
    margin-right: 0.5rem;
	background: linear-gradient(to right, #7398f7, #3764D7);
	color: #fff;
	text-align: center;
}
.result_item h1{
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    counter-reset: subsection;
}
.result_item .sub_detection{
    counter-reset: subsection;
}
.result_item .detection_describe {
    border-left: 2px solid #ddd;
    padding-left: 1rem;
    font-size: 0.875rem;
    color: rgb(75,85,99);
    line-height: 1.8;
    margin-bottom: 1.5rem;
	margin-left: 1rem;
}

.result_item .detection_describe b{
    color: #000;
    font-weight: normal;
}

.result_item_right {
    flex: 1;
    background: rgb(240,246,255,0.2);
	border:0.0625rem solid rgb(191,219,254);
    border-radius: 0.5rem;
    padding: 1.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}
.result_item_right:last-child{
    margin-bottom: 0;
}
.result_item_right .text-container{
	position: relative;
	padding:0.375rem 0 0.375rem 3rem;
	/* border-bottom: 0.0625rem dashed #ccc; */
}
.result_item_right .type{
    position: absolute;
    right: 1rem;
    top: 1rem;
    padding: 0.125rem 0.5rem;
    /* background: #13B974; */
    font-size: 0.75rem;
	border-radius: 1rem;
	display: flex;
    /* color: #fff; */
	align-items: center;
}
.result_item_right .type img{
	height: 0.875rem;
	margin-right: 0.125rem;
}
/* .result_item_right .type:before{
    content: "";
    border-top: 0.25rem solid #0d774b;
    border-left: 0.25rem solid #0d774b;
    border-bottom: 0.25rem solid transparent;
    border-right: 0.25rem solid transparent;
    position: absolute;
    right: 0;
    bottom: -8px;
} */
.result_item_right h2.sub_title{
    position: relative;
	display: flex;
}
.result_item_right h2.sub_title:before{
    font-family: 'font';
    font-size: 0.875rem;
	height: 1.375rem;
	min-width: 1.375rem;
	text-align: center;
    /* font-weight: bold; */
    counter-increment: subsection;
    content:counter(section) "." counter(subsection);
    margin-right: 0.5rem;
	line-height: 1.5rem;
	border-radius: 6.25rem;
	color: #fff;
	padding: 0 0.25rem;
	background: linear-gradient(to right, #7398f7, #3764D7);
}
.result_item_right h2{
    font-size: 1rem;
	margin-bottom: 0.5rem;
}
.result_item_right .text-container p{
    font-size: 0.875rem;
    line-height: 1.8;
	cursor: pointer;
	color: rgb(75,85,99);
	transition: all 0.25s;
}
.result_item_right .text-container p:hover{
	text-decoration: underline;
}
.result_item_right .text-container:last-child{
	padding-bottom: 0 !important;
	border: none !important;
}
.result_item .text_red{
    color: #991b1b;
	border: 0.0625rem solid #fecaca;
	background:  #fef2f2;
}
.result_item .text_orange{
    color: #9a3412;
	background: #fff7ed;
	border: 0.0625rem solid #fed7aa;
	
}
.result_item .text_blue{
    color: #1e40af;
    background: #eff6ff;
    border: 0.0625rem solid #bfdbfe;
}
.result_item .text_green{
    color: #166534;
	background: #f0fdf4;
	border: 0.0625rem solid #bbf7d0;
	
}
.result_item_right_con {
    line-height: 1.8;
    position: relative;
}

.result_item_right_con span {
    display: block;
}
.AI_diagnosis{
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
}
.AI_diagnosis strong{
    position: relative;
	font-size: 0.875rem;
	font-weight: normal;
	border-radius: 0.25rem;
	padding: 0.75rem;
}
.AI_diagnosis strong:before{
    font-family: 'font';
    font-size: 1.2rem;
    font-style: italic;
}
.text-content {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}
.text-container .location{
	position: absolute;
	left: 0;
	height: 1.5rem;
	width: 1.5rem;
	border-radius: 0.125rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s;
	background: rgba(219,234,254,1);
}
.text-container .location:hover{
	/* transform: scale(1.5); */
	background: rgba(191,219,254,1);
}
.text-content.expanded {
    -webkit-line-clamp: unset;
}

.toggle-btn {
    left: 1.5rem;
    width: 1.5rem;
	height: 1.5rem;
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease;
	
}
.toggle-btn:before{
	position: absolute;
	content: "";
	border-top: 0.375rem solid transparent;
	border-bottom: 0.375rem solid transparent;
	border-left: 0.375rem solid #999;
	left: 0.5625rem;
	top: 0.375rem;
}
.toggle-btn.rotated {
	transform: rotate(90deg);
}
/* 扫描效果 */
.container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.scan-box {
    --box-height: 300px;
    /* 默认值，会被JS覆盖 */
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* 四角边框样式 */
.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: #3764D7;
    border-style: solid;
}

.top-left {
    top: 0;
    left: 0;
    border-width: 3px 0 0 3px;
}

.top-right {
    top: 0;
    right: 0;
    border-width: 3px 3px 0 0;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-width: 0 0 3px 3px;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-width: 0 3px 3px 0;
}

/* 扫描线动画 */
.scan-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right,
    transparent 0%, #3764D7 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(var(--box-height));
    }
}

/* 扫描框外发光效果 */
.scan-box::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    box-shadow: 0 0 40px #3764D7;
    animation: glow 2s infinite;
    z-index: -1;
}

@keyframes glow {
    50% {
        opacity: 0.5;
    }
}

/* 非会员详情 */
.nonmember {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 11;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom,
    transparent 20%, #fff 50%, #fff 100%);

}

.nonmember a {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.nonmember a img {
    width: 1rem;
    height: 1rem;
}

.nonmember a span {
    font-size: 1rem;
    color: #8E6127;
    margin-left: 0.5rem;
}

/* 加载动画 */
.loader {
    width: 16px;
    height: 13px;
}

.loader svg path {
    fill-opacity: 0;
    stroke-opacity: 0;
    stroke-width: 0.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 蓝色路径动画 */
.loader path:nth-child(2) {
    stroke: #13B974;
    animation: blueStroke 2s infinite;
}

/* 绿色路径动画 */
.loader path:nth-child(1) {
    stroke: #3764D7;
    animation: greenStroke 2s infinite 0.5s;
}

@keyframes blueStroke {
    0% {
        stroke-dashoffset: 200;
        stroke-opacity: 1;
    }

    30% {
        stroke-dashoffset: 0;
        stroke-opacity: 1;
    }

    40% {
        fill-opacity: 1;
    }

    60% {
        stroke-opacity: 0;
    }

    70% {
        fill-opacity: 0;
    }

    100% {
        stroke-dashoffset: 200;
        fill-opacity: 0;
    }
}

@keyframes greenStroke {
    0% {
        stroke-dashoffset: 200;
        stroke-opacity: 1;
    }

    30% {
        stroke-dashoffset: 0;
        stroke-opacity: 1;
    }

    40% {
        fill-opacity: 1;
    }

    60% {
        stroke-opacity: 0;
    }

    70% {
        fill-opacity: 0;
    }

    100% {
        stroke-dashoffset: 200;
        fill-opacity: 0;
    }
}

.analysis_loader {
    display: flex;
}

.loader_item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    flex: 1;
    flex-direction: column;
    position: relative;
}

.loader_item:before {
    position: absolute;
    content: "";
    left: 50%;
    right: 0;
    height: 0.0625rem;
    background: #ccc;
    top: 2rem;
}

.loader_item::after {
    position: absolute;
    content: "";
    right: 50%;
    left: 0;
    height: 0.0625rem;
    background: #ccc;
    top: 2rem;
}

.loader_item b {
    font-size: 1rem;
    height: 2rem;
    width: 2rem;
    border-radius: 100%;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 0.5rem;
    z-index: 1;
    border: 1px solid #ccc;
}

.loader_item span {
    margin-right: 0.5rem;
    color: #ccc;
}


.loader_item.blue span {
    color: #3764D7;
}

.loader_item.blue b {
    border: 1px solid #3764D7;
    position: relative;
    background: #dce6ff;
    z-index: 111;
}

.loader_item.blue:before {
    position: absolute;
    content: "";
    left: 50%;
    right: 0;
    height: 0.0625rem;
    background: #3764D7;
    top: 2rem;
}

.loader_item.blue::after {
    position: absolute;
    content: "";
    right: 50%;
    left: 0;
    height: 0.0625rem;
    background: #3764D7;
    top: 2rem;
}


.loader_item.green span {
    color: #13B974;
	font-size: 0.75rem;
}

.loader_item.green b {
    background: #effdf4;
    border: 1px solid #12b974;
}
.loader_item b img{
	width: 75%;
}
.loader_item.green:before {
    position: absolute;
    content: "";
    left: 50%;
    right: 0;
    height: 0.0625rem;
    background: #13B974;
    top: 2rem;
}

.loader_item.green::after {
    position: absolute;
    content: "";
    right: 50%;
    left: 0;
    height: 0.0625rem;
    background: #13B974;
    top: 2rem;
}



.loader_item.red span {
    color: #f44336;
}

.loader_item.red b {
    background: #fef2f2;
    border: 1px solid #f44336;
}

.loader_item.red:before {
    position: absolute;
    content: "";
    left: 50%;
    right: 0;
    height: 0.0625rem;
    background: #f44336;
    top: 2rem;
}

.loader_item.red::after {
    position: absolute;
    content: "";
    right: 50%;
    left: 0;
    height: 0.0625rem;
    background: #f44336;
    top: 2rem;
}


.loader_item.blue b::after, .loader_item.blue b::before {
    content: "";
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    position: absolute;
    z-index: -3;
    left: -17px;
    top: -17px;
    -webkit-animation: animloader14 2s linear infinite;
    animation: animloader14 2s linear infinite;
}


@-webkit-keyframes animloader14 {
    0% {
        transform: scale(0);
        opacity: 1;
        background: #3764D7;
    }
    100% {
        transform: scale(1);
        opacity: 0;
        background: #3764D7;
    }
}
@keyframes animloader14 {
    0% {
        transform: scale(0);
        opacity: 1;
        background: #dce6ff;
    }
    100% {
        transform: scale(1);
        opacity: 0;
        background: #0049ff;
    }
}

.loader_item.blue b::after {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.analysis_loader .loader_item:first-child::after,
.analysis_loader .loader_item:last-child::before {
    display: none;
}

.loader_item_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

:root {
    --default-color: #999999;
    --active-color-1: #13B974;
    --active-color-2: #FF4444;
}

.like_group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.75rem 0 1rem 0;
}
.like_group p{
    padding: 0.125rem 0.5rem;
    border: 1px solid rgb(229,231,235);
    background: rgb(249,250,251);
    border-radius: 0.25rem;
    color: #4b5563;
    display: flex;
    align-items: center;
	font-size: 0.75rem;
}
.like_group p img{
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}
.btn-group-like{
    display: flex;
    align-items: center;
}
.icon-like {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.icon-like path {
    transition: fill 0.3s ease, stroke 0.3s ease;
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.pop-animation {
    animation: pop 0.3s ease;
}

/* 首页协议 */
.agreement_index {
    display: flex;
    align-items: center;
    justify-content: center;
}
.agreement_index a{
    text-decoration: none;
    color: #3764D7;
}
.custom-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

/* 隐藏原生复选框 */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

/* 自定义复选框 */
.checkmark {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 2px;
    transition: all 0.3s;
    position: relative;
}

/* 选中状态 */
.custom-checkbox input:checked ~ .checkmark {
    background: #3764D7;
    border-color: #3764D7;
}

/* 勾选图标 */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* 悬停效果 */
.custom-checkbox:hover .checkmark {
    border-color: #3764D7;
}

/* 禁用状态 */
.custom-checkbox input:disabled ~ .checkmark {
    opacity: 0.5;
    pointer-events: none;
}

.text {
    font-size: 14px;
    color: #333;
}


.close{
    position: fixed;
    right: 0;
    top: 3.75rem;
    height: 2.5rem;
    width: 2.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 100%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0.75rem;
    padding-bottom: 0.25rem;
    transition: all 0.25s;
    color: #fff;
}
.close:hover{
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.none_data{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.none_data img{
    width: 12.5rem;
}

.w100{
    width: 100%;
}



/* 颜色渐变效果 */
.color-fade-text {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2rem;
	background: linear-gradient(90deg, #ff9a9e, #fad0c4, #fad0c4, #a18cd1, #fbc2eb);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: colorFade 8s ease infinite, textFade 4s ease infinite;
}

@keyframes colorFade {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes textFade {
	0%, 100% { opacity: 0.2; }
	50% { opacity: 1; }
}