* {
	box-sizing: content-box;
	-moz-box-sizing: inherit;
	-webkit-box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
}
html, body, #template-html-root {
  height: 100%;
}
#template-content-container {
  padding: 0px 10px 110px 10px;
}
.t-body {
  min-height:100%;
  height: auto !important;
  height: 100%;
  position: relative;
}
.t-body .t-header {
  position: relative;
  min-width: 1200px;
}

.t-body .t-header .t-banner-image {
  z-index: -1;
}

.t-body .t-header .t-banner-image img {
  object-fit: cover;
  /* height: 600px; */
  width: 100%;
}
.t-body .t-banner-content{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  /* display: flex; */
  justify-content: center;
}
.t-body .t-header .t-top-bar {
  position: fixed;
  /* background-color: rgba(5, 5, 5, 0.9); */
  z-index: 10;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
}
.t-body .t-header .t-top-menu {
  height: 50px;
}
.t-body .t-header .t-top-menu .t-logo {
  font-size: 36px;
  font-family: Arial;
  font-weight: 900;
  color: #FFFFFF;
  float: left;
}
.t-body .t-header .t-top-menu .t-menu {
  float: right;
  display: flex;
  align-items: center;
}
.t-body .t-header .t-top-menu .t-menu ul li {
  list-style-type: none;
}
.t-body .t-header .t-top-menu .t-menu ul li a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
}
.t-body .t-header .t-top-menu .t-menu ul li i {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
}
.t-body .t-header .t-top-menu .t-menu ul li:hover > i {
  color: #FF3B25;
}
.t-body .t-header .t-top-menu .t-menu ul li:hover > a {
  color: #FF3B25;
}
.t-body[data-theme=orange] .t-header .t-top-menu .t-menu ul li:hover > i  {
  color: #f58150;
}
.t-body[data-theme=red] .t-header .t-top-menu .t-menu ul li:hover > i  {
  color: #FF3B25;
}
.t-body[data-theme=green] .t-header .t-top-menu .t-menu ul li:hover > i {
  color: #008000;
}
.t-body[data-theme=purple] .t-header .t-top-menu .t-menu ul li:hover > i {
  color: #800080;
}
.t-body[data-theme=blue_1] .t-header .t-top-menu .t-menu ul li:hover > i {
  color: #0e4abd;
}
.t-body[data-theme=blue_2] .t-header .t-top-menu .t-menu ul li:hover > i {
  color: #3d55a7;
}

.t-body[data-theme=orange] .t-header .t-top-menu .t-menu ul li:hover > a {
  color: #f58150;
}
.t-body[data-theme=red] .t-header .t-top-menu .t-menu ul li:hover > a {
  color: #FF3B25;
}
.t-body[data-theme=green] .t-header .t-top-menu .t-menu ul li:hover > a {
  color: #008000;
}
.t-body[data-theme=purple] .t-header .t-top-menu .t-menu ul li:hover > a {
  color: #800080;
}
.t-body[data-theme=blue_1] .t-header .t-top-menu .t-menu ul li:hover > a {
  color: #0e4abd;
}
.t-body[data-theme=blue_2] .t-header .t-top-menu .t-menu ul li:hover > a {
  color: #3d55a7;
}

.t-body .t-header .t-top-menu .t-menu li i {
  margin-right: 5px;
}

.t-body .t-header .t-top-menu .t-menu > ul {
  padding: 0;
  margin: 0;
  display: flex;
}

.t-body .t-header .t-top-menu .t-menu > ul > li {
  display: block;
  padding-right: 10px;
  margin-right: 15px;
  position: relative;
  line-height: 50px;
  cursor: pointer;
}

.t-body .t-header .t-top-menu .t-menu > ul > li > ul {
  position: absolute;
  left: 0;
}

