/* 全局样式，确保页面没有默认的外边距和内边距 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* 确保宽度和高度包括内边距和边框 */
}

/* 设置body样式 */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%; /* 确保body占满整个屏幕宽度 */
    overflow-x: hidden; /* 防止水平滚动条 */
}

/* 页面主要容器样式 */
.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%; /* 确保容器宽度占满整个屏幕 */
    height: 100%; /* 确保容器高度占满屏幕 */
    margin: 0; /* 去除外边距，避免容器与屏幕边缘留有空隙 */
    box-sizing: border-box; /* 包括内边距和边框在内计算宽度和高度 */
}

/* 标题样式 */
h1 {
    font-size: 18px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* 投诉选项列表样式 */
.complaint-list {
    list-style-type: none;
}

/* 每一个投诉项的样式 */
.complaint-item {
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* 鼠标悬停在投诉项上时改变背景色 */
.complaint-item:hover {
    background-color: #e1e1e1;
}

/* 客服热线电话的样式 */
.hotline {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 20px;
}

/* 弹窗样式 */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* 弹窗内部内容的样式 */
.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* 弹窗内文本样式 */
.popup p {
    font-size: 16px;
    color: #333;
}
