body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-text-size-adjust: 100%;
}

* {
    box-sizing: border-box;
    -webkit-appearance: none; /* 移除iOS默认的内边距和外边距 */
    -moz-appearance: none; /* 同上，Firefox浏览器 */
}
.content {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

img {
   max-width: 100%;
}

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

.data-title {
    font-family: "Source Han Sans";
    font-size: 30px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0em;
    color: #FF4400;
    margin: 0 auto;text-align: center
}
.data-data {
    display: flex;
    flex-direction: column;
    margin-top: 50px
}
.data-data-row {
    display: flex;
    flex-direction: row;
}
.data-content-dec {
    position: static;
    opacity: 1;
    font-size: 20px;
    font-weight: normal;
    line-height: normal;
    font-feature-settings: "kern" on;
    color: #333333;
    font-family:"Source Han Sans";
}
.data-button {
    margin-top: 50px;
    margin-bottom: 60px;
    font-family:"Source Han Sans";
    height: 40px;
    font-size: 20px;
    line-height: 40px;
    color: #FFFFFF;
    text-align: center;
    border-radius: 50px;
    background: linear-gradient(296deg, #FF4530 61%, #FA8600 86%);

    box-shadow: 1px 2px 10px 0px rgba(255, 137, 88, 0.6),inset 1px 2px 6px 0px rgba(255, 255, 255, 0.3);
}
input:focus {
    outline: none; /* 移除聚焦时的轮廓线 */
}
.data-input {
    height: 100%;
    font-size: 20px;
    width: 100%;
    box-sizing: border-box;
    border-width: 0px 0px 1px 0px;
    border-style: solid;
    border-color: #D8D8D8;
    z-index: 1;
    padding: 0;
    -webkit-appearance: none; /* 移除iOS默认的内边距和外边距 */
    -moz-appearance: none; /* 同上，Firefox浏览器 */
}
.layui-layer {
    background: transparent !important; /* Make the background transparent */
}
.layui-layer-content {
    text-align: center;
    color: #FF4400; /* Optional: Change the text color */
}
.layui-layer-title {
    display: none; /* Hide the title */
}
.bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    height: 50%; /* Reduce height to half */
    overflow-y: hidden; /* Add scroll if content overflows */
}
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    color: #ccc; /* Light grey color */
    border: none;
    font-size: 30px; /* Larger font size */
    font-weight: bold;
    cursor: pointer;
}
.hidden {
    display: none;
}
.show-button {
    width: 30%;
    text-align: center;
    color: #FFFFFF;
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 20px;
    /*box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);*/
    cursor: pointer;
    z-index: 1001;
    background: linear-gradient(296deg, #FF4530 61%, #FA8600 86%);
    border-radius: 10px;
    box-shadow: 1px 2px 10px 0px rgba(255, 137, 88, 0.6),inset 1px 2px 6px 0px rgba(255, 255, 255, 0.3);
}
#backToTop {
    width: 38px;
    height: 38px;
    text-align: center;
    position: fixed;
    bottom: 50px;
    right: 30px;
    background: #000;
    color: #fff;
    line-height: 38px;
    /*padding: 10px 15px;*/
    cursor: pointer;
    display: none; /* Hidden by default */
    z-index: 1001;
    font-size: 24px; /* Larger font size for arrows */
    border-radius: 50%;/* 圆角半径 */
    opacity: 0.5; /* 设置透明度为50% */
    margin-bottom: 100px;
}