/*基础样式*/
a,
body,
center,
cite,
code,
dd,
del,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hr,
html,
img,
input,
label,
legend,
li,
mark,
ol,
p,
section,
span,
textarea,
time,
td,
th,
ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 14px;
}

body {
  height: 100%;
  color: #333;
  min-width: 1200px;
  font-family: PingFang SC, PingFang SC;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #333;
  outline: none;
}

i {
  font-style: normal;
}

input[type='text'],
input[type='search'],
input[type='password'],
input[type='checkbox'] {
  padding: 0;
  outline: none;
  border: none;
}

img {
  vertical-align: middle;
}

ul {
  list-style: none;
}

button {
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: 1200px;
  min-width: 0;
  margin: 0 auto;
  position: relative;
  height: auto;
}
.container-2 {
  width: 1600px;
  margin: 0 auto;
  position: relative;
}

body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #d0d0d0;
}
body::-webkit-scrollbar-track {
  background-color: transparent;
}

.free-trial img{
  width: 24px;
  margin-left: 10px;
}
.phone-error-tip{
  color: #FE6C6C;
  display: none;
}

/* 通用按钮 */
.kaitong {
  height: 60px;
  background: #3762ec;
  box-shadow: 0px 12px 12px 1px rgba(12,66,255,0.2);
  border-radius: 30px 30px 30px 30px;
  border: none;
  padding: 12px 36px;
  font-weight: bold;
  font-size: 20px;
  color: #FFFFFF;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity 0.15s, transform 0.15s;
  font-family: inherit;
  .right-icon{
    width: 24px;
    height: 24px;
    margin-left: 10px;
  }
}
.kaitong:hover {
  background: #0c42ff;
  transform: translateY(-1px);
}

.g-bg-title{
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 48px;
  color: #333333;
  position: relative;
}

/* 带背景图的标题 */
.g-bg-title > span{
  position: relative;
  display: inline-block;
  z-index: 1;
}
.g-bg-title > span::before{
  content: "";
  position: absolute;
  top: -54px;
  left: -3.5ch; /* 向左覆盖约两个字符宽度 */
  width: 228px;
  height: 124px;
  background-image: url('../assets/sy/public/bt_dz@2x.png');
  background-size: 228px 124px;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: 0;
  pointer-events: none;
}
.g-title-content{
  text-align: center;
  margin-top: 20px;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
}


/* 带背景图的标题 */
.g-bg-title2 {
  position: relative;
  display: inline-block;
}
.g-bg-title2 > span{
  position: relative;
  display: inline-block;
  z-index: 1;
}
.g-bg-title2 > span::before{
  content: "";
  position: absolute;
  top: 15px;
  left: -10px; /* 向左覆盖约两个字符宽度 */
  width: calc(100% + 20px);
  height: 67px;
  background-image: url('../assets/sy/public/bt_tp@2x.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -1;
  pointer-events: none;
}
