@charset "UTF-8";
:root {
    --brand: #e60000;
    --red: #a43725;
    --green: #677d00;
    --gray-100: #fafafa;
    --gray-300: #f5f5f5;
    --gray-500: #e6e6e6;
    --gray-700: #757575;
    --border-color: #e6e6e6;
    --call-bg: #e6ebb0;
    --put-bg: #f5f5f5;
    --font-lg: 33px;
    --font-md: 20px;
    --font-sm: 15px;
    --font-xs: 12px;
    --font-small: 12px;
    --box-size: 24px;
    /** chart color **/
    --intra-line: #6fb6df;
    --intra-dot: #474747;
    --hsi-color: #45999c;
    --ndx-color: #879420;
    --spx-color: #474747;
    --dji-color: #785e4a;
    --hstech-color: #00759e;
}
.clear {
    clear: both;
}
/*   //ANCHOR color */
.brand-color {
    color: var(--brand);
}
.drop {
    color: var(--red);
}
.rise {
    color: var(--green);
}
/*   //ANCHOR basic */
/* body {
    font-family: "Frutiger", "Microsoft JhengHei", "Microsoft Yahei", "Heiti TC", STXihei, Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    font-size: var(--font-sm);
    line-height: 1.4;
} */
ul,
li,
h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
}
ul,
li {
    list-style: none;
}

.fs-lg {
    font-size: var(--font-lg);
}
.fs-md {
    font-size: var(--font-md);
}
.fs-sm {
    font-size: var(--font-sm);
}
.fs-xs {
    font-size: var(--font-xs);
}
.section {
    margin-bottom: 100px;
}
.main-title {
    font-size: var(--font-lg);
    font-weight: 500;
    margin: 0 0 0px 0 !important;
    padding: 0 0 3px 0 !important;
    line-height: 36px !important;
    min-height: 36px !important;
    padding-bottom: 30px !important;
    position: relative;
}

