/*--------------------------------------------------------------
# All New
--------------------------------------------------------------*/
html {
    font-family: Jost,Fjalla One,sans-serif;
    font-weight: 400;
    box-sizing: border-box;
    font-size: 100%;
    font-style: normal;
    overflow-x: hidden;
    height: 100%;
    color: #000;
    word-break: break-word;
    word-wrap: break-word
}
body {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.4;
    margin:0;
}

/* Global Colors */
:root { 
  --accent-color: #0d83fd;
  --default-color: #212529; 
  --heading-color: #2d465e;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  /* Mine */
  --secondary-color: #e9500e; /* 辅助色橙色*/
  --secondary-color-hover: #d1480d; /* 悬停色 */

  --text-primary: #1a1a1a;
  --text-secondary: #ffffff;

  /* Mine */
  --bg-primary: #ffffff;
  --bg-secondary: #12233a; /* #12233a '#0e3775 yl-logo-bg', '#1a2f4a es dark blue' */

  /* Mine */
  --white: #fff;
  --black: #000;
}
html {
    font-family: Jost,Fjalla One,sans-serif;
    font-weight: 400;
    box-sizing: border-box;
    font-size: 100%;
    font-style: normal;
    overflow-x: hidden;
    height: 100%;
    color: #000;
    word-break: break-word;
    word-wrap: break-word;
}
*,:after,:before {
    box-sizing: inherit;
}

h3 {
    font-size: 30px;
    line-height: 1.2;
    font-weight:400;
}
h4 {
    font-family: Jost,Fjalla One,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 1.3;
    margin: 1em 0;
    text-transform: uppercase
}
h5 {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0;
    font-weight: 500
}

.row {
    width: 100%;
    margin: 0;
    display: flex;
}
.row:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
}
.row.wrap {
    flex-wrap: wrap
}
.col {
    display: flex;
    flex-direction: column;
    margin: 0;
}
.col-1-1 {
    width: 100%;
}
.col-1-3 {
    width: 33.333%;
}
.col-3-12 {
    width: 25%;
}

@media only screen and (max-width: 768px) {
    .col-1-3 {
        width:100%
    }
    .col-3-12 {
        width:100%
    }
}
@media only screen and (max-width: 1200px) {
    .featured-content .col-1-3,.featured-content .col-2-3 {
        width:100%
    }
}
.col-1-2 {
    width: 50%;
}
.col-2-3 {
    width: 66.667%
}
@media only screen and (max-width: 768px) {
    .row {
        flex-wrap:wrap;
    }
    .col-1-2 {
        width:100%;
    }
}

.align-center {
    text-align: center
}

.section {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}
.section.unpadded {
    padding: 0;
}
.section.unpadded-bottom {
    padding-bottom: 0;
}
.section.grey {
  background-color: #f0f0f0;
}
.section.dark {
    background-color: var(--bg-secondary);
    
}
.section.max-width {
    max-width: 1160px;
}
.section.dark,.section.dark:hover,.section.dark:visited:not(:hover),.section.dark a,.section.dark a:hover,.section.dark a:visited:not(:hover),.section.secondary-colour,.section.secondary-colour:hover,.section.secondary-colour:visited:not(:hover),.section.secondary-colour a,.section.secondary-colour a:hover,.section.secondary-colour a:visited:not(:hover),.section.theme-colour,.section.theme-colour:hover,.section.theme-colour:visited:not(:hover),.section.theme-colour a,.section.theme-colour a:hover,.section.theme-colour a:visited:not(:hover) {
    color: #fff;
}
img {
    border-style: none
}

.svg-image-container img, .image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.image-container.contain img {
    object-fit: contain;
}
.image-container.contain img {object-fit: contain;}
.icon {
    width: 16px;
    height: 16px;
    display: inline-block
}
.icon.icon-left-arrow {
    background: url(/img/icons/left-arrow-dark.svg) no-repeat;
    background-size: contain
}
.icon.icon-right-arrow {
    background: url(/img/icons/right-arrow-dark.svg) no-repeat;
    background-size: contain
}
.icon.icon-download {
    background: url(/img/icons/download.svg) no-repeat;
    background-size: contain
}
a.cta-button {
    -webkit-appearance: none;
    background-color: var(--secondary-color);
    font-family: Jost,Fjalla One,sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    font-size: 22px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    min-width: 250px;
    padding: 0 30px;
    height: 70px;
    border: none;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,.2);
    color: #fff;
    display: inline-block;
    vertical-align: bottom;
    text-decoration: none;
    text-align: center;
    line-height: 70px
}
a.cta-button:hover {
    background-color: var(--secondary-color-hover);
    color: #fff;
}

/*--------------------------------------------------------------
# Mine
--------------------------------------------------------------*/
a {
  color: var(--secondary-color);
}
a:hover {
  color: var(--secondary-color-hover);
}

.header-placeholder {
    width:100%;
    min-height: 150.78px;
    background-color: #ddd;
}
.height-placeholder {
    min-height: 800px;
}
