* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* header */
header {
    width: 100%;
    height: 110px;
    background: #F8F8F8;
    border: 1px solid #EAEAEA;
    box-sizing: border-box;
}

header .logo {
    position: absolute;
    width: 150px;
    left: 90px;
    top: 33px;
}

header ul {
    float: right;
    height: 100%;
    list-style: none;
}

header ul a {
    float: left;
    margin-right: 90px;
    width: 80px;
    height: 100%;
    box-sizing: border-box;
}

header ul li {
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 110px;
    text-align: center;
    color: rgba(51, 51, 51, 0.4);
}

header ul li:hover {
    color: #CA3137;
    border-bottom: 2px solid #CA3137;
}

/* navigation */
.navigation {
    position: relative;
    display: block;
    width: calc(100% - 320px);
    height: 174px;
    margin: 0 auto;
    box-sizing: border-box;
}


.navigation .btnList {
    position: absolute;
    top: 79px;
    left: 0px;
}


.navigation .btnList a {
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #CA3137;
}

.navigation .btnList span,
.navigation .btnList a.last {
    color: rgba(0, 0, 0, 0.3);
}

/* 
.navigation .searchInput {
    position: absolute;
    right: 150px;
    top: 60px;
    width: 370px;
    height: 54px;
}

.navigation .searchInput input {
    position: static;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 1px solid #EEEEEE;
    backdrop-filter: blur(4.5px);
    border-radius: 3px;
    padding-left: 63px;
    padding-right: 20px;
}

.navigation .searchInput input::-webkit-input-placeholder {
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
}

.navigation .searchInput .searchIcon {
    position: absolute;
    left: 20.33px;
    top: 19.54px;
    width: 14.76px;
    z-index: 2;
}

.navigation .searchInput .line {
    position: absolute;
    left: 51px;
    top: 19px;
    width: 1px;
    height: 16px;
    background: rgba(0, 0, 0, 0.1);
}


.navigation .searchBtn {
    display: block;
    position: absolute;
    width: 140px;
    height: 54px;
    right: 0px;
    top: 60px;
    background: #CA3137;
    border-radius: 3px;

    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 54px;
    text-align: center;
    color: #FFFFFF;
} */


/* detail */
.detail {
    display: block;
    width: calc(100% - 320px);
    margin: 0 auto;
    box-sizing: border-box;
    border-top: 1px solid #EEEEEE;
}

.detail .left {
    width: 30%;
    float: left;
    box-sizing: border-box;
}

.detail .left .title {
    margin-top: 60px;
    margin-right: 60px;
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 45px;
    color: #333333;
}

.detail .left .date {
    margin-top: 30px;
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: rgba(102, 102, 102, 0.4);
}

.detail .left .hr {
    margin-top: 60px;
    width: 100%;
    height: 1px;
    background: #EEEEEE;
}

.detail .left .btnList {
    margin-top: 60px;
}

.detail .left .btnList a {
    display: block;
    float: left;
    margin-right: 20px;
    width: 48px;
    height: 48px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
    position: relative;
}

.detail .left .btnList .item1 {
    background-image: url(../img/detail_contact1.png);
}


.detail .left .btnList .item1:hover {
    background-image: url(../img/detail_contact1_hover.png);
}

.detail .left .btnList .item2 {
    background-image: url(../img/detail_contact2.png);
}

.detail .left .btnList .item2:hover {
    background-image: url(../img/detail_contact2_hover.png);
}

.detail .left .btnList .item1 img,
.detail .left .btnList .item2 img {
    display: none;
    width: 118px;
    position: absolute;
    top: 72px;
    left: -35px;
}

.detail .left .btnList .item1:hover img,
.detail .left .btnList .item2:hover img {
    display: block;
}

.detail .right {
    min-height: 800px;
    float: right;
    width: 70%;
    border-left: 1px solid #EEEEEE;
    box-sizing: border-box;
    overflow: hidden;
    padding: 60px 0 60px 60px;

    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 36px;
    color: #666666;
}

.detail .right p {
    min-height: 36px;
}

.detail .right img {
    float: left;
    max-width: 100%;
    height: auto !important;
    margin: 0;
}

.detail .right .float-left img{
    margin-right: 60px;
    margin-bottom: 40px;
    margin-top: 10px;
}

.detail .right .float-right img {
    margin-left: 60px;
    margin-bottom: 40px;
    margin-top: 10px;
}

/* relevant */
.relevant {
    position: relative;
    overflow: hidden;
    display: block;
    width: calc(100% - 320px);
    margin: 0 auto;
    box-sizing: border-box;
    border-top: 1px solid #EEEEEE;
    padding-top: 60px;
    padding-bottom: 180px;
}

.relevant .mainTitle {
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #333333;
}

.relevant .mainDesc {
    margin-top: 9px;
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #999999;
}

.relevant .moreBtn {
    position: absolute;
    top: 65px;
    right: 0;
    display: block;
    cursor: pointer;
    box-sizing: border-box;
    width: 140px;
    height: 54px;
    background: #CA3137;
    border: 1px solid #CA3137;
    border-radius: 3px;

    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 52px;
    text-align: center;
    color: #FFFFFF;
}