.main-title.edu2-title {
    margin-top: 90px !important;
}
/* .main-title:before {
    content: "";
    background: var(--brand);
    width: 40px;
    height: 6px;
    position: absolute;
    bottom: 30px;
} */
.show-mobile {
    display: none;
}
.hide-mobile {
    display: block;
}
/*   //ANCHOR header */
.header-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 80px;
}
/* .header-logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.header-logo img {
    width: 240px;
    height: auto;
}
.header-contact {
    margin-left: auto;
    margin-right: 20px;
}
.header-lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
}
.header-lang-item {
    margin-left: 12px;
    padding: 5px 3px;
    border-bottom: 3px solid #fff;
    line-height: 1;
    cursor: pointer;
}
.header-lang-item.active {
    border-bottom: 3px solid var(--brand);
} */
/*   ANCHOR banner */
.top-banner {
    height: 570px;
    position: relative;
    margin-top: 0px;
    overflow: hidden;
}
.top-banner-bg {
    background: url(/home/images/us-banner-bg.jpg) no-repeat center bottom;
    height: 100%;
    background-size: 1200px;
    position: relative;
    -webkit-transform: scale(1.35);
    -ms-transform: scale(1.35);
    transform: scale(1.35);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 0;
    -webkit-animation: bg-zoom 1s ease-out 1 forwards;
    animation: bg-zoom 1s ease-out 1 forwards;
    opacity: 0.6;
}
.top-banner-bird {
    z-index: 1;
    position: absolute;
    left: 10%;
    top: 0;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    -webkit-animation: bird-movex 1.6s ease-out 0s 1 forwards, bird-zoom 0.7s ease-out 0s 1 forwards, bird-op 0.4s ease-out 0s 1 forwards;
    animation: bird-movex 1.6s ease-out 0s 1 forwards, bird-zoom 0.7s ease-out 0s 1 forwards, bird-op 0.4s ease-out 0s 1 forwards;
}
.top-banner-bird .top-banner-bird-start {
    -webkit-animation: bird-movey 1.6s ease-out 0s 1 forwards;
    animation: bird-movey 1.6s ease-out 0s 1 forwards;
}
.top-banner-bird-end {
    display: none;
}
@-webkit-keyframes bg-zoom {
    0% {
        -webkit-transform: scale(1.35);
        transform: scale(1.35);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes bg-zoom {
    0% {
        -webkit-transform: scale(1.35);
        transform: scale(1.35);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@-webkit-keyframes bird-zoom {
    0% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }
    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}
@keyframes bird-zoom {
    0% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }
    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}
@-webkit-keyframes bird-op {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes bird-op {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes bird-movex {
    0% {
        left: -10%;
    }
    100% {
        left: 80%;
    }
}
@keyframes bird-movex {
    0% {
        left: -10%;
    }
    100% {
        left: 80%;
    }
}
@-webkit-keyframes bird-movey {
    0% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }
    30% {
        -webkit-transform: translateY(30%);
        transform: translateY(30%);
    }
    60% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@keyframes bird-movey {
    0% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%);
    }
    30% {
        -webkit-transform: translateY(30%);
        transform: translateY(30%);
    }
    60% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}
.top-banner-title {
    z-index: 1;
    position: absolute;
    top: 40px;
}
.top-banner-main-title {
    font-size: 42px;
}
.top-banner-sub-title {
    display: block;
    font-size: 28px;
}
.top-banner-sub-title br {
    display: none;
}
/*  ANCHOR index-data */
.index-data {
    font-size: 14px;
    margin-top: -160px;
    position: relative;
    z-index: 2;
    opacity: 0;
    -webkit-animation: content-out 0.5s ease-out 1.5s 1 forwards;
    animation: content-out 0.5s ease-out 1.5s 1 forwards;
}
@-webkit-keyframes content-out {
    0% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
}
@keyframes content-out {
    0% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
}
.index-data-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.index-data-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc(50% - 15px);
    background: #fff;
    border: 1px solid var(--border-color);
}
.index-data-title {
    font-size: var(--font-md);
    padding: var(--box-size) var(--box-size) 0 var(--box-size);
    font-weight: 600;
    color: var(--brand);
}
.index-data-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 var(--box-size);
    flex-wrap: wrap;
}
.index-data-price .timestamp {
    margin-bottom: 10px;
    margin-top: 3px;
    width: 100%;
}
.index-data-price .last {
    font-size: 46px;
    font-weight: 500;
}
.index-data-price .pchng {
    font-size: var(--font-sm);
    text-align: right;
    font-weight: 500;
}
.index-data-minor {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: var(--box-size);
}
.index-data-minor .d-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.index-data-minor-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 6px;
}
.index-data-minor-item.full {
    width: 100%;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.index-data-chart {
    padding: var(--box-size);
    border-bottom: 1px solid var(--border-color);
}
.demo-chart {
    background: var(--gray-100);
    width: 100%;
    height: 160px;
}
.index-data-chart-text {
    margin-top: 15px;
}
.index-data-foucs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: var(--box-size) var(--box-size) 0 var(--box-size);
}
.index-data-side {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 0px);
    flex: 0 0 calc(50% - 0px);
}
.index-data-foucs-item {
    padding: 0;
    margin-bottom: var(--box-size);
    display: block;
    color: #000;
    text-decoration: none !important;
}
.call-side .xindex-data-foucs-item {
    background: var(--call-bg);
}
.put-side .xindex-data-foucs-item {
    background: var(--put-bg);
}
.index-data-foucs-title {
    font-size: var(--font-md);
    font-weight: 600;
    margin-bottom: 5px;
}
.index-data-bnum {
    font-size: 34px;
    margin-bottom: 5px;
    padding: 0px 10px 0px 9px;
    line-height: 42px;
    display: inline-block;
    position: relative;
}
.index-data-foucs-data {
    line-height: 1.5;
}
.call-side .index-data-bnum:after,
.call .index-data-bnum:after,
.bull .index-data-bnum:after {
    content: "";
    width: 0;
    height: 0;
    right: -13px;
    border-style: solid;
    border-width: 21px 0 21px 13px;
    border-color: transparent transparent transparent var(--call-bg);
    position: absolute;
}
.put-side .index-data-bnum:after,
.put .index-data-bnum:after,
.bear .index-data-bnum:after {
    content: "";
    width: 0;
    height: 0;
    right: -13px;
    border-style: solid;
    border-width: 21px 0 21px 13px;
    border-color: transparent transparent transparent var(--put-bg);
    position: absolute;
}
.call-side .index-data-bnum,
.call .index-data-bnum,
.bull .index-data-bnum {
    background: var(--call-bg);
}
.put-side .index-data-bnum,
.put .index-data-bnum,
.bear .index-data-bnum {
    background: var(--put-bg);
}
/* ANCHOR index-compare  */
.index-compare {
    position: relative;
    background: url(/home/images/bg-compare.jpg) top center no-repeat;
    padding-top: 100px;
}
.index-compare:before {
    content: "";
    height: 200px;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gray-100);
    display: block;
    position: absolute;
    z-index: -1;
}
.card {
    padding: var(--box-size);
    background-color: #fff;
    position: relative;
}
.index-compare-card:before {
    content: "";
    bottom: -19px;
    left: 0;
    width: 100%;
    display: block;
    position: absolute;
    height: 24px;
    background: url(/home/images/bg-shadow.jpg) top center no-repeat;
}
.demo-chart2 {
    height: 260px;
    width: 100%;
    background: var(--gray-100);
}
.index-compare-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: var(--font-sm);
}
.index-compare-date {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.index-compare-date-item {
    padding: 2px 2px 5px 2px;
    /* background: #f7f7f7; */
    margin-right: 14px;
    font-size: var(--font-sm);
    cursor: pointer;
}
.index-compare-date-item.active {
    /* background: #e7f0f9; */
    border-bottom: 4px solid var(--gray-700);
}
.index-compare-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.index-compare-checkbox-item {
    margin-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.index-compare-date-item input {
    opacity: 0;
    width: 1px;
    height: 0px;
    position: absolute;
}
.index-compare-checkbox-name {
    position: relative;
    padding-left: 23px;
    margin-left: 5px;
}
.index-compare-checkbox-name:before {
    position: absolute;
    left: 0;
    height: 3px;
    width: 15px;
    top: 8px;
    content: "";
}
.index-compare-checkbox-name.hsi:before {
    background: var(--hsi-color);
}
.index-compare-checkbox-name.ndx:before {
    background: var(--ndx-color);
}
.index-compare-checkbox-name.dji:before {
    background: var(--dji-color);
}
.index-compare-checkbox-name.hstech:before {
    background: var(--hstech-color);
}
.index-compare-chart {
    margin: 15px 0 10px 0;
}
.index-compare-remark {
    text-align: right;
}
.custom-checkbox {
    width: 16px;
    height: 16px;
    position: relative;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-checkbox:before {
    content: "";
    width: 16px;
    height: 17px;
    position: absolute;
    background: url(/home/images/checkbox.jpg);
    top: -2px;
    left: 0;
}
.custom-checkbox:checked:before {
    background: url(/home/images/checkbox_checked.jpg);
    cursor: pointer;
}
/*** ANCHOR calendar **/
.fc-content-skeleton {
    height: 67px !important;
}
.fc-toolbar {
    background: var(--gray-100);
}
.fc-center h2 {
    font-size: var(--font-md);
}
.fc-next-button {
    background: url(/home/images/btn-calendar-mn.png) no-repeat center;
}
.fc-nextYear-button {
    background: url(/home/images/btn-calendar-yn.png) no-repeat center;
}
.fc-prev-button {
    background: url(/home/images/btn-calendar-mp.png) no-repeat center;
}
.fc-prevYear-button {
    background: url(/home/images/btn-calendar-yp.png) no-repeat center;
}
#main table thead th {
    font-size: 12px;
    line-height: 14px;
    padding: 18px 5px 8px 5px;
    font-weight: normal;
    text-align: right;
}
.fc-sun {
    color: var(--brand) !important;
}
#main #result_announcement #calendar table tbody td {
    background: #fff !important;
}
#main #result_announcement #calendar .fc-bg table tbody td {
    border-right: 1px solid var(--border-color) !important;
}
.fc-row.fc-week.fc-widget-content {
    border-bottom: 1px solid var(--border-color) !important;
}
.fc-ltr .fc-basic-view .fc-day-number {
    border-right: 1px solid var(--border-color) !important;
}
#main table thead td.fc-day-number {
    border-right: 1px solid var(--border-color) !important;
}
.fc-widget-content {
    border-right: 1px solid var(--border-color) !important;
    border-left: 1px solid var(--border-color) !important;
}
#eventboard {
    width: 220px;
    background: #ffffff;
    float: right;
    min-height: 0;
    border: 1px solid var(--border-color);
    margin-left: 25px;
}
.fc-head-container {
    border-color: var(--brand) !important;
}
#selecteddate {
    padding: 3px 8px;
    font-size: var(--font-md);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    min-height: 50px;
    text-align: left;
    background: var(--gray-100);
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 16px;
}
#eventcontent {
    text-align: left;
    padding: 16px;
    font-size: var(--font-sm);
}
.index-calendar {
    padding: 0;
    margin-bottom: 100px;
    background: url(/home/images/bg-calendar.jpg) right center no-repeat;
    background-size: 2100px;
    padding: 45px 0;
}
.disable-main#main {
    float: none;
    width: 100%;
    position: relative;
}
.index-calendar-box {
    background: #fff;
    padding: var(--box-size);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 900px;
}
#calendar {
    width: 650px !important;
    float: left;
}
@media (max-width: 1400px) {
    #calendar {
        width: 570px !important;
        float: left;
    }
}
.index-intro {
    background: url(/home/images/bg-us-index-intro.jpg) no-repeat right top;
    padding: 100px 0 0 0;
}
/* ANCHOR intro*/
.index-intro {
    font-size: 16px;
}
.index-data-p-title {
    margin-top: 15px;
    font-weight: normal;
    text-align: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.index-data-p {
    padding: var(--box-size);
}
.index-data-ul {
    margin-top: 16px;
    list-style: none;
}
.index-data-ul > li {
    list-style: none;
    padding-left: 16px;
    position: relative;
    margin-bottom: 10px;
}
.index-data-ul > li:last-child {
    margin-bottom: 0;
}
.index-diff-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
}
.index-data-ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 5px;
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    background: var(--brand);
}
.index-intro .index-data-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.index-diff-table-box {
    background: var(--gray-100);
    width: 100%;
    margin-top: auto;
}
.index-diff-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--border-color);
}
.index-diff-table th,
.index-diff-table td {
    color: var(--brand);
    padding: 8px var(--box-size);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-weight: normal;
}
.index-diff-table td {
    color: #000;
    border-bottom: 1px solid var(--border-color) !important;
}
.index-diff-table tr > td:nth-child(2),
.index-diff-table tr > th:nth-child(2) {
    text-align: right;
}
.index-data-remark {
    padding: 8px var(--box-size) 6px var(--box-size);
    font-size: var(--font-xs);
}
.demo-chart3 {
    width: 290px;
    height: 290px;
    margin: 0 auto;
    background: #fafafa;
    border-radius: 50%;
}
.index-data-pie-label {
    padding: 16px;
}
.index-data-pie-label-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.index-data-pie-label-item {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    margin-bottom: 5px;
}
.index-data-pie-label-item:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #000;
    position: absolute;
    left: 0;
    top: 5px;
}
.index-data-pie-label-item.item1:before {
    background: #3a578a;
}
.index-data-pie-label-item.item2:before {
    background: #e5b01c;
}
.index-data-pie-label-item.item3:before {
    background: #00898d;
}
.index-data-pie-label-item.item4:before {
    background: #a43725;
}
.index-data-pie-label-item.item5:before {
    background: #c07156;
}
.index-data-pie-label-item.item6:before {
    background: #a1cce4;
}
.index-data-pie-label-item.item7:before {
    background: #2b2b2b;
}
.index-data-pie-label-item.item8:before {
    background: #e6ebb0;
}
.index-data-pie-label-item.item9:before {
    background: #757575;
}
.index-data-pie-label-item.item10:before {
    background: #009bd2;
}
/* ANCHOR eudcation */
.index-education {
    padding: 100px 0 0px 0;
    background: url(/home/images/bg-us-education.jpg) no-repeat right top;
}
.index-education-item {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.index-education-item + .index-education-item {
    border-top: none;
}
.index-education-title {
    font-size: var(--font-md);
    font-weight: bold;
    padding: 24px 30px 24px 0;
    background: url(/home/images/icon-eudcation-down.png) right center no-repeat;
    cursor: pointer;
}
.active .index-education-title {
    background: url(/home/images/icon-eudcation-up.png) right center no-repeat;
}
.index-education-p {
    font-size: 15px;
    padding-bottom: 24px;
}
.index-education-p.last {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}
.index-education-p p {
    margin-bottom: 15px;
}
.index-education-p > p:last-child {
    margin-bottom: 0px;
}
/* ANCHOR  index-diff  */
.index-diff {
    margin-top: 100px;
}
.index-diff-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid var(--border-color);
}
.index-data-intro-title {
    padding: 0px var(--box-size) 0px calc(var(--box-size) + 55px);
    background: url(/home/images/icon-ndx.svg) left var(--box-size) center no-repeat;
    background-size: 42px;
    border-bottom: 1px solid var(--border-color);
    font-size: var(--font-md);
    font-weight: 600;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* align-content: center; */
}
.index-data-intro-title.dji {
    background: url(/home/images/icon-spx.svg) left var(--box-size) center no-repeat;
    background-size: 42px;
}
.index-diff-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
}
.index-diff-right {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
}
.index-diff-list {
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--border-color);
    border-left: 6px solid var(--gray-100);
    padding-left: 16px;
    font-size: var(--font-md);
    cursor: pointer;
    font-weight: 600;
    background: var(--gray-100);
}
.index-diff-list:before {
    content: "";
    height: 50px;
    width: 50px;
    background: url(/home/images/risk.svg) no-repeat center;
    background-size: cover;
    margin-right: 20px;
}
.index-diff-list.t1:before {
    background: url(/home/images/time.svg) no-repeat center;
    background-size: cover;
    min-width: 47px;
}
.index-diff-list.t2:before {
    background: url(/home/images/risk.svg) no-repeat center;
    background-size: cover;
    min-width: 47px;
}
.index-diff-list.t3:before {
    background: url(/home/images/issuer.svg) no-repeat center;
    background-size: cover;
    min-width: 47px;
}
.index-diff-list.t4:before {
    background: url(/home/images/watcher.svg) no-repeat center;
    background-size: cover;
    min-width: 47px;
}

