
* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Arial", "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", 华文细黑, STHeiti, MingLiu;
}

a, span, p, a:hover {
    display: block;
    color: inherit;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

ul, li {
    list-style: none;
}

input, textarea, button {
    outline: none;
    padding: 5px;
    resize: none;
}


/* Header  */
.Header {
    width: 100%;
    height: 100px;
    text-align: center;
    background: white;
    border: 1px solid rgba(220, 220, 220, 0.5);
}

.Header > div {
    width: 100%;
    height: 100%;
    margin: auto;
    display: inline-flex;
    justify-content: space-between;
}

.Header > div .logo {
    width: auto;
    margin-left: 5%;
    display: flex;
    justify-content: flex-start;
}

.Header > div .logo img {
    height: 50%;
    min-height: 48px;
    max-height: 56px;
    margin: auto 0;
}

.Header > div .bizName {
    min-width: 160px;
    margin: auto 5px;
}

.Header > div .bizName p {
    font-size: 18px;
    letter-spacing: 4px;
}

.Header > div .bizName span {
    font-size: 12px;
    letter-spacing: -1px;
}

.Header > div button {
    display: none;
    width: 36px;
    height: 32px;
    line-height: 32px;
    justify-content: space-evenly;
    align-items: center;
    flex-flow: column;
    opacity: 0.5;
    margin: auto 10px;
    color: rgb(120, 120, 120);
    border-radius: 4px;
    border: 2px solid rgba(150, 150, 150, 0.5);
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden;
}

.Header > div button span {
    display: block;
    width: 90%;
    height: 3px;
    margin: 2px;
    background: #888;
}

#headerNavText {
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerNavText li {
    height: 100%;
    margin: auto 10px;
    text-align: center;
    position: relative;
    display: inline-flex;
    border-bottom: 3px solid rgba(40, 160, 225, 0);
}

.headerNavText li:hover, .headerNavText li.active {
    border-bottom: 3px solid rgb(40, 160, 225);
}

.headerNavText li a {
    font-size: 16px;
    color: rgb(50, 50, 50);
    padding: 0 10px;
    margin: auto;
    cursor: pointer;
}

.headerNavText li:hover a, .headerNavText li.active a {
    font-weight: bold;
    color: rgb(40, 160, 225);
}

.Header .NavBtn_Right {
    width: auto;
    min-width: 120px;
    height: 100%;
    margin-right: 5%;
    display: inline-flex;
    justify-content: flex-end;
}

.Header .NavBtn_Right a {
    width: 32PX;
    min-width: 32px;
    height: 32PX;
    line-height: 32px;
    margin: auto 0;
    margin-left: 10px;
    display: block;
    color: rgba(150, 150, 150, 0.5);
    border: 1px solid rgba(200, 200, 200, 0.5);
    border-radius: 5%;
    background: none;
    cursor: pointer;
}

.Header .NavBtn_Right .icon_Search {
    background: #fff url(../image/icon_Search.png) top center no-repeat;
}

.Header .NavBtn_Right .icon_Search:hover {
    background: rgb(40, 160, 225) url(../image/icon_Search.png) bottom center no-repeat;
}

.Header .NavBtn_Right a:hover {
    background: rgb(40, 160, 225);
    color: white;
}

.Header .SearchWarp {
    margin: auto 0;
    right: 0;
    position: relative;
}

.Header .SearchWarp > div {
    display: none;
}

.Header .SearchWarp > div .keySearch {
    height: 32px;
    line-height: 32px;
    border: 1px solid rgba(100, 100, 100, 0.5);
}

.Header .SearchWarp > div .btnSearch {
    position: absolute;
    width: 28px;
    height: 28px;
    right: 10px;
    top: 9px;
    border: none;
    background: #fff url(../image/icon_Search.png) top center no-repeat;
}

.Header .SearchWarp .show {
    display: flex;
    position: absolute;
    top: 5rem;
    background: rgba(255, 255, 255, 0.75);
    padding: 0.5rem;
    right: 0;
    border-radius: 0.3rem;
    z-index: 9999;
}


/*Footer*/
.Footer {
    width: 100%;
    padding: 20px;
    margin: auto;
    text-align: center;
    color: white;
    background: rgb(65, 75, 85);
    overflow: hidden;
}

.Footer01 {
    max-width: 1200px;
    height: auto;
    padding: 20px 0;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
}

.Footer01 .prodNav {
    width: 50%;
    height: 100%;
    margin-right: 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
}

.Footer01 .prodNav ul {
    width: 100%;
    display: grid;
    justify-content: flex-start;
    grid-template-columns: repeat(auto-fill, 30% 55%);
}

.Footer01 > div > div {
    width: 100%;
    text-align: left;
}

.Footer01 > div > div > span {
    font-size: 18px;
    line-height: 32px;
    height: 32px;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.Footer01 .RssUS div:nth-child(2) span {
    font-size: 16px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.5);
}

.Footer01 .prodNav ul li a {
    font-size: 14px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Footer01 .prodNav ul li a:hover, .RssUS ul li a:hover {
    color: white;
}

.Footer01 .RssUS {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: self-start;
}

.Footer01 .RssUS ul {
    width: 100%;
}

.Footer01 .RssUS ul > div {
    width: 126px;
    height: 126px;
    margin: 10px 0;
}

.Footer01 .RssUS ul li {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    text-align: left;
}

.Footer01 .RssUS ul li a {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.Footer01 .RssUS ul li input {
    width: 65%;
    font-size: 14px;
    color: rgb(50, 50, 50);
    padding: 5px;
}

.RssUS button {
    width: 35%;
}

.Footer02 {
    width: 100%;
    height: 80px;
    border-top: 1px solid rgba(100, 100, 100, 0.5);
    display: flex;
    overflow: hidden;
}

.Footer02 > div {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.Footer02 > div a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding-right: 20px;
}

@media screen and (max-width: 1024px) {

    /* Header */
    .headerNavText li {
        margin: auto;
    }

    .Header > div .bizName {
        display: none;
    }

    .Header {
        padding: 0;
        overflow: visible;
    }

    .Header > div .logo {
        margin-left: 2%;
    }

    .Header > .headerNavText li a {
        padding: 0 5px;
    }

    .Header .NavBtn_Right {
        min-width: 80px;
        margin-right: 2%;
    }

}

@media screen and (max-width: 768px) {


    /* Footer */
    .Footer01 .prodNav ul {
        width: auto;
        display: block;
    }

    .Footer01 {
        height: auto;
        padding: 20px 10px;
    }

    .Footer01 > div:nth-child(1) {
        width: 40%;
    }

    .Footer01 .RssUS {
        width: 60%;
        max-width: 60%;
    }

    .Footer01 .RssUS ul li {
        height: auto;
        flex-direction: column;
    }

    .Footer01 .prodNav ul li a {
        line-height: 24px;
    }

    .Footer01 .RssUS ul li input {
        width: 100%;
    }

    .Footer01 > div > div span {
        height: auto;
        margin-bottom: auto
    }

    .Footer01 > div > div ul li a {
        font-size: 14px;
        line-height: 24px;
    }

    .Footer01 .RssUS ul li input, .RssUS button {
        height: auto;
        line-height: 24px;
        margin: 5px 0;
    }

    .RssUS button {
        width: 50%;
    }


}

@media screen and (max-width: 576px) {
    .Header {
        height: 80px;
    }

    .headerNavText li {
        height: auto;
        border-bottom: 1px solid rgba(150, 150, 150, 0.2);
    }

    .headerNavText li a {
        width: 100%;
        color: rgba(255, 255, 255, 0.5);
        padding: 5px;
        height: auto;
        line-height: 24px;
        text-align: center;
    }

    .headerNavText li:hover a {
        color: rgba(255, 255, 255, 1) !important;
        border-bottom: none;
        background: rgba(255, 255, 255, 0.1);
    }

    #headerNavText {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: none;
        flex-flow: column;
        position: absolute;
        background: rgba(0, 0, 0, 0.8);
        top: 100%;
        border-bottom: 1px solid rgba(150, 150, 150, 0.3);
        padding: 0 10px;
    }

    .headerNavText li a {
        height: auto;
        line-height: 24px;
        color: white;
        padding: 15px 10px;
    }

    .Header > div {
        position: relative;
        overflow: visible;
        z-index: 999;
    }

    .Header > div button {
        display: flex;
    }

    .Footer01 {
        width: 100%;
        display: flex;
        flex-flow: column;
    }

    .Footer01 {
        height: auto;
        padding: 0px;
    }

    .Footer01 > div:nth-child(1) {
        width: 100%;
        margin-bottom: 5%;
        justify-content: space-around;
    }

    .Footer01 .RssUS {
        width: 100%;
        max-width: 100%;
        display: inline-flex;
        flex-flow: nowrap;
        justify-content: center;
        flex-flow: column;
    }

    .Footer01 .RssUS ul li {
        width: 100%;
    }

    .Footer01 .prodNav ul li a {
        line-height: 20px;
    }

    .Footer01 .RssUS ul li input, .RssUS button {
        width: 73%;
    }

    .RssUS button {
        width: 23%;
    }

    .Footer01 > div > div span, .RssUS span {
        font-size: 16px;
    }

    .RssUS span {
        margin-right: 5px;
        line-height: normal;
    }

    .Footer02 > div {
        flex-flow: column;
    }

}
    
