/* 重置
   ========================================================================== */
/*重置padding margin*/

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
    /* 09版 */
    -webkit-box-pack: center;
    /* 12版 */
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    /* 其它取值如下：
      align-items     主轴原点方向对齐
      flex-end        主轴延伸方向对齐
      space-between   等间距排列，首尾不留白
      space-around    等间距排列，首尾留白
     */
}

/* 两端对齐*/
.flex-bt {
    /* 09版 */
    -webkit-box-pack: space-between;
    /* 12版 */
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}

/* 两端对齐*/
.flex-ar {
    /* 09版 */
    -webkit-box-pack: space-around;
    /* 12版 */
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}
.card-list .item {
    position: relative;
    width: 580px;
    height: 320px;
    overflow: auto;
    border: 1px solid #979797;
    padding: 20px 30px;
    margin: 20px 0;
    background: url("../images/bk-card.png") no-repeat bottom right;
    background-size: auto;
    box-sizing: border-box;
    -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
}


.card-list .item:hover {
    -webkit-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    -moz-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
}

.card-list .name {
    text-align: left;
    margin-bottom: 10px;
}

.card-list .name span {
    font-size: 20px;
    color: #1c5ca3;
    font-weight: bold;
    position: relative;
    padding: 10px;
}

.card-list .name span:before {
    content: '「';
    font-size: 20px;
    color: #1c5ca3;
    font-weight: bold;
    position: absolute;
    left: -10px;
    top: 6px;
}

.card-list .name span:after {
    content: '」';
    font-size: 20px;
    color: #1c5ca3;
    font-weight: bold;
    position: absolute;
    right: -10px;
    top: 6px;
}

.card-list .business,
.card-list .air-line {
    font-size: 18px;
    color: #2F8BD4;
    margin-bottom: 10px;
    line-height: 1.6;
}

.card-list .air-line {
    color: #333;
}

.card-list .business .title,
.card-list .air-line .title {
    display: block;
    text-align: left;
}

.card-list .other .title {
    width: 100px;
    text-align: left;
}
.card-list-en .other .title{
    width: auto;
}
.card-list ul .business .content,
.card-list ul .air-line .content {
    max-height: 56px;
    overflow: hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}

.card-list ul .business .content,
.card-list ul .air-line .content {
    max-height: 56px;
    overflow: hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}

.card-list ul .other .content{
    width: 440px;
}

.card-list-en ul .other .content{
    width: auto;
}

