@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  background: none;
  text-decoration: none;
}

html {
  background: url("../img/common/bg_search.png");
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-width: 1200px;
  max-width: 1920px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 600;
  color: #9e766e;
  padding: 36px 70px 80px;
  margin: auto;
}

img {
  border: none;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.show-xs {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .show-xs {
    display: none !important;
  }
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../img/combinatorial/arrow-down.png) no-repeat right center transparent;
  background-size: 15px;
  outline: none;
  border-radius: 8px;
  padding: 0 20px 0 15px;
}

select::-ms-expand {
  display: none;
}

.container {
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
  border-left: 1px solid #9e766e;
  border-right: 1px solid #9e766e;
  padding: 14px 0 40px 0;
  margin: 46px auto 0;
}
.container .container-left,
.container .container-right {
  width: 10%;
  text-align: center;
  margin-top: 150px;
}
.container .container-left {
  float: left;
}
.container .container-main {
  width: 80%;
  float: left;
}
.container .container-right {
  float: right;
}

.container::before {
  position: absolute;
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: 26px;
  background-image: url("../img/common/bg_top.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: -1px;
  top: -26px;
}

.container::after {
  position: absolute;
  content: "";
  display: block;
  width: calc(100% + 2px);
  height: 26px;
  background-image: url("../img/common/bg_bottom.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: -1px;
  bottom: -26px;
}

.footer {
  position: absolute;
  width: 100%;
  height: 54px;
  left: 0;
  bottom: -50px;
  text-align: center;
  z-index: 999;
}

#toolbar-pages {
  font-size: 18px;
  text-align: center;
  margin-top: 30px;
}
#toolbar-pages > a, #toolbar-pages > span {
  color: #9e766e;
}
#toolbar-pages > a {
  margin: 0 10px;
}
#toolbar-pages .flickrF {
  border-color: #cd2828;
  color: #cd2828;
  margin: 0 20px;
}
#toolbar-pages .previous-style,
#toolbar-pages .next-style {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  cursor: pointer;
}
#toolbar-pages .disable-btn {
  opacity: 0.5;
  cursor: not-allowed;
}
#toolbar-pages .previous-style {
  background-image: url("../img/common/icon_previous.png");
}
#toolbar-pages .next-style {
  background-image: url("../img/common/icon_next.png");
}
#toolbar-pages .pages-input-number {
  width: 98px;
  height: 36px;
  font-size: 18px;
  background: url("../img/common/bg_jump_number.png") no-repeat;
  background-size: 100% 100%;
  text-align: center;
  border: none;
  outline: none;
  margin-left: 60px;
  padding: 0 5px;
}
#toolbar-pages .pages-input-btn {
  height: 24px;
  padding: 4px 5px;
  margin-left: 5px;
}
#toolbar-pages .jump-style {
  display: inline-block;
}
#toolbar-pages .jump-style .pages-input-btn {
  width: 36px;
  height: 36px;
  background: url("../img/common/icon_go.png") no-repeat;
  background-size: 100% 100%;
  outline: none;
  border: none;
  vertical-align: middle;
  cursor: pointer;
}
#toolbar-pages .jump-style .pages-number {
  color: #9e766e;
  border-color: transparent;
  display: inline-block;
  margin-left: 10px;
}

@media screen and (max-width: 1630px) {
  body {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 20px auto 0;
  padding: 20px;
  width: 30%;
  border-radius: 8px;
  border: none; /* 去掉边框 */
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 90%;
  }
}

#exitButton {
  background-color: #e53e3e;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  border: 0;
}

#closeModal {
  font-size: 24px;
  cursor: pointer;
  float: right;
  line-height: 1; /* 使关闭图标垂直居中 */
}

.modal-content p {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  display: inline; /* 使文字和关闭图标在同一行 */
}

.button-group {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 16px;
}

#cancelButton {
  background-color: #cbd5e0;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  border: 0;
}

#confirmButton {
  background-color: #e53e3e;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  border: 0;
}/*# sourceMappingURL=common.css.map */