   .ui-body-c, .ui-overlay-c{
			text-shadow: none;
		}
		 /* 遮罩层 */
    .mask_layer {
      width: 100%;
      height: 100%;
      position: fixed;
      z-index: 10000;
      left: 0;
      top: 0;
      background: #000;
      opacity: 0.7;
      overflow: hidden;
			display: none;
    }

    /* 模态框 */
    .modal_box {
			width: 80%; /* 改为百分比，适应不同屏幕 */
			max-width: 320px; /* 最大宽度限制 */
			overflow: hidden;
			position: fixed;
			top: 50%;
			left: 50%;
			z-index: 10002;
			background-color: white;
			border-radius: 1.3rem;
			font-size: 1.3rem;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
			transform: translate(-50%, -50%); /* 更精确的居中 */
			display: none;
		}

    .topContent {
      position: relative;
      z-index: 2;
    }

    .title {
      padding: 1.2rem 1.6rem 1.2rem 1.6rem;
      text-align: center;
      font-size: 1rem;
      font-weight: bold;
      color: #323232;
      /* line-height: 1.8rem; */
    }

    .content-style {
      overflow-y: scroll;
      padding: 0px 1.6rem 0px;
      color: #323232;
      font-size: 0.7rem;
      max-height: 140px;
    }

    .btn1 {
      width: 100%;
      margin-top: 1rem;
      margin-bottom: 1.6rem;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      box-sizing: border-box;
      font-weight: bolder;
      padding: 0 1.6rem;
    }

    .Sure {
      text-align: center;
      width: 100%;
      height: 2rem;
      font-size: 0.8rem;
      font-weight: 500;
      line-height: 2rem;
      background-color: #e64243;
      color: white;
      border-radius: 0.4rem;
      border: 1px solid #e64243;
      margin: 0 auto;
      padding: 0;
			margin-left: 0.3rem;
    }

    .cancel {
      text-align: center;
      width: 100%;
      height: 2rem;
      font-size: 0.8rem;
      font-weight: 500;
      line-height: 2rem;
      background-color: white;
      color: #e64243;
      border-radius: 0.4rem;
      border: 1px solid #e64243;
      margin: 0 auto;
      padding: 0;
			margin-right: 0.3rem;

    }

    .bgContain {
      position: absolute;
      top: 0;
      z-index: 1;
      overflow: hidden;
      border-radius: 1.3rem;
      background-image: url('https://via.placeholder.com/240x58?text=Background');
      background-size: cover;
    }