.card-list .other {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.card-list.card-list-en .other .title{
    color: #333;
}

.card-list .other .content {
    color: #666;
}

.card-list .btn-more {
    position: absolute;
    right: 30px;
    bottom: 20px;
    text-align: right;
    margin-top: 10px;
}

.card-list .btn-more a {
    color: #666;
}
.main-content {
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 120px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;

}

.text-white {
    color: #fff;
}

.ft-color6{
    color: #666;
}

.ft-color3{
    color: #333;
}



/* 布局
   ========================================================================== */
/*布局*/
.fixed {
    position: fixed;
    top: 0px;
    z-index: 500;
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.relative {
    position: relative;
}

.mb40 {
    margin-bottom: 40px;
}

.mt40 {
    margin-top: 40px;
}

.fr {
    float: right !important;
}

.fl {
    float: left !important;
}

.bk-f1 {
    background-color: #F1F1F1;
}

.bk-img1 {
    background-image: url("../image/bk-news.jpg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top left;
}

/* flex布局
   ========================================================================== */
/* 父元素-flex容器 */
.flex {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* 父元素-横向排列（主轴） */
.flex-h {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */
    -webkit-box-orient: horizontal;
    /* 12版 */
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}

/* 父元素-横向换行 */
.flex-hw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
    /* 09版 */
    -webkit-box-pack: center;
    /* 12版 */
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    /* 其它取值如下：
      align-items     主轴原点方向对齐
      flex-end        主轴延伸方向对齐
      space-between   等间距排列，首尾不留白
      space-around    等间距排列，首尾留白
     */
}

/* 两端对齐*/
.flex-bt {
    /* 09版 */
    -webkit-box-pack: space-between;
    /* 12版 */
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}

/* 两端对齐*/
.flex-ar {
    /* 09版 */
    -webkit-box-pack: space-around;
    /* 12版 */
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}

/* 父元素-纵向排列（主轴） */
.flex-v {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */
    -webkit-box-orient: vertical;
    /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

/* 父元素-纵向换行 */
.flex-vw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
    /* 09版 */
    -webkit-box-align: center;
    /* 12版 */
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

.flex-end {
    /* 09版 */
    -webkit-box-align: flex-end;
    /* 12版 */
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
}

.flex-stretch {
    /* 09版 */
    -webkit-box-align: stretch;
    /* 12版 */
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
}


/*世界地图*/
.world-map-sec .world-map {
    width: 100%;
    height: 700px;
    position: relative;
}

.world-map-sec .map-img {
    width: 100%;
    height: 100%;
    /*background-image: url("../images/inex-map-world-map.jpg");*/
    background-image: url("../image/index-all-map.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position-x: center;
    background-position-y: 0px;
}

.world-map-sec .area-name {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    font-size: 28px;
    font-weight: bold;
    color: #1c5ca3;
}

.world-map-sec .area-name .item {
    position: absolute;
}

.world-map-sec .map-contents {
    position: absolute;
    cursor: pointer;
}

.world-map-sec .country {
    position: absolute;
    top: -98px;
    left: -30px;
    display: none;
    z-index: 2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.world-map-sec .country-name {
    width: 100px;
    height: 60px;
    text-align: center;
    /*line-height: 60px;*/
    /*display: inline-block;*/
    font-size: 18px;
    color: #1c5ca3;
    border: 2px solid #1c5ca3;
    background-color: rgba(255, 255, 255, 0.76);
    position: absolute;
    box-sizing: border-box;
}

.world-map-sec .line {
    width: 1px;
    display: inline-block;
    height: 50px;
    border-right: 1px dotted #1c5ca3;
    position: absolute;
    top: 62px;
    left: 50px;
}

.world-map-sec .cir-bg {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.world-map-sec .cir-pos {
    position: relative;
    width: 100%;
    height: 100%;
}

.world-map-sec .dot {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(42, 23, 116, 0.2);
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
}

.world-map-sec .pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: rgba(42, 23, 116, 1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    -webkit-animation: warn 2s ease-out infinite;
    -moz-animation: warn 2s ease-out infinite;
    animation: warn 2s ease-out infinite;
    box-shadow: 1px 1px 30px #fff;
}

.world-map-sec .pulse1 {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: rgba(42, 23, 116, 0.6);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    -webkit-animation: warn1 2s ease-out infinite;
    -moz-animation: warn1 2s ease-out infinite;
    animation: warn1 2s ease-out infinite;
    box-shadow: 1px 1px 30px #fff;
}

.world-map-sec .country.country-groups {
    background-color: rgba(42, 23, 116, 0.5);
    width: 220px;
    max-height: 280px;
    overflow: hidden;
    border-radius: 12px;
    color: #fff;
}

.world-map-sec .country-groups .box {
    margin: 20px;
}

.world-map-sec .group-name {
    font-size: 18px;
    border-bottom: 1px solid #D8D8D8;
    padding: 0 10px 10px 0px;
}

.world-map-sec .country-list {
    max-height: 200px;
    overflow: auto;
    margin-top: 10px;
}

.world-map-sec .country-list .item {
    margin: 5px 0;

}

@keyframes warn {
    0% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.0;
    }

    25% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.1;
    }

    50% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.3;
    }

    75% {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
}

@keyframes warn1 {
    0% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.0;
    }

    25% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.1;
    }

    50% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.3;
    }

    75% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        opacity: 0.0;
    }
}

.ff{ background: #fff; padding: 50px 0}