.t-body .t-header .t-top-menu .t-menu > ul > li ul {
  border-radius: 4px;
  display: none;
  background: rgba(255, 255, 255, 0.3);
  padding: 0;
  line-height: normal;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
}
.t-body .t-header .t-top-menu .t-menu > ul > li li {
  padding: 10px 20px;
  white-space: nowrap;
}
.t-body .t-header .t-top-menu .t-menu > ul > li > ul > li ul {
  position: absolute;
  margin-left: -webkit-calc(100% - 20px);
  margin-left: -moz-calc(100% - 20px);
  margin-left: calc(100% - 20px);
  margin-top: -32px;
}

.t-body .t-header .t-top-menu .t-menu ul li:hover > ul {
  display: block;
}

.t-body .t-header .t-top-menu .t-user-menu {
  display: flex;
  align-items: center;
  height: 100%;
  float: right;
}

.t-body .t-header .t-top-menu .t-user-menu .t-dropbtn {
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 10px 0;
}

.t-body .t-header .t-top-menu .t-user-menu .t-dropdown-content {
  white-space: nowrap;
  display: none;
  font-size: 14px;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.t-body .t-header .t-top-menu .t-user-menu .t-dropdown-content a {
  color: black;
  padding: 10px 16px;
  text-decoration: none;
}

.t-lang-zh, .t-lang-en {
  display: none;
}

.template-lang-zh .t-lang-zh {
  display: block;
}
.template-lang-en .t-lang-en {
  display: block;
}

.t-body .t-header .t-top-menu .t-user-menu .t-dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #FF3B25;
}
.t-body[data-theme=orange] .t-header .t-top-menu .t-user-menu .t-dropdown-content a:hover {
  color: #f58150;
}
.t-body[data-theme=red] .t-header .t-top-menu .t-user-menu .t-dropdown-content a:hover {
  color: #FF3B25;
}
.t-body[data-theme=green] .t-header .t-top-menu .t-user-menu .t-dropdown-content a:hover {
  color: #008000;
}
.t-body[data-theme=purple] .t-header .t-top-menu .t-user-menu .t-dropdown-content a:hover {
  color: #800080;
}
.t-body[data-theme=blue_1] .t-header .t-top-menu .t-user-menu .t-dropdown-content a:hover {
  color: #0e4abd;
}
.t-body[data-theme=blue_2] .t-header .t-top-menu .t-user-menu .t-dropdown-content a:hover {
  color: #3d55a7;
}

.t-body .t-header .t-top-menu .t-user-menu .t-dropdown-content a i {
  margin-right: 5px;
}

.t-body .t-header .t-top-menu .t-user-menu .t-dropdown:hover .t-dropdown-content {
  display: block;
}

.t-body .t-header .t-login-button {
  background: #FF3B25;
  border: none;
  padding: 0 20px;
  height: 30px;
  border-radius: 4px;
  color: white;
  cursor: pointer;
}
.t-body[data-theme=orange] .t-header .t-login-button {
  background: #f58150;
}
.t-body[data-theme=red] .t-header .t-login-button {
  background: #FF3B25;
}
.t-body[data-theme=green] .t-header .t-login-button {
  background: #008000;
}
.t-body[data-theme=purple] .t-header .t-login-button {
  background: #800080;
}
.t-body[data-theme=blue_1] .t-header .t-login-button {
  background: #0e4abd;
}
.t-body[data-theme=blue_2] .t-header .t-login-button {
  background: #3d55a7;
}

.t-body .t-header .t-login-button span {
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: white;
}

.t-body .t-header .t-title {
  height: 100%;
  display: flex;
  align-items: center;
}

.t-body .t-header .t-title .t-sub-title {
  text-align: center;
}

.t-body .t-header .t-title .t-title-1 {
  font-family: Open Sans;
  font-weight: bold;
  color: #FFFFFF;
}

.t-body .t-header .t-title .t-title-2 {
  font-family: Open Sans;
  font-weight: 400;
  color: #FFFFFF;
}

.t-body .t-header .t-title .t-title-3 {
  font-family: Open Sans;
  font-weight: 400;
  color: #FFFFFF;
}
.t-body .t-header .t-title .t-title-4 {
  display: flex;
  justify-content: center;
}

