:root {
    --background: rgba(255, 255, 255, 0.7);
    --greenBG: rgba(0, 111, 118, 0.1);
    --boxShadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    --halfwhite: rgba(255, 255, 255, 0.5);
    --black: #242933;
    --brand: #006F76;

    --text: #3C5C6A;
    --deepGreen: #558f93;

    --white: #fff;
    --white46c: #F4F6FC;
    --white237: #F2F3F7;
    --whiteYellow: #fff6ed;
    --whiteGreen: #E8EFF2;
    --whitedf: #dfdfdf;
    --whitef9: #f9f9f9;
    --whitefa: #fafafa;
    --whitef5: #f5f5f5;
    --whitee5: #e5e5e5;
    --whitebd: #bdbdbd;

    --grey: #575C66;
    --grey999: #999;
    --gery89d: #88889d;
    --greyddd: #ddd;
    --grey70: #707070;
    --grey1: #aeaeae;

    --red: #B81C27;
    --lightRed: #C34041;
    --deeppink: #ff347d;

    --blue: #168cde;
    --M-blue: #1873E7;
    --M-lightblue: #58A2FF;

    --orange: #f60;

    --lightGreen: #B3DADD;
    --boxLinear: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    --boxLinearGreen: linear-gradient(180deg, rgba(60, 92, 106, 0) 72.31%, rgba(60, 92, 106, 0.4) 100%);
    --boxShadow: drop-shadow(-12px 12px 24px rgba(60, 92, 106, 0.1));
}

html {
    font-size: 16px;
}

h2 {
    font: normal 400 1.5rem '微软雅黑';
    line-height: 1.5rem;
    color: var(--black);
}

p {
    font: normal 400 1rem '微软雅黑';
    text-indent: 2em;
    text-align: justify;
    line-height: 2rem;
    color: var(--grey);
}

@media only screen and (min-width: 1920px) {
    .width-of-web {
        width: 62%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 1920px) {
    .width-of-web {
        width: 1200px;
        margin: 0 auto;
    }
}

/* 左标题，右内容布局的样式 */
.leftMenu-rightContain-flex-layout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 100px auto;
    gap: 10%;
}

/* 四个字的标题样式 */
.four-words-menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 9%;
    text-align-last: justify;
}

.four-words-menu-list li a {
    font: normal 400 1.5rem '微软雅黑';
    white-space: nowrap;
    color: var(--black);
    transition: all 0.3s;
}

.four-words-menu-list li {
    position: relative;
}

.four-words-menu-list li a:hover {
    color: var(--brand);
    cursor: pointer;
}

/* 四个字的标题样式 */



/* 五个字的标题样式 */
.five-words-menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 10%;
    text-align-last: justify;
}

.five-words-menu-list li a {
    font: normal 400 1.5rem '微软雅黑';
    white-space: nowrap;
    color: var(--black);
    transition: all 0.3s;
}

.five-words-menu-list li {
    position: relative;
}

.five-words-menu-list li a:hover {
    color: var(--brand);
    cursor: pointer;
}

li.on-symbol a {
    font: normal 400 1.5rem '微软雅黑';
    color: var(--brand);
    cursor: pointer;
    text-decoration: underline;
}

/* li.on-symbol:before {
    position: absolute;
    width: 4px;
    height: 24px;
    background: var(--brand);
    display: block;
    content: '';
    left: 0;
    top: 6px;
    z-index: 2222;
} */
/* 五个字的标题样式 */

/* 右边纯文字样式 */
.right-text-public {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.right-text-public>ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 右边纯文字样式 */

/* 右边纯图样式 */
.right-image-public img {
    width: 100%;
}

/* 右边纯图样式 */

/* 管理层右边 */
.manegement_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    white-space: nowrap;
}

