@charset "utf-8";
@font-face {
    font-family: 'Alibaba PuHuiTi';
    src: url('../font/Alibaba-PuHuiTi-Medium.woff2') format('woff2'),
         url('../font/Alibaba-PuHuiTi-Medium.woff') format('woff'),
         url('../font/Alibaba-PuHuiTi-Medium.ttf') format('truetype');
    font-display: swap;
 }


/* 这个css是初始化的css，在任何项目里面都可以使用 */

/* 禁用iPhone中Safari的字号自动调整 */
html {
  width: 100vw;
  height: 100vh;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  /* -webkit-overflow-scrolling : touch;  */
}

/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
  resize: none;
  border: none;
}

/* 取消链接高亮  */
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 设置HTML5元素为块 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

/* 图片自适应 */
img {
  width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */
  display: block;
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
}

/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font: 12px/1.5 'Alibaba PuHuiTi', sans-serif !important;
  color: #555;
  background-color: #F7F7F7;
}

em,
i {
  font-style: normal;
}

ul,
li,
ol {
  list-style-type: none;
}

strong {
  font-weight: normal;
}

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

.clearfix {
  zoom: 1;
}

a {
  text-decoration: none;
  font-family: 'Alibaba PuHuiTi', sans-serif;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-family: 'Microsoft YaHei';
}

img {
  border: none;
}

input {
  font-family: 'Microsoft YaHei';
}

/*单行溢出*/
.one-txt-cut {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*多行溢出 手机端使用*/
.txt-cut {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.w50 {
  width: 50%;
}

.w25 {
  width: 25%;
}

.w20 {
  width: 20%;
}

.w33 {
  width: 33.333333%;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.db {
  display: block !important;
}

.dn {
  display: none;
}

.w {
  width: 1150px;
  margin: 0 auto;
}

.show {
  display: block;
}

.hide {
  display: none;
}

.scale_img {
  border: 0px;
  overflow: hidden;
}

.scale_img img {
  transition: transform 0.5s;
  /*过渡*/
}

.scale_img:hover img {
  transform: scale(1.3);
}



.lag_select {
  width: 60px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid #db8da5;
  outline: none;
}

input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #DCDCDC !important;
}

input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #DCDCDC !important;
}

input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #DCDCDC !important;
}

input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #DCDCDC !important;
}

/* a{
  text-decoration:underline;
  color:blue;
  cursor: pointer;
} */
.orange{
    color: #e9862f;
}
.purple{
    color: #dc71c2;
}
.lightblue{
    color: #62b1a9;
}
.lightgreen{
    color: #5fbf7c;
}
.blue{
    color: #4d6ccf;
}
.pink{
    color: #f69cec;
}
