/********************
* 基本
********************/
:root {
    --swiper-container-height: 804px;
    --gif-logo-height: 750px;
}

body,
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-image: linear-gradient(0deg,
            #015eea 0%,
            #00c0fa 100%);
    min-width: 1400px;
}

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

ol {
    margin: 0;
    padding: revert !important;
}

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

ol:after,
ul:after {
    content: " ";
    clear: both;
    display: table;
}

* {
    color: #252729;
    box-sizing: border-box;
    font-family: unset !important;
}

.common-navbar-wrap {
    margin-top: 68px;
    z-index: 2;
    height: 137px;
    padding: 0 140px;
    box-sizing: border-box;
    width: 100%;
    min-width: 1400px;
}

/*Navbar*/
.common-navbar {
    height: 137px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: calc(1400px - 280px);
    white-space: nowrap;
    box-sizing: border-box;
    background-color: #ffb755;
    box-shadow: 5px 9px 24px 3px rgba(7, 16, 140, 0.35);
    border-radius: 68px;
    border: solid 7px #000000;
    box-sizing: border-box;
}

.common-navbar .logo {
    width: 125px;
    font-family: HYYakuHei-HEW;
    font-size: 42px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 142px;
    letter-spacing: 0px;
    color: #061e87;
}

.common-navbar .logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
    margin-right: 20px;
}

.common-navbar .list {
    display: block;
    height: 100%;
    flex-grow: 1;
    float: right;
    white-space: nowrap;
}

.common-navbar .list .item {
    height: 100%;
    padding: 0 20px;
    position: relative;
    float: right;
}

