/********************************************* 样式重置  ***********************************/
html {
  background: #ffffff;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "PingFang SC", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Source Han Sans", "Noto Sans CJK Sc", "Microsoft YaHei", "Microsoft Jhenghei", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body,
button,
input,
select,
textarea {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

input,
select,
textarea {
  font-size: 100%;
}

/* 去掉各 table cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* IE bug fixed: th 不继承 text-align */
th {
  text-align: inherit;
}

/* 去除默认边框 */
fieldset,
img {
  border: 0;
}

/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
  display: block;
}

/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: 0;
  font-variant: normal;
}

/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}

i {
  font-style: normal;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: bold;
  color: #1D1D1F;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 16px;
}

h3,
h4,
h5,
h6 {
  font-size: 14px;
}

/* 解决ie下重复最后字符 */
q:before,
q:after {
  content: '';
}

/* 统一上标和下标 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ins,
a {
  text-decoration: none;
}

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

.clearfix {
  *zoom: 1;
}

.l {
  float: left;
}

.r {
  float: right;
}

a {
  color: #333;
}

.hide,
.none {
  display: none !important;
}

li,
ul,
ol,
i {
  list-style: none;
}
input, button, textarea {
  border: 0;
  outline: none;
  padding: 0;
  margin: 0;
  resize: none;
}

.public-header {
  height: 80px;
  box-sizing: border-box;
  padding: 0 40px;
  background: #FFFFFF;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.02);
  min-width: 1360px;
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
}

.public-header .logo {
  float: left;
  width: 138px;
  height: 40px;
  background: url('../../pc/imgs/logo.png') no-repeat center;
  background-size: cover;
  margin-top: 17.999px;
}

.public-header .navigation {
  float: right;
}

.public-header .navigation a {
  line-height: 80px;
  float: left;
  color: #161616;
  font-size: 16px;
  margin-right: 30px;
  text-decoration: none;
}

.public-header .navigation a.on {
  color: #B24F1E;
}

.public-header .navigation a.stress {
  width: 100px;
  height: 28px;
  margin-top: 25px;
  margin-right: 20px;
  line-height: 28px;
  text-align: center;
  background: linear-gradient( 90deg, #C96331 0%, #B24F1E 100%);
  border-radius: 3px;
  color: #FFFFFF;
  font-size: 14px;
}
.public-header .navigation a.stress2{
  background: #21cdc0;
}
.public-header .navigation a:last-child {
  margin-right: 0;
}
.mask {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index:100;
}
/* 居中 */
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* header下拉框 */
.selectcheck{
  position: relative;
}
.selectcheck:hover .selectbox{
  display: block;
}
.selectbox{
  position: absolute;
  top: 80px;
  left: -41px;
  width: 155px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 8px 0px #efefef;
  display: none;
}
.selectbox p{
  width: 155px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #0E204D;
  border-radius: 2px;
  transition: all .5s;
}
.selectbox p:hover{
  background: #B24F1E;
  color: #fff;
}
.hideline::after{
  display: none!important;
}