﻿@charset "utf-8";

.xybutton {

  	width: 40px;
	height: 40px;

	border-radius: 10px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;


	border-radius: 10px;
	border: solid 1px #000000;
}
.xybutton:hover {
	background-color: #fa7619;
	border: solid 1px #fa7619;
}
.xybutton::after {

  font-size: 18px!important;
  color: #000;

}

.xybutton:hover:after {

  color: #ffffff;

}
    @media only screen and (max-width: 1600px){
        .xybutton::after {

  font-size: 14px!important; 

}
    }



/* reset */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  word-break: normal;
}

@keyframes displayN {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* animation: displayN 0.5s forwards; */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0)
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0)
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0px, 0);
    transform: translate3d(-50px, 0px, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0)
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0px, 0);
    transform: translate3d(50px, 0px, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0)
  }
}

:root {
  --color: #003a8f;
  --lgColor: linear-gradient(to right, #003a8f, #1857b2);
}

html {
  height: 100%;
}

body {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  min-height: 100%;
  position: relative;
  /* font-weight: 500; */
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Source Han Sans CN", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Helvetica, Arial, sans-serif;
}

body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
pre,
code,
fieldset,
legend,
form,
input,
select,
textarea,
button,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0
}

body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
pre,
code,
fieldset,
legend,
form,
p,
blockquote,
figure,
header,
footer,
nav,
article,
section,
aside,
address,
figcapt_ion {
  zoom: 1
}

li {
  list-style-type: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

iframe,
frame,
fieldset,
img {
  border: 0 none
}

img {
  vertical-align: top
}

input[type=button],
input[type=submit],
input[type=reset] {
  cursor: pointer
}

button {
  cursor: pointer
}

input,
textarea,
button {
  -webkit-border-radius: 0;
  -webkit-appearance: none
}

input[type=radio] {
  -webkit-border-radius: 100%;
  -webkit-appearance: radio
}

input[type=checkbox] {
  -webkit-appearance: checkbox
}

input[type=search] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box
}

textarea {
  overflow: auto;
  resize: none
}

blockquote,
q {
  quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

capt_ion,
th {
  text-align: left
}

th {
  font-weight: normal
}

em,
cite,
address,
i {
  font-style: normal
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  vertical-align: baseline;
  top: -4px;
}

sub {
  vertical-align: text-bottom;
  bottom: 4px;
}

input,
select,
button,
textarea {
  color: #333;
}

a:link,
a:visited,
a:active,
a {
  text-decoration: none;
}

a {
  color: #333;
}

a * {
  cursor: pointer
}

:focus {
  outline: none
}

/*所有后台编辑器区域都要引用 edit_con_original 类名*/
.edit_con_original {
  line-height: 2;
  padding: 0 0;
  color: #333;
  text-align: justify;
}

.edit_con_original ul {
  margin: inherit;
  padding: inherit
}

.edit_con_original ul li {
  list-style-type: disc;
  margin: auto;
  padding: inherit
}

.edit_con_original ol {
  margin: inherit;
  padding: inherit
}

.edit_con_original ol li {
  list-style-type: decimal;
  margin: auto;
  padding: inherit
}

.edit_con_original h1 {
  font-size: 2em;
  font-weight: bold
}

.edit_con_original h2 {
  font-size: 1.5em;
  font-weight: bold
}

.edit_con_original h3 {
  font-size: 1.17em;
  font-weight: bold
}

.edit_con_original h4 {
  font-size: 1em;
  font-weight: bold
}

.edit_con_original h5 {
  font-size: 0.83em;
  font-weight: bold
}

.edit_con_original h6 {
  font-size: 0.67em;
  font-weight: bold
}

.edit_con_original em {
  font-style: italic
}

.edit_con_original cite {
  font-style: italic
}

.edit_con_original address {
  font-style: italic
}

.edit_con_original i {
  font-style: italic
}

.edit_con_original table {
  border-collapse: collapse;
  border-spacing: 0px
}

.edit_con_original table td {
  border: 1px solid #aaa;
}

.edit_con_original img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-device-width: 320px) {
  body {
    -webkit-text-size-adjust: none
  }
}

