.table {
    word-break: break-word;
    border-bottom: 4px solid #D1D1D1;
    font-size: 0.9375rem
}

.table .tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%
}

.table .td {
    padding: 40px 30px
}

.table .td .zh {
    font-weight: 400
}

.table .td .en {
    margin-left: 10px;
    font-weight: 500
}

.table>.scroll-wrap {
    overflow-y: hidden;
    overflow-x: auto
}

.table .table-header {
    z-index: 1;
    position: sticky;
    top: 0
}

.table .table-header .thead {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    padding-bottom: 8px;
    position: relative
}

.table .table-header .thead:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: #3051a2
}

.table .table-header .thead .th {
    padding: 10px;
    min-height: 68px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #EFEFEF
}

.table .table-header .thead .th:not(:first-child) {
    margin-left: 1px
}

.table .table-header .thead .th.rwd-title+.th {
    margin-left: 0
}

.table .table-content {
    position: relative
}

.table .table-content .cover-tip {
    opacity: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0
}

.table .table-content .cover-tip.cover-active {
    opacity: 1
}

.table .table-content .cover-tip.show {
    display: block
}

.table .table-content .cover-tip.show+.scroll-wrap:before {
    opacity: 1
}

.table .table-content .tip-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.table .table-content .tip-wrap p {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: #fff
}

.table .table-content .tip-wrap .line {
    margin: 20px auto 0;
    width: 120px;
    height: 1px;
    background: #fff;
    position: relative
}

.table .table-content .tip-wrap .line:after,
.table .table-content .tip-wrap .line:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #3051a2;
    border-radius: 500px
}

