﻿@charset "UTF-8";
@media (max-width: 1366px){}

* {
  margin: 0;
  padding: 0;
  font-weight: 400;
  color: #000000;
  font-family: "Microsoft YaHei";
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-text-size-adjust: none !important;
  /* ios横屏字体放大 */
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(200, 200, 200, 0);
}
html{
  font-size: 14px;
}
body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{
  font-size: 100%;
}
/*隐藏*/
.hide{
  display: none;
}
/*必填*/
.request{
  position: relative;
}
.request::before{
  position: absolute;
  content: "*";
  color: #FF1722;
  left: 10px;
  top: 8px;
}
/*浮动*/
.pull-left{
  float: left;
}
.pull-right{
  float: right;
}
.clearfix::after{
  content:""; 
  display:block; 
  height:0; 
  visibility:hidden; 
  clear:both;
}
/*宽度*/
.wd-1{
  width: 10%;
}
.wd-2{
  width: 20%;
}
.wd-3{
  width: 30%;
}
.wd-4{
  width: 40%;
}
.wd-5{
  width: 50%;
}
.wd-6{
  width: 60%;
}
.wd-7{
  width: 70%;
}
.wd-8{
  width: 80%;
}
.wd-9{
  width: 90%;
}
.wd-10{
  width: 100%;
}
/*margin*/
.mg-1{
  margin: 10px;
}
.mg-2{
  margin: 20px;
}
.mg-3{
  margin: 30px;
}
.mt-1{
  margin-top: 10px;
}
.mt-2{
  margin-top: 20px;
}
.mt-3{
  margin-top: 30px;
}
.mb-1{
  margin-bottom: 10px;
}
.mb-2{
  margin-bottom: 20px;
}
.mb-3{
  margin-bottom: 30px;
}
.ml-1{
  margin-left: 10px;
}
.ml-2{
  margin-left: 20px;
}
.ml-3{
  margin-left: 30px;
}
.mr-1{
  margin-right: 10px;
}
.mr-2{
  margin-right: 20px;
}
.mr-3{
  margin-right: 30px;
}
/*padding*/
.pd-1{
  padding: 10px;
}
.pd-2{
  padding: 20px;
}
.pd-3{
  padding: 30px;
}
.pt-1{
  padding-top: 10px;
}
.pt-2{
  padding-top: 20px;
}
.pt-3{
  padding-top: 30px;
}
.pb-1{
  padding-bottom: 10px;
}
.pb-2{
  padding-bottom: 20px;
}
.pb-3{
  padding-bottom: 30px;
}
.pl-1{
  padding-left: 10px;
}
.pl-2{
  padding-left: 20px;
}
.pl-3{
  padding-left: 30px;
}
.pr-1{
  padding-right: 10px;
}
.pr-2{
  padding-right: 20px;
}
.pr-3{
  padding-right: 30px;
}


/*图片*/
img {
  border: none;
  border: 0;
  vertical-align: middle;
  object-fit: cover;
  -webkit-user-drag: none; /*禁止图片拖动*/
  /*禁止图片复制*/
  -moz-user-select: none !important; /*火狐*/
  -webkit-user-select: none !important; /*webkit浏览器*/
  -ms-user-select: none !important; /*IE10*/
  -khtml-user-select: none !important; /*早期浏览器*/
  user-select: none;
}

/*列表*/
li,ol{
  list-style: none;
}

/*链接*/
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  background: none;
  text-decoration: none;
}
a:hover,button:hover {
  cursor: pointer;
  text-decoration: none !important;
}
a:focus {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  background: none;
  text-decoration: none;
}

/*输入框*/
input,button {
  border: none;
  border-radius: initial;
  background: transparent;
}

i,em {
  font-style: normal;
}
select::-ms-expand {
  display: none;
}

/*单行省略*/
.text-overflow{
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
/*两行行省略*/
.text-twoLines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
/*三行行省略*/
.text-threeLines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
/***/
.text-moreLines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 12;
  overflow: hidden;
}
/*css修改placeholder的颜色*/
::-webkit-input-placeholder {
  color: #9e9e9e;
}
:-moz-placeholder {
  color: #9e9e9e;
}
::-moz-placeholder {
  color: #9e9e9e;
}
:-ms-input-placeholder {
  color: #9e9e9e;
}

/* 去除Chrome等浏览器文本框默认发光边框 */
input:focus,textarea:focus {
  outline: none !important;
}
/* 禁止多行文本框textarea拖拽 */
textarea {
  resize: none;
}
/*全部英文字符下自动换行*/
p {
  word-break: break-all;
}
/* 禁止长按链接与图片弹出复制图片菜单 */
a,img {
  -webkit-touch-callout: none;
}
/*禁止长按复制*/
/*在 iOS 上，输入框默认有内部阴影 清除输入框内阴影*/
input,textarea {
  border: 0;
  /* 方法1 */
  -webkit-appearance: none;
  /* 方法2 */
}
