@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: 30px;
    --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: #CCCCCC;
    --ndx-color: #6FB6DF;
    --spx-color: #474747;
    --dji-color: #474747;
    --hstech-color: #CDD760;
}
.clear {
    clear: both;
}
/*   //ANCHOR color */
.brand-color {
    color: var(--brand);
}
.drop {
    color: var(--red);
}
.rise {
    color: var(--green);
}
/*   //ANCHOR basic */
ul,
li,
h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
    padding: 0;
}
ul,
li {
    list-style: none;
}
.container {
    width: 980px;
    margin: 0 auto;
}
.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: 60px !important;
    position: relative;
}
.main-title:before {
    content: "";
    background: var(--brand);
    width: 40px;
    height: 6px;
    position: absolute;
    bottom: 30px;
}
.show-mobile {
    display: none;
}
.hide-mobile {
    display: block;
}
/*   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(.5);
    -ms-transform: scale(.5);
    transform: scale(.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;
}
img.top-banner-bird-start,
img.top-banner-bird-end {
    max-width: 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(.4);
        transform: scale(.4);
    }
    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}
@keyframes bird-zoom {
    0% {
        -webkit-transform: scale(.4);
        transform: scale(.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: 500;
    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;
    height: auto;
    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;
    justify-content: flex-start;
    padding: var(--box-size) var(--box-size) 0 var(--box-size);
}
.index-products {
    position: relative;
}
.index-products .dlc-long {
    color: #6a7d39!important;
    font-weight: 500;
}
.index-products .dlc-short {
    color: #b60000!important;
    font-weight: 500;
}
.index-products .index-products-container table thead th {
    font-weight: bold;
}
.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: 500;
    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{
    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{
    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{

    background: var(--call-bg);
}

.put-side .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 8px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-weight: normal;
}

.index-diff-table th:first-child,
.index-diff-table td:first-child {
    padding-left: var(--box-size);
    white-space: normal;
}
.index-diff-table th:nth-child(2),
.index-diff-table td:nth-child(2) {
    padding-right:var(--box-size);
}



.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: 17px;
    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: 10px;
}
.index-diff-list.t1:before {
    background: url(/home/images/time.svg) no-repeat center;
    background-size: cover;
}
.index-diff-list.t2:before {
    background: url(/home/images/airbag.svg) no-repeat center;
    background-size: cover;
}
.index-diff-list.t3:before {
    background: url(/home/images/issuer.svg) no-repeat center;
    background-size: cover;
}
.index-diff-list.active {
    background: #fff;
    border-left: 6px solid var(--brand);
}
.index-diff-content {
    padding: 20px 30px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
}
.index-diff-content p {
    margin-bottom: 15px;
}
.index-diff-list br {
    display: none;
}
.top-banner-main-title br{
    display: none;
}


/* 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 br{
    display: block;
 
}.top-banner-sub-title br {
        display: block;
    }
.index-data-minor-item {

    font-size: 13px;
}
    .container {
        width: 677px;
    }
    .top-banner-main-title {
        font-size: 38px;
        margin-bottom: 10px;
        line-height: 1.1;
    }
    .top-banner-sub-title {
        font-size: 24px;
    }
    .top-banner-bird {
        margin-top: -30px;
    }
    .top-banner-title {
        top: 30px;
    }
    @-webkit-keyframes bird-zoom {
        0% {
            -webkit-transform: scale(.4);
            transform: scale(.4);
        }
        100% {
            -webkit-transform: scale(0.7);
            transform: scale(0.7);
        }
    }
    @keyframes bird-zoom {
        0% {
            -webkit-transform: scale(.4);
            transform: scale(.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
    }
    .index-compare-option{
        flex-wrap: wrap;
    }
    .index-compare-checkbox{
        margin-top: 15px;
    }
        .index-compare-checkbox label:first-child{
       margin-left: 0;
    }
}
/* ANCHOR @media mobile */
@media (max-width: 767px) {
    .container {
        width: 100%;
    }
    .section .grid-container {
        padding-left: 0;
        padding-right: 0;
    }
    .index-education .grid-container {
        padding-left: 0;
        padding-right: 0;
    }
    :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;
    }
    .top-banner-title {
        top: 15px;
        left: var(--box-size);
    }
    .top-banner-main-title {
        font-size: 30px;
    }
    .top-banner-sub-title {
        font-size: 20px;
        line-height: 1.2;
    }
    @-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;
        margin-left: 68px;
    }
    
    .top-banner-bg {
        background: url(/home/images/us-banner-bg.jpg) no-repeat center top 70px;
        background-size: 780px;
    }
    .top-banner {
        height: 430px;
    }
    @-webkit-keyframes bird-zoom {
        0% {
            -webkit-transform: scale(.1);
            transform: scale(.1);
        }
        100% {
            -webkit-transform: scale(0.4);
            transform: scale(0.4);
        }
    }
    @keyframes bird-zoom {
        0% {
            -webkit-transform: scale(.1);
            transform: scale(.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)
    }
    .index-diff-content {
        padding: 20px 16px;
        font-size: 16px;
        font-weight: normal;
    }
    .index-diff-list:before {
        height: 30px;
        width: 30px;
        -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: 12px;
        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;
        white-space: nowrap;
    }
    .index-diff-list br {
        display: block;
    }
    .index-education-p {
        padding-bottom: 25px;
    }
    .index-education-title {
        font-size: 18px;
    line-height: 1.2;
    }
    #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
    }
}
.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-products-container .richtext {
    font-weight: 600;
}
.index-products-container .main-search-item {
    min-width: calc((100% - 50px) / 3);
}