@media screen and (max-device-width: 480px) {
  body {
    -webkit-text-size-adjust: none
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  body {
    -webkit-text-size-adjust: none
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body {
    -webkit-text-size-adjust: none
  }
}

@media only screen and (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}

.touch_body,
.touch_body * {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* clear 页头，页脚，内容区都不用再加清除样式 */
.cf:before {
  content: '';
  display: table;
}

.cf:after {
  content: '';
  display: table;
  clear: both;
}

.cf {
  zoom: 1
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 0.5;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 0.5;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 0.5;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 0.5;
}

.wrap {
  width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.wrap_1600 {
  width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 1600px) {
  .wrap {
    width: 80%;
  }

  .wrap_1600 {
    width: 94%;
  }
}

@media only screen and (max-width: 1440px) { 
    
  .xybutton {
   width: 35px;
    height: 35px;   
      
  }  
}



@media only screen and (max-width: 1200px) {
  .wrap {
    width: 90%;
  }

  .wrap_1600 {
    width: 90%;
  }
  .xybutton {

    height: 40px!important;
    width: 40px!important;
  }
}

/*公用样式end*/

/*font-size*/
.fnt_12 {
  font-size: 12px;
}

.fnt_14 {
  font-size: 14px;
}

.fnt_16 {
  font-size: 16px;
}

.fnt_18 {
  font-size: 18px;
}

.fnt_20 {
  font-size: 20px;
}

.fnt_22 {
  font-size: 22px;
}

.fnt_24 {
  font-size: 24px;
}

.fnt_26 {
  font-size: 26px;
}

.fnt_28 {
  font-size: 28px;
}

.fnt_30 {
  font-size: 30px;
  line-height: 1.3;
}

.fnt_32 {
  font-size: 32px;
  line-height: 1.3;
}

.fnt_34 {
  font-size: 34px;
  line-height: 1.3;
}

.fnt_36 {
  font-size: 36px;
  line-height: 1.3;
}

.fnt_38 {
  font-size: 38px;
  line-height: 1.3;
}

.fnt_40 {
  font-size: 40px;
  line-height: 1.3;
}

.fnt_42 {
  font-size: 42px;
  line-height: 1.3;
}

.fnt_44 {
  font-size: 44px;
  line-height: 1.3;
}

.fnt_46 {
  font-size: 46px;
  line-height: 1.3;
}

.fnt_48 {
  font-size: 48px;
  line-height: 1.3;
}

.fnt_50 {
  font-size: 50px;
  line-height: 1.3;
}

.fnt_52 {
  font-size: 52px;
  line-height: 1.3;
}

.fnt_54 {
  font-size: 54px;
  line-height: 1.3;
}

.fnt_56 {
  font-size: 56px;
  line-height: 1.3;
}

.fnt_58 {
  font-size: 58px;
  line-height: 1.3;
}

.fnt_60 {
  font-size: 60px;
  line-height: 1.2;
}

.fnt_70 {
  font-size: 70px;
  line-height: 1.2;
}

.fnt_80 {
  font-size: 80px;
  line-height: 1.2;
}

@media only screen and (max-width: 1600px) {
  .fnt_22 {
    font-size: 20px;
  }

  .fnt_24 {
    font-size: 22px;
  }

  .fnt_26 {
    font-size: 24px;
  }

  .fnt_28 {
    font-size: 26px;
  }

  .fnt_30 {
    font-size: 28px;
  }

  .fnt_32 {
    font-size: 30px;
  }

  .fnt_34 {
    font-size: 32px;
  }

  .fnt_36 {
    font-size: 32px;
  }

  .fnt_38 {
    font-size: 32px;
  }

  .fnt_40 {
    font-size: 32px;
  }

  .fnt_42 {
    font-size: 32px;
  }

  .fnt_44 {
    font-size: 36px;
  }

  .fnt_46 {
    font-size: 36px;
  }

  .fnt_48 {
    font-size: 36px;
  }

  .fnt_50 {
    font-size: 36px;
  }

  .fnt_52 {
    font-size: 36px;
  }

  .fnt_54 {
    font-size: 40px;
  }

  .fnt_56 {
    font-size: 40px;
  }

  .fnt_58 {
    font-size: 40px;
  }

  .fnt_60 {
    font-size: 50px;
  }

  .fnt_70 {
    font-size: 60px;
  }

  .fnt_80 {
    font-size: 70px;
  }
}

@media only screen and (max-width: 1400px) {
  .fnt_24 {
    font-size: 20px;
  }

  .fnt_26 {
    font-size: 22px;
  }

  .fnt_28 {
    font-size: 24px;
  }

  .fnt_30 {
    font-size: 26px;
  }

  .fnt_32 {
    font-size: 28px;
  }

  .fnt_34 {
    font-size: 30px;
  }

  .fnt_36 {
    font-size: 30px;
  }

  .fnt_38 {
    font-size: 30px;
  }

  .fnt_40 {
    font-size: 30px;
  }

  .fnt_42 {
    font-size: 30px;
  }

  .fnt_44 {
    font-size: 34px;
  }

  .fnt_46 {
    font-size: 34px;
  }

  .fnt_48 {
    font-size: 34px;
  }

  .fnt_50 {
    font-size: 34px;
  }

  .fnt_52 {
    font-size: 34px;
  }

  .fnt_54 {
    font-size: 38px;
  }

  .fnt_56 {
    font-size: 38px;
  }

  .fnt_58 {
    font-size: 38px;
  }

  .fnt_60 {
    font-size: 40px;
  }

  .fnt_70 {
    font-size: 50px;
  }

  .fnt_80 {
    font-size: 60px;
  }

}

@media only screen and (max-width: 1200px) {
  .fnt_18 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1100px) {
  .fnt_20 {
    font-size: 18px;
  }

  .fnt_22 {
    font-size: 18px;
  }

  .fnt_24 {
    font-size: 20px;
  }

  .fnt_26 {
    font-size: 20px;
  }

  .fnt_28 {
    font-size: 20px;
  }

  .fnt_30 {
    font-size: 22px;
  }

  .fnt_32 {
    font-size: 22px;
  }

  .fnt_34 {
    font-size: 26px;
  }

  .fnt_36 {
    font-size: 26px;
  }

  .fnt_38 {
    font-size: 26px;
  }

  .fnt_40 {
    font-size: 28px;
  }

  .fnt_42 {
    font-size: 28px;
  }

  .fnt_44 {
    font-size: 32px;
  }

  .fnt_46 {
    font-size: 32px;
  }

  .fnt_48 {
    font-size: 32px;
  }

  .fnt_50 {
    font-size: 32px;
  }

  .fnt_52 {
    font-size: 34px;
  }

  .fnt_54 {
    font-size: 34px;
  }

  .fnt_56 {
    font-size: 34px;
  }

  .fnt_58 {
    font-size: 36px;
  }

  .fnt_60 {
    font-size: 36px;
  }

  .fnt_70 {
    font-size: 44px;
  }

  .fnt_80 {
    font-size: 54px;
  }
}

@media only screen and (max-width: 768px) {
    .xybutton {
        
                height: 35px !important;
        width: 35px !important;
    }
  .fnt_16 {
    font-size: 14px;
  }

  .fnt_34 {
    font-size: 24px;
  }

  .fnt_36 {
    font-size: 24px;
  }

  .fnt_38 {
    font-size: 24px;
  }

  .fnt_40 {
    font-size: 26px;
  }

  .fnt_42 {
    font-size: 26px;
  }

  .fnt_44 {
    font-size: 26px;
  }

  .fnt_46 {
    font-size: 26px;
  }

  .fnt_48 {
    font-size: 26px;
  }

  .fnt_50 {
    font-size: 28px;
  }

  .fnt_52 {
    font-size: 28px;
  }

  .fnt_54 {
    font-size: 28px;
  }

  .fnt_56 {
    font-size: 28px;
  }

  .fnt_58 {
    font-size: 28px;
  }
}


.pt_120 {
  padding-top: 120px;
}

.pb_120 {
  padding-bottom: 120px;
}

.pt_110 {
  padding-top: 110px;
}

.pb_110 {
  padding-bottom: 110px;
}

.pt_100 {
  padding-top: 100px;
}

.pb_100 {
  padding-bottom: 100px;
}

.pt_95 {
  padding-top: 95px;
}

.pb_95 {
  padding-bottom: 95px;
}

.pt_90 {
  padding-top: 90px;
}

.pb_90 {
  padding-bottom: 90px;
}

.pt_85 {
  padding-top: 85px;
}

.pb_85 {
  padding-bottom: 85px;
}

.pt_80 {
  padding-top: 80px;
}

.pb_80 {
  padding-bottom: 80px;
}

.pt_75 {
  padding-top: 75px;
}

.pb_75 {
  padding-bottom: 75px;
}

.pt_70 {
  padding-top: 70px;
}

.pb_70 {
  padding-bottom: 70px;
}

.pt_65 {
  padding-top: 65px;
}

.pb_65 {
  padding-bottom: 65px;
}

.pt_60 {
  padding-top: 60px;
}

.pb_60 {
  padding-bottom: 60px;
}

.pt_55 {
  padding-top: 55px;
}

.pb_55 {
  padding-bottom: 55px;
}

.pt_50 {
  padding-top: 50px;
}

.pb_50 {
  padding-bottom: 50px;
}

.pt_45 {
  padding-top: 45px;
}

.pb_45 {
  padding-bottom: 45px;
}

.pt_40 {
  padding-top: 40px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pt_35 {
  padding-top: 35px;
}

.pb_35 {
  padding-bottom: 35px;
}

.pt_30 {
  padding-top: 30px;
}

.pb_30 {
  padding-bottom: 30px;
}

.pt_25 {
  padding-top: 25px;
}

.pb_25 {
  padding-bottom: 25px;
}

.pt_20 {
  padding-top: 20px;
}

.pb_20 {
  padding-bottom: 20px;
}


.mt_120 {
  margin-top: 120px;
}

.mb_120 {
  margin-bottom: 120px;
}

.mt_110 {
  margin-top: 110px;
}

.mb_110 {
  margin-bottom: 110px;
}

.mt_100 {
  margin-top: 100px;
}

.mb_100 {
  margin-bottom: 100px;
}

.mt_95 {
  margin-top: 95px;
}

.mb_95 {
  margin-bottom: 95px;
}

.mt_90 {
  margin-top: 90px;
}

.mb_90 {
  margin-bottom: 90px;
}

.mt_85 {
  margin-top: 85px;
}

.mb_85 {
  margin-bottom: 85px;
}

.mt_80 {
  margin-top: 80px;
}

.mb_80 {
  margin-bottom: 80px;
}

.mt_75 {
  margin-top: 75px;
}

.mb_75 {
  margin-bottom: 75px;
}

.mt_70 {
  margin-top: 70px;
}

.mb_70 {
  margin-bottom: 70px;
}

.mt_65 {
  margin-top: 65px;
}

.mb_65 {
  margin-bottom: 65px;
}

.mt_60 {
  margin-top: 60px;
}

.mb_60 {
  margin-bottom: 60px;
}

.mt_55 {
  margin-top: 55px;
}

.mb_55 {
  margin-bottom: 55px;
}

.mt_50 {
  margin-top: 50px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mt_45 {
  margin-top: 45px;
}

.mb_45 {
  margin-bottom: 45px;
}

.mt_40 {
  margin-top: 40px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mt_35 {
  margin-top: 35px;
}

.mb_35 {
  margin-bottom: 35px;
}

.mt_30 {
  margin-top: 30px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mt_25 {
  margin-top: 25px;
}

.mb_25 {
  margin-bottom: 25px;
}

.mt_20 {
  margin-top: 20px;
}

.mb_20 {
  margin-bottom: 20px;
}


@media only screen and (max-width: 1600px) {


  .pt_120 {
    padding-top: 6vw;
  }

  .pb_120 {
    padding-bottom: 6vw;
  }

  .pt_110 {
    padding-top: 5.5vw;
  }

  .pb_110 {
    padding-bottom: 5.5vw;
  }

  .pt_100 {
    padding-top: 5vw;
  }

  .pb_100 {
    padding-bottom: 5vw;
  }

  .pt_95 {
    padding-top: 4.75vw;
  }

  .pb_95 {
    padding-bottom: 4.75vw;
  }

  .pt_90 {
    padding-top: 4.5vw;
  }

  .pb_90 {
    padding-bottom: 4.5vw;
  }

  .pt_85 {
    padding-top: 4.25vw;
  }

  .pb_85 {
    padding-bottom: 4.25vw;
  }

  .pt_80 {
    padding-top: 4vw;
  }

  .pb_80 {
    padding-bottom: 4vw;
  }

  .pt_75 {
    padding-top: 3.75vw;
  }

  .pb_75 {
    padding-bottom: 3.75vw;
  }

  .pt_70 {
    padding-top: 3.5vw;
  }

  .pb_70 {
    padding-bottom: 3.5vw;
  }

  .pt_65 {
    padding-top: 3.25vw;
  }

  .pb_65 {
    padding-bottom: 3.25vw;
  }

  .pt_60 {
    padding-top: 3vw;
  }

  .pb_60 {
    padding-bottom: 3vw;
  }

  .pt_55 {
    padding-top: 2.75vw;
  }

  .pb_55 {
    padding-bottom: 2.75vw;
  }

  .pt_50 {
    padding-top: 2.5vw;
  }

  .pb_50 {
    padding-bottom: 2.5vw;
  }

  .pt_45 {
    padding-top: 2.25vw;
  }

  .pb_45 {
    padding-bottom: 2.25vw;
  }

  .pt_40 {
    padding-top: 2vw;
  }

  .pb_40 {
    padding-bottom: 2vw;
  }

  .pt_35 {
    padding-top: 1.75vw;
  }

  .pb_35 {
    padding-bottom: 1.75vw;
  }

  .pt_30 {
    padding-top: 1.5vw;
  }

  .pb_30 {
    padding-bottom: 1.5vw;
  }

  .pt_25 {
    padding-top: 1.25vw;
  }

  .pb_25 {
    padding-bottom: 1.25vw;
  }

  .pt_20 {
    padding-top: 1vw;
  }

  .pb_20 {
    padding-bottom: 1vw;
  }


  .mt_120 {
    margin-top: 6vw;
  }

  .mb_120 {
    margin-bottom: 6vw;
  }

  .mt_110 {
    margin-top: 5.5vw;
  }

  .mb_110 {
    margin-bottom: 5.5vw;
  }

  .mt_100 {
    margin-top: 5vw;
  }

  .mb_100 {
    margin-bottom: 5vw;
  }

  .mt_95 {
    margin-top: 4.75vw;
  }

  .mb_95 {
    margin-bottom: 4.75vw;
  }

  .mt_90 {
    margin-top: 4.5vw;
  }

  .mb_90 {
    margin-bottom: 4.5vw;
  }

  .mt_85 {
    margin-top: 4.25vw;
  }

  .mb_85 {
    margin-bottom: 4.25vw;
  }

  .mt_80 {
    margin-top: 4vw;
  }

  .mb_80 {
    margin-bottom: 4vw;
  }

  .mt_75 {
    margin-top: 3.75vw;
  }

  .mb_75 {
    margin-bottom: 3.75vw;
  }

  .mt_70 {
    margin-top: 3.5vw;
  }

  .mb_70 {
    margin-bottom: 3.5vw;
  }

  .mt_65 {
    margin-top: 3.25vw;
  }

  .mb_65 {
    margin-bottom: 3.25vw;
  }

  .mt_60 {
    margin-top: 3vw;
  }

  .mb_60 {
    margin-bottom: 3vw;
  }

  .mt_55 {
    margin-top: 2.75vw;
  }

  .mb_55 {
    margin-bottom: 2.75vw;
  }

  .mt_50 {
    margin-top: 2.5vw;
  }

  .mb_50 {
    margin-bottom: 2.5vw;
  }

  .mt_45 {
    margin-top: 2.25vw;
  }

  .mb_45 {
    margin-bottom: 2.25vw;
  }

  .mt_40 {
    margin-top: 2vw;
  }

  .mb_40 {
    margin-bottom: 2vw;
  }

  .mt_35 {
    margin-top: 1.75vw;
  }

  .mb_35 {
    margin-bottom: 1.75vw;
  }

  .mt_30 {
    margin-top: 1.5vw;
  }

  .mb_30 {
    margin-bottom: 1.5vw;
  }

  .mt_25 {
    margin-top: 1.25vw;
  }

  .mb_25 {
    margin-bottom: 1.25vw;
  }

  .mt_20 {
    margin-top: 1vw;
  }

  .mb_20 {
    margin-bottom: 1vw;
  }


}

@media only screen and (max-width: 1200px) {


  .pt_120 {
    padding-top: 8vw;
  }

  .pb_120 {
    padding-bottom: 8vw;
  }

  .pt_110 {
    padding-top: 8vw;
  }

  .pb_110 {
    padding-bottom: 8vw;
  }

  .pt_100 {
    padding-top: 7vw;
  }

  .pb_100 {
    padding-bottom: 7vw;
  }

  .pt_95 {
    padding-top: 6vw;
  }

  .pb_95 {
    padding-bottom: 6vw;
  }

  .pt_90 {
    padding-top: 6vw;
  }

  .pb_90 {
    padding-bottom: 6vw;
  }

  .pt_85 {
    padding-top: 5vw;
  }

  .pb_85 {
    padding-bottom: 5vw;
  }

  .pt_80 {
    padding-top: 5vw;
  }

  .pb_80 {
    padding-bottom: 5vw;
  }

  .pt_75 {
    padding-top: 4.5vw;
  }

  .pb_75 {
    padding-bottom: 4.5vw;
  }

  .pt_70 {
    padding-top: 4.5vw;
  }

  .pb_70 {
    padding-bottom: 4.5vw;
  }

  .pt_65 {
    padding-top: 4vw;
  }

  .pb_65 {
    padding-bottom: 4vw;
  }

  .pt_60 {
    padding-top: 4vw;
  }

  .pb_60 {
    padding-bottom: 4vw;
  }

  .pt_55 {
    padding-top: 3.5vw;
  }

  .pb_55 {
    padding-bottom: 3.5vw;
  }

  .pt_50 {
    padding-top: 3.5vw;
  }

  .pb_50 {
    padding-bottom: 3.5vw;
  }

  .pt_45 {
    padding-top: 3vw;
  }

  .pb_45 {
    padding-bottom: 3vw;
  }

  .pt_40 {
    padding-top: 3vw;
  }

  .pb_40 {
    padding-bottom: 3vw;
  }

  .pt_35 {
    padding-top: 2.5vw;
  }

  .pb_35 {
    padding-bottom: 2.5vw;
  }

  .pt_30 {
    padding-top: 2.5vw;
  }

  .pb_30 {
    padding-bottom: 2.5vw;
  }

  .pt_25 {
    padding-top: 2vw;
  }

  .pb_25 {
    padding-bottom: 2vw;
  }

  .pt_20 {
    padding-top: 2vw;
  }

  .pb_20 {
    padding-bottom: 2vw;
  }


  .mt_120 {
    margin-top: 8vw;
  }

  .mb_120 {
    margin-bottom: 8vw;
  }

  .mt_110 {
    margin-top: 8vw;
  }

  .mb_110 {
    margin-bottom: 8vw;
  }

  .mt_100 {
    margin-top: 7vw;
  }

  .mb_100 {
    margin-bottom: 7vw;
  }

  .mt_95 {
    margin-top: 6vw;
  }

  .mb_95 {
    margin-bottom: 6vw;
  }

  .mt_90 {
    margin-top: 6vw;
  }

  .mb_90 {
    margin-bottom: 6vw;
  }

  .mt_85 {
    margin-top: 5vw;
  }

  .mb_85 {
    margin-bottom: 5vw;
  }

  .mt_80 {
    margin-top: 5vw;
  }

  .mb_80 {
    margin-bottom: 5vw;
  }

  .mt_75 {
    margin-top: 4.5vw;
  }

  .mb_75 {
    margin-bottom: 4.5vw;
  }

  .mt_70 {
    margin-top: 4.5vw;
  }

  .mb_70 {
    margin-bottom: 4.5vw;
  }

  .mt_65 {
    margin-top: 4vw;
  }

  .mb_65 {
    margin-bottom: 4vw;
  }

  .mt_60 {
    margin-top: 4vw;
  }

  .mb_60 {
    margin-bottom: 4vw;
  }

  .mt_55 {
    margin-top: 3.5vw;
  }

  .mb_55 {
    margin-bottom: 3.5vw;
  }

  .mt_50 {
    margin-top: 3.5vw;
  }

  .mb_50 {
    margin-bottom: 3.5vw;
  }

  .mt_45 {
    margin-top: 3vw;
  }

  .mb_45 {
    margin-bottom: 3vw;
  }

  .mt_40 {
    margin-top: 3vw;
  }

  .mb_40 {
    margin-bottom: 3vw;
  }

  .mt_35 {
    margin-top: 2.5vw;
  }

  .mb_35 {
    margin-bottom: 2.5vw;
  }

  .mt_30 {
    margin-top: 2.5vw;
  }

  .mb_30 {
    margin-bottom: 2.5vw;
  }

  .mt_25 {
    margin-top: 2vw;
  }

  .mb_25 {
    margin-bottom: 2vw;
  }

  .mt_20 {
    margin-top: 2vw;
  }

  .mb_20 {
    margin-bottom: 2vw;
  }


}

@media only screen and (max-width: 768px) {

  .pt_120 {
    padding-top: 14vw;
  }

  .pb_120 {
    padding-bottom: 14vw;
  }

  .pt_110 {
    padding-top: 13vw;
  }

  .pb_110 {
    padding-bottom: 13vw;
  }

  .pt_100 {
    padding-top: 12vw;
  }

  .pb_100 {
    padding-bottom: 12vw;
  }

  .pt_95 {
    padding-top: 10vw;
  }

  .pb_95 {
    padding-bottom: 10vw;
  }

  .pt_90 {
    padding-top: 10vw;
  }

  .pb_90 {
    padding-bottom: 10vw;
  }

  .pt_85 {
    padding-top: 9vw;
  }

  .pb_85 {
    padding-bottom: 9vw;
  }

  .pt_80 {
    padding-top: 9vw;
  }

  .pb_80 {
    padding-bottom: 9vw;
  }

  .pt_75 {
    padding-top: 8vw;
  }

  .pb_75 {
    padding-bottom: 8vw;
  }

  .pt_70 {
    padding-top: 8vw;
  }

  .pb_70 {
    padding-bottom: 8vw;
  }

  .pt_65 {
    padding-top: 7vw;
  }

  .pb_65 {
    padding-bottom: 7vw;
  }

  .pt_60 {
    padding-top: 7vw;
  }

  .pb_60 {
    padding-bottom: 7vw;
  }

  .pt_55 {
    padding-top: 6vw;
  }

  .pb_55 {
    padding-bottom: 6vw;
  }

  .pt_50 {
    padding-top: 6vw;
  }

  .pb_50 {
    padding-bottom: 6vw;
  }

  .pt_45 {
    padding-top: 5vw;
  }

  .pb_45 {
    padding-bottom: 5vw;
  }

  .pt_40 {
    padding-top: 5vw;
  }

  .pb_40 {
    padding-bottom: 5vw;
  }

  .pt_35 {
    padding-top: 4vw;
  }

  .pb_35 {
    padding-bottom: 4vw;
  }

  .pt_30 {
    padding-top: 4vw;
  }

  .pb_30 {
    padding-bottom: 4vw;
  }

  .pt_25 {
    padding-top: 3vw;
  }

  .pb_25 {
    padding-bottom: 3vw;
  }

  .pt_20 {
    padding-top: 3vw;
  }

  .pb_20 {
    padding-bottom: 3vw;
  }


  .mt_120 {
    margin-top: 14vw;
  }

  .mb_120 {
    margin-bottom: 14vw;
  }

  .mt_110 {
    margin-top: 13vw;
  }

  .mb_110 {
    margin-bottom: 13vw;
  }

  .mt_100 {
    margin-top: 12vw;
  }

  .mb_100 {
    margin-bottom: 12vw;
  }

  .mt_95 {
    margin-top: 10vw;
  }

  .mb_95 {
    margin-bottom: 10vw;
  }

  .mt_90 {
    margin-top: 10vw;
  }

  .mb_90 {
    margin-bottom: 10vw;
  }

  .mt_85 {
    margin-top: 9vw;
  }

  .mb_85 {
    margin-bottom: 9vw;
  }

  .mt_80 {
    margin-top: 9vw;
  }

  .mb_80 {
    margin-bottom: 9vw;
  }

  .mt_75 {
    margin-top: 8vw;
  }

  .mb_75 {
    margin-bottom: 8vw;
  }

  .mt_70 {
    margin-top: 8vw;
  }

  .mb_70 {
    margin-bottom: 8vw;
  }

  .mt_65 {
    margin-top: 7vw;
  }

  .mb_65 {
    margin-bottom: 7vw;
  }

  .mt_60 {
    margin-top: 7vw;
  }

  .mb_60 {
    margin-bottom: 7vw;
  }

  .mt_55 {
    margin-top: 6vw;
  }

  .mb_55 {
    margin-bottom: 6vw;
  }

  .mt_50 {
    margin-top: 6vw;
  }

  .mb_50 {
    margin-bottom: 6vw;
  }

  .mt_45 {
    margin-top: 5vw;
  }

  .mb_45 {
    margin-bottom: 5vw;
  }

  .mt_40 {
    margin-top: 5vw;
  }

  .mb_40 {
    margin-bottom: 5vw;
  }

  .mt_35 {
    margin-top: 4vw;
  }

  .mb_35 {
    margin-bottom: 4vw;
  }

  .mt_30 {
    margin-top: 4vw;
  }

  .mb_30 {
    margin-bottom: 4vw;
  }

  .mt_25 {
    margin-top: 3vw;
  }

  .mb_25 {
    margin-bottom: 3vw;
  }

  .mt_20 {
    margin-top: 3vw;
  }

  .mb_20 {
    margin-bottom: 3vw;
  }
}
