
/*--------------------------------------------------------------------------------*/
*{ box-sizing: border-box; }
body, html{
    color: #2b2e2e;
    margin: 0px; padding: 0px;
    font-size: 16px; line-height: 1.5em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
}
input, textarea, select{
    font-family: 'OpenSans', 'PingFang SC','Microsoft YaHei','Hiragino Sans GB','WenQuanYi Micro Hei','Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.ten_main{ width: 100%; max-width: 1200px; margin: 0px auto; }
@media screen and (max-width: 1248px){ .ten_main{ margin: 0px 24px;  width: auto; } }

.ten_bg--grey { background: #F0F4FD; }
.ten_bg--lightgrey { background: #FBFBFB; }
.ten_bg--white{ background: #FFF; }
.ten_bg--dark { background: #1B1F25; color: #FFF; }

.ten_root a{  text-decoration: none; color: inherit; cursor: pointer}
.ten_root h2{ font-size:32px; line-height: 1.2em; margin:12px 0px; padding: 0px; font-weight: normal; }
.ten_root h3{ font-size:24px; line-height: 1.4em; margin:12px 0px; padding: 0px; font-weight: normal; }
.ten_root h4{ font-size:24px; line-height: 1.5em; margin:12px 0px; padding: 0px; font-weight: normal; }
.ten_root h5{ font-size:18px; line-height: 1.8em; margin:12px 0px; padding: 0px; font-weight: normal; }
.ten_root h6{ font-size:18px; line-height: 1.5em; margin:12px 0px; padding: 0px; font-weight: normal; }
.ten_root p { font-size:16px; line-height: 1.5em; margin:12px 0px; padding: 0px; font-weight: normal; }

[lang="zh-HK"] .ten_root h2,
[lang="zh-CN"] .ten_root h2,
[lang="zh-HK"] .ten_root h3,
[lang="zh-CN"] .ten_root h3,
[lang="zh-hant"] .ten_root h2,
[lang="zh-hans"] .ten_root h2,
[lang="zh-hant"] .ten_root h3,
[lang="zh-hans"] .ten_root h3{ font-weight: normal; }

.ten_root td,
.ten_root li{ font-size:16px; line-height: 1.5em; }

@media screen and (max-width: 1279px){
    .ten_root h2{ font-size:32px; line-height: 1.2em; }
    .ten_root h3{ font-size:18px; line-height: 1.4em; }
    .ten_root h4{ font-size:20px; line-height: 1.5em; }
    .ten_root h5{ font-size:18px; line-height: 1.8em; }
    .ten_root h6{ font-size:18px; line-height: 1.5em; }
    .ten_root p { font-size:16px; line-height: 1.5em; }

    .ten_banner h2,
    .ten_subbanner--type2 h2{ font-size:36px; line-height: 1.4em; }
}
@media screen and (max-width: 767px){
    .ten_root h2{ font-size:24px; line-height: 1.2em; }
    .ten_root h3{ font-size:18px; line-height: 1.4em; }
    .ten_root h4{ font-size:20px; line-height: 1.5em; }
    .ten_root h5{ font-size:18px; line-height: 1.8em; }
    .ten_root h6{ font-size:18px; line-height: 1.5em; }
    .ten_root p { font-size:16px; line-height: 1.5em; }

    .ten_banner h2,
    .ten_subbanner--type2 h2{ font-size:30px; line-height: 1.4em; }
}
/*--------------------------------------------------------------------------------*/
.ten_img{ position: relative; overflow: hidden;  border-bottom: #FFFFFF solid 1px; }
.ten_img:before{ content: ""; display: block; padding-bottom: 66.66%; }

.ten_img iframe,
.ten_img video,
.ten_img > img,
.ten_img > a > img{ position: absolute; top:0px; left: 0px; width: 100%;height: 100%; object-fit: cover; }
.ten_img .ten_img_txt{
    position: absolute; top:0px; left: 0px; width: 100%; height: 100%;
    display: flex; align-items: center; flex-direction: row;
    padding: 0px 80px;
}
.ten_img .ten_img_txt--bottom{ align-items: flex-end; }
.ten_img .ten_img_txt > *{ width: 100%; }
.ten_img .ten_img_txt--center{ text-align: center;}

.ten_img .ten_img_mag{
    position: absolute; top:0px; left: 0px; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: ease all 0.3s;
}
.ten_img:hover .ten_img_mag{ opacity: 1; }
.ten_img .ten_img_mag:before{
    content: ""; display: block; width: 32px; height: 32px;
    background-image: url(../svg/Search-01.svg);
    background-position: center center;
    background-size:contain;
    background-repeat: no-repeat;
    filter:  brightness(0) invert(1);
}

.gui-video.ten_img .ten_img_txt { padding: 0px 24px; }
@media screen and (max-width: 1023px){ .ten_img .ten_img_txt{ padding: 0px 48px; } }
@media screen and (max-width: 767px){
    .ten_img .ten_img_txt{ padding: 0px 24px; }
    .ten_img--inner > img {
        width: auto;
    }
}

.ten_img .ten_img_play{
    display: block; border-radius: 50%; position: absolute;
    top:calc(50% - 36px); left: calc(50% - 36px);
    width: 72px; height: 72px;
    background: rgba(25,74,195,0.95);
}
.ten_img .ten_img_play:after{
    content: ""; display: block;
    position: absolute; top:calc(50% - 12px); left: calc(50% - 4px);
    width: 0px; height: 0px; transform: scaleY(0.6);
    border-width: 12px; border-style: solid;
    border-color: transparent transparent transparent #FFF;
}
.ten_img:hover .ten_img_play{ background: rgba(255,255,255,0.95); transition: ease all 0.3s; }
.ten_img:hover .ten_img_play:after{ border-color: transparent transparent transparent #0052D9; }

.ten_img .ten_img_shadow{
    position: absolute; top:0px; left: 0px; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}
.ten_img .ten_img_shadow--vert{ background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%); }

.ten_img .ten_img_blue{
    position: absolute; top:0px; left: 0px; width: 100%; height: 100%;
    background: rgba(25,74,195,0.8)
}

.ten_img .ten_img_link{
    font-weight: bold; display: inline-block;
    padding: 12px 36px 12px 0px; position: relative;
}
.ten_img .ten_img_link:after{
    content: ""; display: inline-block;
    width: 6px; height: 6px;
    border-top:   1px solid #FFF;
    border-right: 1px solid #FFF;
    transform: rotate(45deg);
    position: absolute; right: 24px; top:calc(50% - 3px);
    transition: ease all 0.3s;
}
.ten_img .ten_img_link:hover:after{ right: 18px; }

.ten_img--5x4:before{ padding-bottom: 80%; }
.ten_img--5x3:before{ padding-bottom: 60%; }
.ten_img--5x2:before{ padding-bottom: 40%; }
.ten_img--5x1:before{ padding-bottom: 20%; }
.ten_img--4x3:before{ padding-bottom: 75%; }
.ten_img--4x1:before{ padding-bottom: 25%; }
.ten_img--3x2:before{ padding-bottom: 66.66%; }
.ten_img--3x1:before{ padding-bottom: 33.33%; }
.ten_img--2x1:before{ padding-bottom: 50%; }
.ten_img--1x1:before{ padding-bottom: 100%; }

.ten_img--inner{ font-family: -apple-system, system-ui, BlinkMacSystemFont, Helvetica, Helvetica Neue, PingFang SC, 'Hiragino Sans GB',
    'Microsoft YaHei', '\u5fae\u8f6f\u96c5\u9ed1', '微软雅黑', Arial, sans-serif; }
.ten_img--inner:before { padding-bottom: 210px; }
.ten_img--white{ color: #FFF; }

@media screen and (max-width: 1023px){ .ten_img--full:before{  padding-bottom: 40%;  } }
@media screen and (max-width: 639px){  .ten_img--full:before{  padding-bottom: 60%;  } }
@media screen and (max-width: 479px){  .ten_img--full:before{  padding-bottom: 80%; } }
@media screen and (max-width: 359px){  .ten_img--full:before{  padding-bottom: 100%; } }
@media screen and (max-width: 767px){  .ten_img--inner:before{ padding-bottom: 150px;} }

@media screen and (max-width: 767px){
    .ten_img--full p br{ display: none; }
    .ten_img--full .ten_img_txt{ /*align-items: flex-start;*/ padding-top: 20px; }
}

.ten_share img{ width: 18px; height: 18px; }

/*--------------------------------------------------------------------------------*/
.ten_tagline,
.ten_tagline--fill{
    font-family: -apple-system, system-ui, BlinkMacSystemFont, Helvetica, Helvetica Neue, PingFang SC, 'Hiragino Sans GB',
    'Microsoft YaHei', '\u5fae\u8f6f\u96c5\u9ed1', '微软雅黑', Arial, sans-serif; overflow: hidden;
    font-size:14px; line-height: 24px; height: 30px;
    display: inline-block; position: relative;
    border-top:1px solid #0052D9;
    padding:0px 30px; color: #0052D9;
}
.ten_tagline:before,
.ten_tagline--fill:before{
    content: ""; display: block;
    position: absolute; left: calc(100% - 12px); bottom: 0px; width: 100%;
    border-top:1px solid #0052D9;
    transform: rotate(-69deg) translate(-1px,0px);
    transform-origin: 0px 0px;
}
.ten_tagline:after,
.ten_tagline--fill:after{
    content: ""; display: block;
    position: absolute; left: 0px; bottom: 0px; width: calc(100% - 12px);
    border-top:1px solid #0052D9;
}

.ten_tagline--fill{ color: #FFF; }
.ten_tagline--fill:before{
    background: #0052D9; height: 36px;
    transform-origin: 0px 100%;
}
.ten_tagline--fill:after{
    background: #0052D9; height: 36px;
}
.ten_tagline--fill span{ position: relative; z-index: 1;}
/*--------------------------------------------------------------------------------*/
.ten_date{
    font-family: -apple-system, system-ui, BlinkMacSystemFont, Helvetica, Helvetica Neue, PingFang SC, 'Hiragino Sans GB',
    'Microsoft YaHei', '\u5fae\u8f6f\u96c5\u9ed1', '微软雅黑', Arial, sans-serif;
    display: inline-block; padding: 8px 0px 0px 0px;
    background: #0052D9; color: #FFF;
    font-size: 20px; text-align: center;
    width: 60px; height: 60px;
}
.ten_date span{ display: block; font-size: 12px; }

/*--------------------------------------------------------------------------------*/
.ten_share{ display: inline-block; vertical-align: middle; }
/*--------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------*/
.ten_cards{ position: relative; z-index: 1; margin-top: -120px; padding-bottom: 60px; }
.ten_cards h4{
    font-family: -apple-system, system-ui, BlinkMacSystemFont, Helvetica, Helvetica Neue, PingFang SC, 'Hiragino Sans GB',
    'Microsoft YaHei', '\u5fae\u8f6f\u96c5\u9ed1', '微软雅黑', Arial, sans-serif;
    color: #FFF; margin-bottom:12px;
}

.ten_cards .ten_card_grid{ margin-left: -24px; }
.ten_cards .ten_card_grid,
.ten_cards .ten_card_grid .ten_card_col1,
.ten_cards .ten_card_grid .ten_card_col2,
.ten_cards .ten_card_grid .ten_card_col1b{ display: flex; justify-content: flex-start; align-items: flex-start; flex-wrap: wrap; }

.ten_cards .ten_card_grid .ten_card_col1{ align-items: stretch; }
.ten_cards .ten_card_grid .ten_card_col1{ width: calc(75% - 0px); }
.ten_cards .ten_card_grid .ten_card_col2{ width: calc(25% - 0px); }
.ten_cards .ten_card_grid .ten_card_col1b{ width: calc(50% - 0px); align-items: stretch; }


.ten_cards .ten_card     { width: calc(100%   - 24px); margin-left: 24px; }
.ten_cards .ten_card--sml{ width: calc(33.33% - 24px); }
.ten_cards .ten_card--med{ width: calc(66.66% - 24px); }
.ten_cards .ten_card--sml2{ width: calc(50% - 24px); }

@media screen and (max-width: 1279px){
    .ten_cards .ten_card_grid .ten_card_col1{ width: calc(66.66% - 0px); }
    .ten_cards .ten_card_grid .ten_card_col2{ width: calc(33.33% - 0px); }
    .ten_cards .ten_card--sml{ width: calc(100% - 0px); }
    .ten_cards .ten_card--med{ width: calc(100% - 0px); }
}
@media screen and (max-width: 767px){
    .ten_cards .ten_card_grid .ten_card_col1{ width: calc(100% - 0px); }
    .ten_cards .ten_card_grid .ten_card_col2{ width: calc(100% - 0px); }
    .ten_cards .ten_card_grid .ten_card_col2{ align-items: stretch; }
    .ten_cards .ten_card_grid .ten_card_col2 .ten_card{ width: calc(50% - 24px); }
    .ten_cards .ten_card_grid .ten_card_col1b{ width: calc(100% - 0px); align-items: stretch; }
}
@media screen and (max-width: 639px){
    .ten_cards .ten_card_grid .ten_card_col2 .ten_card{ width: calc(100% - 0px); }
    .ten_cards .ten_card--sml2{ width: calc(100%); }
}
/*--------------------------------------------------------------------------------*/
.ten_card{
    display: block; margin-bottom: 24px; height: auto;
    width: 100%; background: #FFF; color: #2b2e2e;
    display: flex; justify-content: space-between;  flex-direction: column;
}
@media screen and (min-width: 768px){
    .ten_card:hover{
        transform: translateY(-4px); transition: ease all 0.3s;
        box-shadow: 0px 4px 4px rgba(0,0,0,0.1);
    }
}

.ten_card .ten_card_body{ padding: 36px 24px; }
.ten_card .ten_card_body .ten_tagline{ left: -24px; }
.ten_card .ten_card_body > :first-child{ margin-top: 0px; }
.ten_card .ten_card_body > :last-child { margin-bottom: 0px; }
.ten_card > .ten_img--full{ height: 100%; }

.ten_card h2{ font-family: -apple-system, system-ui, BlinkMacSystemFont, Helvetica, Helvetica Neue, PingFang SC, 'Hiragino Sans GB',
    'Microsoft YaHei', '\u5fae\u8f6f\u96c5\u9ed1', '微软雅黑', Arial, sans-serif; }
.ten_card h3{ font-weight: normal;  }
.ten_card a:hover h2,
.ten_card a:hover h3{ color: #0052D9; }

.ten_img--full h2,
.ten_img--full h3,
.ten_img--full h4,
.ten_img--full h5,
.ten_img--full h6,
.ten_img--full p{ max-width: 500px;}

.ten_card .ten_card_icon{ display: block; width: 60px; height: 60px; }

.ten_gallery .ten_img:hover img,
.ten_card .ten_img:hover img{
    transform: scale(1.1); transition: ease all 0.3s;
}

.ten_card.ten_card--grey{ background: #F0F4FD; }
.ten_card.ten_card--lightgrey{ background: #FBFBFB; }
.ten_card.ten_card--dark{ background: #1B1F25;  color: #FFF; }
.ten_card.ten_card--blue{ background: #0052D9; color: #FFF; }
.ten_card.ten_card--lightblue{ background: rgb(0, 169, 206); color: #FFF; }
.ten_card.ten_card--green{ background: rgb(121, 192, 0); color: #FFF; }
.ten_card.ten_card--orange{ background: rgb(255, 103, 31); color: #FFF; }
.ten_card.ten_card--white h2{ color: #0052D9; }

.ten_card.ten_card--dark a:hover h2,
.ten_card.ten_card--dark a:hover h3,
.ten_card.ten_card--blue a:hover h2,
.ten_card.ten_card--blue a:hover h3,
.ten_card.ten_card--lightblue a:hover h2,
.ten_card.ten_card--lightblue a:hover h3,
.ten_card.ten_card--green a:hover h2,
.ten_card.ten_card--green a:hover h3,
.ten_card.ten_card--orange a:hover h2,
.ten_card.ten_card--orange a:hover h3
{ color: #FFF; }

.ten_card.ten_card--dark .ten_share,
.ten_card.ten_card--blue .ten_share{ filter: brightness(0) invert(1); }

.ten_card.ten_card--dark .ten_tagline{ color: #FFF; }
.ten_card.ten_card--blue .ten_tagline,
.ten_card.ten_card--blue .ten_tagline:before,
.ten_card.ten_card--blue .ten_tagline:after{ border-color: #FFF; color: #FFF; }
.ten_card.ten_card--green .ten_tagline,
.ten_card.ten_card--green .ten_tagline:before,
.ten_card.ten_card--green .ten_tagline:after{ border-color: #FFF; color: #FFF; }
.ten_card.ten_card--orange .ten_tagline,
.ten_card.ten_card--orange .ten_tagline:before,
.ten_card.ten_card--orange .ten_tagline:after{ border-color: #FFF; color: #FFF; }
.ten_card.ten_card--lightblue .ten_tagline,
.ten_card.ten_card--lightblue .ten_tagline:before,
.ten_card.ten_card--lightblue .ten_tagline:after{ border-color: #FFF; color: #FFF; }

.ten_card.ten_card--dark .ten_download,
.ten_card.ten_card--blue .ten_download{ border:1px solid #FFF; color: #FFF !important;}
.ten_card.ten_card--dark .ten_download:hover,
.ten_card.ten_card--blue .ten_download:hover{ background: #FFF; color: #0052D9 !important;}
.ten_card.ten_card--dark .ten_download:before,
.ten_card.ten_card--blue .ten_download:before{ filter: brightness(0) invert(1); }
.ten_card.ten_card--dark .ten_download:hover:before,
.ten_card.ten_card--blue .ten_download:hover:before{ filter: none !important; }
/*--------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------*/
.ten_crumb{ background: #FBFBFB; padding: 18px 0px;  }
.ten_crumb ul,
.ten_crumb li{ list-style: none; margin: 0px; padding: 0px; }
.ten_crumb ul{ display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; }
.ten_crumb li{ display: block; margin: 0px 12px 0px 0px;  }

.ten_crumb li:after{
    content: ""; display: inline-block; vertical-align: middle;
    width: 6px; height: 6px; margin-left: 12px;
    border-top: 1px solid #2b2e2e;
    border-right: 1px solid #2b2e2e;
    transform: rotate(45deg);
}
.ten_crumb li:last-of-type:after{ display: none; }
.ten_crumb li a:hover{ color: #0052D9; }
/*--------------------------------------------------------------------------------*/
.ten_tab  { display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; }
.ten_tab a{ display: block; margin: 0px 24px 0px 0px; padding: 6px 0px; }
.ten_tab a.active{ font-weight: bold; border-bottom: 3px solid #0052D9; color:#0052D9; }

.ten_tab--investor a{ padding: 18px 0px;}

@media screen and (max-width: 767px){
    .ten_tab a{ margin: 0px 24px 0px 0px; font-size: 14px; }
}

/*--------------------------------------------------------------------------------*/
.ten_input{ display: inline-block;  min-width: 90px;}
.ten_form .ten_input{ display: block; }
.ten_input input,
.ten_input textarea,
.ten_input select{
    border: none; border-bottom: 1px solid #DDD;
    display: block; padding: 0px 12px; width: 100%; outline: none;
    border-radius: 0px; background: none;
}
.ten_input input,
.ten_input select{ height: 36px; line-height: 36px; }
.ten_input select{
    -webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
}
.ten_input .icon{ display:block; height:0px; position: relative; width: auto;}
.ten_input label{ font-weight: 500; display: block; margin: 0px 0px 6px 0px; }
.ten_input  > *{ max-width: 480px; }

.ten_input--search input { padding-left: 36px; }
.ten_input--search .icon:after{
    content: ""; display: block; position: absolute;
    background-image: url(../svg/Search-01.svg);
    background-position: center center; background-repeat: no-repeat;
    background-size: 18px;
    width:30px; height: 30px; bottom: 0px; left: 0px;
}
.ten_input--select .icon:after{
    content: ""; display: block; position: absolute;
    border-width: 6px; border-color: #0052D9 transparent transparent transparent;
    border-style: solid;
    bottom: 8px; right: 8px;
}

.ten_input .ten_input_radio{
    margin-bottom: 24px; max-width: 600px;
    display: flex; justify-content: flex-start; align-items: flex-start;
    flex-wrap: wrap;
}
.ten_input .ten_input_radio a{
    display: block; width: calc(50% - 12px);
    margin: 0px 12px 12px 0px;
    cursor: pointer;
}
.ten_input .ten_input_radio a:before{
    content: ""; display: inline-block; vertical-align: middle;
    width: 12px; height: 12px; margin-right: 6px;
    border: 1px solid #DDD;
}
.ten_input .ten_input_radio a.checked:before{
    /*content:"\2713"; color: #FFF; font-size: 10px; line-height: 12px; text-align: center;*/
    background: #0052D9;
    /*
    background: radial-gradient(#0052D9 0%, #0052D9 50%, #FFF 60%, #FFF 100%);
    border-radius: 50%;*/
}

.ten_input .ten_input_box{
    border: 1px solid #DDD; max-width: 600px; margin-bottom: 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.ten_input .ten_input_box input,
.ten_input .ten_input_box textarea{ border: none; height: 48px; line-height: 48px; }
.ten_input .ten_input_box--captcha img{
    display: block; height: 36px; width: auto; margin: 6px;
}
.ten_input .ten_input_box--captcha a{
    display: block; height: 36px; width: 36px;

    background-image: url(../image/icon/icon_refresh.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px;
}
@media screen and (max-width: 767px){
    .ten_input {
        font-size: 14px;
    }
}
/*--------------------------------------------------------------------------------*/
.ten_btn{
    display: inline-block; cursor: pointer;
    background: #919797; color: #FFF; min-width: 150px;
    border:none; padding: 12px 24px; margin: 0px 6px 6px 0px; text-align: center;
}
.ten_btn--submit{ background: #0052D9; }
.ten_btn:hover{ background: #2b2e2e; }

.ten_btn--cal{
    display: inline-block; cursor: pointer;
    border: 1px solid #919797; border-radius: 6px;
    padding: 12px 24px; margin: 12px 12px 0px 0px;
}
.ten_btn--cal img{ vertical-align: middle; margin-right: 12px; height: 20px; width: auto; }
a:hover .ten_btn--cal,
.ten_btn--cal:hover{ background: #0052D9; color:#FFF; }
a:hover .ten_btn--cal img,
.ten_btn--cal:hover img{ filter: brightness(0) invert(1);}
/*--------------------------------------------------------------------------------*/
.ten_search{ padding: 48px 0px;  }
.ten_search .ten_input input{
    height: 48px; line-height: 48px; color: #919797;
    font-size: 24px; padding-left: 12px; padding-right: 36px;
}
.ten_search .ten_input--search .icon:after{ left: auto; right: 0px; bottom: 6px; }
/*--------------------------------------------------------------------------------*/
.ten_search_result_item{
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
    border-bottom: 1px solid #DDD; padding-bottom: 24px; margin-bottom: 24px;
}
.ten_search_result_txt{ width: 100%; /*width: calc(75% - 72px);*/ }
.ten_search_result_img{ width: calc(25% - 0px); display: none; }
.ten_search_result_txt h3,
.ten_search_result_txt p{ margin: 0px ;}
.ten_search_result_txt span,
.ten_search_result_txt a:hover h3{ color:#0052D9; }

@media screen and (max-width: 767px){
    .ten_search_result_txt{ width: 100%; }
    .ten_search_result_img{ width: 100%; margin-top: 24px; }
}
/*--------------------------------------------------------------------------------*/
.ten_news_search{ display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; margin: 60px 0px 60px -24px; }
.ten_news_search > *{ margin: 0px 0px 0px 24px;  }
.ten_news_search .ten_input{ min-width: 300px; }

.ten_news_search_type{
    margin: 0px 0px 0px auto; padding-left: 12px;
    border-left: 1px solid #5f6464;
    display: flex; justify-content: flex-end; align-items: center;
}
.ten_news_search_type a{ display: block; margin: 0px 0px 0px 24px; opacity: 0.5; }
.ten_news_search_type a img{ display: block; width:30px; height: 30px;}
.ten_news_search_type a.active{ opacity: 1; }

@media screen and (max-width: 1079px){
    .ten_news_search > *{ margin: 0px 0px 24px 24px;  }
    .ten_news_search .ten_tab{ width: 100%; }
    .ten_news_search .ten_input{ min-width: 0px;}
    .ten_news_search .ten_input--select{ width: calc(50% - 24px); }
    .ten_news_search .ten_input--search{ width: calc(80% - 24px); }
    .ten_news_search .ten_input--select--full{ width: 100%; }
    .ten_news_search_type{ width:calc(20% - 24px); border:none; }
}
@media screen and (max-width: 767px){
    .ten_news_search{ margin: 36px 0px 36px -24px; }
    .ten_news_search_type a img{ display: block; width:24px; height: 24px; }
    .ten_news_search_type a{ margin-left: 6px; }
}
/*--------------------------------------------------------------------------------*/
.ten_news_nav{ display: flex; justify-content: center; align-items: center; margin-bottom: 120px; }
.ten_news_nav input{
    border: 1px solid #DDD;
    width: 32px; height: 32px; line-height: 32px;
    text-align: center; margin-right: 12px; outline: none;
    font-size: 1.2em;
}
.ten_news_nav .ten_news_nav_total{ margin-left: 12px; font-size: 1.2em; }

.ten_news_nav .ten_news_nav_prev{ margin-right: 36px; }
.ten_news_nav .ten_news_nav_next{ margin-left:  36px;  }
.ten_news_nav .ten_news_nav_prev:hover,
.ten_news_nav .ten_news_nav_next:hover{ color:#0052D9; }
.ten_news_nav .ten_news_nav_prev:before,
.ten_news_nav .ten_news_nav_next:after{
    content: ""; display: inline-block; vertical-align: middle;
    width: 8px; height: 8px; margin: 0px 0px 0px 12px;
    border-top:   1px solid #0052D9;
    border-right: 1px solid #0052D9;
    transform: rotate(45deg);
}
.ten_news_nav .ten_news_nav_prev:before{ transform: rotate(-135deg); margin:0px 12px 0px 0px; }
@media screen and (max-width: 767px){
    .ten_news_nav input{ font-size: 1em; }
    .ten_news_nav .ten_news_nav_total{ font-size: 1em; }
    .ten_news_nav .ten_news_nav_prev,
    .ten_news_nav .ten_news_nav_next{ font-size: 14px; }
}
/*--------------------------------------------------------------------------------*/
.ten_news--related{ padding: 72px 0px 48px 0px; }
.ten_news_swipe{
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #DDD;
    margin: 0px 0px 36px 0px; padding: 0px 0px 24px 0px;
}
.ten_news_swipe h4{ margin: 0px; font-family: -apple-system, system-ui, BlinkMacSystemFont, Helvetica, Helvetica Neue, PingFang SC, 'Hiragino Sans GB',
    'Microsoft YaHei', '\u5fae\u8f6f\u96c5\u9ed1', '微软雅黑', Arial, sans-serif; white-space: nowrap; }
.ten_news_swipe_nav{ padding-right: 12px; }
.ten_news_swipe_nav a{ display: inline-block; vertical-align: middle; }
.ten_news_swipe_more{ margin-right: 24px; }
.ten_news_swipe_more:after{
    content: ' +'; display: inline-block; vertical-align: middle;
    font-size: 0.5em; margin-left: 6px;
}
.ten_news_swipe_prev{ margin-left: 12px;}
.ten_news_swipe_prev,
.ten_news_swipe_next{ display: inline-block; vertical-align: middle; padding: 2px; }
.ten_news_swipe_prev:after,
.ten_news_swipe_next:after{
    content: ""; display: block;
    width: 16px; height: 16px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg);
}
.ten_news_swipe_prev:after{ transform: rotate(-135deg); }

@media screen and (max-width: 767px){
    .ten_news_swipe_more{ margin-right: 0px; }
}
/*--------------------------------------------------------------------------------*/
.ten_news_item{  display: flex; justify-content: space-between; align-items: center; margin: 60px 0px; padding: 10px 0; border-bottom: 1px solid #f4f4f4; }
.ten_news_item h3{ font-weight: normal; }
.ten_news_item_txt{ width: calc(60% - 72px); }
.ten_news_item_img{ width: calc(40% - 0px);  }
.ten_news_item_txt--full{ width: 100%; }

.ten_news_item_txt .ten_tagline{ border-left: 1px solid #0052D9; }
.ten_news_item_txt a:hover h3{ color: #0052D9; }

.ten_news_item_txt h3{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.ten_news_item_txt p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

@media screen and (max-width: 767px){
    .ten_news_item{ margin: 24px 0px; }
    .ten_news_item_txt h3{ font-size: 16px; }
    .ten_news_item_txt p { display: none; }
    .ten_news_item_txt   { width: calc(60% - 24px); }
    .ten_news_item_txt--full{ width: 100%; }
    .ten_news_item_txt .ten_tagline{ border-left: none; margin-left: -24px; }
}
/*--------------------------------------------------------------------------------*/
.ten_news_card{ display: flex; justify-content: flex-start; align-items: stretch; flex-wrap: wrap; margin-left:-24px; }
.ten_news_card .ten_card{ width: calc(33.33% - 24px); margin-left: 24px; }

@media screen and (max-width: 1023px){ .ten_news_card .ten_card{ width: calc(50%  - 24px); margin-left: 24px; } }
@media screen and (max-width: 767px){  .ten_news_card .ten_card{ width: calc(100% - 24px); margin-left: 24px; } }
/*--------------------------------------------------------------------------------*/
.ten_news_featured{
    border-bottom: 1px solid #0052D9;
    margin : 0px 0px 36px 0px;
    padding: 0px 0px 36px 0px;
}

.ten_news_featured .ten_news_featured_grid{ display: flex; justify-content: space-between; align-items:center; flex-wrap: wrap; }
.ten_news_featured .ten_news_featured_img{ width: 50%; }
.ten_news_featured .ten_news_featured_txt{ width: 50%; padding-left: 72px; }
.ten_news_featured .ten_tagline{ border-left: 1px solid #0052D9; }

@media screen and (max-width: 1023px){
    .ten_news_featured .ten_news_featured_img{ width: 100%; }
    .ten_news_featured .ten_news_featured_txt{ width: 100%; padding-left: 0px; padding-top: 24px; }
    .ten_news_featured{
        margin : 0px 0px 24px 0px;
        padding: 0px 0px 0px 0px;
    }
}

.ten_news_featured .ten_img_txt{ color:#FFF; }
.ten_news_featured .ten_img_txt h2,
.ten_news_featured .ten_img_txt h3,
.ten_news_featured .ten_img_txt h4,
.ten_news_featured .ten_img_txt p { max-width: 600px; margin-top: 0px; }
.ten_news_featured .ten_img_txt .ten_share{ filter: brightness(0) invert(1); }

.ten_news_featured .ten_news_featured_txt a:hover h2{ color: #0052D9; }

@media screen and (max-width: 1023px){
    .ten_news_featured .ten_img_txt{ align-items: flex-end; }
    .ten_news_featured_txt .ten_tagline{ position: relative; left: -24px; border-left: none; }
}
