








/* reboot */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color, inherit);
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

/* 兼容手机样式 */
.container {
  width: initial !important;
  margin: initial !important;
}
.header {
  min-width: 1280px;
}

/* 主页面 */
.image > img {
  max-width: 100%;
  vertical-align: top;
}

/* 外容器 */
.container {
  min-width: 1280px;
  overflow: hidden;
}

/* 头条 */
.headline {
  overflow: hidden;
}
.headline .image {
  text-align: center;
}

/* 模块 */
.module {
  padding: 50px 0;
}

/* 模块标题 */
.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1200px;
  margin: 0 auto;
}
.heading .title {
  position: relative;
  padding-bottom: 10px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 36px;
}
.heading .title strong {
  color: #2a82e4;
}
.heading .title .line {
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  width: 320px;
  height: 4px;
  background-color: #e8e8e8;
  transform: translateX(-50%);
}
.heading .title .line .inner {
  position: absolute;
  top: -3px;
  left: 50%;
  display: block;
  width: 60px;
  height: 10px;
  background-color: #2a82e4;
  transform: translateX(-50%);
}
.heading .subtitle {
  margin-top: 10px;
  font-size: 14px;
  color: #a6a6a6;
}
.heading .summary {
  padding: 10px 88px;
  margin-top: 10px;
  font-size: 14px;
  color: #000;
}

/* 众多品牌的一致认可 */
.module-cases .heading .subtitle {
  color: #808080;
}
.module-cases .tabs-header {
  margin-top: 50px;
}
.module-cases .tabs-body {
  overflow: hidden;
}
.module-cases .contents {
  position: relative;
  overflow: hidden;
}
.module-cases .contents .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-cases .pager {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 490px;
}
.module-cases .swiper-pagination {
  position: static;
  width: initial;
  padding: 0 20px;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.module-cases .swiper-button-prev,
.module-cases .swiper-button-next {
  --swiper-navigation-size: 10px;
  --swiper-theme-color: #fff;
  position: static;
  width: 30px;
  height: 30px;
  margin-top: initial;
  border: 1px solid #fff;
  border-radius: 50%;
}

/* 选项卡 */
.tabs {
  width: 1200px;
  margin: 0 auto;
}
.tabs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  border-bottom: 1px solid #a6a6a6;
}
.tabs-header .tab {
  position: relative;
  padding: 15px 0;
  font-size: 16px;
  font-weight: bold;
  transition-property: color;
  transition-duration: 300ms;
  cursor: pointer;
}
.tabs-header .tab::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  display: block;
  width: 0;
  height: 3px;
  background-color: #383838;
  transform: translateX(-50%);
  opacity: 0;
  transition-property: width, color, opacity;
  transition-duration: 300ms;
  content: '';
}
.tabs-header .tab.active {
  color: #2a82e4;
}
.tabs-header .tab.active::after {
  width: 150px;
  background-color: #2a82e4;
  opacity: 1;
}
.tabs-body {
  margin-top: 25px;
}

/* 图片墙 */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.picwall {
  margin-top: 25px;
}
.picwall .outer {
  display: flex;
  width: 100%;

  animation-delay: 300ms;
  animation-duration: var(--animation-duration, 30000ms);
  animation-iteration-count: infinite;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-play-state: running;
}
.picwall .outer.animation-pause {
  animation-play-state: paused;
}
.picwall .inner {
  flex: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 400px;
  padding: 5px 0;
}
.picwall .item {
  flex: none;
  width: 240px;
  height: 130px;
  padding: 5px;
}
.picwall .item:nth-child(2n) .image {
  background-color: #f9f9f9;
}
.picwall .image {
  height: 100%;
}
.picwall .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 智慧会务小程序能做什么？ */
.module-session {
  padding-bottom: initial;
  background: url(../images/session.png) no-repeat center top/cover;
}
.module-session .heading .title,
.module-session .heading .summary {
  color: #fff;
}
.module-session .heading .subtitle {
  color: #e5e5e5;
}

/* 缩略图 */
.session-thumbnails {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 25px auto 0;
}
.session-thumbnails .item {
  flex: none;
  width: 320px;
}
.session-thumbnails .item:nth-child(2) {
  flex: auto;
  width: initial;
  margin: 0 35px;
}
.session-thumbnails .image {
  height: 100%;
}
.session-thumbnails .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.session {
  display: flex;
  width: 1200px;
  margin: 30px auto 0;
  border-radius: 5px;
  overflow: hidden;
}

