@charset "utf-8";

/* 清除标签自带样式 */
* {
  padding: 0;
  margin: 0;
  list-style: none;
  font-style: normal;
  box-sizing: border-box;
}

/*浮动和清除浮动*/
.fl {
  float: left;
}

.fr {
  float: right;
}

.clear::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button:hover,
a:hover {
  opacity: 0.9;
  cursor: pointer;
}

button:active,
a:active {
  opacity: 0.8;
}

/* 内容宽度 和居中 */
.main {
  width: 1200px;
  margin: 0 auto;
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  position: relative;
}

body {
  font-family: Arial, "Microsoft YaHei", "Helvetica Neue", Helvetica, Roboto, sans-serif;
  /* font-size: 14px; */
  font-size: 2.5vw;
  min-height: 100%;
  line-height: 1.6;
  background: #fff;
  color: rgb(80, 80, 80);
  overflow-x: hidden;
}

/* 图片样式 */
img {
  border: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.width100,
.width100 img,
.swiper-container img {
  width: 100%;
  display: block;
  object-fit: fill; 
  height: 86vw;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

h1 {
  font-size: 120%;
}

h4 {
  font-size: 120%;
  font-weight: normal;
}

/* --------------------------其他基础样式----------------------------------------- */

h2 {
  font-size: 140%;
}

h5 {
  font-size: 140%;
  font-weight: normal;
}

h3 {
  font-size: 180%;
}

h6 {
  font-size: 180%;
  font-weight: normal;
}

/* form 样式 */
textarea {
  resize: none;
  padding: 6px;
  /* line-height: 2; */
  height: 180px;
  width: 50px;
}

button {
  border: none;
}

input,
textarea,
select,
button,
option {
  font-size: 100%;
  outline: none;
  color: inherit;
  line-height: inherit;
  font-family: inherit;
  background: rgba(255, 255, 255, 0);
}

input {
  padding: 0 6px;
}



/* 表格 */
table {
  border-collapse: collapse;
  text-align: center;
  word-break: break-all;
  word-wrap: break-word;
}

th,
td {
  border: 1px solid rgb(196, 196, 196);
  padding: 2px 4px;
  text-align: center;
}

td {
  padding: 4px;
}

/* tr {
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

tr:nth-child(2n) td {
  background: #eeeeee;
}

tr:hover td {
  background-color: #ecf6fd;
} */

/* 弹窗 10086*/
.p-msg {
  position: fixed;
  display: inline-block;
  /* padding: 8px 15px; */
  /* background: rgba(0, 0, 0, 0.5); */
  /* color: rgba(255, 255, 255, 0.9); */
  border-radius: 3px;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100863;
  width: 100%;
}

.p-msg p {
  line-height: 1.6;
  font-size: 14px;
}

.p-shade {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100861;
  display: none;
}

.p-shade.curr {
  display: block;
}

.p-shade1 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100861;
  display: none;
}

.p-shade1.curr {
  display: block;
}

.pop {
  width: 100%;
  z-index: -10;
  /* background: #ffffff; */
  /* border-radius: 10px; */
  position: fixed;
  left: 50%;
  /* top: -50%; */
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  line-height: 1.0;
}

.pop.curr {
  opacity: 1;
  top: 50%;
  z-index: 100862;
}


.pop1 {
  width: 100%;
  z-index: -10;
  /* background: #ffffff; */
  /* border-radius: 10px; */
  position: fixed;
  left: 50%;
  /* top: -50%; */
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
}

.pop1.curr {
  opacity: 1;
  top: 50%;
  z-index: 100862;
}

/* 刷新 */
.u-refresh {
  animation: loading 0.6s linear infinite;
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}