.t-body .t-header .t-title .t-title-4 .t-button {
  border: none;
  background-color: #FF3B25;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
.t-body[data-theme=orange] .t-header .t-title .t-title-4 .t-button {
  background-color: #f58150;
}
.t-body[data-theme=red] .t-header .t-title .t-title-4 .t-button {
  background-color: #FF3B25;
}
.t-body[data-theme=green] .t-header .t-title .t-title-4 .t-button {
  background-color: #008000;
}
.t-body[data-theme=purple] .t-header .t-title .t-title-4 .t-button {
  background-color: #800080;
}
.t-body[data-theme=blue_1] .t-header .t-title .t-title-4 .t-button {
  background-color: #0e4abd;
}
.t-body[data-theme=blue_2] .t-header .t-title .t-title-4 .t-button {
  background-color: #3d55a7;
}

.t-body .t-header .t-title .t-title-4 .t-button i {
  margin-right: 10px;
}

@media screen and (max-width: 2560px) {
  .t-body .t-header .t-title .t-title-4 .t-button {
    margin-top: 64px;
    font-size: 32px;
    padding: 23px 55px;
  }
  .t-body .t-header .t-title .t-title-3 {
    margin-top: 52px;
    font-size: 36px;
  }
  .t-body .t-header .t-title .t-title-2 {
    margin-top: 30px;
    font-size: 36px;
  }
  .t-body .t-header .t-title .t-title-1 {
    font-size: 85px;
  }
}

@media screen and (max-width: 2300px) {
  .t-body .t-header .t-title .t-title-4 .t-button {
    margin-top: 57px;
    font-size: 29px;
    padding: 20px 50px;
  }
  .t-body .t-header .t-title .t-title-3 {
    margin-top: 47px;
    font-size: 32px;
  }
  .t-body .t-header .t-title .t-title-2 {
    margin-top: 27px;
    font-size: 32px;
  }
  .t-body .t-header .t-title .t-title-1 {
    font-size: 77px;
  }
}

@media screen and (max-width: 1920px) {
  .t-body .t-header .t-title .t-title-4 .t-button {
    margin-top: 48px;
    font-size: 24px;
    padding: 17px 41px;
  }
  .t-body .t-header .t-title .t-title-3 {
    margin-top: 39px;
    font-size: 27px;
  }
  .t-body .t-header .t-title .t-title-2 {
    margin-top: 23px;
    font-size: 27px;
  }
  .t-body .t-header .t-title .t-title-1 {
    font-size: 64px;
  }
}

@media screen and (max-width: 1680px) {
  .t-body .t-header .t-title .t-title-4 .t-button {
    margin-top: 42px;
    font-size: 21px;
    padding: 15px 36px;
  }
  .t-body .t-header .t-title .t-title-3 {
    margin-top: 34px;
    font-size: 23px;
  }
  .t-body .t-header .t-title .t-title-2 {
    margin-top: 20px;
    font-size: 23px;
  }
  .t-body .t-header .t-title .t-title-1 {
    font-size: 56px;
  }
}

@media screen and (max-width: 1440px){
  .t-body .t-header .t-title .t-title-4 .t-button {
    margin-top: 36px;
    font-size: 18px;
    padding: 13px 31px;
  }
  .t-body .t-header .t-title .t-title-3 {
    margin-top: 29px;
    font-size: 20px;
  }
  .t-body .t-header .t-title .t-title-2 {
    margin-top: 17px;
    font-size: 20px;
  }
  .t-body .t-header .t-title .t-title-1 {
    font-size: 48px;
  }
}

.t-body .t-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 0.1;
  background-color: #1F2E45;
  height: 110px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.t-body .t-header .t-top-menu .t-user-menu .template-lang {
  color: white;
  margin: 0 10px;
  cursor: pointer;
}

ol, ul {
  padding: revert;
  margin: revert;
  list-style: revert;
}