.table .table-content .tip-wrap .line:before {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.table .table-content .tip-wrap .line:after {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.table .table-content .tip-wrap .line img {
    width: 35px;
    z-index: 1;
    position: absolute;
    top: -5px;
    left: -20px;
    -webkit-animation-name: slip;
    animation-name: slip;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

@-webkit-keyframes slip {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        -webkit-transform: translateX(118px);
        transform: translateX(118px)
    }
}

@keyframes slip {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    to {
        -webkit-transform: translateX(118px);
        transform: translateX(118px)
    }
}

.table .table-content .scroll-wrap {
    overflow-y: auto;
    overflow-x: hidden
}

.table .table-content .scroll-wrap:before {
    opacity: 0;
    pointer-events: none;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s
}

.table .table-content .tbody {
    position: relative;
    line-height: 1.8
}

.table .table-content .tbody .tr {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: auto
}

.table .table-content .tbody .tr:not(:first-child) {
    border-top: 1px solid #D1D1D1
}

.table .table-content .tbody .td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.table .table-content .tbody .td:first-child {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.table .table-content .tbody .td:not(:first-child) {
    position: relative;
    margin-left: 1px
}

.table .table-content .tbody .td:not(:first-child):before {
    height: 100%;
    content: "";
    border-left: 1px dashed #D1D1D1;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.table .table-content .tbody .td[list-type=num] li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    counter-increment: mycounter
}

.table .table-content .tbody .td[list-type=num] li:before {
    margin-right: 5px;
    content: counter(mycounter) ".";
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.table .table-content .tbody .td[list-type=dot] li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.table .table-content .tbody .td[list-type=dot] li:before {
    content: "";
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background-color: #3051a2;
    margin: 12px 10px 0 0;
    flex-shrink: 0
}

.table .table-content .tbody .td ul {
    width: 100%
}

.table .table-content .tbody .td li:not(:first-child) {
    margin-top: 10px
}

.table .table-content .tbody .td.download {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

@media only screen and (max-width:575px) {
    .table .table-content .tbody .td.download {
        width: auto
    }
}

.table .table-content .tbody .td.download i {
    width: 30px;
    height: 30px;
    color: #323232;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s
}

@media only screen and (min-width:1201px) {
    .table .table-content .tbody .td.download i:hover {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
}

@media only screen and (max-width:1200px) {
    .table .table-content .tbody .td.download i:active {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px)
    }
}

.table .table-content .tbody .td.no-download a {
    pointer-events: none
}

.table .table-content .tbody .td.no-download i {
    color: #D1D1D1
}

.table .table-content .tbody .td.play {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media only screen and (max-width:575px) {
    .table .table-content .tbody .td.play {
        margin-left: 10px;
        width: auto
    }
}

.table .table-content .tbody .td.play .video {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.table .table-content .tbody .td.play .video img {
    opacity: 0;
    pointer-events: none
}

.table .table-content .tbody .td.play .common-play-btn {
    width: 20px;
    height: 20px
}

.table .table-content .tbody .td.play .common-play-btn .icon-triangle-right {
    -webkit-transform: scale(0.3) translateX(3px);
    transform: scale(0.3) translateX(3px)
}

.table .table-content .tbody .td.play .overlay {
    display: none
}

.table .table-content .tbody .td.play.no-video .common-play-btn {
    pointer-events: none
}

.table .table-content .tbody .td.play.no-video .common-play-btn:after {
    background: #D1D1D1
}

.table.table-style-one {
    border-bottom: 1px solid #D1D1D1
}

.table.table-style-one .table-title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.table.table-style-one .table-title:before {
    margin-right: 10px;
    content: "";
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: #3051a2
}

.table.table-style-one .thead .th.rwd-title {
    width: 100%;
    display: none
}

@media only screen and (max-width:768px) {
    .table.table-style-one .thead .th.rwd-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

@media only screen and (max-width:768px) {
    .table.table-style-one .thead .th:not(.rwd-title) {
        display: none
    }
}

@media only screen and (max-width:575px) {
    .table.table-style-one .tbody .tr {
        padding: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.table.table-style-one .tbody .td {
    padding: 20px
}

@media only screen and (max-width:575px) {
    .table.table-style-one .tbody .td {
        padding: 0
    }
}

@media only screen and (max-width:575px) {
    .table.table-style-one .tbody .td:before {
        display: none
    }
}

@media only screen and (max-width:575px) {
    .table.table-style-one .tbody .td:first-child {
        margin-bottom: 20px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        width: 100%
    }
}

.table.table-style-one .tbody .td:nth-child(2) {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.data-table .table-header,
.data-table.table-header {
    z-index: 0;
    position: static;
    top: auto
}

.w-120 {
    width: 120px
}

.w-140 {
    width: 140px
}

.w-165 {
    width: 165px
}

.w-180 {
    width: 180px
}

.w-200 {
    width: 200px
}

.w-250 {
    width: 250px
}

.w-300 {
    width: 300px
}

.w-1240 {
    width: 1240px
}

.w-1440 {
    width: 1440px
}

.fixed {
    position: fixed;
    top: 0
}

.h-700 {
    max-height: 700px;
    height: 100%
}

@media only screen and (max-width:768px) {
    .h-700 {
        max-height: 500px
    }
}

.flex-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.flex-2 {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2
}

.text-center {
    text-align: center
}

.yes {
    width: 15px;
    height: 15px;
    border-radius: 500px;
    background: #000
}

.td.empty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.td.empty div,
.td.empty p,
.td.empty ul {
    display: none
}

.td.empty:after {
    content: "-";
    display: block
}

.about_about .detail {
    padding-bottom: 120px;
    background: #F9F9F9;
    position: relative
}

@media only screen and (max-width:992px) {
    .about_about .detail {
        padding-bottom: 0
    }
}

.about_about .detail .common-crump {
    z-index: 1;
    position: absolute;
    top: 60px;
    left: calc(7.8125% + 200px + 20px)
}

@media only screen and (max-width:1280px) {
    .about_about .detail .common-crump {
        top: 40px;
        left: calc(7.8125% + 120px + 20px)
    }
}

@media only screen and (max-width:768px) {
    .about_about .detail .common-crump {
        top: 80px;
        left: 7.8125%
    }
}

@media only screen and (max-width:575px) {
    .about_about .detail .common-crump {
        left: 40px
    }
}

.about_about .detail .about {
    padding: 160px 0 80px
}

@media only screen and (max-width:1280px) {
    .about_about .detail .about {
        padding: 120px 0 80px
    }
}

@media only screen and (max-width:768px) {
    .about_about .detail .about {
        padding: 120px 3.33% 80px
    }
}

.about_about .detail .about>.container {
    margin: 0 auto;
    max-width: 1240px;
    width: calc(100% - 160px)
}

@media only screen and (max-width:768px) {
    .about_about .detail .about>.container {
        width: 100%
    }
}

.about_about .detail .about .common-headerline-three {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
    text-align: center
}

.about_about .detail .about .superiority {
    margin: 60px auto 0;
    max-width: 910px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px
}

@media only screen and (max-width:768px) {
    .about_about .detail .about .superiority {
        margin: 40px auto 0
    }
}

@media only screen and (max-width:575px) {
    .about_about .detail .about .superiority {
        max-width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.about_about .detail .about .superiority .item {
    padding: 25px 15px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media only screen and (max-width:575px) {
    .about_about .detail .about .superiority .item {
        padding: 10px 0;
        width: calc((100% - 30px) / 2);
        height: auto
    }
}

.about_about .detail .about .superiority .item:not(:first-child) {
    position: relative
}

.about_about .detail .about .superiority .item:not(:first-child):before {
    content: "";
    display: block;
    width: 1px;
    height: 55px;
    background: #D1D1D1;
    position: absolute;
    top: 50%;
    left: -15px;
    -webkit-transform: translate3d(-100%, -50%, 0);
    transform: translate3d(-100%, -50%, 0)
}

@media only screen and (max-width:575px) {
    .about_about .detail .about .superiority .item:not(:first-child):before {
        display: none
    }
}

@media only screen and (max-width:575px) {
    .about_about .detail .about .superiority .item:nth-child(2n):before {
        display: block;
        left: -15px
    }
}

@media only screen and (max-width:575px) {
    .about_about .detail .about .superiority .item:nth-child(3) {
        width: 100%
    }
}

@media only screen and (max-width:575px) {
    .about_about .detail .about .superiority .item:nth-child(3):before {
        display: block;
        width: 100%;
        height: 1px;
        top: -15px;
        left: 50%;
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0)
    }
}

.about_about .detail .about .superiority .val {
    word-break: break-word;
    font-weight: 700;
    font-size: 3.125rem;
    color: #3051a2
}

@media only screen and (max-width:768px) {
    .about_about .detail .about .superiority .val {
        font-size: 1.625rem
    }
}

.about_about .detail .about .superiority .item-name {
    margin-top: 20px;
    font-weight: 500;
    line-height: 1.5
}

@media only screen and (max-width:768px) {
    .about_about .detail .about .superiority .item-name {
        font-size: 0.875rem
    }
}

.about_about .detail .about .content {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media only screen and (max-width:992px) {
    .about_about .detail .about .content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media only screen and (max-width:768px) {
    .about_about .detail .about .content {
        margin-top: 40px
    }
}

.about_about .detail .about .content .pic {
    max-width: 520px;
    width: 41.936%;
    position: relative;
    position: sticky;
    top: 20vh
}

.about_about .detail .about .content .pic:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    padding-bottom: 61.539%
}

.about_about .detail .about .content .pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media only screen and (max-width:992px) {
    .about_about .detail .about .content .pic {
        margin: 0 auto;
        width: 100%;
        position: relative;
        top: auto
    }
}

.about_about .detail .about .content .pic img {
    z-index: 1
}

.about_about .detail .about .content .pic .bg {
    width: 100%;
    height: 100%;
    background: #3051a2;
    z-index: 0;
    position: absolute;
    left: -7.693%;
    bottom: -12.5%
}

.about_about .detail .about .content .info {
    width: calc(58.064% - 60px)
}

@media only screen and (max-width:1200px) {
    .about_about .detail .about .content .info {
        width: calc(58.064% - 40px)
    }
}

@media only screen and (max-width:992px) {
    .about_about .detail .about .content .info {
        margin-top: 80px;
        width: 100%
    }
}

@media only screen and (max-width:575px) {
    .about_about .detail .about .content .info {
        margin-top: 60px
    }
}

.about_about .detail .about .content .info p {
    line-height: 1.8
}

.about_about .detail .about .content .info ol {
    list-style-type: decimal;
    padding-left: 20px
}

.about_about .detail .about .content .info ul {
    list-style-type: square;
    padding-left: 20px
}

.about_about .detail .about .content .info li {
    line-height: 1.8
}

.about_about .detail .about .content .info li::marker {
    color: #3051a2
}

.about_about .detail .about .content .info li:not(:first-child) {
    margin-top: 20px
}

.about_about .detail .about .content .info .title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.5;
    letter-spacing: 0.5px
}

@media only screen and (max-width:768px) {
    .about_about .detail .about .content .info .title {
        font-size: 1.25rem
    }
}

.about_about .detail .organization {
    background: #F9F9F9;
    padding: 0 80px
}

@media only screen and (max-width:992px) {
    .about_about .detail .organization {
        padding: 0
    }
}

.about_about .detail .organization .container {
    margin: 0 auto;
    padding: 80px 0;
    width: 100%;
    background: #fff
}

@media only screen and (max-width:768px) {
    .about_about .detail .organization .container {
        padding: 80px 10.667%
    }
}

@media only screen and (max-width:575px) {
    .about_about .detail .organization .container {
        padding: 80px 5.334%
    }
}

.about_about .detail .organization .container-wrap {
    margin: 0 auto;
    max-width: 1240px;
    width: calc(100% - 100px)
}

@media only screen and (max-width:992px) {
    .about_about .detail .organization .container-wrap {
        width: calc(100% - 160px)
    }
}

@media only screen and (max-width:768px) {
    .about_about .detail .organization .container-wrap {
        width: 100%
    }
}

.about_about .detail .organization .common-headerline-two {
    text-align: center
}

@media only screen and (max-width:768px) {
    .about_about .detail .organization .common-headerline-two {
        padding: 0 20px
    }
}

.about_about .detail .organization .panzoom-img {
    overflow: hidden;
    margin-top: 40px
}

.about_about .detail .organization .table-block {
    margin-top: 160px
}

@media only screen and (max-width:992px) {
    .about_about .detail .organization .table-block {
        margin-top: 80px
    }
}

@media only screen and (max-width:575px) {
    .about_about .detail .organization .table-block {
        margin-top: 40px
    }
}

.about_about .detail .organization .table-block .w-300 {
    width: max(24.194%, 180px);
    text-align: center
}

.about_about .detail .organization .table-block .table {
    border-bottom: 1px solid #D1D1D1
}

.about_about .detail .organization .table-block .table-title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media only screen and (max-width:1200px) {
    .about_about .detail .organization .table-block .table-title {
        font-size: 1.25rem
    }
}

.about_about .detail .organization .table-block .table-title:before {
    margin-right: 10px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #3051a2;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px)
}

.about_about .detail .organization .table-block .table-header {
    position: static
}

@media only screen and (max-width:768px) {
    .about_about .detail .organization .table-block .table-header {
        display: none
    }
}

.about_about .detail .organization .table-block .thead .th {
    min-height: 60px
}

@media only screen and (max-width:768px) {
    .about_about .detail .organization .table-block .table-content {
        border-top: 8px solid #3051a2
    }
}

.about_about .detail .organization .table-block .table-content .td {
    padding: 20px
}

@media only screen and (max-width:768px) {
    .about_about .detail .organization .table-block .table-content .td {
        width: 100%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

@media only screen and (max-width:768px) {
    .about_about .detail .organization .table-block .table-content .td:not(:first-child):before {
        display: none
    }
}

@media only screen and (max-width:768px) {
    .about_about .detail .organization .table-block .table-content .td:first-child {
        background: #EFEFEF
    }
}

.about_about .detail .organization .table-block .table-content .td:nth-child(2) {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media only screen and (max-width:768px) {
    .about_about .detail .organization .table-block .table-content .tr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media only screen and (max-width:768px) {
    .about_about .detail .organization .table-block .table-content .tr:not(:first-child) {
        border: none
    }
}

.about_about .no-content {
    margin-top: 60px
}

@media only screen and (max-width:768px) {
    .about_about .no-content {
        margin-top: 40px
    }
}