@charset "utf-8";
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size:62.5%;
  /*font-family: GoodOT-Book,Helmet,Freesans,Helvetica,Arial,sans-serif;*/
  font-family: "Roboto", Helvetica, arial, 'Microsoft YaHei',"微软雅黑",sans-serif;
}

body, html {
  height: 100%;
  font-size: 62.5%
}

a {
  color: #ffffff;
  text-decoration: none;
}

p {
    display: block;
    margin: 1em 0 1em 0;
    color: #262626;
    white-space: normal;
}

.shadow{
   box-shadow: 0 0 12px rgba(0,0,0,0.2);
}
.clear{
  width: 0;
  height: 0;
  padding:0;
  margin:0;
  clear: both;
}


/* ------------PC_Nav---------------- */

.header_pc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgba(0, 122,188, 0.7);
    /*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);*/
    z-index: 2;
}
   .cd-site-nav ul {
        max-width: 1100px;
        overflow: hidden;
        height: 50px;
        margin:0 auto;
        line-height: 50px;
        text-align: center;
    }
          .cd-site-nav ul li {
              display: inline-block;
              vertical-align: middle;
              height: 50px;
          }  
          .cd-site-nav a {
              display: inline-block;
              height: 50px;
              background: transparent;
              padding: 0 25px;
              color:#fff;
              /*text-transform: uppercase;*/
              font-weight:normal;
              font-size: 18px;
              font-size: 1.8rem;
              font-family: 'Guardian Text Sans Web',TextSans,Arial,sans-serif;
          }

          .header_phone{
              display: none;
          }
          .header_phone_nav{
              display: none;
          }

/* ------------Phone_Nav---------------- */
@media only screen and (max-width: 768px) {

  .header_phone{
      display: block;
      z-index: 2;
      position: fixed;
      width: 100%;
      height: 44px;
      top: 0;
      z-index: 999;
      background: #ffffff;
      transition:all 0.4s cubic-bezier(0.4, 0, 0, 1);
      -webkit-transform:translate(-0, -44px);
      transform:translate(0, -44px);
  }
  /*--当top大于0时出现导航栏H44;js控制--*/
  .header_phone.open{
      -webkit-transform:translate(0, 0);
      transform:translate(0, 0);
  }
  /*--当top大于0时出现导航栏H44;js控制--*/
      .header_phone  #cd-logo {
          float: left;
          margin-left:3%;
          width: 90px;
          height: 30px;
          margin-top: 7px;
      }    
        .header_phone #cd-logo img {
           display: block;
           width: 100%;
           height: 100%;
        }


      /*--ICON--*/  
      .header_phone .sections-button {
          display: block;
          position: absolute;
          right: 0;
          top: 0;
          height: 100%;
          width: 50px;
      }
          .sections-button .cd-menu-icon {
              display: inline-block;
              position: absolute;
              width: 18px;
              height: 2px;
              left: 50%;
              top: 50%;
              bottom: auto;
              right: 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%);
              background-color: #000000;
              -webkit-transition: background-color 0.3s;
              -moz-transition: background-color 0.3s;
              transition: background-color 0.3s;
          }
          .sections-button .cd-menu-icon::before, .sections-button .cd-menu-icon:after {
              content: '';
              width: 100%;
              height: 100%;
              position: absolute;
              background-color: #000000;
              right: 0;
              -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
              -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
              transition: transform .3s, top .3s, background-color 0s;
          }
          .sections-button .cd-menu-icon::before {
              top: -5px;
          }
          .sections-button .cd-menu-icon::after {
              top: 5px;
          } 
          .sections-button .cd-menu-icon.is-clicked {
              background-color: rgba(255, 255, 255, 0);
          }
          .sections-button .cd-menu-icon.is-clicked::before, .sections-button .cd-menu-icon.is-clicked::after {
              background-color: #000000;
          }
          .sections-button .cd-menu-icon.is-clicked::before {
              top: 0;
              -webkit-transform: rotate(135deg);
              -moz-transform: rotate(135deg);
              -ms-transform: rotate(135deg);
              -o-transform: rotate(135deg);
              transform: rotate(135deg);
          }
          .sections-button .cd-menu-icon.is-clicked::after {
              top: 0;
              -webkit-transform: rotate(225deg);
              -moz-transform: rotate(225deg);
              -ms-transform: rotate(225deg);
              -o-transform: rotate(225deg);
              transform: rotate(225deg);
          }
          /*--ICON--*/  


  /*--二级导航展开的下拉列表--*/
  .header_phone_nav .cd-primary-nav {
      display: block;
      position: fixed;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      background: rgba(255, 255, 255, 1);
      z-index: 2;
      text-align:left;
      padding: 50px 0;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      overflow: auto;
      padding-top: 25%;

      /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
      -webkit-overflow-scrolling: touch;
      -webkit-transform: translateY(-100%);
      -moz-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
      -o-transform: translateY(-100%);
      transform: translateY(-100%);
      -webkit-transition-property: -webkit-transform;
      -moz-transition-property: -moz-transform;
      transition-property: transform;
      -webkit-transition-duration: 0.4s;
      -moz-transition-duration: 0.4s;
      transition-duration: 0.4s;
  }
  .cd-primary-nav.is-visible {
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0);
  }
      .header_phone_nav .cd-primary-nav a {
          display: block;
          font-size: 20px;
          font-size: 1.375rem;
          font-weight: 300;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          margin: .2em 0;
          text-transform: capitalize;
          border-bottom: 1px solid #333333;
          margin-right: 60px;
          margin-left:60px;  
      }
      .header_phone_nav .cd-primary-nav a li{
          line-height: 32px;
          font-size: 18px;
          font-size: 1.8rem;
          font-weight: 400;
          padding: .6em 0em;
          color: #333333;
          
      }
      /*.header_phone_nav .cd-primary-nav a:hover {
        background-color: #c31e1e;
        color: #ffffff;
      }*/
  /*--二级导航展开的下拉列表--*/

              
  .header_pc{
    display: none;
  }
  .header_phone_nav{
    display: block;
  }

}


