/* default start */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
span,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
section,
nav,
header,
footer {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  text-align: inherit;
  line-height: inherit;
}

html {
  width: 100%;
  height: 100%;
  word-break: break-word;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/* ::-webkit-scrollbar {
  width: 0;
} */
body {
  width: 100%;
  height: 100%;
}

ul,
ol,
dl {
  list-style: none;
  display: block;
}

dd,
dt,
li {
  display: block;
}

strong {
  font-weight: bold;
}

a {
  text-decoration: none;
  text-transform: none;
  color: inherit;
}

a img {
  border: 0;
}

a span {
  cursor: pointer;
}

em {
  text-transform: none;
  font-style: normal;
}

textarea {
  resize: none;
}

input,
textarea,
button,
select {
  -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: #999;
}

:-moz-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

:focus::-webkit-input-placeholder {
  opacity: 0;
}

:focus:-moz-placeholder {
  opacity: 0;
}

:focus::-moz-placeholder {
  opacity: 0;
}

:focus:-ms-input-placeholder {
  opacity: 0;
}

/* default end */

/* global start */

/* @font-face
{
  font-family: "Sans";
  src: url(".eot");
  src: url(".eot") format('embedded-opentype'),
       url(".ttf") format('truetype'),
      url(".woff") format('woff'),
      url(".svg") format('svg');
} */
@font-face {
  font-family: "Sans";
  src: url("sans.ttf") format("truetype");
}

@font-face {
  font-family: "SansBold";
  src: url("sans_b.ttf") format("truetype");
}

@font-face {
  font-family: "Semi";
  src: url("semi_b.ttf") format("truetype");
}

@font-face {
  font-family: "LB";
  src: url("lb.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto-Regular";
  src: url("Roboto-Regular.ttf") format("truetype");
}

body {
  color: #02021d;
  background: #f5f5f5;
  /* font-family: "LB"; */
  font-family: "Roboto-Regular";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

b {
  font-family: "SansBold";
  font-weight: normal;
}

h1 {
  font-family: "SansBold";
  text-transform: none;
  font-style: normal;
}

h2 {
  font-family: "SansBold";
  font-weight: normal;
}

h3 {
  font-family: "SansBold";
  font-weight: normal;
}

em {
  /* font-family: "Semi"; */
  font-family: "SansBold";
  /* font-weight: 600; */
}

section {
  position: relative;
}

.content {
  width: 100%;
  height: 100%;
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.lr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.iconfont {
  font-size: inherit;
  line-height: normal;
}

.m {
  display: none !important;
}

/* global end */

/* head start */
.head {
  height: 68px;
  color: #fff;
  background-color: #02021d;
  z-index: 10;
}

.head.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.head .logo {
  width: 230px;
  height: 30px;
}

.head .nav {
  height: 100%;
  display: flex;
  align-items: center;
}

.head .nav_list {
  height: 100%;
  display: flex;
}

.head .nav_list>a,
.head .nav_list>li {
  margin-right: 28px;
}

.head .nav_list>a:last-child,
.head .nav_list>li:last-child {
  margin-right: 0;
}

.head .nav_item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.head li em {
  transition: all 0.6s ease;
  color: rgba(255, 255, 255, 0.8);
}

.head li:hover>em {
  color: inherit;
}

.head .nav_item::after {
  content: "";
  display: block;
  height: 3px;
  background-color: transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.6s ease;
}

.head .nav_item:hover::after {
  background-color: #335bff;
}

.head .nav_item:hover ul {
  /* height: 184px; */
  height: auto;
  padding: 24px;
  z-index: 10;
}

.head .nav_item ul {
  width: 328px;
  height: 0;
  padding: 0 24px;
  line-height: 22px;
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(4, 10, 38, 0.9);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  transition: all 0.6s ease;
}

.head .nav_item ul a {
  display: block;
  margin-top: 16px;
}

.head .nav_item ul a:first-child {
  margin-top: 0;
}

.head .search_wrap {
  margin-left: 40px;
}

.head .search {
  display: block;
  position: relative;
  /* width: 100px; */
  height: 36px;
  font-size: 12px;
}

.head .search .search_keyword {
  box-sizing: border-box;
  position: relative;
  right: 0;
  top: 0;
  padding: 10px 12px 10px 42px;
  line-height: 16px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: all 0.3s;
  width: 100px;
}

.head .search .search_placeholder {
  position: absolute;
  left: 42px;
  top: 50%;
  height: 16px;
  margin-top: -8px;
  color: #fff;
  font: 12px Semi;
  pointer-events: none;

  transition: all 0.3s;
}

.head .search .search_icon {
  position: absolute;
  left: 16px;
  top: 50%;
  font-size: 20px;
  margin-top: -10px;
  pointer-events: none;

  transition: all 0.3s;
}

.head .search .search_control {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 10px;
  background: #335bff;
  border-radius: 0 7px 7px 0;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
}

.head .search:focus-within .search_keyword {
  background: #fff;
  color: #02021d;
  width: 300px;
  padding-left: 16px;
}

.head .search:focus-within .search_placeholder,
.head .search:focus-within .search_icon {
  transform: translateX(-200px);
  opacity: 0;
}

.head .search:focus-within .search_control {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

.head .search em {
  position: relative;
  top: 1px;
}

.head .nav_m {
  display: flex;
}

.head .search_m {
  font-size: 20px;
}

.head .menu_m {
  width: 20px;
  height: 20px;
  margin-left: 12px;
  position: relative;
  overflow: hidden;
}

.head .menu_m .line,
.head .menu_m::before,
.head .menu_m::after,
.head .menu_m .line::before,
.head .menu_m .line::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 2px;
  transition: all 0.6s ease;
}

.head .menu_m::before {
  top: 4px;
}

.head .menu_m::after {
  bottom: 4px;
}

.head .menu_m .line {
  background-color: transparent;
  top: 9px;
}

.head .menu_m .line::before,
.head .menu_m .line::after {
  left: 0;
}

.head .menu_m .line::before {
  background-color: transparent;
}

.head .menu_m.open::before {
  transform: translateY(-20px);
}

.head .menu_m.open::after {
  transform: translateY(20px);
}

.head .menu_m.open .line::before {
  background-color: #fff;
  transform: rotate(45deg);
}

.head .menu_m.open .line::after {
  background-color: #fff;
  transform: rotate(-45deg);
}

.nav_link_m {
  background: rgba(4, 10, 38, 0.94);
  color: #fff;
  display: none;
}

.nav_link_m a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
}

.nav_link_m>ul {
  width: 100%;
  padding: 31px;
  padding-top: 15px;
  box-sizing: border-box;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav_link_m>ul ul {
  font-size: 14px;
}

.nav_link_m>ul li {
  padding: 16px 0;
  border-bottom: 1px solid #363c53;
}

.nav_link_m>ul>li {
  padding-bottom: 8px;
}

.nav_link_m>ul li li {
  border: none;
  padding: 8px 0;
}

.nav_link_m>ul li a:first-child li {
  margin-top: 8px;
}

/* head end */

/* foot start */
.foot {
  background-color: #02021d;
  color: rgba(255, 255, 255, 0.7);
  z-index: 9;
  font-family: "Sans";
  opacity: 0;
}

.animate .foot {
  opacity: 1;
}

.foot_content {
  padding: 60px 0 40px;
}

.foot_content .logo {
  width: 200px;
  height: 27px;
}

.foot_sitemap {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
}

.foot_sitemap a {
  transition: all 0.6s ease;
}

.foot_sitemap a:hover {
  color: #fff;
}

.foot_sitemap_title {
  color: #fff;
  height: 19px;
}
.foot_sitemap_mailto{
  /* color: #fff ; */
  font-weight: 700;
  text-decoration-line: underline;
  line-height: 20px;
  cursor: pointer;
}

.foot_sitemap_title.grey {
  color: rgba(255, 255, 255, 0.7)
}

.foot_sitemap>li {
  max-width: 308px;
  margin-right: 20px;
}

.foot_sitemap .foot_sitepmap_contact {
  /* max-width: 228px; */
  max-width: 232px;
}

.foot_sitemap>li:last-child {
  margin-right: 0;
}

.foot_sitemap ul li {
  margin-top: 16px;
}

.foot_sitemap .foot_sitemap_link li {
  margin-top: 12px;
}

.foot_sitemap .foot_sitemap_link li:first-child {
  margin-top: 16px;
}

.foot_bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot_bottom_text {
  font-size: 12px;
  display: flex;
}

.foot_bottom_text span {
  display: block;
  margin-right: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.foot_bottom_text a {
  transition: all 0.6s ease;
}

.foot_bottom_text a:hover {
  color: #fff;
}

.foot_bottom_link {
  display: flex;
  font-size: 20px;
}

.foot_bottom_link a {
  margin-right: 12px;
  transition: all 0.6s ease;
}

.foot_bottom_link a:hover {
  color: #fff;
}

.foot_bottom_link a:last-child {
  margin-right: 0;
}

/* foot end */

/* subscribe start */
.subscribe {
  height: 157px;
  color: #fff;
  background-color: #001560;
  font-family: "Sans";
  opacity: 0;
}

.animate .subscribe {
  opacity: 1;
}

.subscribe_title {
  font-size: 20px;
}

.subscribe_text {
  font-size: 16px;
  margin-top: 12px;
}

.subscribe_submit {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}

.subscribe_input {
  width: 360px;
  height: 48px;
  box-sizing: border-box;
  padding: 14px 16px;
  color: #02021d;
  border: 0;
  border-radius: 0;
  font-size: 14px;
}

.subscribe_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  background-color: #335bff;
  cursor: pointer;
  transition: all 0.6s ease;
}

.subscribe_btn:hover {
  background-color: #274dfb;
}

.subscribe_btn.disable,
.subscribe_btn.disable:hover {
  background-color: #d5e3fe;
}

.subscribe_btn i,
.subscribe_btn.disable em {
  display: none;
}

.subscribe_btn.disable i {
  display: block;
}

/* subscribe end */

/* detail start */
.detail {
  min-height: calc(100vh - 618px);
  box-sizing: border-box;
}

.scrollTop {
  position: sticky;
  bottom: 0;
}

.scrollTop_content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  box-sizing: border-box;
  margin: auto;
}

.scrollTop_btn {
  position: absolute;
  width: 48px;
  height: 48px;
  bottom: 40px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(51, 51, 51, .4);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all .6s ease;
}

.hide .scrollTop_btn {
  opacity: 0;
  pointer-events: none;
}

.scrollTop_btn i {
  font-size: 24;
  transform: rotate(180deg);
}

.scrollTop_btn:hover {
  background-color: rgba(51, 51, 51, .6);
}

/* detail end */

/* normal list start */
.normal_list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 24px);
  position: relative;
  left: -12px;
}

.normal_list li {
  width: calc(33.33333% - 24px);
  margin: 0 12px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 4px 12px 0px rgba(72, 72, 72, 0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-flow: column;
}

.normal_box {
  position: relative;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 4px 12px 0px rgba(72, 72, 72, 0.1);
  overflow: hidden;
  display: flex;
  flex-flow: column;
}

/* .normal_list li::before,
.normal_box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #ECECEC;
  z-index: 0;
  box-sizing: border-box;
  border-radius: 12px;
}

.normal_list li>*,
.normal_box>* {
  position: relative;
} */

.normal_list_item {
  display: flex;
  flex-flow: column;
  flex: 1;
  cursor: pointer;
}

.normal_list_img {
  width: 100%;
  max-height: 550px;
  height: 216px;
  object-fit: cover;
  object-position: center;
}

.normal_list_content {
  position: relative;
  padding: 20px;
  flex: 1;
}

.special_normal_list_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.normal_list_time {
  font-size: 12px;
  color: #777;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.normal_list_time em {
  font-family: "Roboto-Regular";
  font-weight: 400;
}

.normal_list_time_more {
  font-size: 12px;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: all 0.6s ease;
  color: #335BFF;
}

.normal_list_time_more em {
  position: relative;
  font-family: "Roboto-Regular";
  font-weight: 400;
}

.normal_list_time_more i {
  font-size: 20px;
  margin-left: 4px;
}

.normal_list_item:hover .normal_list_time_more {
  opacity: 1;
}

.normal_list_time_more:hover {
  opacity: 0.7 !important;
}

.normal_list_title {
  font-size: 16px;
  /* margin-top: 12px; */
  line-height: 22px;
  height: 44px;
}

.normal_list_title b {
  flex: 1;
  font-weight: 400;
  /* margin-top: 12px; */
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.normal_list_caption {
  color: #02021d;
  margin-top: 12px;
  line-height: 22px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.normal_list_more {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.6s ease;
  display: none;
}

a .normal_list_more {
  display: flex;
}

.normal_list_item:hover .normal_list_more,
.normal_box:hover .normal_list_more {
  opacity: 1;
}

.normal_list_btn {
  padding: 8px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #335bff;
  transition: all 0.6s ease;
}

.normal_list_btn:hover {
  background: #274dfb;
}

.normal_list_btn i {
  font-size: 24px;
  margin-left: 8px;
}

.normal_list_video .normal_list_title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.normal_list_video_btn {
  display: flex;
  align-items: center;
  opacity: 0;
  transition: all 0.6s ease;
  margin-left: 10px;
}

.normal_list_video_btn em {
  font-size: 12px;
  font-family: "Roboto-Regular";
  font-weight: 400;
  color: #335BFF;
  line-height: 24px;
  display: block;
  padding-right: 4px;
}

.normal_list_video_btn img {
  display: block;
  width: 16px;
  height: 16px;
  transform: scale(0.7) translateY(-0.5px);
}

.normal_list_item:hover .normal_list_video_btn {
  opacity: 1;
}

.normal_list_video_btn:hover {
  opacity: 0.7 !important;
}

.normal_list_postion {
  font-size: 14px;
	font-weight: 400;
	color: #02021D;
	line-height: 22px;
	margin-top: 8px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.normal_list_company {
  font-size: 14px;
	font-weight: 400;
	color: #02021D;
	line-height: 22px;
}

/* two */
.normal_list.two {
  width: calc(100% + 24px);
  left: -12px;
}

.normal_list.two li {
  width: calc(50% - 24px);
  margin: 0 12px;
}

.normal_list.two .normal_list_img {
  height: 328px;
}

.normal_list.two .normal_list_caption {
  -webkit-line-clamp: 3;
}

/* three */
.normal_list.three {
  width: calc(100% + 24px);
  left: -12px;
}

.normal_list.three li {
  width: calc(33.33333% - 24px);
  margin: 0 12px;
}

.normal_list.three .normal_list_img {
  height: 216px;
}

.normal_list.three .normal_list_caption {
  -webkit-line-clamp: 3;
}

/* four */
.normal_list.four {
  width: calc(100% + 20px);
  left: -10px;
}

.normal_list.four li {
  width: calc(25% - 20px);
  margin: 0 10px;
}

.normal_list.four .normal_list_img {
  height: 160px;
}

.normal_list.four .normal_list_title,
.normal_list.four .normal_list_caption {
  /* margin-top: 8px; */
  height: 66px;
  -webkit-line-clamp: 3;
}

/* normal list end */

/* loading btn start */
.loadBtn {
  width: 196px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #02021d;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  margin: 28px auto 0;
  cursor: pointer;
  transition: all 0.6s ease;
  display: none;
}

.loadBtn i {
  height: 100%;
  line-height: inherit;
}

.loadBtn i,
.loadBtn.start b {
  display: none;
}

.loadBtn.start i {
  display: block;
}

.loadBtn:hover {
  opacity: 0.7;
}

.loading {
  width: 100%;
  height: calc(100vh - 68px);
  background: #F5F5F5;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 10;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading img {
  width: 60px;
  height: 60px;
  -webkit-animation: loadingRotate 2s linear 0s both infinite;
  animation: loadingRotate 2s linear 0s both infinite;
}

.animate .loading {
  display: none;
}


/* loading btn end */



/* cookie  start */
.cookies_session {
  display: none;
}

.cookies_content {
  position: fixed;
  background-color: #000;
  opacity: 0.4;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ECEFF4;
  z-index: 500;
}

.cookies_sub {
  position: fixed;
  bottom: 0;
  background-color: #fff;
  z-index: 550;
  width: 100%;

}

.cookies_wrap {
  max-width: 1240px;
  margin: auto;
  padding: 24px 20px;
  box-sizing: border-box;
}

.cookie_info {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding-bottom: 12px;
}

.cookie_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie_forp {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #333;
}

.cookie_forp a {
  color: #274DFB;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
}

.cookie_btnitem {
  display: flex;

}

.cookie_btn {
  color: #484848;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid #E7E9EE;
  cursor: pointer;
}

.cookie_btnacc {
  background: #274DFB;
  color: #fff;
  margin-left: 12px;
}

.bg_img_alt{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

/* cookie end */

/* mobile start */

@media screen and (max-width: 1024px) {
  .loading {
    height: calc(100vh - 48px);
    top: 48px;
  }

  .pc {
    display: none !important;
  }

  .m {
    display: block !important;
  }

  .content {
    padding: 0 12px;
  }

  .lr {
    flex-flow: column;
  }

  .index_title.lr {
    flex-direction: row;
  }

  .events_title.lr {
    flex-direction: row;
  }

  .head {
    height: 48px;
  }

  .head .content.lr {
    flex-flow: row;
  }

  .head .logo {
    width: 148px;
    height: auto;
  }

  .head li em {
    color: inherit;
  }

  .foot .content {
    padding: 0 32px;
  }

  .foot_sitemap {
    flex-flow: column;
    margin-top: 28px;
  }

  .foot_sitemap>li {
    margin-top: 40px;
    margin-right: 0;
  }

  .foot_sitemap>li:first-child {
    margin-top: 0;
  }

  .foot_sitemap ul li+li,
  .foot_sitemap .foot_sitemap_link .m li {
    margin-top: 12px;
  }

  .foot_sitemap .foot_sitemap_link li {
    margin-top: 16px;
  }

  .foot_bottom {
    padding: 20px 0 32px;
    flex-flow: column;
  }

  .foot_bottom_text {
    display: block;
    width: 200px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    line-height: 16px;
  }

  .foot_bottom_text text {
    display: block;
  }

  .foot_bottom_text span {
    display: inline;
    margin-right: 0;
  }

  .foot_bottom_link {
    margin-top: 16px;
  }

  .subscribe {
    height: auto;
  }

  .subscribe .content {
    padding: 48px 32px;
  }

  .subscribe_submit {
    width: 100%;
    margin-top: 32px;
  }

  .subscribe_input {
    width: 100%;
    flex: 1;
  }

  .normal_list,
  .normal_list.two,
  .normal_list.three,
  .normal_list.four {
    width: 100%;
    left: 0;
    flex-flow: column !important;
  }

  .normal_list li,
  .normal_list.two li,
  .normal_list.three li,
  .normal_list.four li {
    width: 100%;
    margin: 0;
    margin-top: 20px;
  }

  .normal_list li:first-child {
    margin-top: 0;
  }

  .normal_list_img {
    /* height: auto !important; */
    /* max-height: 192px; */
    height: 500px;
    max-height: 500px;
  }

  .normal_list.two .normal_list_img, .normal_list.three .normal_list_img {
    height: 450px;
  }

  .normal_list_content {
    padding: 16px;
  }

  .normal_list_title,
  .normal_list_caption {
    /* margin-top: 8px; */
    height: auto;
  }

  .normal_list_time {
    margin-top: 8px;
  }

  .normal_list_caption {
    -webkit-line-clamp: 3;
  }

  .normal_list.four .normal_list_title {
    -webkit-line-clamp: 2;
  }

  .normal_list.four .normal_list_img {
    height: 500px;
  }

  .normal_list_time_more, .normal_list_video_btn{
    opacity: 1;
  }


  .cookies_sub {
    border-radius: 12px 12px 0 0;
  }

  .cookies_wrap {
    padding: 24px 16px 40px;
  }

  .cookie_info {
    padding-bottom: 16px;
  }

  .cookie_bottom {
    display: block;
  }

  .cookie_forp {
    padding-bottom: 24px;
  }

  .cookie_btn {
    width: 100%;
    text-align: center;
  }



}

@media screen and (max-width: 900px) {

  .normal_list_img, .normal_list.two .normal_list_img, .normal_list.three .normal_list_img, .normal_list.four .normal_list_img {
    height: 420px;
  }

}

@media screen and (max-width: 785px) {

  .normal_list_img, .normal_list.two .normal_list_img, .normal_list.three .normal_list_img, .normal_list.four .normal_list_img {
    height: 350px;
  }

}

@media screen and (max-width: 590px) {

  .normal_list_img, .normal_list.two .normal_list_img, .normal_list.three .normal_list_img, .normal_list.four .normal_list_img {
    height: 300px;
  }

}

@media screen and (max-width: 555px) {

  .normal_list_img, .normal_list.two .normal_list_img, .normal_list.three .normal_list_img, .normal_list.four .normal_list_img {
    height: 250px;
  }

}

@media screen and (max-width: 450px) {

  .normal_list_img, .normal_list.two .normal_list_img, .normal_list.three .normal_list_img, .normal_list.four .normal_list_img {
    height: 200px;
  }

}

/* mobile end */

/* loading normal */
.icon-loading {
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation: loadingRotate 2s linear 0s both infinite;
  animation: loadingRotate 2s linear 0s both infinite;
}

@-webkit-keyframes loadingRotate {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes loadingRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}