.common-navbar .list .item>a {
    color: #000000;
    font-size: 18px;
    transition: color 0.3s;
    padding-top: 4px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.common-navbar .list .item:after {
    content: " ";
    width: 47px;
    height: 5px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    transition: background-color 0.3s;
}

.common-navbar .list .drop-item:before {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    content: "";
    border-top: 7px solid;
    border-right: 7px solid transparent;
    border-bottom: 0;
    border-left: 7px solid transparent;
    color: #f2761b;
}

.common-navbar .list .item:hover:after,
.common-navbar .list .item.active:after {
    background-color: #000;
}

.common-navbar .list .item:hover>a,
.common-navbar .list .item.active>a {
    color: #000000;
}

/*二级*/
.common-navbar .child-nav {
    display: none;
    /* background-color: rgba(255, 255, 255, .95); */
    background-color: #b4b2b2;
    position: absolute;
    /* top: 100%; */
    /* top: 80%; */
    left: -32px;
    z-index: 9999;
    border-radius: 10px;
}

.common-navbar .child-nav .child-list {
    padding: 20px 52px;
    /* border: 2px solid rgba(255, 255, 255, .95); */
    border-radius: 10px;
}

.common-navbar .child-nav .child-item {
    line-height: 50px;
}

.common-navbar .child-nav .child-item a {
    display: inline-block;
    /* color: #060606; */
    color: #fff;
    border-bottom: 3px solid transparent;
    word-break: keep-all;
    white-space: nowrap;
    height: 42px;
    font-size: 16px;
}

.common-navbar .child-nav .child-item:hover a,
.common-navbar .child-nav .child-item.active a {
    border-bottom: 3px solid #fff;
}

.common-navbar .item:hover .child-nav {
    display: inherit;
}

/*Team 避免撑开盒子*/
.common-navbar .item:first-child:hover .child-nav {
    display: inherit;
    /* left: -64px; */
}


.common-header {
    width: 100%;
    height: 840px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.common-header .common-header-logo {
    /* width: 100%; */
    width: 1000px;
    height: auto;
    display: block;
}

.sub-header-logo {
    display: block;
    width: 100%;
    height: 100%;
}

.common-container {
    width: 1400px;
    padding: 0 100px;
    margin: 0 auto;
    /* background: #fff; */
    box-sizing: border-box;
}

.home-container {
    padding: 0 260px;
    box-sizing: border-box;
}

.common-container .common-carousel {
    width: 100%;
    margin: auto 0;
}

.common-container .common-wrap {
    width: 100%;
    margin: 0 auto;
    margin-top: 17px;
    background: #fff;
    padding: 130px 120px 135px;
    box-sizing: border-box;
}

.article-title {
    color: #3c3c3c;
    text-align: center;
    font-size: 42px;
    letter-spacing: 1px;
    position: relative;
    margin: 45px 0;
    font-weight: bolder;
}

.article-title::after {
    content: "";
    background-color: #c74751;
    height: 5px;
    width: 32px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.article-content {
    width: 100%;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0px;
    text-align: justify;
    color: #252729;
}

.home-article {
    font-size: 20px !important;
}

.common-video {
    width: 100%;
    height: 100%;
}

.common-img {
    display: block;
    width: 100%;
    height: 100%;
}


.margin-top-45 {
    margin-top: 45px !important;
}

.margin-top-16 {
    margin-top: 16px !important;
}
.margin-bottom-36 {
  margin-bottom: 36px !important;
}

.margin-bottom-45 {
    margin-bottom: 45px !important;
}

.margin-bottom-16 {
    margin-bottom: 16px !important;
}

.common-footer {
    width: 100%;
    height: 400px;
    box-sizing: border-box;
    padding-top: 32px;
}

.footer-qrcode-img {
    width: 212px;
    height: 241px;
    display: block;
    margin: 0 auto;
}

.common-footer p {
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.common-footer p a {
    font-size: 16px;
    color: #fff;
}
.qrcode-img {
    margin: 0 auto;
    display: block;
    /* width: 327px;
    height: 329px; */
    width: 250px;
    height: auto;
}

.sub-page-content {
    width: 1250px;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #fff;
    padding: 0 160px 80px;
}

.content-title {
    font-family: Arial-BoldMT;
    font-size: 49px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 43px;
    letter-spacing: 1px;
    color: #2a9704;
    text-align: center;
    padding-top: 56px;
    font-weight: bolder;
}

.team-title {
    width: 233px;
    height: 54px;
    background-color: #de6d09;
    border-radius: 27px;
    font-size: 35px;
    margin: 36px 0 16px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #ffffff;
    text-align: center;
}

.title {
    font-size: 32px;
    line-height: 42px;
    margin: 36px 0 16px;
    color: #222121;
    font-weight: bold;
}

.line {
    width: 205px;
    border-bottom: solid;
}

.att-title {
    color: #222121 !important;
}

.sub-title {
    font-size: 18px;
    line-height: 32px;
    color: #222121;
    font-weight: bold;
    margin: 16px 0;
}

/* .blue-title {
    color: #263c8d !important;
} */

.members-wrap {
    width: 100%;
    height: auto;
}

.members-wrap>.member-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 64px;
}

.members-wrap>.member-item>.member-head {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 196px;
    box-sizing: border-box;
}

.members-wrap>.member-item>.member-head>img {
    width: 196px;
    height: 196px;
    border-radius: 100%;
    margin-bottom: 12px;
    display: inline-block;
}

.members-wrap>.member-item>.member-head>span {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 18px;
}

.members-wrap>.member-item>.member-info {
    flex: 1;
    font-size: 18px;
    padding-left: 48px;
    line-height: 32px;
    color: #464646;
    text-align: justify;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.common-sub-img {
    display: block;
    width: 100%;
    height: 100%;
}

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

.text-indent-2 {
    text-indent: 2em;
}

.padding-left-2 {
    padding-left: 36px;
}

.img-wrap {
    width: 100%;
    margin: 16px 0;
}

.img-wrap>img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.w-50 {
    width: 50% !important;
}

.w-60 {
    width: 60% !important;
}

.w-80 {
    width: 80% !important;
}
.w-100 {
    width: 100% !important;
}

.w-40 {
    width: 40% !important;
}

.w-30 {
    width: 30% !important;
}

.img-wrap>span {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    margin-top: 12px;
}

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

.img-wrap .tips-title {
    font-size: 32px;
    line-height: 42px;
    color: #222121;
    font-weight: bold;
}

.sub-table {
    width: 100%;
    border: 1px solid #464646;
    box-sizing: border-box;
    table-layout: fixed;
    word-break: break-all;
}

.sub-table tr {
    font-size: 1.125rem;
}

.sub-table tr th {
    /* height: 4.25rem; */
    background: #d0e1f3;
    color: #464646;
    padding: 0.625rem;
    vertical-align: middle;
    border: 1px solid #464646;
    border-collapse: collapse;
    text-align: center;
    font-weight: bold;
}
.table-no-border{
  width: 100%;
  border-top: 1px solid #464646;
  border-bottom: 1px solid #464646;
  box-sizing: border-box;
  table-layout: fixed;
  word-break: break-all;
}
.table-no-border tr{
  font-size: 1.125rem;
}
.table-no-border tr th{
  /* height: 4.25rem; */
  background: #d0e1f3;
  color: #464646;
  padding: 0.625rem;
  vertical-align: middle;
  border-bottom: 1px solid #464646;
  border-collapse: collapse;
  text-align: center;
}
.table-no-border tr td{
  height: 3rem;
  padding: 0.625rem;
  text-align: center;
  color: #464646;
  vertical-align: middle;
  /* border: 1px solid #464646; */
  border-collapse: collapse;
  word-break: break-word;
}

.sub-table tr td {
    height: 4.375rem;
    padding: 0.625rem;
    text-align: center;
    color: #464646;
    vertical-align: middle;
    border: 1px solid #464646;
    border-collapse: collapse;
    word-break: break-word;
}

.sub-table tr td a {
    color: #076c70;
}

.sub-pdf {
    width: 100%;
    height: 800px;
}

.blod {
    font-weight: bold;
}

.common-audio {
    margin: 0 auto;
    display: block;
}

.auto-margin {
    margin: 0 auto;
    display: block;
}

.yellow-color {
    color: #f9811f !important;
}

.accordion-item {
    background: #d0e1f3;
    cursor: pointer;
    padding: 15px;
    box-sizing: border-box;
    user-select: none;
}

.third-title {
    margin-bottom: 16px;
    font-weight: bold;
}

.break-all {
    word-break: break-all;
}

.retract{
  text-indent:36px;
}
.expression{
  display: flex;
  justify-content: center;
  font-size: 18px;
}
.expre-right{
  display: flex;
  align-items: center;
  width: 90px;
}
.expre-right > span{
  width: 40px;
}
.expre-left{
  width: 30px;
}
.molecule{
  border-bottom: 1px solid #464646;
  text-align: center;
}
.denominator{
  text-align: center;
}
.text-underline {
    text-decoration: underline;
}
