.modal-backdropT .btn {
			border: 0;
			padding: 10px 22px;
			border-radius: 8px;
			cursor: pointer;
			font-weight: 600;
			font-size: 14px;
			margin-left: 20px;
		}

		.modal-backdropT .btn.ghost {
			background: #003a8f;
			color: #fff;
			display: inline-block;
			transition: all 0.3s ease-in-out;
		}

		.modal-backdropT .btn.ghost#decline {
			background: transparent;
			color: #666;
			border: 1px solid #333;
		}

		.modal-backdropT .btn.ghost#Selec {
			background: transparent;
			color: #666;
			border: 1px solid #333;
		}

		.modal-backdropT .btn.ghost:hover {
			background: #00255d;
		}

		.modal-backdropT .btn.ghost#decline:hover {
			border-color: #003a8f;
			color: #003a8f;
		}

		.modal-backdropT .btn.ghost#Selec:hover {
			border-color: #003a8f;
			color: #003a8f;
		}


		.modal-backdropT {
			position: fixed;
			inset: 0;
			background: rgba(2, 6, 23, .5);
			align-items: center;
			justify-content: center;
			z-index: 1200;
			display: none;
		}

		.modal-backdropT.open {
			display: flex;
		}

		.modalT {
			max-width: 700px;
			width: calc(100% - 40px);
			background: #fff;
			border-radius: 12px;
			padding: 30px 50px;
			max-height: 80vh;
			overflow: auto;
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
		}

		.modalT .head {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 12px;
		}

		.modalT .head h2 {
			font-weight: 700;
		}

		.modalT .close {
			background: transparent;
			border: 0;
			font-size: 24px;
			cursor: pointer;
		}

		.modalT .content {
			font-size: 14px;
			max-height: 50vh;
			overflow-y: auto;
			 scrollbar-width: thin; /* auto | thin | none */
    scrollbar-color: #ddd #f1f1f1; /* 滑块 轨道 */
		}
.modalT .content::-webkit-scrollbar {
    width: 4px;
}

.modalT .content::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
}

.modalT .content::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.5);
}
		.modalT .content h3 {
			margin-top: 20px;
			font-weight: 700;
		}

		.modalT .content a {
			font-weight: 700;
			color: #111
		}

		.modalT .content a:hover {
			text-decoration: underline;
		}

		.modalT .content p {
			margin-top: 15px;
		}

		.modalT .content dl {
			margin: 20px 0;
		}

		.modalT .content dd {
			border: 1px solid #eee;
			padding: 12px 22px;
			width: 95%;
			border-bottom: 0;
		}

		.modalT .content dd:last-child {
			border-bottom: 1px solid #eee;
		}

		.modalT .content dd .title {
			font-weight: 700;
			font-size: 16px;
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			align-items: center;
		}

		.modalT .content dd .title .span {
			display: block;
			position: relative;
			padding-left: 20px;
			cursor: pointer;
		}

		.modalT .content dd .title .span:after {
			content: "";
			display: block;
			width: 2px;
			height: 14px;
			background: #666;
			position: absolute;
			left: 0px;
			top: 4px;
		}

		.modalT .content dd .title .span:before {
			content: "";
			display: block;
			width: 14px;
			height: 2px;
			background: #666;
			position: absolute;
			left: -6px;
			top: 10px;
		}

		.modalT .content dd .title label {
			font-size: 16px;
			color: #333;
		}

		.modalT .content dd .con {
			display: none;
		}

		.modalT .content dd.active .title .span::after {
			display: none;
		}

		.modalT .content dd.active .con {
			display: block;
		}

		.foot {
			padding-top: 20px;
			display: flex;
			flex-wrap: wrap;
			justify-content: end;
		}


		.cookie {
			color: #00255d;
			text-decoration: underline !important;
			padding: 6px 8px;
			font-weight: 700;

		}

		.toggle {
			width: 40px;
			height: 22px;
			background: #ccc;
			border-radius: 13px;
			position: relative;
			cursor: pointer;
			transition: background-color 0.25s ease;
		}

		.toggle-handle {
			width: 18px;
			height: 18px;
			background: #fff;
			border-radius: 50%;
			position: absolute;
			top: 2px;
			left: 2px;
			transition: transform 0.25s ease;
		}

		/* 打开状态 */
		.toggle.active {
			background: #003a8f;
		}

		.toggle.active .toggle-handle {
			transform: translateX(22px);
		}