@charset "utf-8";

/* ===================================
   基础重置样式 (原 public.css)
   =================================== */
html,
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 {
  margin: 0;
  padding: 0;
  border: 0;
}
a,
area {
  outline: none;
}
a {
  text-decoration: none;
  color: #444;
}
a:hover {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  color: #21549b;
}
img {
  -ms-interpolation-mode: bicubic;
}

html,
body {
  font-family: "Open Sans", "微软雅黑", sans-serif;
  min-width: 1300px;
}
html {
  height: 100%;
  position: relative;
}
input {
  border-radius: 0;
}
button {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
dl,
dt,
dd,
ol,
ul,
li,
form {
  list-style: none;
}

/* 通用工具类 */
.boxcenter {
  margin: 0 auto;
}
.fl_all {
  float: left;
}
.fr_all {
  float: right;
}
.txtdot {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* 桌面端响应式工具类 */
.maxcontainer {
  min-width: 1300px;
}
.container {
  width: 1300px;
}
.fl_pc {
  float: left;
}
.fr_pc {
  float: right;
}
.col_2in1 {
  width: 50%;
}
.col_3in1 {
  width: 33.3%;
}
.col_4in1 {
  width: 25%;
}
.col_5in1 {
  width: 20%;
}
.col_6in1 {
  width: 16.6%;
}
.pchide {
  display: none;
}
.mhide {
  display: block;
}
.padhide {
  display: block;
}
.padshow {
  display: none;
}
.mar0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.clearfix {
  zoom: 1;
}
.clear {
  clear: both;
  height: 0;
  font-size: 0;
  overflow: hidden;
  line-height: 0;
}
.main {
  position: relative;
  overflow: hidden;
}

.demo {
  border: 10px #3366cc solid;
  height: 1200px;
  background-image: linear-gradient(to bottom, #09f, #6c6);
  font-size: 30px;
  color: #fff;
  text-align: center;
  line-height: 80px;
}

/* ===================================
   后期更新的内容 (原 layout.css)
   =================================== */
.section-title > a {
  display: flex;
  align-items: center;
  transition: color 0.2s ease-in-out;
  text-transform: uppercase;
}

.section-title img.alipay {
  width: 100px;
  height: auto;
}

.plan-section .section-title {
  justify-content: space-between;
}

/* ===================================
   移动端基础样式 (原 mobile.css)
   =================================== */
@media screen and (max-width: 767px) and (orientation: portrait) {
  html,
  body {
    width: 750px;
    margin: 0 auto;
    min-width: inherit;
    overflow-x: hidden;
    height: 100%;
    position: relative;
    height: auto;
  }

  .fl_pc {
    float: none;
    display: block;
  }
  .fr_pc {
    float: none;
    display: block;
  }
  .pchide {
    display: block;
  }
  .mhide {
    display: none;
  }
  .padhide {
    display: none;
  }

  .container {
    width: auto;
  }

  .demo {
    background-image: linear-gradient(to bottom, #ff246c, #ff921e);
    font-size: 40px;
    line-height: 120px;
  }
}