.session-header {
  flex: none;
  width: 245px;
  padding: 45px 15px;
  background-color: rgba(0,0,0,.3);
  border-radius: 5px 0 0 5px;
}
.session-header .title {
  font-size: 16px;
  color: #fff;
  text-align: center;
}
.session-header .title .icon {
  display: block;
  width: 24px;
  height: 24px;
  margin: 5px auto 0;
  background: url(../images/icon-chevron-down.png) no-repeat center top/cover;
}
.session-header .tabs {
  width: initial;
}
.session-header .tab {
  padding: 15px 20px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.session-header .tab.active {
  background-color: #1763e8;
}

.session-body {
  flex: none;
  width: 955px;
  height: 438px;
  overflow: hidden;
}
.session-content {
  display: flex;
}
.session-description {
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-color: #1763e8;
  --swiper-pagination-bullet-inactive-opacity: .7;
  flex: none;
  position: relative;
  width: 710px;
  height: 433px;
  overflow: hidden;
}
.session-description .image {
  height: 100%;
}
.session-description .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.session-more {
  flex: none;
  width: 245px;
  padding: 45px 15px;
  background-color: rgba(0,0,0,.3);
  border-radius: 0 5px 5px 0;
}
.session-more .title {
  font-size: 16px;
  color: #fff;
  text-align: center;
}
.session-more .title .icon {
  display: block;
  width: 24px;
  height: 24px;
  margin: 5px auto 0;
  background: url(../images/icon-chevron-down.png) no-repeat center top/cover;
}
.session-cases {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.session-cases .item {
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  margin-top: 15px;
}
.session-cases .image {
  flex: none;
  max-width: 100%;
}
.session-cases .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 智慧会务小程序样式库 */
.module-templates {
  position: relative;
  margin-right: -20px;
  margin-left: -20px;
}

.templates {
  width: 1240px;
  margin: 45px auto 0;
  overflow: hidden;
}
.templates .image {
  position: relative;
  width: 246px;
  height: 458px;
  padding: 10px 32px 50px;
  margin: 0 auto;
}
.templates .image::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/phone.png) no-repeat center top/cover;
  content: '';
}
.templates .image > img {
  width: 182px;
  height: 398px;
  object-fit: cover;
  border-radius: 20px;
}
.module-templates .pager .swiper-button-prev,
.module-templates .pager .swiper-button-next {
  --swiper-navigation-size: 18px;
  --swiper-navigation-color: #888;
  width: 64px;
  height: 64px;
  margin-top: initial;
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0 10px 15px rgba(0,0,0,.05);
}
.module-templates .pager .swiper-button-prev {
  right: 50%;
  left: initial;
  margin-right: 630px;
}
.module-templates .pager .swiper-button-next {
  right: initial;
  left: 50%;
  margin-left: 630px;
}

/* 智慧会务安全保障 */
.module-technology {
  padding-bottom: 80px;
  margin-right: -13px;
  margin-left: -13px;
  background-color: #f1f2f5;
}
.module-technology .contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
}
.module-technology .contents .item {
  width: 390px;
  margin-top: 20px;
}
.module-technology .contents .image {
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
  overflow: hidden;
}
.module-technology .contents .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-technology .sub-headling {
  margin-top: 30px;
  font-size: 24px;
  text-align: center;
}
.module-technology .certificate {
  width: 1225px;
  margin: 30px auto 0;
  overflow: hidden;
}
.module-technology .certificate .image {
  width: 220px;
  height: 300px;
  margin: 0 auto;
}
.module-technology .certificate .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 智慧会务小程序助力会务效果提升 */
.module-effect {
  padding-bottom: 80px;
  background: url(../images/effect.png) no-repeat center top/cover;
}
.module-effect .heading .title {
  color: #fff;
}

.module-effect .contents {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 25px auto 0;
}
.module-effect .contents .item {
  width: 280px;
  margin-top: 25px;
}
.module-effect .contents .image {
  border-radius: 5px;
  overflow: hidden;
}
.module-effect .contents .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 为什么选择智慧会务小程序 */
.module-advantage {
  padding-bottom: 80px;
  background-color: #f1f4fa;
}
.module-advantage .heading .subtitle {
  color: #808080;
}

.module-advantage .contents {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  width: 1200px;
  height: 417px;
  margin: 40px auto 0;
}
.module-advantage .contents .item {
  width: 223px;
  height: 207px;
}
.module-advantage .contents .item:first-child {
  width: 296px;
  height: 417px;
}
.module-advantage .contents .image {
  height: 100%;
}
.module-advantage .contents .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 立即体验 */
.module-try {
  padding-bottom: 80px;
  background: url(../images/try.png) no-repeat center top/cover;
}
.module-try .content {
  position: relative;
  width: 1200px;
  margin: 25px auto 0;
  text-align: center;
}
.module-try .content .image {
  display: inline-block;
  max-width: 100%;
}
.module-try .content .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module-try .qrcode {
  position: absolute;
  left: 50%;
  display: none;
  width: 230px;
  height: 230px;
  padding: 10px;
  margin-top: -55px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
  overflow: hidden;
  transform: translateX(-50%);
}
.module-try .qrcode.active {
  display: inline-block;
}
.module-try .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 234px;
  height: 70px;
  padding-left: 44px;
  margin: 45px auto 0;
  font-size: 24px;
  color: #158afe;
  background-color: #fff;
  border-radius: 35px;
  box-shadow: 0 20px 36px rgba(0,0,0,.15);
  cursor: pointer;
}
.module-try .button .icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 20px;
  background: url(../images/icon-chevron-right.png) no-repeat center top/cover;
}

/* 底部 */
.bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 0 80px;
  background-color: #181818;
}
.bottom .contact {
  width: 700px;
  font-size: 14px;
  color: #fff;
}
.bottom .contact .title {
  font-size: 36px;
}
.bottom .contact .content,
.bottom .contact .icp {
  margin-top: 15px;
}
.bottom .qrcode {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
}
.bottom .qrcode .item {
  flex: none;
  padding: 0 5px;
}
.bottom .qrcode .item .image {
  width: 135px;
  height: 135px;
}
.bottom .qrcode .item .title {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

/* 扫码 */
.contactus {
  position: fixed;
  bottom: 200px;
  right: 15px;
  z-index: 888;
  width: 185px;
}