.manegement_list li {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.manegement_list li h3,
.manegement_list li p {
    font: normal 400 1.2em '微软雅黑';
    text-shadow: 0px 4px 4px rgba(6, 76, 187, 0.25);
    color: var(--white);
}

.manegement_list li h3 {
    width: 160px;
    text-align: center;
    text-align-last: justify;
    background: var(--M-blue);
    padding: 16px 12px;
    border-radius: 12px 0 0 12px;
}

.manegement_list li p span {
    width: 60px;
    text-align-last: justify;
}

.manegement_list li p {
    background: var(--M-lightblue);
    padding: 16px 16px;
    border-radius: 0 12px 12px 0;
    display: flex;
    flex-direction: row;
    gap: 2em;
    width: 160px;
    text-indent: 0;
}

.management_row {
    display: flex;
    flex-direction: row;
}

.management_row li:nth-child(2) p {
    width: 60px;
}

.management_row li:nth-child(3) p {
    width: 60px;
}

.management_row li:nth-child(2) {
    margin-left: 20px;
}

.management_row li:nth-child(3) {
    margin-left: 20px;
}


/* 这是首页的底部 */
.index-footer {
    display: flex;
    background: var(--black);
    padding: 24px 19%;
    white-space: nowrap;
    justify-content: center;
    gap: 10%;
    position: relative;
}
.index-footer-left a {
    display: inline-block;
    width: 74px;
    height: 84px;
    background-image: url(.././images/footer-logo.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.index-footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.index-footer-up,
.index-footer-middle,
.index-footer-down,
.index-footer-down>ul {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.index-footer-up{
    gap: 30px;
}
.index-footer-up>div {
    display: flex;
    gap: 12px;
}
.index-footer-up button {
    all: unset;
}
.index-footer a {
    text-decoration: underline;
}

.index-footer-middle a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.index-footer-up button,
.index-footer-up ul li a,
.index-footer-up p,
.index-footer-up a,
.index-footer-down ul li p,
.index-footer-down p {
    color: var(--grey1);
    font: normal 400 1rem '微软雅黑';
    text-indent: 0;
    transition: all 0.3s;
}

.index-footer-up button {
    text-decoration: underline;
}
.index-footer-up button:hover {
    color: var(--red);
}

.index-footer-middle p,
.index-footer-middle a {
    color: var(--grey1);
    font: normal 400 0.875rem '微软雅黑';
    text-indent: 0;
    transition: all 0.3s;
}

.index-footer-middle img {
    width: 16px;
    height:  16px;
}

.index-footer-right a:hover {
    color: var(--red);
}

.index-footer-up ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    background: var(--black);
    top: -110px;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 8px;
    padding-bottom:30px;
    display: none;
}
.index-footer-up ul li a {
    color: var(--white237);
}
.link-box:hover> #external-links{
    display: flex!important;
}
#external-links:hover{
    display: flex!important;
}
/* 首页底部结束 */

/* 首页中间右侧表格 */
.industry-price {
    background: var(--white);
    height: 412px;
    overflow: hidden;
    border-radius: 8px;
}
.industry-price p {
    text-indent: 0;
}

.industry-price .caption {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    background: #53888B;
    /* background: #D5E1E5; */
    padding: 14px 16px;
    border-radius: 8px 8px 0 0;
    gap: 24px;
    align-items: center;
    background-image: url(.././images/price-title-bg.png);
    background-size: cover;
}

.industry-price .caption p {
    font: normal 400 0.875rem '微软雅黑';
    color: var(--white);
    color: rgba(255, 255, 255, 0.7);
    /* color: var(--black); */
}

.industry-price .caption h6 {
    display: flex;
    font: normal 700 1rem '微软雅黑';
    color: var(--white);
    gap: 4px;
    align-items: center;
    /* color: var(--brand); */
}

.price-background {
    background-image: url(.././images/price-background.png);
    background-repeat: no-repeat;
}

#industry-price-list {
    position: relative;
}
#industry-price-list tr,
.tbody-box tr {
    white-space: nowrap;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
}

.thead-content td:nth-child(2){
    background-image: url(.././images/price1-bg.png)!important;
    background-size: 100%!important;
    background-repeat: no-repeat!important;
    color: #fff;
}
.thead-content td:nth-child(3){
    background-image: url(.././images/price2-bg.png)!important;
    background-size: 100%!important;
    background-repeat: no-repeat!important;
    color: #fff;
}
.thead-content td:nth-child(4){
    background-image: url(.././images/price3-bg.png)!important;
    background-size: 100%!important;
    background-repeat: no-repeat!important;
    color: #fff;
}

#industry-price-list tr td,
.tbody-box tr td {
    text-align: center;
    padding: 8.5px 4px;
    box-sizing: border-box;
    font: normal 400 1rem '微软雅黑';
}

#industry-price-list tr td {
    border: 1px solid #fafafa;
}

#industry-price-list tr td:first-child,
.tbody-box tr td:first-child {
    width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #edf1ed;
}

#industry-price-list tr td:nth-child(2),
.tbody-box tr td:nth-child(2) {
    background: #D6F1F2;
    font-size: 0.875rem;
}

#industry-price-list tr td:nth-child(3),
.tbody-box tr td:nth-child(3) {
    font-size: 0.875rem;
    background: #F0E3D3;
}

#industry-price-list tr td:nth-child(4),
.tbody-box tr td:nth-child(4) {
    font-size: 0.875rem;
    background: #DBF1DD;
}


#industry-price-list tr td:first-child {
    text-align: left;
}

.thead-content {
    height: 40px;
}
.thead-content td {
    border: 1px solid #fafafa;
}
/* 首页中间右侧表格 */

/* 首页最上层入口 */
.external-links-scan {
    position: absolute;
    z-index: 99;
    top: 16px;
    right: 19%;
}

.external-links-scan ul {
    display: flex;
    gap: 16px;
}

.external-links-scan ul li {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    align-items: center;
    font: normal 400 13px '微软雅黑';
    background: var(--white);
    border-radius: 8px;
    gap: 6px;
    padding-bottom: 2px;
    box-sizing: border-box;
}

.external-links-scan ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-bottom: 2px;
    box-sizing: border-box;
}

.external-links-scan img {
    width: 96px;
    height: 96px;
    border-radius: 8px;
}
/* 首页最上层入口 */

/* 新闻中心样式 */
