/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
html,
body {
  border: 0;
  font-family: "Helvetica-Light", "Helvetica", "Hiragino Sans GB", Tahoma, "Microsoft Yahei", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f6f6f6;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video,
dd,
dt,
dl {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
ol,
ul,
li,
fieldset,
legend,
dl,
dt,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-weight: normal;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
* {
  box-sizing: border-box;
}
textarea {
  resize: none;
  -webkit-appearance: none;
}
input {
  -webkit-appearance: none;
}
select {
  -webkit-appearance: none;
  background-color: #fff;
}
i {
  font-style: normal;
}
body,
html {
  font-size: 62.5%;
}
.header {
  width: 100%;
  height: 600px;
  background: url('../img/header_bg_new.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.nav-wrapper {
  position: relative;
  height: 100px;
  min-width: 780px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.nav-box {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  max-width: 1280px;
}
.nav-fixed {
  width: 100%;
  top: 0;
  position: fixed;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.1);
  z-index: 9;
  min-width: 780px;
}
.nav-fixed .wrapper {
  margin-top: 32px;
}
.nav-fixed .logo {
  height: 80px;
  background: url(../img/logo_blue.png) no-repeat center center;
  background-size: 161px 39px;
}
.nav-fixed .nav-items .sub-nav {
  background: rgba(255, 255, 255, 0.9);
  top: 48px;
}
.nav-fixed .nav-items .sub-nav a {
  color: #1A396E;
  text-shadow: 0 0 0;
}
.nav-fixed .nav-items .sub-nav a:hover {
  opacity: 1;
  text-shadow: 0 0 0;
}
.nav-fixed .nav-items > li > a {
  color: #1A396E;
  text-shadow: 0 0 0;
}
.nav-fixed .nav-items > li.current > a,
.nav-fixed .nav-items > li:hover > a {
  opacity: 1;
  text-shadow: 0 0 0;
}
.nav-fixed .nav-items > li:hover .down-arrow {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-fixed .nav-items .down-arrow {
  background: url(../img/icon_arrow_blue.png) no-repeat center center;
  background-size: 10px 5px;
}
.logo {
  float: left;
  width: 161px;
  height: 100px;
  margin: 0;
  background: url(../img/logo.png) no-repeat center center;
  background-size: 161px 39px;
}
.wrapper {
  float: right;
  margin: 42px 0 0 0;
}
.nav-items:after {
  content: '';
  clear: both;
  display: table;
}
.nav-items > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  min-width: 8rem;
  width: auto;
  padding-right: 2rem;
  float: left;
  line-height: 19px;
  position: relative;
  border-bottom: 30px solid transparent;
  cursor: pointer;
}
.nav-items > li > a {
  font-size: 1.6rem;
  opacity: 0.5;
  color: #fff;
  text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.78);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  position: relative;
}
.nav-items > li.current .down-arrow {
  opacity: 1;
}
.nav-items > li.current > a,
.nav-items > li:hover > a {
  opacity: 1;
  text-shadow: 0 1px 11px rgba(0, 0, 0, 0.5);
}
.nav-items > li:hover > p.sub-nav {
  height: 150px;
  padding: 10px;
  opacity: 1;
}
.nav-items > li:hover .down-arrow {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-items .down-arrow {
  display: block;
  width: 29px;
  height: 25px;
  background: url(../img/icon_arrow_white.png) no-repeat center center;
  background-size: 29px 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 0;
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
}
.sub-nav {
  position: absolute;
  top: 25px;
  height: 0;
  transition: all 0.3s;
  overflow: hidden;
  padding: 0 10px;
  text-align: right;
  left: -82px;
  opacity: 0;
  white-space: nowrap;
}
.sub-nav a {
  display: block;
  font-size: 1.6rem;
  opacity: 0.5;
  color: #fff;
  text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.78);
  line-height: 36px;
}
.sub-nav a:hover {
  opacity: 1;
  text-shadow: 0 1px 11px rgba(0, 0, 0, 0.5);
}
.about-box .sub-nav {
  left: -8px;
  text-align: left;
}
.footer {
  background: #313739;
}
.footer ul {
  width: 80%;
  max-width: 1280px;
  padding: 77px 0 82px;
  overflow: hidden;
  margin: 0 auto;
}
.footer li {
  width: 20%;
  float: left;
  padding-right: 20px;
}
.footer li p {
  padding-top: 10px;
}
.footer li p a {
  display: block;
  opacity: 0.8;
  font-size: 16px;
  color: #C4CDD1;
  line-height: 25px;
}
.footer li p a:hover {
  color: #fff;
  opacity: 0.8;
}
.footer li .v-code {
  width: 100%;
  max-width: 160px;
  margin-top: 5px;
}
.footer h4 {
  font-size: 18px;
  color: #B8C2C6;
  line-height: 19px;
  padding-bottom: 12px;
  font-weight: normal;
}
.footer .page-version {
  height: 99px;
  line-height: 99px;
  opacity: 0.8;
  font-size: 16px;
  color: rgba(184, 194, 198, 0.87);
  text-align: right;
  border-top: 1px solid rgba(155, 155, 155, 0.21);
}
.footer .page-version span {
  display: block;
  width: 80%;
  margin: 0 auto;
  max-width: 1440px;
  padding-right: 160px;
}
.footer .page-version span a {
  color: rgba(184, 194, 198, 0.87);
  float: right;
  padding-left: 10px;
}
body {
  min-width: 750px;
  overflow-x: auto;
}
.header.product-llm,
.header.product-emm,
.header.product-e2e,
.header.product-datasafe {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 461px;
}
.header.product-llm .nav-wrapper,
.header.product-emm .nav-wrapper,
.header.product-e2e .nav-wrapper,
.header.product-datasafe .nav-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header.product-llm {
  background-image: url('../img/product/llm_header_bg.jpg');
  background-position: center right;
}
.header.product-emm {
  background-image: url('../img/product/new_emm_header_bg.jpg');
}
.header.product-e2e {
  background-image: url('../img/product/security_bg.jpg');
}
.header.product-datasafe {
  background-image: url('../img/product/data_safe_header_bg.jpg');
}
.header-box {
  max-width: 1200px;
  height: 550px;
  margin: 0 auto;
  position: relative;
}
.product-header {
  position: absolute;
  top: 50%;
  margin-top: -175px;
  left: 50px;
}
.product-header.data-safe-product-header h4 {
  padding: 0;
  opacity: 0.9;
}
.product-header > img {
  margin-top: 80px;
}
.product-header h4 {
  font-size: 44px;
  color: #fff;
  line-height: 92px;
  padding-top: 20px;
}
.content-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 66px;
}
.content-box .e2e-intro-diagram {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 20px;
}
.content-box .e2e-intro-diagram > img {
  display: block;
  width: 400px;
  height: 60px;
  margin: 0 auto 20px;
}
.content-box .e2e-intro-diagram > ul {
  padding-top: 8px;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 8px;
}
.llm-section-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
  padding: 48px 0 28px;
}
.llm-section-title__bar {
  width: 6px;
  background: #E47C00;
  margin-right: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.llm-section-title__text h3 {
  font-size: 36px;
  line-height: 40px;
  color: #1A396E;
  font-weight: 500;
}
.llm-section-title__text h4 {
  margin-top: 4px;
  font-size: 14px;
  line-height: 16px;
  color: #1A396E;
  letter-spacing: 1px;
  font-weight: normal;
  opacity: 0.85;
}
.llm-feature-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 24px 80px;
  list-style: none;
  margin: 0;
  padding: 0 0 48px;
}
.llm-feature-item {
  position: relative;
  padding-left: 22px;
}
.llm-feature-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #b5b5b5;
}
.llm-feature-item__title {
  font-size: 16px;
  line-height: 24px;
  color: #E47C00;
  font-weight: 600;
  margin: 0 0 8px;
}
.llm-feature-item__text {
  font-size: 14px;
  line-height: 26px;
  color: #455E71;
  margin: 0;
}
.llm-intro {
  background: #fff;
  overflow: hidden;
  margin: 0 0 20px;
}
.llm-intro .llm-intro-text {
  font-size: 16px;
  line-height: 32px;
  color: #455E71;
  text-indent: 2em;
  margin: 0 0 40px;
}
.llm-intro .llm-intro-text.e2e-intro-text {
  margin-bottom: 10px;
}
.llm-intro .llm-intro-note {
  font-size: 14px;
  line-height: 24px;
  color: #697078;
  margin: 0 0 24px;
}
.llm-intro .llm-intro-points {
  padding-bottom: 20px;
}
.e2e-value-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
  max-width: 900px;
  margin: 20px auto 0;
  padding: 0 0 48px;
  list-style: none;
}
.e2e-value-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: 72px;
  padding: 20px 24px 20px 44px;
  background: rgba(69, 94, 113, 0.04);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(26, 57, 110, 0.05);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.e2e-value-item:before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -5px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #b5b5b5;
}
.e2e-value-item:hover {
  background: rgba(228, 124, 0, 0.06);
  box-shadow: 0 4px 16px rgba(228, 124, 0, 0.1);
}
.e2e-value-item__title {
  font-size: 17px;
  line-height: 26px;
  color: #1A396E;
  font-weight: 600;
  margin: 0;
}
.llm-value,
.llm-functions,
.llm-users,
.llm-composition,
.llm-deploy {
  background: #fff;
  overflow: hidden;
  margin: 0 0 20px;
}
.llm-platform-table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 36px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  border: 1px solid rgba(228, 124, 0, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.llm-platform-table__cell {
  padding: 20px 16px;
  font-size: 16px;
  line-height: 26px;
  color: #E47C00;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  border: none;
  background: #fff;
}
.llm-platform-table__cell--top {
  padding-bottom: 24px;
}
.llm-platform-table__cell--top:after {
  content: '▼';
  display: block;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1;
  color: rgba(228, 124, 0, 0.55);
}
.llm-platform-table__cell--left {
  text-align: right;
  padding-right: 28px;
}
.llm-platform-table__cell--left:after {
  content: '▶';
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  color: rgba(228, 124, 0, 0.55);
  vertical-align: middle;
}
.llm-platform-table__cell--right {
  text-align: left;
  padding-left: 28px;
}
.llm-platform-table__cell--right:before {
  content: '◀';
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
  color: rgba(228, 124, 0, 0.55);
  vertical-align: middle;
}
.llm-platform-table__cell--bottom-left {
  text-align: right;
  padding-right: 28px;
  padding-top: 24px;
}
.llm-platform-table__cell--bottom-left:after {
  content: '▲';
  display: block;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1;
  color: rgba(228, 124, 0, 0.55);
}
.llm-platform-table__cell--bottom-right {
  text-align: left;
  padding-left: 28px;
  padding-top: 24px;
}
.llm-platform-table__cell--bottom-right:before {
  content: '▲';
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1;
  color: rgba(228, 124, 0, 0.55);
}
.llm-platform-table__cell--center {
  padding: 32px 20px;
  background: linear-gradient(180deg, rgba(228, 124, 0, 0.1) 0%, rgba(228, 124, 0, 0.03) 100%);
  border: 2px solid #E47C00;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.85);
}
.llm-platform-table__cell--spacer {
  padding: 0;
  background: transparent;
}
.llm-platform-table__title {
  font-size: 20px;
  line-height: 30px;
  color: #E47C00;
  font-weight: 600;
  margin: 0;
}
.llm-functions--datasafe {
  padding-bottom: 48px;
  margin-bottom: 0;
}
.llm-functions--datasafe .llm-feature-grid {
  padding-top: 8px;
}
.llm-functions--datasafe .llm-functions-img {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
}
.llm-users .llm-user-text {
  font-size: 16px;
  line-height: 32px;
  color: #455E71;
  text-indent: 2em;
  margin: 0 0 40px;
}
.llm-composition .llm-compose-diagram {
  margin-bottom: 36px;
}
.llm-composition .llm-compose-diagram img {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.llm-composition .llm-compose-list {
  padding-bottom: 20px;
}
.e2e-service-case {
  overflow: hidden;
  padding: 0 0 20px;
  background: #fff;
}
.e2e-service-case__row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 60px;
}
.e2e-service-case__col {
  -ms-flex: 1;
      flex: 1;
  min-width: 0;
}
.e2e-service-case__col .llm-section-title {
  padding-bottom: 0;
}
.e2e-service-case__service {
  text-align: center;
  padding: 10px 0 0;
}
.e2e-service-case__icon {
  display: block;
  height: 88px;
  line-height: 88px;
  margin-bottom: 16px;
}
.e2e-service-case__icon img {
  vertical-align: middle;
}
.e2e-service-case__service-text {
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}
.e2e-case-list {
  list-style: none;
  margin: 0;
  padding: 36px 0 0 24px;
}
.e2e-case-list li {
  font-size: 16px;
  line-height: 36px;
  color: #455E71;
  font-weight: 500;
  padding-left: 30px;
}
.llm-deploy {
  padding-bottom: 72px;
  margin-bottom: 0;
}
.llm-deploy .llm-deploy-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto;
  list-style: none;
  padding: 8px 0 0;
  max-width: 1000px;
}
.llm-deploy .llm-deploy-grid > li {
  -ms-flex: 1;
      flex: 1;
}
.llm-deploy .llm-deploy-item {
  text-align: center;
}
.llm-deploy .llm-deploy-item__icon {
  display: block;
  height: 88px;
  line-height: 88px;
  margin-bottom: 16px;
}
.llm-deploy .llm-deploy-item__icon img {
  vertical-align: middle;
}
.llm-deploy .llm-deploy-item__title {
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}
@media only screen and (max-width: 960px) {
  .header.product-llm,
  .header.product-emm,
  .header.product-e2e,
  .header.product-datasafe {
    height: 360px;
  }
  .content-box {
    padding: 0 30px;
  }
  .llm-feature-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 24px;
  }
  .llm-deploy .llm-deploy-grid {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    gap: 32px;
  }
  .e2e-service-case__row {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 40px;
  }
  .e2e-case-list {
    padding-top: 28px;
  }
  .e2e-value-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 16px;
  }
  .e2e-value-item {
    min-height: 64px;
    padding: 18px 20px 18px 40px;
  }
  .e2e-value-item__title {
    font-size: 16px;
  }
  .llm-platform-table__cell {
    padding: 14px 10px;
    font-size: 14px;
    line-height: 22px;
  }
  .llm-platform-table__cell--left,
  .llm-platform-table__cell--bottom-left {
    padding-right: 12px;
  }
  .llm-platform-table__cell--right,
  .llm-platform-table__cell--bottom-right {
    padding-left: 12px;
  }
  .llm-platform-table__cell--center {
    padding: 24px 12px;
  }
  .llm-platform-table__title {
    font-size: 17px;
    line-height: 26px;
  }
}
