/* 
    Editor: fan
    Time: 2020.1.7

    Less compilation
    node.js 命令
    > npm install -g less
    国内镜像命令
    > cnpm i -g less
    下载less
    > lessc style.less style.css
*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.transition {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
/*
 banner共用
*/
.bannerbox {
  width: 100%;
  height: 530px;
  position: relative;
  /*bannerImg*/
  /*bannerFont*/
  /* bannerMenu */
}
@media (max-width: 1199px) {
  .bannerbox {
    height: 430px;
  }
}
@media (max-width: 991px) {
  .bannerbox {
    height: 330px;
  }
}
@media (max-width: 767px) {
  .bannerbox {
    height: 230px;
  }
}
.bannerbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bannerbox .font {
  position: absolute;
  top: 45%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  overflow: hidden;
}
.bannerbox .font .tit {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
  /* font-family: "HELVETICANEUELTCOM-BD"; */
}
@media (max-width: 1199px) {
  .bannerbox .font .tit {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .bannerbox .font .tit {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .bannerbox .font .tit {
    font-size: 30px;
  }
}
.bannerbox .list {
  width: 100%;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .bannerbox .list {
    height: 45px;
  }
}
.bannerbox .list .w1460 {
  height: 100%;
}
.bannerbox .list .cont {
  width: 100%;
  height: 100%;
  display: flex;
}
.bannerbox .list .cont a,
.bannerbox .list .cont span {
  display: block;
  height: 100%;
  line-height: 60px;
  color: #fff;
  opacity: 0.5;
  font-size: 16px;
}
@media (max-width: 767px) {
  .bannerbox .list .cont a,
  .bannerbox .list .cont span {
    line-height: 45px;
    font-size: 14px;
  }
  .bannerbox .list .cont a{
    white-space: nowrap;
  }
  .bannerbox .list .cont a:last-child{
    min-width: 30%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.bannerbox .list .cont span {
  margin: 0px 10px;
}
/*  End  */
/*baseSupport*/
.supportcenbox {
  padding-top: 160px;
}
@media (max-width: 1199px) {
  .supportcenbox {
    padding-top: 140px;
  }
}
@media (max-width: 991px) {
  .supportcenbox {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .supportcenbox {
    padding-top: 60px;
  }
}
.footmenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid #ddd;
  padding-top: 35px;
  padding-bottom: 50px;
  line-height: 36px;
}
@media (max-width: 767px) {
  .footmenu {
    padding-top: 20px;
    padding-bottom: 35px;
    justify-content: unset;
  }
}
.footmenu .font {
  font-size: 16px;
  color: #999;
}
.footmenu a {
  color: #666;
  font-size: 16px;
  padding: 0 17.5px;
}
.footmenu a:hover {
  color: #86b2c6;
}
.paginbox {
  /* margin-top: -20px; */
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .paginbox {
    margin-bottom: 35px;
  }
  .footmenu .font{
    display: block;
    width: 100%;
  }
  .footmenu a{
    padding-left: 0;
  }
}
/* End */
/* support.html */
.support {
  padding-top: 100px;
	padding-bottom: 80px;
}
@media (max-width: 1199px) {
  .support {
    padding-top: 80px;
		padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .support {
    padding-top: 60px;
		padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .support {
    padding-top: 40px;
		padding-bottom: 20px;
  }
}
.support .cont {
  margin: 0 -15px;
}
.support .cont:after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767px) {
  .support .cont {
    margin: 0;
  }
}
.support .cont .item {
  width: 33.333%;
  height: 420px;
  padding: 0 15px;
  margin-bottom: 20px;
  float: left;
}
@media (max-width: 991px) {
  .support .cont .item {
    width: 50%;
    height: 380px;
  }
}
@media (max-width: 767px) {
  .support .cont .item {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .support .cont .item {
    padding: 0;
    margin-bottom: 15px;
  }
}
.support .cont .item .jut {
  width: 100%;
}
.support .cont .item .jut .img {
  position: relative;
  width: 100%;
  padding: 0 0 65%;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.support .cont .item .jut .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.support .cont .item .jut .font {
  width: 100%;
  text-align: center;
  line-height: 30px;
  padding-top: 30px;
  padding-bottom: 70px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (max-width: 1199px) {
  .support .cont .item .jut .font {
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .support .cont .item .jut .font {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .support .cont .item .jut .font {
    padding: 15px 0;
  }
}
.support .cont .item .jut .font .tit {
  font-size: 24px;
  color: #333333;
}
.support .cont .item .jut .font a {
  display: block;
  opacity: 0;
  width: 240px;
  height: 60px;
  color: #86b2c6;
  font-size: 16px;
  margin: 35px auto 0;
  overflow: hidden;
  background: url(../images/other/butbag.png) no-repeat center;
  background-size: 100%;
  line-height: 60px;
}
@media (max-width: 767px) {
  .support .cont .item .jut .font a {
    width: 120px;
    height: 40px;
    line-height: 40px;
    margin: 20px auto 0;
    font-size: 14px;
  }
}
.support .cont .item .jut:hover .img {
  -webkit-transform: translateY(-5%);
  transform: translateY(-5%);
}
.support .cont .item .jut:hover .img img {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}
.support .cont .item .jut:hover .font {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  background-color: #86b2c6;
}
.support .cont .item .jut:hover .font .tit {
  color: #fff;
}
.support .cont .item .jut:hover .font a {
  opacity: 1;
}
/* End */
/* support-check.html */
.supportcheck .tit {
  width: 100%;
  font-size: 36px;
  color: #333;
  font-weight: bold;
  line-height: 58px;
  margin-bottom: 85px;
  text-align: center;
  font-family: "HELVETICANEUELTCOM-BD";
}
@media (max-width: 991px) {
  .supportcheck .tit {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .supportcheck .tit {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 35px;
  }
}
.check {
  width: 100%;
  margin-bottom: 234px;
}
@media (max-width: 1199px) {
  .check {
    margin-bottom: 200px;
  }
}
@media (max-width: 991px) {
  .check {
    margin-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .check {
    margin-bottom: 80px;
  }
}
.check .form {
  justify-content: space-between;
  display: flex;
  width: 85%;
  height: 68px;
  border: 1px solid #86b2c6;
  margin: 0 auto;
  padding-left: 48px;
  border-radius: 45px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .check .form {
    width: 100%;
    padding-left: 30px;
    height: 45px;
  }
}
.check .form input {
  width: 85%;
  padding: 24px 0;
  color: #666;
  font-size: 18px;
}
.check .form input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #666;
}
.check .form input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #666;
}
.check .form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #666;
}
.check .form input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #666;
}
@media (max-width: 767px) {
  .check .form input {
    font-size: 12px;
    width: 70%;
    padding: 15px 0;
  }
}
.check .form button {
  width: 20%;
  background-color: #86b2c6;
  border-radius: 45px;
  height: 100%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  border: 1px solid #86b2c6;
  cursor: pointer;
}
@media (max-width: 767px) {
  .check .form button {
    font-size: 16px;
    width: 30%;
  }
}
.check .form button i {
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.check .form button i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* End */
/* support-problem */
.problembox-section1 {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .problembox-section1 {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .problembox-section1 {
    margin-bottom: 35px;
  }
}
.problembox-section1 .lt {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .problembox-section1 .lt {
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 15px;
  }
}
.problembox-section1 .lt .tit {
  font-size: 18px;
  color: #333;
}
@media (max-width: 991px) {
  .problembox-section1 .lt .tit {
    width: 100%;
    margin-bottom: 15px;
  }
}
.problembox-section1 .lt .seleced {
  margin-left: 29px;
  width: 500px;
  background-color: #f5f5f5;
  border-radius: 45px;
  position: relative;
}
@media (max-width: 1440px) {
  .problembox-section1 .lt .seleced {
    width: 400px;
  }
}
@media (max-width: 1199px) {
  .problembox-section1 .lt .seleced {
    width: 340px;
  }
}
@media (max-width: 991px) {
  .problembox-section1 .lt .seleced {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .problembox-section1 .lt .seleced {
    margin-left: 0px;
  }
}
.problembox-section1 .lt .seleced-tit {
  color: #666;
  font-size: 16px;
}
.problembox-section1 .lt .seleced .seleced-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 30px;
}
@media (max-width: 991px) {
  .problembox-section1 .lt .seleced .seleced-nav {
    padding: 15px 15px;
  }
}
.problembox-section1 .lt .seleced .seleced-nav i {
  display: block;
  width: 24px;
  height: 14px;
}
@media (max-width: 991px) {
  .problembox-section1 .lt .seleced .seleced-nav i {
    width: 20px;
    height: 10px;
  }
}
.problembox-section1 .lt .seleced .seleced-nav i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.problembox-section1 .lt .seleced .seleced-list {
  display: none;
  position: absolute;
  z-index: 2;
  top: 59%;
  left: 0;
  width: 100%;
  background-color: #f5f5f5;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 0 0 45px 45px;
  overflow: hidden;
}
.problembox-section1 .lt .seleced .seleced-list div {
  width: 100%;
}
.problembox-section1 .lt .seleced .seleced-list div a {
  width: 100%;
  display: block;
  color: #666;
  font-size: 14px;
  padding: 10px 25px;
}
.problembox-section1 .lt .seleced .seleced-list div:hover {
  background-color: #86b2c6;
}
.problembox-section1 .lt .seleced .seleced-list div:hover a {
  color: #fff;
}
.problembox-section1 .gt {
  background-color: #f5f5f5;
  border-radius: 45px;
  width: 500px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .problembox-section1 .gt {
    width: 400px;
  }
}
@media (max-width: 1199px) {
  .problembox-section1 .gt {
    width: 340px;
  }
}
@media (max-width: 991px) {
  .problembox-section1 .gt {
    width: 100%;
  }
}
.problembox-section1 .gt input {
  padding: 24px 0 24px 30px;
}
@media (max-width: 991px) {
  .problembox-section1 .gt input {
    padding: 20px 0 20px 15px;
  }
}
.problembox-section1 .gt a {
  border: none;
  background-color: #86b2c6;
  padding: 24px 61px;
  border-radius: 45px;
}
@media (max-width: 991px) {
  .problembox-section1 .gt a {
    padding: 20px 61px;
  }
}
.problembox-section1 .gt a img {
  width: 18px;
  height: 18px;
}
.problembox-section2 {
  padding-top: 40px;
  margin-bottom: 22px;
  padding-bottom: 78px;
  width: 100%;
  border-top: 1px solid #ddd;
}
@media (max-width: 991px) {
  .problembox-section2 {
    padding-bottom: 58px;
    padding-top: 35px;
  }
}
@media (max-width: 767px) {
  .problembox-section2 {
    padding-top: 25px;
    padding-bottom: 35px;
  }
}
.problembox-section2 .tit {
  width: 100%;
  margin-bottom: 35px;
  font-weight: bold;
  font-size: 36px;
  font-family: "HELVETICANEUELTCOM-BD";
}
@media (max-width: 991px) {
  .problembox-section2 .tit {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .problembox-section2 .tit {
    margin-bottom: 25px;
  }
}
.problembox-section2 .item {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  overflow: hidden;
}
.problembox-section2 .item > div {
  padding: 30px 30px 25px 40px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .problembox-section2 .item > div {
    padding: 20px 20px 15px 35px;
  }
}
@media (max-width: 767px) {
  .problembox-section2 .item > div {
    padding: 15px 15px 10px 20px;
  }
}
.problembox-section2 .item > div span {
  display: block;
  width: 16px;
  height: 16px;
  font-size: 13px;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  line-height: 16px;
  float: left;
  margin-top: 3px;
  margin-right: 22px;
}
.problembox-section2 .item > div .font {
  float: left;
}
.problembox-section2 .item > div strong {
  float: right;
}
.problembox-section2 .item .prob {
  background-color: #f5f5f5;
  cursor: pointer;
}
.problembox-section2 .item .prob span {
  background-color: #333333;
}
.problembox-section2 .item .prob .font {
  font-size: 18px;
  color: #333;
  width: 80%;
}
@media (max-width: 767px) {
  .problembox-section2 .item .prob .font {
    width: 76%;
    font-size: 16px;
  }
}
.problembox-section2 .item .prob strong {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../images/other/jia.png);
  background-size: 100% 100%;
  background-position: center;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (max-width: 767px) {
  .problembox-section2 .item .prob strong {
    width: 20px;
    height: 20px;
  }
}
.problembox-section2 .item .reply {
  display: none;
}
.problembox-section2 .item .reply span {
  background-color: #86b2c6;
}
.problembox-section2 .item .reply .font {
  font-size: 16px;
  color: #666;
  width: 80%;
}
@media (max-width: 991px) {
  .problembox-section2 .item .reply .font {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .problembox-section2 .item .reply .font {
    width: 85%;
    font-size: 14px;
  }
}
.problembox-section2 .Page_con {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .problembox-section2 .Page_con {
    margin-top: 35px;
    margin-bottom: 0;
  }
}
/* End */
/* support-download */
.downloadbox-tit {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 38px;
}
@media (max-width: 767px) {
  .downloadbox-tit {
    margin-bottom: 30px;
  }
}
.downloadbox-tit a {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin: 0 43px;
}
@media (max-width: 767px) {
  .downloadbox-tit a {
    font-size: 20px;
    margin: 0 20px;
  }
}
.downloadbox-tit .active {
  position: relative;
}
.downloadbox-tit .active:after {
  position: absolute;
  display: block;
  content: "";
  bottom: -4px;
  z-index: -1;
  width: 100%;
  height: 6px;
  background-color: #86b2c6;
}
.downloadbox-cont {
  margin-bottom: 80px;
  width: 100%;
}
@media (max-width: 767px) {
  .downloadbox-cont {
    margin-bottom: 35px;
  }
}
.downloadbox-cont .tit {
  padding: 35px 38px;
  display: flex;
  background-color: #86b2c6;
}
@media (max-width: 767px) {
  .downloadbox-cont .tit {
    padding: 15px 16px;
  }
}
.downloadbox-cont .tit div {
  flex: 1;
  color: #fff;
  font-size: 18px;
}
.downloadbox-cont .tit div:last-child {
  text-align: center;
}
@media (max-width: 767px) {
  .downloadbox-cont .tit div {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .downloadbox-cont .tit .smhied {
    display: none;
  }
}
.downloadbox-cont .tit .name {
  flex: 4;
}
@media (max-width: 767px) {
  .downloadbox-cont .tit .name {
    flex: 2;
  }
}
.downloadbox-cont .item {
  padding: 30px 38px;
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .downloadbox-cont .item {
    padding: 15px 16px;
  }
}
.downloadbox-cont .item div {
  flex: 1;
  color: #666;
  font-size: 16px;
}
@media (max-width: 767px) {
  .downloadbox-cont .item div {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .downloadbox-cont .item .smhied {
    display: none;
  }
}
.downloadbox-cont .item .name {
  flex: 4;
}
@media (max-width: 767px) {
  .downloadbox-cont .item .name {
    flex: 2;
  }
}
.downloadbox-cont .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
}
.downloadbox-cont .item a i {
  display: block;
  width: 73px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-image: url(../images/other/download1.png);
  background-size: 20px 18px;
  background-repeat: no-repeat;
  background-position: center;
}
.downloadbox-cont .item a:hover i {
  background-color: #86b2c6;
  background-image: url(../images/other/download1-1.png);
}
.downloadbox-cont .item:nth-child(2n) {
  background-color: #fff;
}
/* End */
/* support-network.html */
.networkbox-section1 .lt {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.networkbox-section1 .lt .seleced {
  width: 600px;
  background-color: #86b2c6;
}
@media (max-width: 991px) {
  .networkbox-section1 .lt .seleced {
    margin-left: 0;
    width: 100%;
  }
}
.networkbox-section1 .lt .seleced .seleced-nav .seleced-tit {
  color: #fff;
}
.networkbox-section1 .lt .seleced .seleced-list {
  background-color: #86b2c6;
}
.networkbox-section1 .lt .seleced .seleced-list div a {
  color: #fff;
}
.networkbox-section1 .lt .seleced .seleced-list div:hover {
  background-color: #f5f5f5;
}
.networkbox-section1 .lt .seleced .seleced-list div:hover a {
  color: #333;
}
.networkbox-section2 {
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .networkbox-section2 {
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .networkbox-section2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .networkbox-section2 {
    margin-bottom: 20px;
  }
}
.networkbox-section2 .cont {
  margin: 0 -20px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .networkbox-section2 .cont {
    margin: 0;
  }
}
.networkbox-section2 .cont .item {
  padding: 0 20px;
  margin-bottom: 20px;
  width: 33.333%;
}
@media (max-width: 991px) {
  .networkbox-section2 .cont .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .networkbox-section2 .cont .item {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
  }
}
.networkbox-section2 .cont .item .jut {
  width: 100%;
  background-color: #f5f5f5;
  border: 2px solid #f5f5f5;
  padding: 48px 28px;
}
.networkbox-section2 .cont .item .jut .tit {
  color: #333;
  opacity: 0.2;
  font-size: 36px;
  margin-bottom: 35px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .networkbox-section2 .cont .item .jut .tit {
    font-size: 30px;
    white-space: wrap;
  }
}
.networkbox-section2 .cont .item .jut .h1 {
  color: #333;
  font-size: 24px;
  margin-bottom: 25px;
  font: bold;
  width: 100%;
  height: 68px;
}
@media (max-width: 767px) {
  .networkbox-section2 .cont .item .jut .h1 {
    font-size: 20px;
    white-space: wrap;
  }
}
.networkbox-section2 .cont .item .jut .font {
  color: #999;
  font-size: 16px;
}
@media (max-width: 767px) {
  .networkbox-section2 .cont .item .jut .font {
    font-size: 14px;
  }
}
.networkbox-section2 .cont .item .jut .font p {
  margin: 0;
  margin-bottom: 5px;
}
.networkbox-section2 .cont .item .jut .font p:last-child {
  margin-bottom: 0;
  width: 100%;
  height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.networkbox-section2 .cont .item:hover .jut {
  border-color: #86b2c6;
}
/* End */
/* suppport-value.html */
.valuebox-section1 {
  overflow: hidden;
  margin-bottom: 44px;
}
@media (max-width: 767px) {
  .valuebox-section1 {
    margin-bottom: 22px;
  }
}
.valuebox-section1 .cont {
  margin: 0 -10px;
  overflow: hidden;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .valuebox-section1 .cont {
    margin-bottom: 44px;
  }
}
.valuebox-section1 .cont .item {
  padding: 0 10px;
  width: 50%;
}
@media (max-width: 991px) {
  .valuebox-section1 .cont .item {
    width: 100%;
  }
}
.valuebox-section1 .cont .lt {
  float: left;
}
.valuebox-section1 .cont .lt .img {
  width: 100%;
  height: 450px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .valuebox-section1 .cont .lt .img {
    height: 390px;
  }
}
@media (max-width: 767px) {
  .valuebox-section1 .cont .lt .img {
    height: 300px;
  }
}
.valuebox-section1 .cont .lt .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.valuebox-section1 .cont .gt {
  float: right;
}
.valuebox-section1 .cont .gt .jut {
  padding: 42px 0 0 90px;
}
@media (max-width: 1199px) {
  .valuebox-section1 .cont .gt .jut {
    padding: 27px 0 0 60px;
  }
}
@media (max-width: 991px) {
  .valuebox-section1 .cont .gt .jut {
    padding: 27px 0 0 0px;
  }
}
@media (max-width: 767px) {
  .valuebox-section1 .cont .gt .jut {
    padding: 20px 0 0 0px;
  }
}
.valuebox-section1 .cont .gt .jut .tit {
  font-size: 36px;
  margin-bottom: 40px;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
}
@media (max-width: 1199px) {
  .valuebox-section1 .cont .gt .jut .tit {
    margin-bottom: 30px;
  }
}
.valuebox-section1 .cont .gt .jut .font {
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .valuebox-section1 .cont .gt .jut .font {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .valuebox-section1 .cont .gt .jut .font {
    margin-bottom: 20px;
  }
}
.valuebox-section1 .cont .gt .jut .font .tip {
  color: #333;
  font-size: 16px;
  margin: 0;
  margin-bottom: 5px;
}
.valuebox-section1 .cont .gt .jut .font p {
  margin: 0;
  color: #999999;
  font-size: 16px;
  line-height: 28px;
  width: 100%;
  overflow: hidden;
}
.valuebox-section1 .cont .gt .jut .font:last-child {
  margin-bottom: 0;
}
.valuebox-section1 .cont .gt .jut .txt .font:nth-child(1) p {
  height: 145px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media (max-width: 767px) {
  .valuebox-section1 .cont .gt .jut .txt .font:nth-child(1) p {
    height: auto;
    display: block;
  }
}
.valuebox-section1 .cont:nth-child(2n) .lt {
  float: right;
}
.valuebox-section1 .cont:nth-child(2n) .gt {
  float: left;
}
.valuebox-section1 .cont:nth-child(2n) .gt .jut {
  padding: 42px 90px 0  0;
}
@media (max-width: 991px) {
  .valuebox-section1 .cont:nth-child(2n) .gt .jut {
    padding: 32px 0 0 0px;
  }
}
@media (max-width: 767px) {
  .valuebox-section1 .cont:nth-child(2n) .gt .jut {
    padding: 20px 0 0 0px;
  }
}
.valuebox-section2 {
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .valuebox-section2 {
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .valuebox-section2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .valuebox-section2 {
    margin-bottom: 20px;
  }
}
.valuebox-section2 .tit {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .valuebox-section2 .tit {
    margin-bottom: 40px;
  }
}
.valuebox-section2 .tit .tip {
  margin: 0;
  font-weight: bold;
  font-size: 36px;
  color: #333;
  line-height: 46px;
}
@media (max-width: 767px) {
  .valuebox-section2 .tit .tip {
    font-size: 30px;
    line-height: 40px;
  }
}
.valuebox-section2 .tit p {
  margin: 0;
  color: #999;
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 767px) {
  .valuebox-section2 .tit p {
    font-size: 14px;
    line-height: 24px;
  }
}
.valuebox-section2 .form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.valuebox-section2 .form > input[type=text] {
  width: 49.5%;
  padding: 28px 30px;
  color: #666;
  font-size: 16px;
  background-color: #f5f5f5;
  margin-bottom: 20px;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .valuebox-section2 .form > input[type=text] {
    padding: 14px 15px;
    margin-bottom: 10px;
    width: 100%;
  }
}
.valuebox-section2 .form .radio,.valuebox-section2 .form textarea {
  width: 100%;
  overflow: hidden;
  padding: 40px 30px;
	margin-bottom: 20px;
  background-color: #f5f5f5;
	font-size: 16px;
	font-family: 'HELVETICA-LT';
}
.valuebox-section2 .form textarea{
	height: 220px;
}
@media (max-width: 767px) {
  .valuebox-section2 .form .radio {
    padding: 20px 15px;
  }
}
.valuebox-section2 .form .radio .form-tit {
  color: #666;
  font-size: 16px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .valuebox-section2 .form .radio .form-tit {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.valuebox-section2 .form .radio label {
  padding-left: 23px;
  position: relative;
  font-size: 16px;
  display: block;
  color: #666;
}
.valuebox-section2 .form .radio label::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #9b9b9b;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 0;
}
.valuebox-section2 .form .radio label:last-child {
  margin-right: 120px;
}
@media (max-width: 1199px) {
  .valuebox-section2 .form .radio label:last-child {
    margin-right: 0;
  }
}
.valuebox-section2 .form .radio input[type="radio"]:checked::after {
  background-color: #fff;
}
.valuebox-section2 .form .radio input[type="radio"]:checked::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #86b2c6;
  z-index: 2;
  top: 7px;
  left: 4px;
  -webkit-animation: scale1 0.2s linear;
  -moz-animation: scale1 0.2s linear;
  -ms-animation: scale1 0.2s linear;
  -o-animation: scale1 0.2s linear;
  animation: scale1 0.2s linear;
}
.valuebox-section2 .form .radio .form-cont {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .valuebox-section2 .form .radio .form-cont {
    flex-wrap: wrap;
  }
  .valuebox-section2 .form .radio .form-cont label {
    width: 49%;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .valuebox-section2 .form .radio .form-cont label {
    width: 100%;
  }
}
.valuebox-section2 .form button {
  width: 240px;
  height: 60px;
  background: url(../images/more_bg.png) no-repeat center;
  background-size: 100% 100%;
  border: none;
  outline: none;
  color: #fff;
  font-size: 18px;
  margin: 62px auto 0;
  cursor: pointer;
}
@media (max-width: 767px) {
  .valuebox-section2 .form button {
    margin: 30px auto 0;
    width: 200px;
    height: 50px;
  }
}
@keyframes scale1 {
  0% {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale1 {
  0% {
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* End */
/* support-introduction.html */
.introdbox-tit {
  color: #333;
  font-size: 36px;
  font-weight: bold;
  width: 215px;
  line-height: 46px;
}
@media (max-width: 767px) {
  .introdbox-tit {
    font-size: 30px;
    line-height: 40px;
    width: 100%;
  }
}
.introdbox-section1 {
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .introdbox-section1 {
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .introdbox-section1 {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .introdbox-section1 {
    margin-bottom: 20px;
  }
}
.introdbox-section1 .cont {
  display: flex;
  margin: 0 -25px;
}
@media (max-width: 991px) {
  .introdbox-section1 .cont {
    flex-wrap: wrap;
    margin: 0;
  }
}
.introdbox-section1 .cont > div {
  padding: 0 25px;
}
@media (max-width: 991px) {
  .introdbox-section1 .cont > div {
    padding: 0;
  }
}
.introdbox-section1 .cont .lt {
  width: 64%;
}
@media (max-width: 991px) {
  .introdbox-section1 .cont .lt {
    width: 100%;
  }
}
.introdbox-section1 .cont .lt .tit {
  color: #333;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .introdbox-section1 .cont .lt .tit {
    font-size: 30px;
    margin-bottom: 24px;
  }
}
.introdbox-section1 .cont .lt .fontimg {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.introdbox-section1 .cont .lt .fontimg .item {
  width: 47%;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .introdbox-section1 .cont .lt .fontimg .item {
    margin-bottom: 10px;
    width: 100%;
  }
}
.introdbox-section1 .cont .lt .fontimg .item .h1 {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .introdbox-section1 .cont .lt .fontimg .item .h1 {
    margin-bottom: 10px;
  }
}
.introdbox-section1 .cont .lt .fontimg .item .font {
  color: #999;
  font-size: 16px;
  line-height: 30px;
  width: 100%;
  height: 118px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.introdbox-section1 .cont .lt .fontimg .item .font p {
  margin: 0;
}
.introdbox-section1 .cont .gt {
  width: 36%;
}
@media (max-width: 991px) {
  .introdbox-section1 .cont .gt {
    width: 100%;
  }
}
.introdbox-section1 .cont .gt .img {
  height: 660px;
}
@media (max-width: 991px) {
  .introdbox-section1 .cont .gt .img {
    height: 923px;
  }
}
@media (max-width: 767px) {
  .introdbox-section1 .cont .gt .img {
    height: 430px;
  }
}
.introdbox-section1 .cont .gt .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.introdbox-section2 {
  width: 100%;
  background-color: #f5f5f5;
}
.introdbox-section2 .cont {
  position: relative;
}
.introdbox-section2 .cont .img1,
.introdbox-section2 .cont .img2 {
  position: relative;
}
.introdbox-section2 .cont .img1 {
  display: block;
}
@media (max-width: 991px) {
  .introdbox-section2 .cont .img1 {
    display: none;
  }
}
.introdbox-section2 .cont .img2 {
  display: none;
}
.introdbox-section2 .cont .img2 img{
	width: 100%;
}
@media (max-width: 991px) {
  .introdbox-section2 .cont .img2 {
    display: block;
  }
}
.introdbox-section2 .cont .font {
  position: absolute;
  z-index: 2;
  top: 26%;
  left: 0;
  font-size: 36px;
  font-weight: bold;
  color: #333;
}
@media (max-width: 767px) {
	.introdbox-section2 .cont{
		padding-top: 30px;
		padding-bottom: 25px;
	}
	.introdbox-section2 .cont .font{
		position: relative;
		font-size: 30px;
		margin-bottom: 30px;
	}
}
@media (max-width: 565px) {
	.introdbox-section2 .cont .font{
		font-size: 26px;
	}
}
.introdbox-section3 {
  background: url(../images/other/introdboximg2.jpg) center;
  padding: 100px 0;
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .introdbox-section3 {
    margin-bottom: 60px;
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .introdbox-section3 {
    margin-bottom: 40px;
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .introdbox-section3 {
    padding: 40px 0;
    margin-bottom: 20px;
  }
}
.introdbox-section3 .cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .introdbox-section3 .cont .introdbox-tit {
    margin-bottom: 20px;
  }
}
.introdbox-section3 .cont .font {
  width: 70%;
  line-height: 30px;
}
@media (max-width: 767px) {
  .introdbox-section3 .cont .font {
    width: 100%;
  }
}
.introdbox-section3 .cont .font p {
  margin: 0;
  font-size: 16px;
  color: #333;
}
.introdbox-section4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .introdbox-section4 {
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .introdbox-section4 {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .introdbox-section4 {
    margin-bottom: 20px;
  }
}
.introdbox-section4 .font {
  width: 70%;
  line-height: 30px;
}
@media (max-width: 767px) {
  .introdbox-section4 .font {
    width: 100%;
  }
}
.introdbox-section4 .font p {
  margin: 0;
  font-size: 24px;
  color: #666;
  line-height: 38px;
}
@media (max-width: 767px) {
  .introdbox-section4 .font p {
    font-size: 18px;
  }
}
/* End */
/* case.html */
.casebox-tit {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .casebox-tit {
    margin-bottom: 20px;
  }
}
.casebox-menu {
  margin-bottom: 60px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .casebox-menu {
    margin-bottom: 35px;
    padding-bottom: 20px;
  }
}
.casebox-menu-nav {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .casebox-menu-nav {
    justify-content: left;
  }
}
.casebox-menu-nav a {
  padding: 0 19px;
  display: inline-block;
  margin-bottom: 25px;
  color: #666;
}
@media (max-width: 767px) {
  .casebox-menu-nav a {
    font-size: 14px;
  }
}
.casebox-menu .but {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  color: #86b2c6;
  font-size: 16px;
}
@media (max-width: 767px) {
  .casebox-menu .but {
    font-size: 14px;
  }
}
.casebox-menu .but i {
  display: block;
  width: 10px;
  height: 6px;
}
.casebox-menu .but i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-left: 15px;
}
.casebox-cont {
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .casebox-cont {
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .casebox-cont {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .casebox-cont {
    margin-bottom: 20px;
  }
}
.casebox-cont .cont {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media (max-width: 767px) {
  .casebox-cont .cont {
    margin: 0;
  }
}
.casebox-cont .cont .item {
  width: 25%;
  margin-bottom: 20px;
  padding: 0 10px;
  display: block;
}
@media (max-width: 1199px) {
  .casebox-cont .cont .item {
    width: 33.333%;
  }
}
@media (max-width: 991px) {
  .casebox-cont .cont .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .casebox-cont .cont .item {
    padding: 0;
    width: 100%;
  }
}
.casebox-cont .cont .item .jut {
  width: 100%;
}
.casebox-cont .cont .item .jut .img {
  width: 100%;
  position: relative;
  padding-bottom: 68%;
  overflow: hidden;
  border: 1px solid #ddd;
}
.casebox-cont .cont .item .jut .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.casebox-cont .cont .item .jut .font {
  text-align: center;
  font-size: 16px;
  color: #333;
  line-height: 32px;
  padding: 21px 0;
  height: 82px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .casebox-cont .cont .item .jut .font {
    font-size: 14px;
    line-height: 28px;
  }
}
.casebox-cont .cont .item:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* End */
/* case_info.html */
.caseinfobox-tit {
  padding-bottom: 55px;
}
@media (max-width: 767px) {
  .caseinfobox-tit {
    padding-bottom: 25px;
  }
}
.caseinfobox-tit h1 {
  font-size: 36px;
  color: #333;
  margin: 0;
  margin-bottom: 36px;
  line-height: 46px;
  font-family: "HELVETICANEUELTCOM-BD";
}
@media (max-width: 767px) {
  .caseinfobox-tit h1 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
.caseinfobox-tit .font {
  width: 100%;
}
.caseinfobox-tit .font div {
  color: #999;
  font-size: 16px;
  display: inline-block;
}
@media (max-width: 991px) {
  .caseinfobox-tit .font div {
    display: block;
  }
}
@media (max-width: 767px) {
  .caseinfobox-tit .font div {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .caseinfobox-tit .font .data {
    margin-bottom: 10px;
  }
}
.caseinfobox-tit .font .mount {
  margin-left: 23px;
}
@media (max-width: 991px) {
  .caseinfobox-tit .font .mount {
    margin-left: 0;
  }
}
.caseinfobox-section1 {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .caseinfobox-section1 {
    margin-bottom: 25px;
  }
}
.caseinfobox-section1 .cont:after {
  content:"";
  clear:both;
  display:block;
}
.caseinfobox-section1 .cont .lt {
  width: 64.5%;
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
  float: left;
}
@media (max-width: 1199px) {
  .caseinfobox-section1 .cont .lt {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .caseinfobox-section1 .cont .lt {
    padding-bottom: 20px;
  }
}
.caseinfobox-section1 .cont .lt p {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .caseinfobox-section1 .cont .lt p {
    font-size: 14px;
    line-height: 28px;
  }
  .caseinfobox-section1 .cont .lt table{
    width: 100%!important;
  }
  .caseinfobox-section1 .cont .lt table td {
    width: auto!important;
  }
}
.caseinfobox-section1 .cont .lt img {
  max-width: 100%;
  height: auto;
}
.caseinfobox-section1 .cont .gt {
  width: 30%;
  float: right;
  position: sticky;
  top: 100px;
}
@media (max-width: 1199px) {
  .caseinfobox-section1 .cont .gt {
    display: none;
  }
}
.caseinfobox-section1 .cont .gt .jut {
  margin-bottom: 25px;
}
.caseinfobox-section1 .cont .gt .jut:last-child {
  margin-bottom: 0;
}
.caseinfobox-section1 .cont .gt .jut .tit {
  width: 100%;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  font-size: 24px;
  font-family: "HELVETICANEUELTCOM-BD";
}
@media (max-width: 767px) {
  .caseinfobox-section1 .cont .gt .jut .tit {
    font-size: 20px;
    padding-bottom: 20px;
    margin-bottom: 15px;
  }
}
.caseinfobox-section1 .cont .gt .jut .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 30px;
  height: 120px;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 767px) {
  .caseinfobox-section1 .cont .gt .jut .item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.caseinfobox-section1 .cont .gt .jut .item .img {
  width: 30%;
  height: 100%;
  overflow: hidden;
}
.caseinfobox-section1 .cont .gt .jut .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.caseinfobox-section1 .cont .gt .jut .item .font {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 14px;
}
.caseinfobox-section1 .cont .gt .jut .item:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.caseinfobox-section1 .back {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .caseinfobox-section1 .back {
    margin-top: 25px;
    justify-content: space-between;
  }
}
.caseinfobox-section1 .back a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.caseinfobox-section1 .back a img {
  width: 100%;
  height: 100%;
}
.caseinfobox-section1 .back .share {
  width: 85px;
  height: 28px;
  background-color: #86b2c6;
  font-size: 14px;
  color: #fff;
  border-radius: 3px;
  margin-right: 20%;
}
.caseinfobox-section1 .back .share i {
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
}
.caseinfobox-section1 .back .go {
  width: 165px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #666666;
  font-size: 16px;
}
@media (max-width: 767px) {
  .caseinfobox-section1 .back .go {
    font-size: 14px;
  }
}
.caseinfobox-section1 .back .go i {
  width: 19px;
  height: 18px;
  margin-right: 10px;
}
.caseinfobox-section2 {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .caseinfobox-section2 {
    padding-bottom: 20px;
  }
}
.caseinfobox-section2 .tit {
  width: 100%;
  padding: 30px 0;
  background-color: #f5f5f5;
  text-align: center;
  font-size: 24px;
  line-height: 34px;
  font-family: "HELVETICANEUELTCOM-BD";
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .caseinfobox-section2 .tit {
    font-size: 20px;
    line-height: 30px;
    padding: 20px 0;
    margin-bottom: 20px;
  }
}
.caseinfobox-section2 .cont {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 20px;
}
@media (max-width: 767px) {
  .caseinfobox-section2 .cont {
    margin: 0 0 10px;
  }
}
.caseinfobox-section2 .cont .item {
  padding: 0 10px;
  width: 25%;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .caseinfobox-section2 .cont .item {
    width: 33.33%;
  }
}
@media (max-width: 991px) {
  .caseinfobox-section2 .cont .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .caseinfobox-section2 .cont .item {
    padding: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}
.caseinfobox-section2 .cont .item .jut {
  width: 100%;
}
.caseinfobox-section2 .cont .item .jut .img {
  position: relative;
  width: 100%;
  padding-bottom: 69%;
  overflow: hidden;
  border: 1px solid #ddd;
}
.caseinfobox-section2 .cont .item .jut .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.caseinfobox-section2 .cont .item .jut .font {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  font-size: 16px;
  line-height: 30px;
  height: 80px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 767px) {
  .caseinfobox-section2 .cont .item .jut .font {
    padding: 10px 0;
    font-size: 14px;
    line-height: 26px;
    height: 85px;
    -webkit-line-clamp: 3;
  }
}
.caseinfobox-section2 .cont .item:hover .img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* End */
/* products_info.html */
.popupsbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: none;
}
.popupsbox .bag {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.popupsbox .form {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 50px 45px;
  background-color: #fff;
  border: 3px solid #86b2c6;
  margin: 0 auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 8px;
  width: 32%;
}
@media (max-width: 1440px) {
  .popupsbox .form {
    width: 40%;
  }
}
@media (max-width: 1199px) {
  .popupsbox .form {
    width: 50%;
    padding: 40px 35px;
  }
}
@media (max-width: 991px) {
  .popupsbox .form {
    width: 60%;
    padding: 30px 25px;
    border: 2px solid #86b2c6;
  }
}
@media (max-width: 767px) {
  .popupsbox .form {
    width: 90%;
    padding: 20px 15px;
  }
}
.popupsbox .form .shut {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .popupsbox .form .shut {
    width: 15px;
    height: 15px;
  }
}
.popupsbox .form .shut img {
  width: 100%;
}
.popupsbox .form .tit {
  font-size: 30px;
  text-align: center;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .popupsbox .form .tit {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .popupsbox .form .tit {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.popupsbox .form form {
  width: 100%;
}
.popupsbox .form form .item {
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 3px;
  border: 1px solid #ddd;
  position: relative;
  margin-bottom: 20px;
}
.popupsbox .form form .item .hover1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.popupsbox .form form .item .hover1 span {
  color: #ff1f1f;
}
.popupsbox .form form .item .hover1,
.popupsbox .form form .item input {
  padding: 15px 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .popupsbox .form form .item .hover1,
  .popupsbox .form form .item input {
    padding: 15px 15px;
  }
}
.popupsbox .form form .item input {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .popupsbox .form form .item {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .popupsbox .form form .item {
    margin-bottom: 10px;
  }
}
.popupsbox .form form button {
  width: 100%;
  background-color: #86b2c6;
  color: #fff;
  border-radius: 3px;
  padding: 23px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .popupsbox .form form button {
    padding: 18px 15px;
  }
}
.f_proinfo .left .con_tab .box_text .item {
  display: flex;
  width: 100%;
  color: #666666;
  font-size: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .f_proinfo .left .con_tab .box_text .item {
    margin-bottom: 15px;
  }
}
.f_proinfo .left .con_tab .box_text .item p {
  margin: 0;
  width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .f_proinfo .left .con_tab .box_text .item p {
    width: 65%;
  }
}
.f_proinfo .left .con_tab .box_text .item:hover {
  color: #86b2c6;
}
.f_proinfo .left .con_tab .box_text .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .f_proinfo .left .con_tab .box_text .list {
    margin-bottom: 15px;
  }
}
.f_proinfo .left .con_tab .box_text .list p {
  margin: 0;
  width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.f_proinfo .left .con_tab .box_text .list strong {
  font-weight: 500;
}
@media (max-width: 767px) {
  .f_proinfo .left .con_tab .box_text .list strong {
    display: none;
  }
}
@media (max-width: 991px) {
  .f_proinfo .left .con_tab .box_text .list span {
    display: none;
  }
}
.f_proinfo .left .con_tab .box_text .list a {
  background-image: url(../images/down1.png);
  background-position: center 40%;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  display: block;
  width: 72px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.f_proinfo .left .con_tab .box_text .list a:hover {
  background-color: #86b2c6;
  background-image: url(../images/down1-2.png);
}
/*  .f_proinfo .tab ul li:hover, .f_proinfo .tab ul li.on{
		    background: url(../images/con_tab1.png) 0 100% no-repeat;
		    background-size: cover;
	} */
/* End */
/* supportbox */
.supportbox .cont .item {
  width: 50%;
  height: auto;
}
@media (max-width: 991px) {
  .supportbox .cont .item {
    width: 100%;
  }
}
.supportbox .cont .item .jut .img {
  width: 65%;
  padding: 0 0 30%;
}
@media (max-width: 1440px) {
  .supportbox .cont .item .jut .img {
    height: 200px;
  }
}
@media (max-width: 991px) {
  .supportbox .cont .item .jut .img {
    width: 100%;
  }
}
.supportbox .cont .item .jut {
  display: flex;
}
@media (max-width: 991px) {
  .supportbox .cont .item .jut {
    flex-wrap: wrap;
  }
}
.supportbox .cont .item .jut .font {
  width: 35%;
  padding: 70px 0;
  background-color: #f5f5f5;
}
@media (max-width: 1440px) {
  .supportbox .cont .item .jut .font {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .supportbox .cont .item .jut .font {
    width: 100%;
  }
}
.supportbox .cont .item .jut .font a {
  width: 80%;
  opacity: 1;
  margin: 20px auto 0;
}
@media (max-width: 991px) {
  .supportbox .cont .item .jut .font a {
    margin-top: 10px;
    width: 180px;
  }
}
.supportbox .cont .item .jut:hover .font {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.supportbox .cont .item .jut:hover .img {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.supportbox .cont .item .jut .font .tit {
  width: 100%;
  text-align: center;
  padding: 0 15px;
  font-size: 20px;
  font-family: "HELVETICANEUELTCOM-BD";
}

.training-section1 .title{
	width: 100%;
	font-size: 48px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 75px;
}
.training-section1 .cont:nth-child(2n) .gt .jut{
	    
			padding: 75px 0 0 90px;
}
.training-section1 .cont .gt .jut{
			padding: 75px 90px 0 0;
}
.about_team .about_teamW2 .left .text p,
.about_team .about_teamW1 .right .text p,
.valuebox-section1 .cont .gt .jut p,
.training-section1 .cont .gt .jut p{
	font-size: 16px;
	color:#666;
}
@media (max-width: 767px) {
	.about_team .about_teamW2 .left .text p
	.about_team .about_teamW1 .right .text p,
	.valuebox-section1 .cont .gt .jut p,
	.training-section1 .cont .gt .jut p{
	font-size: 14px;
}
}
.training-section1 .cont:nth-child(2n) .lt{
	float: left;
}
.training-section1 .cont .lt{
	float: right;
}
.training-section2{
	margin-bottom: 95px;
}
.training-section2 .currency_title{
	font-size: 48px;
}
.training-section2 .menorabilia .tab_time ul li .time{
	font-size: 24px;
}
.training-section2 .but{
	display: block;
	width: 240px;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	margin: 50px auto 0;
	text-align: center;
	background: url(../images/btn2.png) no-repeat center;
	background-size: 100% 100%;
	color: #fff;
}
.training-section3 .tit .tip{
	font-size: 48px;
}
/* 86b2c6 */
.training-section3 .font{
	width: 100%;
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	margin-top: 50px;
}
.training-section3 .font span{
	color: #86b2c6;
	display: block;
}
.downloadbox .check{
	margin-bottom: 51px;
}
.training-section3 .font a{
	color:#86b2c6;
}
@media (max-width: 991px) {
	.training-section1 .title{
		margin-bottom: 50px;
		font-size: 36px;
	}
	.training-section2{
		margin-bottom: 60px;
	}
	.downloadbox .check{
		margin-bottom: 40px;
	}
}
@media (max-width: 767px) {
	.training-section2 .but{
		width: 200px;
		height: 40px;
		line-height: 40px;
		margin: 30px auto 0;
	}
	.training-section2{
		margin-bottom: 40px;
	}
	.training-section3 .font{
		margin-top: 20px;
		font-size: 16px;
	}
	.downloadbox .check{
		margin-bottom: 20px;
	}
}
.introdbox-section2 .cont .img1 img{
  width: 100%;
}
@media (min-width:200px) {
  .introdbox-section2 .cont .img1 img{
    width: 100%;
  }
}