/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #fff;
    padding: 10px;
    text-align: center;
}
.watermark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 确保水印不影响页面交互 */
  z-index: 1; /* 置于背景层 */
  overflow: hidden;
}

.watermark span {
  position: absolute;
  color: rgba(0, 0, 0, 0.1); /* 水印颜色 */
  font-size: 20px; /* 水印字体大小 */
  transform: rotate(-30deg); /* 倾斜角度 */
  /* opacity: 0.3; 透明度 */
}

.security-link {
    background-color: #fff;
    padding: 10px 0 10px 10px;
    color: #22375C;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.user-info {
    background-color: #163563;
    color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 20px;
    font-size: 18px;
}

.info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
}

.details {
    display: flex;
    margin-top: 20px;
    font-size: 16px;
}

.type,
.area {
    background-color: #D3AF37;
    color: #163563;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 5px;
}

.area {
    background-color: #445D7E;
    color: #fff;
}


.fee-details .amountBox {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.fee-details .amountBox p {
    font-size: 30px;
    font-weight: 600;
    color: red;
    margin: 10px 0;
}

.fee-details .amount {
    font-size: 24px;
    margin: 10px 0;
}

.detail-item {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: #676767;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #EEE1D9;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 20px;
    color: #986647;
    /* font-size: 16px; */
}

.contact-button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    text-decoration: none;
}

.title {
    font-size: 18px;
    margin-bottom: 20px;
}

.fee-details,
.payment-address,
.communication-history,
.case-examples,
.pay {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
}

.history-title img,
.example-title img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.history-list {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
}

.history-list li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.history-list li::before {
    content: '';
    display: inline-block;
    width: 10px;
    /* 圆圈的直径 */
    height: 10px;
    background-color: #1B386C;
    /* 红色实心圆 */
    border-radius: 50%;
    /* 创建圆形 */
    position: absolute;
    left: 0;
    top: 8px;
    /* 调整垂直位置以对齐文本 */
}

.example-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.example-item p{
    margin: 10px 0 ;
}

.pay button{
    background-color: red;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}