/* 样式初始化 */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* 页面骨架布局 */
.wrapper {
  width: 100%;
  height: auto;
}
.wrapper .wrapper-container {
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 120px auto 0;
  /* background-color: #dfdfdf; */
}
/* header start */
.header {
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #dddddd;
}
.header .header-container {
  width: 100%;
  height: 100%;
  padding: 20px 0;
  max-width: 1400px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.header .header-container .logo {
  width: auto;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.header .header-container .logo img {
  width: auto;
  height: 100%;
}
.header .header-container .logo span {
  font-size: 24px;
  font-weight: 700;
  color: #ffbc23;
  margin-left: 10px;
}
.header .header-container .menu {
  width: auto;
  height: 50px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.header .header-container .menu ul {
  width: auto;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.header .header-container .menu ul li {
  list-style: none;
  width: auto;
  height: 100%;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  line-height: 50px;
}
.header .header-container .menu ul li a {
  text-decoration: none;
}
.header .header-container .menu .down-apk {
  width: 120px;
  height: 40px;
  background-color: #ffbc23;
  border-radius: 5px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  margin-left: 35px;
  animation: banner 1s linear infinite;
}
.header .header-container .menu .down-apk a {
  text-decoration: none;
  color: #fff;
}
.header .header-container .menu .login-in {
  background-color: #338d1c;
  padding: 12px 20px;
  margin-left: 40px;
  border-radius: 10px;
  cursor: pointer;
}
.header .header-container .menu .login-in a {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}
/* header end */

/* banner大图 */
.banner {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 600px;
  animation: banner 15s linear infinite;
}
/* banner大图 */

/* 下载安装步骤 */
.down-step {
  width: 100%;
  margin: 25px 0;
  padding: 50px;
  background-color: #fff;
  border-radius: 15px;
}

.down-step .item span {
  font-size: 16px;
  font-weight: bold;
  color: #343434;
}

.down-step .item img {
  width: 100%;
  height: auto;
  margin: 15px 0;
}
/* 下载安装步骤 */

/* intro start */
.intro {
  width: 100%;
  height: auto;
  padding: 60px 20px;
}
.intro .intro-container {
  width: 100%;
  height: auto;
}
.intro .intro-container .title {
  width: 100%;
  height: auto;
  font-size: 26px;
  color: #333333;
  background: linear-gradient(to right, rgba(234, 173, 33, 1), rgba(234, 173, 33, 0));
  padding-left: 10px;
}
.intro .intro-container .desc {
  width: 100%;
  height: auto;
  margin-top: 20px;
  font-size: 16px;
  color: #666666;
  line-height: 20px;
  padding-left: 15px;
}
.intro .intro-container .intro-content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.intro .intro-container .intro-content .item {
  width: 50%;
  height: auto;
  margin-top: 50px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.intro .intro-container .intro-content .item .ico {
  width: auto;
  height: 100px;
  margin-right: 20px;
}
.intro .intro-container .intro-content .item .ico img {
  width: 100%;
  height: 100%;
}
.intro .intro-container .intro-content .item .txt .item-title {
  width: 100%;
  height: auto;
  font-size: 20px;
  color: #b99541;
}
.intro .intro-container .intro-content .item .txt ul {
  width: 100%;
  height: auto;
  margin-top: 15px;
  list-style: none;
}
.intro .intro-container .intro-content .item .txt ul li {
  width: 100%;
  height: auto;
  font-size: 16px;
  color: #666666;
  padding: 5px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.intro .intro-container .intro-content .item .txt ul li img {
  width: 16px;
  height: auto;
  margin-right: 10px;
}
/* intro end */

/* faqs start */
.faqs {
  width: 100%;
  height: auto;
  padding: 60px 20px;
}
.faqs .faqs-container {
  width: 100%;
  height: auto;
}
.faqs .faqs-container .title {
  width: 100%;
  height: auto;
  font-size: 26px;
  color: #333333;
  background: linear-gradient(to right, rgba(234, 173, 33, 1), rgba(234, 173, 33, 0));
  padding-left: 10px;
}
.faqs .faqs-container .content {
  margin-top: 35px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.faqs .faqs-container .content .list-ul {
  flex: none;
  width: 250px;
  height: auto;
  list-style: none;
  border: 1px solid #ccc;
}
.faqs .faqs-container .content .list-ul .faqs-li {
  padding-left: 8px;
  width: auto;
  height: 50px;
  line-height: 50px;
}
.faqs .faqs-container .content .list-ul .faqs-li.active {
  background-color: #f8d074;
  color: #fff;
}
.faqs .faqs-container .content .list-desc {
  width: auto;
  height: auto;
  padding: 20px;
  border: 1px solid #ccc;
}
.faqs .faqs-container .content .list-desc .faqs-desc {
  width: 100%;
  height: auto;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  display: none;
}
.faqs .faqs-container .content .list-desc .faqs-desc .p {
  width: 100%;
  height: auto;
  padding: 15px 0;
}
.faqs .faqs-container .content .list-desc .faqs-desc .h {
  width: 100%;
  height: auto;
  padding: 15px 0;
  font-size: 18px;
  color: #333333;
  font-weight: 700;
}
.faqs .faqs-container .content .list-desc .faqs-desc.active {
  display: block;
}
/* faqs end */

/* footer start */
.footer {
  width: 100%;
  background-color: #666666;
}
.footer .footer-container {
  width: 100%;
  height: auto;
  padding: 30px 0;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
.footer .footer-container .main {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}
.footer .footer-container .main .menu ul {
  width: 400px;
  height: auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer .footer-container .main .menu ul li {
  width: 90%;
  list-style: none;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-bottom: 1px solid #f8d074;
}
.footer .footer-container .main .menu ul li a {
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.footer .footer-container .main .security {
  width: 400px;
  height: auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
.footer .footer-container .main .security .txt {
  width: auto;
  height: auto;
  font-size: 18px;
  color: #fff;
  margin: 15px 0;
}
.footer .footer-container .main .security .photowall {
  width: auto;
  height: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.footer .footer-container .main .security .photowall img {
  width: auto;
  height: 40px;
  margin: 10px 10px 0 0;
}
.footer .footer-container .right {
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.footer .footer-container .copyright {
  width: auto;
  height: auto;
  font-size: 16px;
  color: #fff;
  margin-top: 20px;
}

/* 除开首页之外纯文本页面公用样式 */
.text-page-common {
  width: 100%;
  height: auto;
  padding: 0 20px;
  background-color: #ffffff;
}
.text-page-common .image-title {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.text-page-common .image-title img {
  width: 100%;
  height: auto;
  animation: img-transform 5s linear infinite;
}
.text-page-common .image-title span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  color: #f8d074;
  font-size: 48px;
  font-weight: 800;
}
.text-page-common .text-body .title-level-1 {
  width: 100%;
  height: auto;
  font-size: 18px;
  color: #333333;
  background: linear-gradient(to right, rgba(234, 173, 33, 1), rgba(234, 173, 33, 0));
  padding-left: 10px;
  margin: 30px 0;
}
.text-page-common .text-body .paragraph-level-1 {
  width: 100%;
  height: auto;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  margin: 20px 0;
  padding-left: 24px;
}
.text-page-common .text-body .paragraph-level-2 {
  width: 100%;
  height: auto;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  margin: 20px 0;
  padding-left: 36px;
}
.text-page-common .text-body ul {
  width: 100%;
  height: auto;
  margin: 10px 0;
  padding-left: 20px;
  list-style: none;
}
.text-page-common .text-body ul li {
  width: 100%;
  height: auto;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  margin: 10px 0;
  padding-left: 20px;
}
.text-page-common .text-body ul li:first-child {
  font-size: 17px;
  font-weight: 600;
}
.text-page-common .product-info {
  width: 100%;
  margin: 40px 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
.text-page-common .product-info .key {
  width: 100%;
  height: auto;
  font-size: 24px;
  color: #333333;
  line-height: 24px;
  margin: 10px 0;
  padding-left: 20px;
  text-align: center;
}
.text-page-common .product-info .value {
  width: 100%;
  height: auto;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  margin: 10px 0;
  padding-left: 20px;
  text-align: center;
}
