/*公用变量*/
/*初始化样式*/
body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select {
    margin: 0;
    padding: 0;
}
body {
    font: 14px "微软雅黑", "Arial Narrow", HELVETICA;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    color: #666666;
}
a {
    color: #666666;
    text-decoration: none;
}
a:hover {
    color: #666666;
    text-decoration: none;
    cursor: pointer;
}
em {
    font-style: normal;
}
li {
    list-style: none;
}
img {
    border: 0;
    vertical-align: middle;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
p {
    word-wrap: break-word;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.clearfix {
    *zoom: 1;
}
.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}
.clearfix:after {
    clear: both;
}
.rel {
    position: relative;
}
.abs {
    position: absolute;
}

.anima {
    -webkit-transition: .3s time;
    -moz-transition: .3s time;
    -ms-transition: .3s time;
    -o-transition: .3s time;
    transition: .3s time;
}
body .hidden {
    display: none;
}
.ovh {
    overflow: hidden;
}

.texta_l{
    text-align: left;
}

.texta_r{
    text-align: right;
}

.mid_box{
    width: 1000px;
    margin: 0 auto;
}

.disblock{
    display: block;
}

.cur{
    cursor: pointer;
}

p{
    opacity: 1;
    line-height: 23px;
}

/*雪碧图*/
.img{background:url(../images/umlx/feigexuebi.png)  no-repeat;display:block;}
.weibo{height:21px;width:27px;background-position:0 0;}
.linux{height:39px;width:33px;background-position:0 -21px;}
.mac{height:40px;width:35px;background-position:0 -60px;}
.win8{height:37px;width:38px;background-position:0 -100px;}
.android{height:46px;width:39px;background-position:0 -137px;}
.logo{height:30px;width:157px;background-position:0 -183px;}
.feigelogo{height:30px;width:30px;background-position:0 -183px;}

/*动画*/

.animated {
  -webkit-animation-duration: .8s;
  -moz-animation-duration: .8s;
  -o-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.fadeInUpsmall {
  -webkit-animation-name: fadeInUpsmall;
  -moz-animation-name: fadeInUpsmall;
  -o-animation-name: fadeInUpsmall;
  animation-name: fadeInUpsmall;
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }
  to {
    transform: none;
    color:#fff;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInUpsmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpsmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@keyframes fontani {
    from {
        opacity: 0;
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
        -moz-transform: matrix(1, 0, 0, 1, 0, 0);
        -ms-transform: matrix(1, 0, 0, 1, 0, 0);
        -o-transform: matrix(1, 0, 0, 1, 0, 0);
        transform: matrix(1, 0, 0, 1, 0, 0);
        /*        transform: matrix(1, 0, 0, 1, -20, 0);*/
    }
    to {
        opacity: 1;
        -webkit-transform: matrix(1, 0, 0, 1, -20, 0);
        -moz-transform: matrix(1, 0, 0, 1, -20, 0);
        -ms-transform: matrix(1, 0, 0, 1, -20, 0);
        -o-transform: matrix(1, 0, 0, 1, -20, 0);
        transform: matrix(1, 0, 0, 1, -20, 0);
    }
}
@-webkit-keyframes fontani {
    from {
        opacity: 0;
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
        -moz-transform: matrix(1, 0, 0, 1, 0, 0);
        -ms-transform: matrix(1, 0, 0, 1, 0, 0);
        -o-transform: matrix(1, 0, 0, 1, 0, 0);
        transform: matrix(1, 0, 0, 1, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: matrix(1, 0, 0, 1, -20, 0);
        -moz-transform: matrix(1, 0, 0, 1, -20, 0);
        -ms-transform: matrix(1, 0, 0, 1, -20, 0);
        -o-transform: matrix(1, 0, 0, 1, -20, 0);
        transform: matrix(1, 0, 0, 1, -20, 0);
    }
}

.fontani{
    -webkit-animation-name: fontani;
    -moz-animation-name: fontani;
    -o-animation-name: fontani;
    animation-name: fontani;
}

.fadeIn{
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

@keyframes fadeIn {
    from{
        opacity: 0;
    }
    to{
        opacity:1;
    }
}

@-webkit-keyframes fadeIn {
    from{
        opacity: 0;
    }
    to{
        opacity:1;
    }
}

/*header*/
header{
    width:100%;
    height:80px;
    background-color: #fff;
}

.header_container{
    width:1000px;
    height:100%;
    margin: 0 auto;
    overflow:hidden;
}

.header_container img{
    margin-top: 22px;
}

.head_nav{
    margin-left: 73px;
}

.head_nav li{
    float:left;
    cursor:pointer;
    animation-duration: .2s;
}

.head_nav a{
    display:block;
    padding:0 18px;
    font-weight: bold;
    line-height: 80px;
    -webkit-animation-duration: .2s;
    -moz-animation-duration: .2s;
    -o-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

.head_nav li:hover a{
    animation-name: bounceInDown;
    background-color: #ff642b;
}

.head_nav a.on{
    background-color: #ff642b;
    color:#fff;
}

.weibobox .weibo{
    margin-top: 28px;
    margin-right: 10px;
}

.weibobox a{
    line-height: 80px;
    color:#2c89d0;
}

.con_top{
    width:100%;
    height:400px;
    background: url(../images/umlx/feibg.jpg) no-repeat;
    background-size: cover;
}

.con_box{
    width:935px;
    height:400px;
    margin: 0 auto;
}

.con_lbox{
    color:#fff;
}

.con_lbox .p1{
    margin-top: 95px;
    font-size: 54px;
    font-weight: bold;
    line-height: 58px;
}

.con_lbox .p2{
    margin-top: 15px;
    font-size: 30px;
}

.con_lbox .p3{
    margin-top: 25px;
}
.con_lbox .p4{
    margin-top: 4px;
}

.con_lbox i{
    font-style:normal;
    margin-right: 17px;
}

.down_now{
    width: 210px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 30px;
    border: 1px solid #fff;
    margin-top: 30px;
    cursor: pointer;
    transition: .5s;
    -webkit-transition: .5s;
    display: block;
    color: #fff;
}

.down_now:hover{
    background-color: #fff;
    color:rgb(255,168,24);
}

.con_rbox .phone{
    margin-top: 55px;
    margin-right: 30px;
}

.con_rbox .pc{
    margin-top: 55px;
}

.con_news{
    width:1000px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.first_news{
    width:512px;
    height:110px;
    overflow:hidden;
    margin-top: 30px;
    position:relative;
}

.first_news .more_a{
    position:absolute;
    right:0;
    bottom: -4px;
    color: #307ad6;
    background-color: #fff;
    padding: 2px;
}

.first_news a,.news_detail a{
    text-decoration: underline;
	color:#307ad6;
}

.first_news h2{
    font-size: 18px;
    margin-bottom: 20px;
    color:#333;
}

.news_box{
    width:425px;  
}

.new_top{
    border-bottom: 2px solid #dcdcdc;
    line-height: 45px;
    margin-top: 5px;
}

.new_top i{
    font-style: normal;
    line-height: 45px;
    display: inline-block;
    border-bottom: 2px solid #ff642b;
    width: 4em;
    position: relative;
    top: 2px;
}

.new_top a{
    color:#307ad6;
}

.news_list{
    margin-top: 20px;
}

.news_list a{
    line-height: 24px;
    width: 425px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
    display: block;
}

.news_list i{
    font-style: normal;
   
}

.newsdate{
    margin-right: 15px;
}

.lxab{
    display:block;
    margin: 40px auto;
    width:1000px;
    margin-bottom: 5px;
    height:100px;
}

.down_box{
    width:1000px;
    margin: 0 auto;
    margin-bottom: 35px;
}

.down_box h1{
    font-size: 20px;
    font-weight: normal;
    margin-top: 35px;
    margin-bottom: 25px;
}

.down_ulfirst{
    float:right;
    width:500px;
}

.border_bottom_no{
    border-bottom: none !important;
}

.down_ul.down_ulfirst li{
    float:inherit;
    width:100%;
}

.pcbox{
    padding: 50px;
    box-sizing: border-box;
    width: 500px;
    height: 259px;
    border: 1px solid #dcdcdc;
    border-right: 0;
    padding-right: 30px;
}
.rightbox{
	border-right: 1px solid #dcdcdc;
}

.qtbox {
	height: 230px;
}
.pcbox .downicon{
    margin-right: 30px;
}

.pcbox .downicon i{
    margin:0 auto;
    margin-top: 20px;
    margin-bottom: 5px;
}

.down_ul li{
    width:50%;
    padding:28px 30px;
    float:left;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
}

.down_ul li .img{
    margin-top: 15px;
    margin-right: 25px;
}

.version h3{
    display:inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    color:#333;
}

.version i{
    font-style: normal;
    font-size: 12px;
    margin-left: 15px;
}

.down_ul .first_li{
    border-right: 0;
    border-bottom: 0;
}

.down_ul .first_li2{
    border-right: 0;
}

.downbtn{
    width:90px;
    height:32px;
    text-align: center;
    line-height: 32px;
    background-color: #ff642b;
    color:#fff;
    border-radius: 30px;
    margin-top: 15px;
    float:right;
    transition:.3s;
    -webkit-transition:.3s;
}

.downbtn:hover{
    color:#fff;
    background-color: #ef4406;
}

.feigefooter{
    width:100%;
    background-color: #2a2a2a;
    display: table;
}

.feigefooter a{
   color:#fff;
   margin-right: 15px;
}

.friend_a{
    margin-bottom: 30px;
}

.feigefooter .container{
    width:1000px;
    margin: 50px auto;
    text-align: center;
    color:#fff;
    opacity:.7;
}

/*新闻页*/

.newstop{
  width:100%;
  height:350px;
  background:url(../images/umlx/newstop.jpg) no-repeat;
  background-size: cover;
}

.newscon_box{
  width:1000px;
  margin: 30px auto;
}

.list_left{
  width:682px;
  box-sizing: border-box;
  border-top: 1px solid #dcdcdc;
  margin-top: 30px;
  border-right: 1px solid #dcdcdc;
}

.list_left .fr{
  padding-right: 30px;
  color:#666;
  font-weight: normal;
}

.list_left li{
  border-bottom:1px solid #dcdcdc;
}

.list_left li a{
  line-height: 60px;
  color:#3b7bd1;
  font-size: 14px;
  font-weight: bold;
}

.list_right{
  width:318px;
  box-sizing: border-box;
  border-top: 1px solid #dcdcdc;
  margin-top: 30px;
}

.list_right img{
  margin-left: 24px;
  margin-top: 24px;
}

.mbbox a{
  vertical-align: middle;
  margin-left: 5px;
}

.news_detail_box i{
  font-style: normal;
}

.news_detail_box h1{
  font-size: 18px;
  color:#333;
  margin-top: 22px;
  margin-bottom: 15px;
}

.news_detail{
  padding-right: 20px;
}

.new2{
  padding-bottom: 20px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 30px;
}

.page_box{
  display: table;
  margin: 30px auto;
  margin-bottom: 10px;
}

.ui-pagination-container .ui-pagination-page-item.active{
    background: #ff642b !important;
    border-color: #ff642b !important;
}

.page_box .ui-pagination-container .ui-pagination-page-item:hover{
    border-color: #ff642b !important;
    color:#ff642b;
}

.ui-pagination-container .ui-pagination-page-item.active:hover{
  color:#fff !important;
}

/*使用指南*/
.guide_box{
  width:1000px;
  margin:0 auto;
}

.guide_nav{
  height:100%;
}

.guide_nav h1{
  font-size: 30px;
  color:#333;
  font-weight: bold;
  margin-top: 44px;
  margin-bottom: 20px;
}

.guide_nav li{
  line-height: 40px;
  font-size: 18px;
  padding-left: 20px;
  position:relative;
  box-sizing: border-box;
  width:220px;
  cursor:pointer;
}

.guide_nav .on{
  color:#ff642b;
  font-weight: bold;
  white-space: nowrap;
}

.guide_nav .on:before{
    content: '.';
    position: absolute;
    width: 2px;
    height: 2px;
    left: 1px;
    font-size: 30px;
    top: -8px;
}

.guide_detail_list{
  width:780px;
  padding-left: 45px;
  padding-top: 55px;
  box-sizing: border-box;
  border-left: 1px solid #dcdcdc;
}

.guide_detail_list h2{
  font-size: 18px;
  color:#333;
  margin-top: 40px;
  margin-bottom: 20px;
}

.guide_detail_list p {
  text-indent: 2em; 
}

.guide_detail_list>li{
  display:none;
}

.gui_top_banner{
  width:100%;
  overflow:hidden;
}

.gui_top_banner img{
  width:100%;
}

.donation_imgbox{
  display:none;
}

.maney_tab{
  margin-top: 15px;
  margin-bottom: 30px;
}

.maney_tab li{
    display: inline-block;
    background: #FCD8CA;
    margin: 0;
    padding: 10px 20px;
    border: solid 1px #D4D4CF;
    cursor:pointer;
}

.maney_tab li.on{
      border-bottom: 0;
    background: #FFF;
    border-top: solid 2px #FEA786;
}

.jz_box p{
  text-indent: 0em;
  line-height: 40px;
}

.tel p{
  line-height: 30px;
}

.tel{
  margin-bottom: 20px;
}

.about_list{
  padding-bottom: 150px;
}

.info_box p{
  line-height:40px;
  text-indent: 0; 
}