/* ------------Main---------------- */
.cd-main-content {
    height: 100%;
    position: relative;
    z-index: 1;
}


/* ------------PART1:BANNER---------------- */

.banner-pc{
  height: 100%;
  overflow: hidden;
  background:url("https://nfcms-mainsiteoss.southcn.com/newsgd/__tpl_asset/zt/img/977ef822ce_bannerbg1920.jpeg") no-repeat center center;
  background-color: #008dc9;
}
  /*.banner-pc .updown{
        width: 32px;
        height: 32px;
        position: absolute;
        left: 50%;
        bottom: 5%;
        right: auto;
        -webkit-transform: translateX(-50%) ;
        -moz-transform: translateX(-50%) ;
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        background-image: url("images/godown1.png");
        background-position: 0 0;
        background-size: 100% 100%;
    }*/
.banner-phone{
  display: none;
}
/*向下按钮*/
  .godown {
      position: absolute;
      left: 50%;
      bottom: 6%;
      z-index: 1000;
      width: 20px;
      height: 20px;
      margin-left: -12px;
      animation: next 1s linear infinite;

  }
  .godown span {
      display: block;
      width: 25px;
      height: 25px;
      background: url(https://nfcms-mainsiteoss.southcn.com/newsgd/__tpl_asset/zt/img/1f837e20cb_godown1.png) no-repeat;
      /*background: url(https://nfcms-mainsiteoss.southcn.com/newsgd/__tpl_asset/zt/img/8fed72a8d6_godown1.png) no-repeat; */ 
  }
  @-webkit-keyframes next{
      0%{bottom:4%;}
      50%{bottom:6%;}
      100%{bottom:4%;}
    }
  @keyframes next{
    0%{bottom:4%;}
    50%{bottom:6%;}
    100%{bottom:4%;}
  }
  /*向下按钮*/

@media only screen and (max-width: 768px) { 
  .banner-pc{
    display: none;
  }
  .banner-phone{  
    display: block;         
    width: 100%;
    overflow: hidden;
    background-color: #008dc9;
  }
    .banner-phone img{         
       width: 100%;
       border: 0;
  }


}


/* ----PART2 PART3:cd-fixed-bg---------*/
.cd-fixed-bg {
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    overflow: hidden;
    z-index: 1;
}  
      .fixed-text-content{
          position: absolute;
          z-index: 10;
          left: 0;
          bottom: 25%;
          width: 100%;
          text-align: left; 
      }   
          .fixed-text-content h2{    
              font-size: 80px;
              font-weight:bold; 
              margin-bottom: 50px; 
              color: #125db8;
              display:inline-block;
              background-color: #ffffff;
              opacity:.8;
              padding:25px 30px;
              /*text-shadow:#ffffff 2px 0 0,#ffffff 0 2px 0,#ffffff -2px 0 0,#ffffff 0 -2px 0;
              -webkit-text-shadow:#000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0;
              -moz-text-shadow:#000 1px 0 0,#000 0 1px 0,#000 -1px 0 0,#000 0 -1px 0;
              *filter: Glow(color=#000, strength=1);*/
           }

          
          .fixed-text-content h1{    
              font-size: 34px;
              line-height:50px;
              font-weight:bold;    
              color: #ffffff;
              margin-left:2%;
          }
          .fixed-text-content p{
              font-size:22px;
              line-height:36px;
              color: #ffffff;
              text-indent:0em;
              margin:0 auto;
              margin-bottom: 2rem;
              width: 60%;
              font-weight:400;
          }
             .fixed-text-content p.big:first-letter{       
                  font-size: 70px;
                  line-height: 70px;
                  float: left;
              }
          .fixed-text-content h3{    
              font-size: 60px;
              line-height:85px;
              font-weight:bold;    
              color: #ffffff;
              margin-left:2%;
              margin-bottom: 10px;
              display:inline-block;
              border-bottom: 6px solid #4191fe;
          }


      .fixed-bg-img{
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 2;
          display: block;
          /*clip: rect(0,auto,auto,0);
          -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);*/

      }
          .section-bg-fixed{
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              z-index: 3;
              bottom: 0;
              right: 0;
              margin-left:0;
          }
            .section-bg-fixed img{
               object-fit:cover;
            }
.dore{
  display: block;
  text-align: center;
  color: #efa302;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
.dore{
   margin-top:3rem;
}
   .fixed-text-content{
          width: 100%;
          margin:0 auto; 

      }   

  .fixed-text-content h2{    
      font-size:6rem;
      line-height: 6.2rem;
      background-color: #ffffff;
      opacity:.8;
      font-weight:bold; 
      margin-bottom: 3rem; 
      color: #125db8;
      padding:2rem 2rem;
  }
  
  .fixed-text-content h1{    
    font-size: 2.5rem;
    line-height:3.2rem;
    margin:0;
    margin-left:5%;
  }
  .fixed-text-content p{ 
    display: block;   
    font-size: 1.6rem;
    line-height:2.4rem;
    width:90%; 
    margin:0 auto;
    color:#ffffff;
  }

  .fixed-text-content h3{    
      font-size:4rem;
      line-height: 5rem;
      font-weight:bold;    
      color: #ffffff;
      margin-left:5%;
      margin-bottom: 1rem;
      display:inline-block;
      border-bottom:0.4rem solid #4191fe;
  }

  .fixed-bg-img{
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 2;
  }
      .section-bg-fixed img{
          object-fit:cover;
      }
}
@media only screen and (min-width: 768px) {
  .fixed-bg-img{
    clip: rect(0,auto,auto,0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  .cd-fixed-bg.hidd{
      display: none;
    }
  
}

/* ----PART2 PART3:cd-fixed-bg---------*/


/* -------PART4:视频-------------------*/
.video{
  position: relative;
  margin: 0 auto;
  height: 100%;
}
  .video .vedioin {
    height: inherit;
  }
  .video .BeltAndRoad-dimensions{
        width: 100%;
        height: 100%;
        display: block;
        overflow: hidden;
  }
      /*对插件另外的样式修改：*/
      .video .vjs-poster{background-size: cover;}
      .video-js {
        width: 100%;
        height: 100%;
        border:0px;
        margin:0px;
        padding:0px;
      }
      .video-js .vjs-big-play-button {
        display: none;
      }
@media only screen and (max-width: 768px) {
  .video {
    position: relative;
    height:210px;
    z-index: 2;
  }
}
/* -------PART4:视频-------------------*/


  
/* ------------cd-scrolling-bg---------------- */
.cd-scrolling-bg {
    position: relative;
    min-height: 100%;
    z-index: 2;
    overflow-x: hidden;
}
.cd-color-1 {
    background:url("https://nfcms-mainsiteoss.southcn.com/newsgd/__tpl_asset/zt/img/ae20792bb4_bg1-1920.jpeg") no-repeat center top;
    height: 100%;
}
.cd-color-2 {
    background:url("https://nfcms-mainsiteoss.southcn.com/newsgd/__tpl_asset/zt/img/162858acf4_bg2-1920.jpeg") no-repeat center top;
    height: 100%;
}
.cd-color-3 {
    background:url("https://nfcms-mainsiteoss.southcn.com/newsgd/__tpl_asset/zt/img/ff17e0e13c_bg3-1920.jpeg") no-repeat center top;
    height: 100%;
}
.cd-color-4 {
    background:url("https://nfcms-mainsiteoss.southcn.com/newsgd/__tpl_asset/zt/img/5bc05c2010_bg4-1920.jpeg") no-repeat center top;
    height: 100%;
}
.cd-color-5 {
    background:url("https://nfcms-mainsiteoss.southcn.com/newsgd/__tpl_asset/zt/img/c67e6fac17_bg5-1920.jpeg") no-repeat center top;
    height: 100%;
}





     .story-content{
          margin: 0 auto;
          max-width: 1400px;
          padding: 0px 30px;
          font-size: 20px;
          line-height: 1.7;
          overflow-wrap: break-word;
          word-wrap: break-word;
          word-break: break-word;
          font-size: 18px;
          position:relative;
          z-index: 99;

          height: 100%;
      }

        .story-content .story-content-side{
            margin-left:  50%;
            background:rgba(255,255,255,.8);
            padding: 30px 30px;
            min-height: 100%;
            height: auto;
        }
        .story-content .story-content-side .people-title{
               text-align: center;
               display: block;
          }

        .story-content .story-content-side.left-side{
           margin-right: 50%;
            margin-left:  0%;
        }
          

          .story-content .story-content-side p{
             margin-top:0px
          }

          .story-content .story-content-side  a{
            display: block;
            text-align: center;
            color: #078dc4;
            font-size: 2rem;
          }
          .story-content .story-content-side .inline-image{
             margin-bottom:10px;
          }
          .story-content .story-content-side .people-title{
             text-align: center;
             display: block;
          }
          /*----yinhao------*/
        .quoteHolder{
            width: 100%;
            position: relative;
        }
          .quoteHolder div {
              position: absolute;
              top: -4px;
          }
          .quoteHolder h1 {
              font-family: Times,serif;;
              font-style: normal;
              font-weight: normal;
              speak: none;
              font-size: 80px;
              display: inline-block;
              text-decoration: inherit;
              text-align: center;
              font-variant: normal;
              text-transform: none;
              margin: 0;
              padding: 0;
          }
          .quoteHolder p {
              font-family: Times,serif;
              font-size: 32px;
              font-size:3.2rem;
              font-style: italic;
              font-weight: normal;
              padding-left: 50px;
              line-height: 1.3;
          }

@media only screen and (max-width: 768px) {
  .cd-scrolling-bg {   
    height: auto;
}
      .story-content{
            padding: 0px;
            height: auto;
        }
        .story-content .story-content-side{
            margin-left:0;
            background:#ffffff;
            padding: 20px 20px;
            min-height: auto;
            height: auto;
        }

      .story-content .story-content-side.left-side{
          margin-right:0;
          margin-left:0;
      }
      .story-content .image-con img{
                width: 100%;
      }
}
/* ------------cd-color---------------- */



/* ------------尾部------------------*/
.m-ft {
  line-height: 50px;
  border-top: 1px solid #3a3a3a;
  color: #cccccc;
  text-align: center;
  background-color: #4b4b4b;
  font-size: 16px;
  color: #cccccc;
}
  .m-ft a { 
    font-size: 16px;
    color: #cccccc;
  } 
  .m-ft span{
    padding: 0 12px;
  }
  .m-ft p{
    margin-bottom: 0px;
    color: #cccccc;
  }

.m-ft-phone{   
  display: none;
}
.m-ft{   
  display:block;
}
  

@media (max-width:768px) {
  .m-ft{   
    display:none;
  }
  .m-ft-phone{   
    display: block;
  }
  
  .m-ft-phone{
      width: 100%;
      display: block;
      margin:0;
      padding: 0;
      color: #626262;
      background-color: #333333;
      height: 80px;
    }
      .m-ft-phone p.fnav-phone{
        background-color: #444;
        overflow: hidden;
        margin:0;
      }
      .m-ft-phone a{
            width: 33.33333%;
            display: block;
            float: left;
            text-align: center;
            font-size: 14px;
            height: 40px;
            line-height: 40px;
            color: #aaa;
            vertical-align:center;
      }
      .m-ft-phone .cp-phone {
            text-align: center;
            font-size: 12px;
            color: #999;
            background-color: #333;
            height: 40px;
            line-height: 40px;
            margin:0;
        }
}






