@charset "utf-8";
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
  color: #333;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
@font-face {
  font-family: "Alibaba-PuHuiTi-Regular";
  src: url("../fonts/alibaba-puhuiti-regular.woff2") format("woff2"), url("../fonts/alibaba-puhuiti-regular.woff") format("woff"), url("../fonts/alibaba-puhuiti-regular.ttf") format("truetype"), url("../fonts/alibaba-puhuiti-regular.eot") format("embedded-opentype"), url("../fonts/alibaba-puhuiti-regular.svg") format("svg");
}
*,
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;
  font-weight: normal;
}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
ul,
li {
  list-style: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* HTML5 媒体文件跟 img 保持一致 */
a {
  text-decoration: none;
}
/* 让链接在 hover 状态下显示下划线 */
a:hover {
  text-decoration: none;
  color: #0451a3;
}
a {
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.clear {
  clear: both;
}
/* 清除IE10的叉 */
input::-ms-clear {
  display: none;
}
/*改变浏览器滚动条*/
::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}
div::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #bcbcbc;
  /*rgba(0,0,0,0.2)*/
}
::-webkit-scrollbar-thumb:window-inactive {
  background: #a8a8a8;
  /*rgba(0,0,0,0.1)*/
}
::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #a8a8a8;
  /*rgba(0,0,0,0.3)*/
}
::-webkit-scrollbar-thumb:vertical:active {
  background-color: #a8a8a8;
  /*rgba(0,0,0,0.7)*/
}
::-webkit-input-placeholder {
  font-family: "Microsoft YaHei";
  /*color:rgba(255,255,255,.8);*/
}
::selection {
  background: #00aeef;
  /*color: #fff;*/
}
::-moz-selection {
  background: #00aeef;
  /* color: #fff;*/
}
:focus {
  outline: 0;
}
:root {
  --main-color: #0451a3;
  --dark-color: #333;
  --white-color: #FFFFFF;
  --transition-custom2: all 0.8s ease-in-out;
}
/* button */
.white_button a {
  color: var(--white-color);
}
.grey_button a {
  color: #666;
}
.index_button a {
  position: relative;
  display: flex;
  align-items: center;
  height: 46px;
  z-index: 1;
}
.index_button span {
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding-left: 13px;
  transition: width 0.4s cubic-bezier(0.63, 0.01, 0.45, 1);
  z-index: -1;
}
.index_button span i {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
}
.white_button span {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.grey_button span {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.index_button em {
  padding-left: 51px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  font-style: normal;
}
.white_button span i {
  background-image: url(../images/arrow_right_w.svg);
}
.grey_button span i {
  background-image: url(../images/arrow_right_g.svg);
}
.grey_button a:hover {
  color: var(--white-color);
}
.grey_button a:hover span i {
  background-image: url(../images/arrow_right_w.svg);
}
.index_button a:hover span {
  width: calc(100% + 20px);
}
.index_button a:hover span {
  border-color: var(--main-color);
  background-color: var(--main-color);
}
.font36 {
  font-size: 36px;
}
.pc_show {
  display: block !important;
}
.mo_show {
  display: none !important;
}
@media (max-width: 767px) {
  .my-container {
    max-width: 100%;
    padding: 0 16px;
  }
  .mo_show {
    display: block !important;
  }
  .pc_show {
    display: none !important;
  }
}