.index-diff-list.active {
    background: #fff;
    border-left: 6px solid var(--brand);
}
.index-diff-content {
    padding: 20px 30px;
    font-size: var(--font-md);
    font-weight: 600;
}
.index-diff-list br {
    display: none;
}

.index-education .card{
    border: var(--bs-card-border-width) solid #fff;
}
/* ANCHOR footer */
footer {
    border-top: 1px solid var(--border-color);
    font-size: var(--font-xs);
    padding: 24px 0;
    line-height: 1.4;
}
footer a {
    color: #000 !important;
}
.footer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-list li a {
    text-decoration: none;
    padding: 0 16px;
    border-left: 1px solid var(--gray-500);
}
.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}
/* ANCHOR @media */
@media (max-width: 1750px) {
    .index-calendar-box {
        width: 780px;
    }
}
@media (max-width: 1400px) {
    .index-calendar-box {
        width: 700px;
    }
    .index-education .card {
        width: 85%;
    }
}
/* ANCHOR @media tablet*/
@media (max-width: 1080px) {
    :root {
        --font-lg: 28px;
        --font-md: 18px;
        --font-sm: 14px;
        --font-xs: 12px;
        --font-small: 12px;
        --box-size: 16px;
    }

    .top-banner-main-title {
        font-size: 38px;
    }
    .top-banner-sub-title {
        font-size: 24px;
    }
    .top-banner-bird {
        margin-top: -30px;
    }
    .top-banner-title {
        top: 52px;
    }
    @-webkit-keyframes bird-zoom {
        0% {
            -webkit-transform: scale(0.4);
            transform: scale(0.4);
        }
        100% {
            -webkit-transform: scale(0.7);
            transform: scale(0.7);
        }
    }
    @keyframes bird-zoom {
        0% {
            -webkit-transform: scale(0.4);
            transform: scale(0.4);
        }
        100% {
            -webkit-transform: scale(0.7);
            transform: scale(0.7);
        }
    }
    @-webkit-keyframes bird-movex {
        0% {
            left: -10%;
        }
        100% {
            left: 65%;
        }
    }
    @keyframes bird-movex {
        0% {
            left: -10%;
        }
        100% {
            left: 65%;
        }
    }
    @-webkit-keyframes bird-movey {
        0% {
            -webkit-transform: translateY(15%);
            transform: translateY(15%);
        }
        30% {
            -webkit-transform: translateY(30%);
            transform: translateY(30%);
        }
        60% {
            -webkit-transform: translateY(40%);
            transform: translateY(40%);
        }
        100% {
            -webkit-transform: translateY(0%);
            transform: translateY(0%);
        }
    }
    @keyframes bird-movey {
        0% {
            -webkit-transform: translateY(15%);
            transform: translateY(15%);
        }
        30% {
            -webkit-transform: translateY(30%);
            transform: translateY(30%);
        }
        60% {
            -webkit-transform: translateY(40%);
            transform: translateY(40%);
        }
        100% {
            -webkit-transform: translateY(0%);
            transform: translateY(0%);
        }
    }
    .index-data {
        margin-top: -190px;
    }
    .index-data-item {
        width: calc(50% - 10px);
    }
    .index-compare-checkbox-item {
        margin-left: 10px;
    }
    .index-calendar {
        padding: 0;
        margin-bottom: 100px;
        background: url(/home/images/bg-calendar.jpg) left center no-repeat;
        padding: 45px 0;
    }
    .index-calendar-box {
        width: 100%;
    }
    .index-education .card {
        width: auto;
    }
}
/* ANCHOR @media mobile */
@media (max-width: 767px) {
    .container {
        width: 100%;
    }
    :root {
        --font-lg: 28px;
        --font-md: 18px;
        --font-sm: 14px;
        --font-xs: 12px;
        --font-small: 12px;
        --box-size: 14px;
    }
    .section {
        padding: 0 var(--box-size);
        margin-bottom: 50px;
    }
    .header-row {
        height: 60px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .header-contact {
        display: none;
    }
    .header-logo img {
        width: 180px;
        height: auto;
        margin-left: var(--box-size);
    }
    .header-lang {
        margin-right: var(--box-size);
    }
    .top-banner-title {
        top: 0;
        left: var(--box-size);
    }
    .top-banner-main-title {
        font-size: 30px;
    }
    .en .top-banner-main-title {
        font-size: 23px;
    }
    .top-banner-sub-title {
        font-size: 22px;
    }

    @-webkit-keyframes bird-movex {
        0% {
            left: -50%;
        }
        100% {
            left: 30%;
        }
    }
    @keyframes bird-movex {
        0% {
            left: -50%;
        }
        100% {
            left: 30%;
        }
    }
    .top-banner-bird {
        margin-top: 29px;
    }
    .top-banner-sub-title br {
        display: block;
    }
    .top-banner-bg {
        background: url(/home/images/us-banner-bg.jpg) no-repeat center top 100px;
        background-size: 780px;
    }
    .top-banner {
        height: 520px;
    }
    @-webkit-keyframes bird-zoom {
        0% {
            -webkit-transform: scale(0.1);
            transform: scale(0.1);
        }
        100% {
            -webkit-transform: scale(0.4);
            transform: scale(0.4);
        }
    }
    @keyframes bird-zoom {
        0% {
            -webkit-transform: scale(0.1);
            transform: scale(0.1);
        }
        100% {
            -webkit-transform: scale(0.4);
            transform: scale(0.4);
        }
    }
    .index-data {
        margin-top: -156px;
    }
    .index-data-container,
    .index-diff-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .card.index-compare-card {
        padding-bottom: 0;
    }
    .index-compare-card:before {
        display: none;
    }
    .index-compare {
        padding-top: 50px;
    }
    .show-mobile {
        display: block;
    }
    .hide-mobile {
        display: none;
    }
    .index-data-item {
        width: 100%;
    }
    .index-intro {
        padding-top: 0;
        background: none;
    }
    .index-calendar {
        padding-top: 50px !important;
    }
    .index-calendar-box {
        width: calc(100% - var(--box-size) * 2);
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .index-calendar {
        background: var(--gray-100);
        padding-bottom: 50px;
        margin-bottom: 40px !important;
    }
    #eventboard {
        width: 100%;
        margin-left: 0px;
        margin-top: 16px;
    }
    .index-data-item.dji {
        margin-top: 16px;
    }
    .index-compare-option {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .index-compare-checkbox {
        margin-top: 25px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .index-compare-checkbox-item {
        margin-left: 0;
        margin-right: 10px;
    }
    .index-compare-checkbox-name {
        padding-left: 18px;
        margin-left: 0;
    }
    .index-diff-list {
        height: 50px;
        font-size: 16px;
    }
    .index-diff-left {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 1px solid var(--border-color);
        flex-wrap: wrap;
    }
    .index-diff-content {
        padding: 20px 16px;
        font-size: 16px;
        font-weight: normal;
    }
    .index-diff-list:before {
        height: 30px;
        width: 30px;
        min-width: 30px !important;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        margin-right: 5px;
    }
    .index-diff-list.active {
        border-left: none !important;
    }
    .index-diff-list {
        border-bottom: 4px solid var(--gray-100) !important;
        padding: 0 5px;
        border-left: none !important;
        border-right: 1px solid var(--border-color);
    }
    .index-diff-list.active {
        border-bottom: 4px solid var(--brand) !important;
    }
    .main-title {
        font-size: 28px !important;
        padding-bottom: 40px !important;
    }
    .main-title:before {
        bottom: 20px;
    }
    .index-education {
        padding: 50px var(--box-size) 0px var(--box-size) !important;
        background: url(/home/images/bg-us-education.jpg) no-repeat right top;
        background-size: 1200px;
    }
    .index-education .card {
        width: auto;
    }
    .index-diff-list {
        height: 50px;
        font-size: var(--font-sm);
        padding: 0 5px;
        line-height: 1.2;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
        flex: 1 0 0;
        flex: 0 0 50% !important;
        padding: 0 !important;
        border-right: none !important;
    }
    .index-diff-list br {
        display: block;
    }
    .index-education-p {
        padding-bottom: 25px;
    }
    .index-education-title {
        font-size: 20px;
    }
    #eventboard {
        display: block;
        width: 100% !important;
    }
    #calendar {
        width: 100% !important;
        float: left;
    }
    #main #result_announcement #calendar {
        display: block;
    }
    #eventboard {
        min-height: 0px;
    }
    .index-diff {
        margin: 50px -14px 0 -14px;
    }
    .index-diff-list.t3 {
        border-right: none !important;
    }
    footer {
        padding: 24px var(--box-size);
    }
    .footer-list {
        margin-top: 16px;
    }
    .footer-list li:first-child a {
        padding-left: 0;
    }
    .copyright {
        padding: 16px 0;
    }
    .en .index-diff-list{
        height: 60px;
        margin-top: 5px;
    }
}
.index-data-pie-chart {
    margin: 5px 0;
}
@media (max-width: 390px) {
    .index-data-foucs-item {
        padding: 9px;
    }
    .index-data-minor .d-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .index-compare-checkbox {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    [data-for="1"] {
        -webkit-box-flex: 1.2;
        -ms-flex: 1.2 0 0px;
        flex: 1.2 0 0;
    }
    [data-for="2"] {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
        flex: 1 0 0;
    }
    [data-for="3"] {
        -webkit-box-flex: 1.5;
        -ms-flex: 1.5 0 0px;
        flex: 1.5 0 0;
    }
}
.timestamp {
    margin-top: 10px;
}
.item__name {
    width: 150px;
}
.tooltip-row {
    display: flex !important;
}
.index-perform {
    width: 125px;
}
.index-compare-last {
    width: auto;
}
.index-data-foucs {
    flex-direction: column;
    max-height: 420px;
}

@media (max-width: 767px) {
    .index-data-foucs {
        max-height: 470px;
    }
}

.index-data-chart {
    border: none;
}

.product.section {
    padding: 40px 0;
    position: relative;
    min-height: 310px;
    margin: 0;
}

.product.section.cbbc {
    background: var(--gray-100);
}

.product.section.cbbc .container {
    padding-left: 16%;
    box-sizing: border-box;
}

.product.section.wnt .container {
    padding-right: 14%;
    box-sizing: border-box;
}

.product.section.cbbc .product-left-side {
    position: absolute;
    width: 32%;
    left: -30px;
    top: 0;
    background: url(/home/images/ubothpic.png) no-repeat center right;
    height: 100%;
    background-size: 640px;
}

.product.section.wnt .product-right-side {
    position: absolute;
    width: 34%;
    right: 0;
    top: 0;
    background: url(/home/images/ubs-gear.png) no-repeat center center;
    height: 100%;
    background-size: 420px;
}

.index-data.section {
    margin-bottom: 70px;
}

.index-data-foucs {
    flex-direction: row;
    max-height: 474px;
    width: calc(50% - 1px);
    padding: 0;
}

.index-data-foucs.border {
    border: none !important;
    border-left: 1px solid var(--border-color) !important;
    
    padding-left: 40px;
}

.index-data-foucs-box {
    display: flex;
    justify-content: space-between;
}

.index-data-side a.index-data-foucs-item:nth-child(2) {
    margin-bottom: 0;
}
@media (max-width: 1800px) {
    .product.section.cbbc .product-left-side {
        width: 35%;
        background-size: 530px;
        left: -100px;
    }
}
@media (max-width: 1700px) {
    .product.section.cbbc .product-left-side {
        width: 35%;
        background-size: 530px;
        left: -160px;
    }
}

@media (max-width: 1620px) {
    .product.section.wnt .product-right-side {
        width: 25%;
        background-size: contain;
    }
}

@media (max-width: 1420px) {
    .product.section.cbbc .product-left-side {
        width: 30%;
        background-size: 530px;
        background-position-x: right;
    }
}

@media (max-width: 1300px) {
    .product.section.cbbc .product-left-side {
        display: none;
    }
    .product.section.wnt .product-right-side {
        display: none;
    }
    .product.section .container {
        padding: 0% !important;
    }
}

@media (max-width: 767px) {
    .wrapper{
        margin-top: 20px;
    }
    .index-data-foucs-box {
        flex-wrap: wrap;
    }
    .index-data-foucs {
        flex-direction: column;
        max-height: 474px;
        width: 100%;
        padding: 0 30px !important;
        border: none !important;
    }

    .product-right-side .last-time, .product-left-side .last-time{
        margin-left: 30px;
    }

    .product-right-side .main-title, .product-left-side .main-title {
        margin-left: 30px !important;
    }

    .index-data-foucs.border {
        border-left: none !important;
    }
    .index-data-foucs-item {
        margin-bottom: 10px !important;
    }
    .index-data-foucs-item {
        padding: 0;
    }
    .index-data.section {
        margin-bottom: 30px;
    }
    .product.section {
        padding: 30px 0;
        position: relative;
        min-height: 400px;
        margin: 0;
    }
    .main-title.edu2-title {
        margin-top: 40px !important;
    }
}

.index-data-foucs {
    flex-direction: row;
}
.highcharts-tooltip .stime {
    background-color: #e60000;
    display: block;
    padding: 4px 10px;
    margin-bottom: 3px;
    color: #fff;
    line-height: 1;
}

.highcharts-tooltip .item {
    background-color: #f5f5f5;
    display: block;
    padding: 4px 10px;
    margin-bottom: 2px;
    color: #000;
    font-size: 12px;
    line-height: 1;
}

.index-data-side:empty {
    display: none;
}

.navbar-nav .submenu ul.third-list li{
    list-style: disc;
}






