#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin: 0;
  padding: 0;
}
[v-cloak]{
  display: none;
}
/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */

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,
font,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
button {
  border: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* 新增套餐样式 */
.pricing-section {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.pricing-plans {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.plan {
  background: white;
  border-radius: 8px;
  padding: 30px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.plan:hover {
  transform: translateY(-10px);
}

.plan h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.price {
  font-size: 28px;
  font-weight: bold;
  color: #4bbaff;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.buy-btn {
  background: #4bbaff;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.buy-btn:hover {
  background: #3aa8e8;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-button {
  display: none;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: transparent;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0;
  border-style: dashed;
  background-color: #8ac0fd;
  border-color: transparent;
  border-width: 1.5px;
  background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover {
  height: 13px !important;
  width: 13px !important;
  background: #77b2f7;
}
*::-webkit-scrollbar-corner {
  display: none;
}
*::-webkit-resizer {
  display: none;
}
.container {
  width: 1200px;
  overflow-x: hidden;
  margin: 0 auto;
}
.min-720-show {
  display: none;
}
.max-720-show {
  display: block;
}
@media screen and (max-width: 720px) {
  .min-720-show {
    display: block;
  }
  .max-720-show {
    display: none;
  }
  .container {
    width: 100%;
  }
}
.public-head {
  min-width: 1200px;
  box-sizing: border-box;
  position: sticky;
  z-index: 9999999;
  top: 0;
  height: 64px;
  line-height: 64px;
  background: rgba(4,17,47,0.3);
}
.public-head .content {
  height: 64px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
}
.public-head .content .logo-wapper{
 color:#fff;
 flex-shrink:0;
}
.public-head .content .logo {
  background-image: url(../img/logo.png);
  background-repeat: no-repeat;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-size: 100% 100%;
  margin-top: 18px;
  cursor: pointer;
}
.public-head .content .logo.fg {
  border-radius:5px;
  background-image: url(../img/logo.png);
  margin-right: 10px;
}
.public-head .content .logo-wapper span{
  vertical-align: 10px;
}
.public-head .content .nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 500px;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  color: #ffffff;
}
.public-head .content .nav .nav-item {
  text-align: center;
  cursor: pointer;
}
.public-head .content .nav .nav-item:hover {
  color: #5acbff;
}
.public-head .content .nav .nav-item.active {
  position: relative;
  color: #5acbff;
}
.public-head .content .nav .nav-item.active::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 3px;
  background: linear-gradient(308deg,rgba(90,203,255,0),#5acbff);
  position: absolute;
  left: 0;
  bottom: 14px;
  border-radius: 1px;
}
.public-head .content .goback {
  font-size: 14px;
}
@media screen and (max-width: 720px) {
  .public-head {
    min-width: initial;
  }
  .public-head .content {
    padding-right: 0px;
    padding-left: 5px;
  }
  .public-head .content .goback {
    min-width: 60px;
  }
  .public-head .content .nav {
    width: 300px;
    padding-right: 20px;
  }
  .public-head .logo-wapper {
    margin-right: 30px;
  }
}

.public-footer {
  width: 100%;
  min-width: 1200px;
  background-color: #04112d;
  padding-bottom: 10px;
}
.public-footer .container .wrap {
  display: flex;
  justify-content: space-between;
  height: 280px;
  border-bottom: 1px solid #182a52;
  padding-bottom: 60px;
}
.public-footer .container .company-info {
  text-align: left;
  width: 340px;
  padding-top: 72px;
}
.public-footer .container .company-info .logo {
  background-image: url(../img/logo.png);
  background-repeat: no-repeat;
  display: inline-block;
  width: 70px;
  height: 60px;
  font-size: 36px;
  color: #ffffff;
  background-size: 100% 100%;
  cursor: pointer;
}
.public-footer .container .company-info a,
.public-footer .container .company-info p {
  font-size: 14px;
  color: #afafaf;
  line-height: 26px;
}
.public-footer .container .company-info .group {
  font-size: 14px;
  color: #c0c0c0;
  margin-top: 36px;
}
.public-footer .container .download {
  padding-top: 86px;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.public-footer .container .download .download-item {
  width: 200px;
  padding-left: 30px;
}
.public-footer .container .download .download-item h3 {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 21px;
  margin-bottom: 30px;
}
.public-footer .container .download .download-item a {
  font-size: 14px;
  color: #c0c0c0;
  line-height: 14px;
  margin-bottom: 24px;
  display: block;
  text-decoration-line: none;
}
.public-footer .container .download .download-item a:hover {
  color: #5ACBFF;
}
.public-footer .container .qr {
  padding-top: 86px;
  width: 200px;
  text-align: left;
}
.public-footer .container .qr h3 {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 21px;
  margin-bottom: 30px;
}
.public-footer .container .qr img {
  width: 110px;
  height: 110px;
}
.public-footer .container .footer-record {
  margin: 32px 0;
  font-size: 14px;
  font-weight: 300;
  color: #c0c0c0;
  line-height: 14px;
}
@media screen and (max-width: 720px) {
  .public-footer {
    min-width: initial;
  }
  .public-footer .container .wrap {
    flex-wrap: wrap;
    justify-content: start;
    height: auto;
    padding: 0 20px;
    border-bottom: none;
  }
  .public-footer .container .wrap .company-info {
    width: 100%;
    border-bottom: 1px solid #182a52;
  }
  .public-footer .container .wrap .company-info .group {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .public-footer .container .wrap .download {
    height: auto;
    padding-top: 20px;
    justify-content: space-around;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid #182a52;
  }
  .public-footer .container .wrap .download .download-item {
    width: 30%;
    padding-left: 0px;
  }
  .public-footer .container .wrap .download .download-item h3 {
    font-size: 16px;
  }
  .public-footer .container .wrap .qr {
    padding-top: 20px;
    width: 100%;
    border-bottom: 1px solid #182a52;
  }
  .public-footer .container .wrap .qr h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .public-footer .container .wrap .qr img {
    margin-bottom: 20px;
  }
  .public-footer .container .footer-record {
    text-align: left;
    padding: 0 20px;
    line-height: 18px;
  }
}

.public-card .card-item {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.public-card .recommend {
  min-width: 1200px;
  background-image: url(../img/icon_photo_bg.png) no-repeat;
  background-size: cover;
}
.public-card .container {
  padding: 80px 0;
}
.public-card .container .title {
  text-align: center;
  display: flex;
  justify-content: center;
}
.public-card .container .title .icon {
  width: 50px;
  position: relative;
}
.public-card .container .title .icon::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: linear-gradient(180deg,#336dff 0%,#45e9ff 100%);
  border: 1px solid #45e9ff;
  position: absolute;
}
.public-card .container .title .icon::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: linear-gradient(180deg,#336dff 0%,#45e9ff 100%);
  border: 1px solid #45e9ff;
  position: absolute;
}
.public-card .container .title .icon-left::after {
  left: 18px;
  bottom: 20px;
}
.public-card .container .title .icon-left::before {
  left: 0;
  bottom: 0;
}
.public-card .container .title .icon-right::after {
  left: 18px;
  bottom: 20px;
}
.public-card .container .title .icon-right::before {
  right: 0;
  bottom: 0;
}
.public-card .container .title .icon-centre {
  font-size: 42px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 4px;
}
.public-card .container .subtitle {
  font-size: 18px;
  font-family: STHeitiSC-Light, STHeitiSC;
  font-weight: 300;
  color: #ffffff;
  line-height: 28px;
  margin: 28px 0px 58px 0px;
}
.public-card .container .top-button {
  padding: 16px 30px;
  background: linear-gradient(145deg,#bae9ff 0%,#00aeff);
  border-radius: 4px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 80px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 70px;
  letter-spacing: 1px;
  display: block;
  cursor: pointer;
}
.public-card .container .top-button:hover {
  background: #5acbff;
}
.public-card .container .bottom-button {
  padding: 16px 30px;
  background: linear-gradient(145deg,#bae9ff 0%,#00aeff);
  border-radius: 4px;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 80px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  display: block;
  cursor: pointer;
}
.public-card .container .bottom-button:hover {
  background: #5acbff;
}
.public-card .container .pic-list .pic-list-item {
  width: 400px;
  height: 226px;
  display: inline-block;
  width: 32.5%;
  margin-bottom: 10px;
}
.public-card .container .pernson-info {
  display: flex;
  justify-content: space-around;
}
.public-card .container .pernson-info .pic-list-item {
  background: url(../img/icon_photo_bg.png) no-repeat;
  background-size: cover;
  width: 380px;
  height: 260px;
  width: 32%;
  position: relative;
}
.public-card .container .pernson-info .pic-list-item::after {
  content: '';
  display: block;
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(244deg,#e0f5ff 0%,#5acbff 100%);
}
.public-card .container .pernson-info .pic-list-item::before {
  content: '';
  display: block;
  background: url(../img/intro_recommend_icon.png) no-repeat;
  width: 34px;
  height: 28px;
  position: absolute;
  top: -15px;
  left: 28px;
}
.public-card .container .pernson-info .pic-list-item .user-info {
  display: flex;
  justify-content: space-around;
  margin-top: 42px;
  margin-left: 18px;
  margin-right: 26px;
}
.public-card .container .pernson-info .pic-list-item .user-info .user-info-photo {
  width: 60%;
  height: 60px;
  text-align: left;
}
.public-card .container .pernson-info .pic-list-item .user-info .user-info-photo span {
  width: 60px;
  display: inline-block;
  height: 60px;
  background: url(../img/icon_photo_1.png) no-repeat;
  background-size: cover;
  vertical-align: middle;
}
.public-card .container .pernson-info .pic-list-item .user-info .user-info-photo p {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 22px;
  margin-left: 4px;
}
.public-card .container .pernson-info .pic-list-item .user-info .user-info-star {
  width: 40%;
  height: 60px;
  line-height: 60px;
}
.public-card .container .pernson-info .pic-list-item .user-info .user-info-star li {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../img/icon_photo_star.png) no-repeat;
  background-size: cover;
}
.public-card .container .pernson-info .pic-list-item .user-info-comment {
  width: 336px;
  height: 80px;
  font-size: 14px;
  color: #ffffff;
  line-height: 26px;
  margin-top: 20px;
  margin-left: 18px;
  margin-right: 26px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 720px) {
  .public-card .container .title .icon-centre {
    font-size: 24px;
  }
  .public-card .subtitle,
  .public-card .title {
    padding: 0 20px;
  }
  .public-card .recommend {
    min-width: initial;
  }
  .public-card .container .subtitle {
    padding: 0 20px;
  }
  .public-card .container .pernson-info {
    flex-wrap: wrap;
    padding: 0 50px;
  }
  .public-card .container .pernson-info .pic-list-item {
    width: 100%;
    height: initial;
    margin-bottom: 30px;
    background-size: 100% 100%;
  }
  .public-card .container .pernson-info .pic-list-item .user-info-comment {
    width: initial;
    margin-bottom: 15px;
  }
}

.index .banner {
  text-align: left;
  background-image: url(../img/home_top_banner_bg.jpg);
  background-color: #000;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  min-width: 1200px;
  background-size: cover;
}
.index .banner .desc h1 {
  font-size: 62px;
  font-family: STHeitiSC-Medium, STHeitiSC;
  font-weight: 500;
  color: #fff;
  line-height: 64px;
  margin-top: 150px;
  margin-bottom: 10px;
}
.index .banner .desc .reg-button {
  cursor: pointer;
  /* width: 312px; */
  display: inline-block;
  height: 79px;
  border-radius: 4px;
  margin-top: 30px;
  margin-bottom: 60px;
  overflow: hidden;
}
.index .banner .desc .reg-button .inner {
  transition: all 200ms;
  text-align: center;
  padding: 0 20px;
  display: inline-block;
  height: 72px;
  font-size: 28px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #71d2ff;
  line-height: 66px;
  border: 3px solid;
  border-image: linear-gradient(244deg,#518cff,#45e9ff) 2 2;
}
.index .banner .desc .reg-button .inner:hover {
  color: #fff;
  background: linear-gradient(244deg,#518cff 0%,#45e9ff 100%);
}
.index .banner .desc p {
  height: 77px;
  font-size: 18px;
  font-family: STHeitiSC-Light, STHeitiSC;
  font-weight: 300;
  color: #fff;
  line-height: 36px;
}
.index .banner .desc h2 {
  height: 24px;
  font-size: 24px;
  font-family: STHeitiSC-Medium, STHeitiSC;
  font-weight: 500;
  color: #fff;
  line-height: 25px;
  margin-bottom: 50px;
}
.index .banner .desc .download-list {
  margin-bottom: 50px;
  width: 531px;
  overflow: auto;
}
.index .banner .desc .download-list button {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  width: 240px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  font-size: 24px;
  font-family: HiraginoSansGB-W3, HiraginoSansGB;
  font-weight: normal;
  color: #fff;
  line-height: 36px;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 200ms;
}
.index .banner .desc .download-list button:hover {
  background: #5acbff;
  border-color: #5acbff;
}
.index .banner .desc .download-list button img {
  display: block;
  width: 48px;
}
.index .digital {
  backdrop-filter: blur(23px);
}
.index .digital .digital-list ul {
  padding-top: 60px;
  padding-bottom: 50px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.index .digital .digital-list h1 {
  font-size: 40px;
  font-family: Avenir-Heavy, Avenir;
  font-weight: 800;
  color: #fff;
  line-height: 55px;
  margin-bottom: 15px;
}
.index .digital .digital-list p {
  font-size: 18px;
  font-family: PingFangSC-Light, PingFang SC;
  font-weight: 300;
  color: #fff;
  line-height: 25px;
}
.index .description {
  min-width: 1200px;
  background-color: #04112f;
}
.index .description .item {
  min-width: 1200px;
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 50%;
  min-height: 480px;
}
.index .description .item .container {
  display: flex;
  height: 480px;
  align-items: center;
}
.index .description .item:first-child {
  background-image: url(../img/home_pic_1.png);
}
.index .description .item:nth-child(2) {
  background-image: url(../img/home_pic_2.png);
  background-position: center left;
}
.index .description .item:nth-child(2) .container {
  justify-content: flex-end;
}
.index .description .item:nth-child(3) {
  background-image: url(../img/home_pic_3.png);
}
.index .description .item .inner {
  text-align: left;
  width: 580px;
}
.index .description .item .inner .button {
  display: block;
  text-decoration:none;
  width: 160px;
  height: 48px;
  background: linear-gradient(145deg,#bae9ff 0%,#00aeff 100%);
  border-radius: 4px;
  text-align: center;
  color: #fff;
  line-height: 48px;
  font-size: 18px;
  cursor: pointer;
}
.index .description .item .inner .button:hover {
  background: #5acbff;
}
.index .description .item .inner .app-icons {
  width: 580px;
  height: 88px;
  background: #152f61;
  border-radius: 8px;
  border: 1px solid;
  border-color: #518cff;
  margin-bottom: 30px;
}
@keyframes scoll1 {
  from {
    background-position: 0;
  }
  to {
    background-position: -1672px;
  }
}
.index .description .item .inner .app-icons .app-bg {
  height: 85px;
  background-image: url(../img/app_icons.png);
  animation: scoll1 25s linear 0s infinite;
}
.index .description .item .inner h1 {
  font-size: 34px;
  font-family: STHeitiSC-Medium, STHeitiSC;
  font-weight: 500;
  color: #fff;
  line-height: 60px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 50px;
  white-space: nowrap;
}
.index .description .item .inner h1::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: linear-gradient(180deg,#336dff 0%,#45e9ff 100%);
  border: 1px solid #45e9ff;
  position: absolute;
  left: 20px;
  top: 15px;
}
.index .description .item .inner h1::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: linear-gradient(180deg,#336dff 0%,#45e9ff 100%);
  border: 1px solid #45e9ff;
  position: absolute;
  left: 0;
  bottom: 10px;
}
.index .description .item .inner p {
  font-size: 18px;
  font-family: PingFangSC-Light, PingFang SC;
  font-weight: 300;
  color: #fff;
  line-height: 32px;
  margin-bottom: 30px;
}
.index .swpier-section {
  position: relative;
  min-width: 1200px;
}
.index .swpier-section .swiper-container {
  width: 100%;
  height: 100%;
  margin-top: 70px;
}
.index .swpier-section .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms;
  transform: scale(0.8);
  opacity: 0.5;
}
.index .swpier-section .swiper-slide-active,
.index .swpier-section .swiper-slide-duplicate-active {
  transform: scale(1);
  z-index: 9999;
  opacity: 1;
}
.index .swpier-section .button {
  display: block;
  text-decoration: none;
  cursor: pointer;
  width: 232px;
  height: 48px;
  background: linear-gradient(145deg,#bae9ff 0%,#00aeff 100%);
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  font-family: PingFangSC-Semibold, PingFang SC;
  color: #fff f;
  line-height: 48px;
  margin: 0 auto;
}
.index .swpier-section .button:hover {
  background: #5acbff;
}
.index .swpier-section ul {
  display: flex;
  justify-content: space-around;
  width: 300px;
  position: absolute;
  bottom: 100px;
  z-index: 999999;
  left: 50%;
  transform: translateX(-50%);
}
.index .swpier-section ul li {
  width: 70px;
  height: 32px;
  background: linear-gradient(244deg,#518cff 0%,#45e9ff 100%);
  color: #fff;
  line-height: 32px;
  font-size: 18px;
  border-radius: 5px 0px 5px 0px;
  transform: skew(-10deg);
}
.index .superiority-section {
  min-width: 1200px;
}
.index .superiority-section .main-superiority {
  margin-top: 50px;
  height: 350px;
  padding: 30px;
  background-color: #1b277f;
  border-radius: 8px;
  border: 1px solid;
  border-color: #45e9ff;
  background-image: url(../img/pdr_youshi_nvj.png);
  background-repeat: no-repeat;
  background-position: 5% 90%;
}
.index .superiority-section .main-superiority > h1 {
  height: 36px;
  font-size: 36px;
  font-family: STHeitiSC-Medium, STHeitiSC;
  font-weight: 500;
  color: #45e9ff;
  line-height: 37px;
  text-align: left;
}
.index .superiority-section .main-superiority > p {
  text-align: left;
  width: 387px;
  height: 56px;
  font-size: 16px;
  font-family: STHeitiSC-Light, STHeitiSC;
  font-weight: 300;
  color: #e4f6ff;
  line-height: 28px;
  margin-top: 15px;
}
.index .superiority-section .main-superiority > ul {
  display: flex;
  justify-content: space-between;
  color: #fff;
  padding-left: 320px;
}
.index .superiority-section .main-superiority > ul li {
  position: relative;
  width: 252px;
  background: linear-gradient(179deg,rgba(92,128,245,0.8) 0%,rgba(0,102,255,0) 100%);
  border-radius: 8px;
  padding: 45px 25px 35px 25px;
  box-sizing: border-box;
}
.index .superiority-section .main-superiority > ul li h1 {
  width: 165px;
  height: 45px;
  background: linear-gradient(288deg,#3363f7 0%,#5f82f5 100%);
  border-radius: 14px 0px 14px 0px;
  font-size: 24px;
  font-family: STHeitiSC-Medium, STHeitiSC;
  font-weight: 500;
  line-height: 45px;
  position: absolute;
  top: -20px;
  left: 0;
}
.index .superiority-section .main-superiority > ul li p {
  text-align: left;
  font-size: 14px;
  font-family: STHeitiSC-Light, STHeitiSC;
  font-weight: 300;
  color: #e4f6ff;
  line-height: 24px;
}
.index .superiority-section .main-superiority > ul li:nth-child(2) {
  background: linear-gradient(179deg,#a599ec 0%,rgba(124,107,231,0) 100%);
}
.index .superiority-section .main-superiority > ul li:nth-child(2) h1 {
  background: linear-gradient(288deg,#7c6be7 0%,#a89cec 100%);
}
.index .superiority-section .main-superiority > ul li:nth-child(3) {
  background: linear-gradient(179deg,rgba(51,208,131,0.78) 0%,rgba(0,102,255,0) 100%);
}
.index .superiority-section .main-superiority > ul li:nth-child(3) h1 {
  background: linear-gradient(288deg,#60d0b4 0%,#85d5c5 100%);
}
.index .superiority-section .superiority-list {
  display: flex;
  justify-content: space-between;
}
.index .superiority-section .superiority-list li {
  width: 280px;
  height: 328px;
  background-image: url(../img/home_bhsn_bg.png);
}
.index .superiority-section .superiority-list li img {
  margin-top: 15%;
  width: 68px;
}
.index .superiority-section .superiority-list li h1 {
  color: #45e9ff;
  font-size: 20px;
  font-family: STHeitiSC-Medium, STHeitiSC;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
}
.index .superiority-section .superiority-list li p {
  font-size: 14px;
  font-family: STHeitiSC-Light, STHeitiSC;
  font-weight: 300;
  color: #e4f6ff;
  line-height: 28px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 720px) {
  .index .banner {
    background-position: 60%;
    min-width: initial;
    text-align: center;
  }
  .index .banner .desc p {
    padding: 0 20px;
  }
  .index .banner .desc .download-list {
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .index .banner .desc .download-list button {
    width: 48%;
    margin-right: initial;
    margin-bottom: initial;
    margin-right: 2%;
    margin-bottom: 15px;
    font-size: 20px;
  }
  .index .banner .desc .download-list button:nth-child(2),
  .index .banner .desc .download-list button:nth-child(4) {
    margin-left: 2%;
    margin-right: 0;
  }
  .index .banner .desc h1 {
    font-size: 42px;
  }
  .index .banner .desc h2 {
    font-size: 20px;
  }
  .index .banner .desc .reg-button {
    margin-left: auto;
    margin-right: auto;
  }
  .index .digital .digital-list h1 {
    font-size: 24px;
  }
  .index .description {
    min-width: initial;
    padding-bottom: 50px;
  }
  .index .description .item {
    min-width: initial;
    background-position: bottom right;
    background-size: 80%;
  }
  .index .description .item .container {
    align-items: flex-start;
    height: initial;
  }
  .index .description .item:nth-child(1) {
    min-height: 700px;
  }
  .index .description .item:nth-child(2) {
    background-position: bottom left;
    min-height: 600px;
  }
  .index .description .item:nth-child(3) {
    min-height: 600px;
  }
  .index .description .item .inner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .index .description .item .inner h1 {
    font-size: 24px;
  }
  .index .description .item .inner .app-icons {
    width: 100%;
  }
  .index .swpier-section {
    min-width: initial;
  }
  .index .superiority-section {
    min-width: initial;
  }
  .index .superiority-section .main-superiority {
    background-image: initial;
    margin-left: 20px;
    margin-right: 20px;
    height: initial;
  }
  .index .superiority-section .main-superiority > p{
    text-align: left;
    height: 56px;
    width: 100%;
    font-size: 16px;
    font-family: STHeitiSC-Light, STHeitiSC;
    font-weight: 300;
    color: #e4f6ff;
    line-height: 28px;
    margin-top: 15px;
  }
  .index .superiority-section .main-superiority > ul {
    padding-left: initial;
    margin-top: 50px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .index .superiority-section .main-superiority > ul li {
    width: 100%;
    margin-right: 10px;
    margin-bottom: 50px;
  }
  .index .superiority-section .main-superiority > ul li:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
  .index .superiority-section .superiority-list {
    flex-wrap: wrap;
    padding: 0 20px;
  }
  .index .superiority-section .superiority-list li {
    width: 48%;
    background-repeat: no-repeat;
    margin-bottom: 20px;
    background-size: 100% 100%;
  }
  .index .superiority-section .superiority-list li p {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.help-page .banner {
  overflow: hidden;
  min-width: 1200px;
  height: 420px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/help_top_banner_bg.png);
}
.help-page .banner h1 {
  margin-top: 170px;
  font-size: 46px;
  font-family: STHeitiSC-Medium, STHeitiSC;
  font-weight: 500;
  color: #fff;
  margin-bottom: 40px;
}
.help-page .banner .search-wrapper {
  width: 552px;
  height: 48px;
  background: #ffffff;
  border-radius: 6px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.help-page .banner .search-wrapper img {
  display: block;
  width: 20px;
  height: 20px;
  padding-left: 13px;
  padding-right: 13px;
}
.help-page .banner .search-wrapper input {
  display: block;
  width: 90%;
  border: none;
  border-radius: 6px 0px 0px 6px;
}
.help-page .banner .search-wrapper a {
  display: block;
  flex-shrink: 0;
  width: 70px;
  height: 48px;
  background: #5acbff;
  border-radius: 0px 6px 6px 0px;
  font-size: 16px;
  font-family: STHeitiSC-Medium, STHeitiSC;
  font-weight: 500;
  color: #fff;
  line-height: 48px;
  text-decoration: none;
}
.help-page .main-content {
  background-image: linear-gradient(90deg,#132353 0,#132353 50%,#030f29 0,#030f29);
}
.help-page .main-content .container {
  display: flex;
}
.help-page .category-list {
  background-color: #132353;
  width: 200px;
  flex-shrink: 0;
}
.help-page .category-list ul {
  margin-top: 60px;
  padding-left: 30px;
}
.help-page .category-list li {
  height: 40px;
  position: relative;
  color: #959ebb;
  text-align: left;
  margin-bottom: 8px;
  cursor: pointer;
}
.help-page .category-list li.active {
  color: #5acbff;
}
.help-page .category-list li.active:before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 3px;
  background: linear-gradient(308deg,rgba(90,203,255,0),#5acbff);
  position: absolute;
  left: 0;
  bottom: 14px;
  border-radius: 1px;
}
.help-page .question-list {
  background-color: #030f29;
  padding: 48px 72px;
  width: 90%;
}
.ac-container {
  width: 820px;
  text-align: left;
  margin-bottom: 25px;
}
.ac-container label {
  border-radius: 4px;
  padding: 5px 40px 5px 20px;
  position: relative;
  z-index: 20;
  display: block;
  min-height: 48px;
  cursor: pointer;
  background: linear-gradient(197deg,rgba(2,125,255,0.64) 0%,rgba(0,23,70,0.34) 100%);
  font-size: 20px;
  font-family: STHeitiSC-Light, STHeitiSC;
  font-weight: 300;
  color: #5acbff;
  line-height: 48px;
}
.ac-container label:after,
.ac-container input:checked + label:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url(../img/help_icon_x.png) no-repeat center center;
}
.ac-container input:checked + label:after {
  background-image: url(../img/help_icon_shang.png);
}
.ac-container input {
  display: none;
}
.ac-container article {
  background: rgba(216,216,216,0.07);
  margin-top: -1px;
  overflow: hidden;
  height: 0px;
  position: relative;
  z-index: 10;
  transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
}
.ac-container article p {
  color: #fff;
  padding: 20px;
  font-size: 13px;
  font-family: STHeitiSC-Light, STHeitiSC;
  font-weight: 300;
  color: #e4eaff;
  line-height: 28px;
}
.ac-container input:checked ~ article {
  transition: height 0.5s ease-in-out, box-shadow 0.1s linear;
}
.ac-container input:checked ~ article.ac-small {
  height: 140px;
}
.ac-container input:checked ~ article.ac-medium {
  height: 180px;
}
.ac-container article.ac-large {
  overflow: auto;
  line-height: 24px;
  color: #e4eaff;
}
.ac-container input:checked ~ article.ac-large {
  height: 230px;
  padding: 20px;
}
@media screen and (max-width: 720px) {
  .help-page .banner {
    min-width: initial;
    padding: 0 20px;
  }
  .help-page .banner .search-wrapper {
    width: 100%;
  }
  .help-page .question-list {
    width: 100%;
    box-sizing: border-box;
    padding: 48px 20px;
  }
  .help-page .ac-container {
    width: 100%;
  }
  .help-page .category-list {
    width: 100%;
  }
  .help-page .category-list ul {
    margin-top: initial;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .help-page .main-content {
    background: #030f29;
  }
  .help-page .main-content .container {
    display: block;
  }
}
.ac-container input:checked ~ article.ac-large img {
  display: block;
  width: 100%;
}
.main.intro .banner {
  background-image: url(../img/intro_top_banner_bg.jpg);
  background-repeat: no-repeat;
  width: 100%;
  min-width: 1200px;
  background-size: cover;
}
.main.intro .banner .container {
  display: flex;
  justify-content: space-between;
  padding-top: 145px;
  padding-bottom: 154px;
}
.main.intro .banner .banner-title {
  text-align: left;
  width: 540px;
  margin-right: 62px;
}
.main.intro .banner .banner-title h1 {
  font-size: 62px;
  font-weight: 500;
  color: #ffffff;
}
.main.intro .banner .banner-title p {
  font-size: 18px;
  color: #ffffff;
  line-height: 36px;
  margin: 58px 0;
}
.main.intro .banner .banner-title .banner-button {
  padding: 16px 30px;
  background: linear-gradient(145deg,#bae9ff 0%,#00aeff 100%);
  border-radius: 4px;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  border: none;
  cursor: pointer;
}
.main.intro .banner .banner-img {
  background-image: url(../img/intro_top_banner_right.png);
  background-repeat: no-repeat;
  display: inline-block;
  width: 596px;
  height: 506px;
  background-size: cover;
}
.main.intro .audio-plat .pic-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main.intro .audio-plat .pic-list .pic-list-item {
  width: 400px;
  height: 226px;
  display: inline-block;
  width: 32.8%;
  margin-bottom: 10px;
}
.main.intro .advantage-wrap .advantage-pic {
  display: flex;
  justify-content: space-around;
}
.main.intro .advantage-wrap .advantage-pic-item {
  width: 19%;
  height: 360px;
  border-radius: 4px;
  border: 1px solid;
  border-image: linear-gradient(180deg,rgba(69,233,255,0.53),rgba(50,175,255,0.05)) 1 1;
  text-align: center;
  padding: 34px 27px;
}
.main.intro .advantage-wrap .advantage-pic-item img {
  width: 120px;
  height: 120px;
}
.main.intro .advantage-wrap .advantage-pic-item h1 {
  height: 18px;
  font-size: 18px;
  font-weight: 500;
  color: #45e9ff;
  line-height: 19px;
  margin-top: 36px;
  margin-bottom: 24px;
}
.main.intro .advantage-wrap .advantage-pic-item p {
  text-align: center;
  height: 96px;
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main.intro .advantage-wrap .advantage-pic-item:nth-child(2n) {
  border-image: linear-gradient(180deg,rgba(50,175,255,0.05),rgba(69,233,255,0.53)) 1 1;
}
.main.intro .demand-wrap .demand-pic {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.main.intro .demand-wrap .demand-pic .demand-pic-item {
  width: 48%;
  height: 200px;
  background: linear-gradient(27deg,#1f56b1 0%,#3181ff 100%);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.main.intro .demand-wrap .demand-pic .demand-pic-item img {
  width: 296px;
  height: 200px;
}
.main.intro .demand-wrap .demand-pic .demand-pic-item .item-right-info {
  width: 226px;
  text-align: left;
  margin: 40px 24px;
}
.main.intro .demand-wrap .demand-pic .demand-pic-item .item-right-info h1 {
  width: 126px;
  height: 18px;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 19px;
  white-space: nowrap;
}
.main.intro .demand-wrap .demand-pic .demand-pic-item .item-right-info p {
  width: 226px;
  height: 77px;
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  line-height: 24px;
  margin-top: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main.intro .swpier-hot {
  min-width: 1200px;
}
.main.intro .swpier-hot .swpier-hot-tabs {
  text-align: center;
}
.main.intro .swpier-hot .swpier-hot-tabs a {
  height: 22px;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 22px;
  margin-left: 16px;
  margin-right: 16px;
  text-decoration: none;
}
.main.intro .swpier-hot .swpier-hot-tabs a.active {
  position: relative;
  color: #5acbff;
}
.main.intro .swpier-hot .swpier-hot-tabs a.active::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 3px;
  background: linear-gradient(308deg,rgba(90,203,255,0),#5acbff);
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 1px;
}
.main.intro .swpier-hot .swiper-container {
  width: 100%;
  height: 100%;
  margin-top: 40px;
}
.main.intro .swpier-hot .swiper-slide ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 20%;
  display: inline-block;
}
.main.intro .swpier-hot .swiper-slide ul li {
  width: 197px;
  height: 22px;
  font-size: 16px;
  font-weight: 400;
  color: #b8c9ff;
  line-height: 22px;
  margin-bottom: 24px;
  cursor: pointer;
}
.main.intro .swpier-hot .swiper-slide ul li:hover {
  color: #45e9ff;
}
.main.intro .swpier-hot .swiper-button {
  width: 28px;
  height: 28px;
  line-height: 26px;
  box-sizing: border-box;
  background-color: #3e537f;
  position: relative;
  display: inline-block;
  margin-left: 62px;
  margin-right: 62px;
  margin-top: 28px;
  border-radius: 100%;
  background-image: none;
  border: 1px solid #3e537f;
}
.main.intro .swpier-hot .swiper-button:hover {
  background-color: #45e9ff;
}
.main.intro .swpier-hot .swiper-button::before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
}
.main.intro .swpier-hot .swiper-button-prev::before {
  left: 10px;
}
.main.intro .swpier-hot .swiper-button-next::before {
  transform: rotate(45deg);
  left: 7px;
}
@media screen and (max-width: 720px) {
  .main.intro .banner {
    min-width: initial;
  }
  .main.intro .banner .container {
    display: block;
  }
  .main.intro .banner .container .banner-title {
    text-align: center;
    margin-right: 0px;
    width: 100%;
  }
  .main.intro .banner .container .banner-title h1 {
    font-size: 42px;
  }
  .main.intro .banner .container .banner-title p {
    padding: 0 60px;
    font-size: 16px;
  }
  .main.intro .banner .container .banner-title .banner-button {
    font-size: 20px;
  }
  .main.intro .banner .container .banner-img {
    margin-top: 40px;
    min-width: initial;
    background-position: center;
    background-size: 80%;
    width: 100%;
  }
  .main.intro .audio-plat .card-item .container .pic-list {
    padding: 0 20px;
  }
  .main.intro .audio-plat .card-item .container .pic-list img {
    width: 49.4%;
    height: auto;
    margin-bottom: 6px;
  }
  .main.intro .advantage-wrap .advantage-pic {
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .main.intro .advantage-wrap .advantage-pic .advantage-pic-item {
    width: 47%;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  .main.intro .demand-wrap .demand-pic {
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .main.intro .demand-wrap .demand-pic .demand-pic-item {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  .main.intro .demand-wrap .demand-pic .demand-pic-item img {
    width: 50%;
  }
  .main.intro .demand-wrap .demand-pic .demand-pic-item .item-right-info {
    width: 50%;
    box-sizing: border-box;
  }
  .main.intro .demand-wrap .demand-pic .demand-pic-item .item-right-info h1 {
    display: contents;
    font-size: 16px;
  }
  .main.intro .demand-wrap .demand-pic .demand-pic-item .item-right-info p {
    width: initial;
  }
  .main.intro .demand-wrap .demand-pic .demand-pic-item .min-720-show {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
  }
  .main.intro .demand-wrap .demand-pic .demand-pic-item:nth-child(1) .min-720-show {
    background-image: url(../img/demand_xvqiu_1.png);
  }
  .main.intro .demand-wrap .demand-pic .demand-pic-item:nth-child(2) .min-720-show {
    background-image: url(../img/demand_xvqiu_2.png);
  }
  .main.intro .demand-wrap .demand-pic .demand-pic-item:nth-child(3) .min-720-show {
    background-image: url(../img/demand_xvqiu_3.png);
  }
  .main.intro .demand-wrap .demand-pic .demand-pic-item:nth-child(4) .min-720-show {
    background-image: url(../img/demand_xvqiu_4.png);
  }
  .main.intro .swpier-hot {
    min-width: initial;
  }
  .main.intro .swpier-hot .swiper-slide ul {
    width: 22%;
  }
  .main.intro .swpier-hot .swiper-slide ul li {
    font-size: 14px;
    width: 100%;
    display: inline-block;
  }
}
.main.news {
  background-color: #030f29;
  min-width: 1200px;
}
.main.news .container {
  padding-top: 112px;
}
.main.news .container .news-top {
  border-radius: 6px;
  display: flex;
  justify-content: start;
  background: linear-gradient(197deg,rgba(2,125,255,0.64) 0%,rgba(0,23,70,0.34) 100%);
}
.main.news .container .news-top img {
  width: 48%;
  height: 300px;
}
.main.news .container .news-top .news-top-title {
  text-align: left;
  padding-top: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  background-image: url(../img/news_top_one_bg_1.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 52%;
}
.main.news .container .news-top .news-top-title h1 {
  width: 529px;
  height: 80px;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  line-height: 40px;
}
.main.news .container .news-top .news-top-title .sub-title {
  width: 553px;
  height: 22px;
  font-size: 16px;
  font-weight: 400;
  color: #e4eaff;
  line-height: 22px;
  margin-top: 32px;
  margin-bottom: 80px;
}
.main.news .container .news-top .news-top-title .news-top-btn {
  display: flex;
  justify-content: space-between;
}
.main.news .container .news-top .news-top-title .news-top-btn .news-top-btn-time {
  width: 50%;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #e4eaff;
  line-height: 40px;
}
a{
  text-decoration: none;
}
.main.news .container .news-top .news-top-title .news-top-btn a {
  background: linear-gradient(145deg,#bae9ff 0%,#00aeff 100%);
  border-radius: 4px;
  width: 108px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding-right: 30px;
  margin-top: 4px;
  cursor: pointer;
  text-align: center;
}
.main.news .container .news-top .news-top-title .news-top-btn a:hover {
  background: #5acbff;
}
.main.news .container .news-top .news-top-title .news-top-btn a::before {
  content: '';
  width: 0;
  height: 0;
  border-right: 0;
  border-top: 6px solid transparent;
  border-left: 8px solid #fff;
  border-bottom: 6px solid transparent;
  position: absolute;
  display: inline-block;
  right: 11px;
  top: 12px;
  border-radius: 2px;
}
.main.news .container .news-top .news-top-title .news-top-btn a::after {
  content: '';
  width: 5px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  display: inline-block;
  right: 22px;
  top: 17px;
}
.main.news .container .news-centre {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 48px;
}
.main.news .container .news-centre .news-centre-item {
  width: 48%;
  margin-bottom: 50px;
  border-radius: 6px;
  background: linear-gradient(197deg,rgba(2,125,255,0.64) 0%,rgba(0,23,70,0.34) 100%);
}
.main.news .container .news-centre .news-centre-item img {
  width: 100%;
  height: 300px;
}
.main.news .container .news-centre .news-centre-item .news-centre-title {
  padding-top: 23px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 32px;
}
.main.news .container .news-centre .news-centre-item .news-centre-title h1 {
  width: 482px;
  height: 40px;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  line-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.main.news .container .news-centre .news-centre-item .news-centre-title .sub-title {
  margin-top: 32px;
  margin-bottom: 42px;
  width: 460px;
  height: 22px;
  font-size: 16px;
  font-weight: 400;
  color: #e4eaff;
  line-height: 22px;
  text-align: left;
}
.main.news .container .news-centre .news-centre-item .news-centre-title .news-centre-btn {
  display: flex;
  justify-content: space-between;
}
.main.news .container .news-centre .news-centre-item .news-centre-title .news-centre-btn .news-centre-btn-time {
  width: 50%;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  color: #e4eaff;
  line-height: 40px;
  text-align: left;
}
.main.news .container .news-centre .news-centre-item .news-centre-title .news-centre-btn a {
  background: linear-gradient(145deg,#bae9ff 0%,#00aeff 100%);
  border-radius: 4px;
  width: 108px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding-right: 30px;
  margin-top: 4px;
  cursor: pointer;
}
.main.news .container .news-centre .news-centre-item .news-centre-title .news-centre-btn a:hover {
  background: #5acbff;
}
.main.news .container .news-centre .news-centre-item .news-centre-title .news-centre-btn a::before {
  content: '';
  width: 0;
  height: 0;
  border-right: 0;
  border-top: 6px solid transparent;
  border-left: 8px solid #fff;
  border-bottom: 6px solid transparent;
  position: absolute;
  display: inline-block;
  right: 11px;
  top: 12px;
  border-radius: 2px;
}
.main.news .container .news-centre .news-centre-item .news-centre-title .news-centre-btn a::after {
  content: '';
  width: 5px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  display: inline-block;
  right: 22px;
  top: 17px;
}
.main.news .container .news-footer-page {
  margin-bottom: 80px;
  margin-top: 20px;
}
@media screen and (max-width: 720px) {
  .news {
    min-width: initial !important;
  }
  .news .container {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .news .container .news-top .min-720-show {
    background-image: url(../../img/news_top_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
  }
  .news .container .news-top .news-top-title {
    box-sizing: border-box;
    padding: 10px !important;
  }
  .news .container .news-top .news-top-title h1 {
    width: 100% !important;
    font-size: 18px !important;
    line-height: 30px !important;
    height: auto !important;
  }
  .news .container .news-top .news-top-title .sub-title {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  .news .container .news-top .news-top-title button {
    width: auto !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .news .container .news-top-title h1 {
    font-size: 22px !important;
  }
  .news .container .news-top-title .news-top-btn-time {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 45% !important;
  }
  .news .container .news-centre .news-centre-item {
    margin-bottom: 20px !important;
  }
  .news .container .news-centre .news-centre-item .news-centre-title {
    padding: 10px !important;
  }
  .news .container .news-centre .news-centre-item .news-centre-title h1 {
    font-size: 16px !important;
    width: 100% !important;
  }
  .news .container .news-centre .news-centre-item .news-centre-title .sub-title {
    font-size: 14px !important;
    margin: 0 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100% !important;
    margin: 20px 0 !important;
  }
  .news .container .news-centre .news-centre-item .news-centre-btn .news-centre-btn-time {
    height: auto !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 45% !important;
  }
  .news .container .news-centre .news-centre-item .news-centre-btn button {
    width: auto !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .news .container .news-centre .news-centre-item .min-720-show {
    background-image: url(../../img/news_top_3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 200px;
  }
}
.btn_download1{
  border: 2px solid #ffffff;
  border-radius: 5px;
  width: 80%;
  /* padding: 5px; */
  height: 7vh;
  color: #fdfdfd;
  position: absolute;
  left: 10vw;
  bottom: 15vh;
}
.btn_download1>img,.btn_download2>img{
  margin: 5px auto;
}
.btn_download2{
  border: 2px solid #ffffff;
  border-radius: 5px;
  width: 80%;
  /* padding: 5px; */
  height: 7vh;
  color: #fdfdfd;
  position: absolute;
  left: 10vw;
  bottom: 5vh;
}
.phone{
  height: 100vh;
  width: 100vw;
  background-image: url(../img/phone.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  font-size: 0.7rem;
}
.visible-xs{
  display: none;
  }
@media (max-width: 765px) {
.visible-xs{
  display: block !important;
  }
}
.visible-xl{
  display: none;
  }
@media (min-width: 720px) {
.visible-xl{
  display: block !important;
  }
}