body {
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
  font-weight: 700;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  -webkit-overflow-scrolling: touch;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,
body,
div,
span,
button,
p,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0 none;
  font-size: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  /* 在X5新内核Blink中，在排版页面的时候，会主动对字体进行放大，会检测页面中的主字体，当某一块字体在我们的判定规则中，认为字号较小，并且是页面中的主要字体，就会采取主动放大的操作。然而这不是我们想要的，可以采取给最大高度解决 */
  max-height: 1333.33333rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
em,
strong {
  font-style: normal;
}
ul,
ol,
li {
  list-style: none;
}
a {
  text-decoration: none;
}
button {
  outline: none;
}

.flex {
  display: flex;
}

.app-main {
  font-size: 0.4rem;
  background: #efeef3;
}
.source-detail-container {
  background: #fff;
  font-size: 0.37333rem;
  color: #353535;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.page-main {
  overflow-x: hidden;
  position: relative;
}
.elementBox {
  position: relative;
  overflow: hidden;
}
.elementBox .element {
  overflow: hidden;
  padding: 0.13333rem;
}
.elementBox .img {
  display: block;
  width: 100%;
}
.elementBox .element .label {
  width: 2rem;
  word-break: break-word;
  white-space: pre;
}
.elementBox .element .content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  word-break: break-word;
}
.elementBox .element .content a,
.elementBox .element .content span {
  white-space: pre-wrap;
}
.elementBox .element a {
  color: unset;
}

.elementBox iframe {
  width: 100%;
}
.elementBox .logo-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.inputBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.inputBtn .txt {
  padding: 0 0.4rem;
  line-height: 0.93333rem;
  height: 0.93333rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: none;
  background: none;
  color: inherit;
  -webkit-border-radius: 0.93333rem;
  border-radius: 0.93333rem;
  outline: none;
  font-size: 0.37333rem;
  border: 1px solid rgb(226, 226, 226);
  background-color: rgb(243, 243, 243);
  color: rgb(53, 53, 53);
}

#bnSearch {
  margin-top: 0.48rem;
  height: 0.93333rem;
  line-height: 0.93333rem;
  color: #fff;
  test-align: center;
  -webkit-border-radius: 1.06667rem;
  border-radius: 1.06667rem;
  font-size: 0.37333rem;
  width: 100%;
  background-color: rgb(48, 152, 213);
  cursor: pointer;
}
#bnSearch:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.swiper-container,
.img-div {
  height: 100%;
}

.img-div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-container {
  --swiper-pagination-color: #2ba5b6;
  --swiper-pagination-bullet-inactive: #9d9d9d;
  --swiper-pagination-bullet-height: 12px;
  --swiper-pagination-bullet-width: 12px;
}

.footer-p {
  display: flex;
  gap: 5px;
}
.footer-p > span:nth-child(1) {
  display: inline-block;
  width: 4.5em;
  text-align: justify;
  text-align-last: justify;
  word-break: break-word;
  white-space: nowrap;
}
.footer-p > span:nth-child(2) {
  flex: 1;
}

/* 弹窗样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.modal-container {
  background-color: white;
  width: 85%;
  max-width: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.modal-message {
  padding: 30px 20px;
  text-align: center;
  color: black;
  font-size: 16px;
}

.modal-divider {
  height: 1px;
  background-color: #bbb;
}

.modal-button {
  width: 100%;
  padding: 15px;
  background-color: white;
  color: rgb(48, 152, 213);
  border: none;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

/* 加载动画样式 */
.loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #333;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

.swiper-pagination {
  --swiper-pagination-bottom: 0px;
}