.relevant .list {
    margin-top: 60px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.relevant .list .item {
    display: block;
    margin-right: 20px;
    width: calc(25% - 15px);
    margin-bottom: 20px;
    background: #F8F8F8;
    overflow: hidden;
    padding-top: 45px;
    /* padding-bottom: 60px; */
    padding-bottom: 105px;
    position: relative;
}

.relevant .list .item:last-of-type {
    margin-right: 0px;
}

.relevant .list .item .title {
    margin-bottom: 20px;
    background: #F8F8F8;
    margin-left: 45px;
    margin-right: 45px;
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #333333;
    text-align: center;
}

.relevant .list .item .desc {
    margin-left: 45px;
    margin-right: 45px;
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: rgba(51, 51, 51, 0.4);
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: center;
}

.relevant .list .item .img {
    margin-top: 45px;
    width: calc(100% - 90px);
    margin-left: 45px;
}

.relevant .list .item .detailBtn {
    display: none;
    margin-top: 45px;
    margin-left: 45px;
    box-sizing: border-box;
    width: 120px;
    height: 42px;
    border: 1px solid rgba(202, 49, 55, 0.3);
    border-radius: 27px;
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 40px;
    color: #CA3137;
    text-align: center;
    cursor: pointer;
}

.relevant .list .item .detailBtn:hover {
    background-color: #CA3137;
    color: #FFFFFF;
}

.relevant .list .item .remark {
    padding-left: 45px;
    padding-right: 45px;
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: rgba(51, 51, 51, 0.4);
    text-align: center;

    position: absolute;
    bottom: 60px;
    width: 100%;
    box-sizing: border-box;
}

/* footer */
footer {
    box-sizing: border-box;
    width: 100%;
    height: 600px;
    background: #CB3B3B;
    position: relative;
}

footer .logo {
    position: absolute;
    width: 114px;
    left: 157px;
    top: 88px;
}

footer .contactBtn {
    position: absolute;
    left: 160px;
    top: 372px;
}

footer .contactBtn a {
    display: block;
    float: left;
    margin-right: 20px;
    width: 48px;
    height: 48px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
    position: relative;
}

footer .contactBtn .item1 {
    background-image: url(../img/contact1.png);
}

footer .contactBtn .item1 img {
    display: none;
    width: 96px;
    position: absolute;
    top: -120px;
    left: -24px;
}

footer .contactBtn .item1:hover {
    background-image: url(../img/contact1_hover.png);
}

footer .contactBtn .item1:hover img {
    /* display: block; */
}

footer .contactBtn .item2 {
    background-image: url(../img/contact2.png);
}

footer .contactBtn .item2 div {
    display: none;
    position: absolute;
    top: -72px;
    left: -68px;
    box-sizing: border-box;
    width: 184px;
    height: 44px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 22px;

    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 42px;
    text-align: right;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    text-align: center;
}

footer .contactBtn .item2:hover {
    background-image: url(../img/contact2_hover.png);
}

footer .contactBtn .item2:hover div {
    /* display: block; */
}

footer .contactBtn .item3 {
    background-image: url(../img/contact3.png);
}

footer .contactBtn .item3 img {
    display: none;
    width: 96px;
    position: absolute;
    top: -120px;
    left: -24px;
}

footer .contactBtn .item3:hover {
    background-image: url(../img/contact3_hover.png);
}

footer .contactBtn .item3:hover img {
    /* display: block; */
}

footer .contactBtn .item4 {
    background-image: url(../img/contact4.png);
}

footer .contactBtn .item4 div {
    display: none;
    position: absolute;
    top: -72px;
    left: -106.5px;
    box-sizing: border-box;
    width: 261px;
    height: 44px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 22px;

    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 42px;
    text-align: right;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    text-align: center;
}

footer .contactBtn .item4:hover {
    background-image: url(../img/contact4_hover.png);
}

footer .contactBtn .item4:hover div {
    display: block;
}

footer ul {
    position: absolute;
    right: 160px;
    top: 90px;
    list-style: none;
}

footer ul a {
    float: left;
    margin-left: 90px;
    box-sizing: border-box;
    cursor: pointer;
}

footer ul li {
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    color: #FFFFFF;
}

footer .contact {
    position: absolute;
    right: 160px;
    top: 366px;
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    text-align: right;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.4);
}

footer .hr {
    position: absolute;
    left: 160px;
    bottom: 90px;
    width: calc(100% - 320px);
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

footer .company {
    position: absolute;
    left: 160px;
    bottom: 45px;
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: rgba(255, 255, 255, 0.4);
}

footer .law {
    position: absolute;
    right: 160px;
    bottom: 45px;
    font-family: 'HarmonyOS Sans SC';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-align: right;
    color: rgba(255, 255, 255, 0.4);
}

footer .icp {
    margin-left: 33px;
}