/**base.css**/
    /* 去除常见标签默认的 margin 和 padding */
html,body{
    height: 100%;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
input {
    margin: 0;
    padding: 0;
}

/* 设置网页统一的字体大小、行高、字体系列相关属性 */
body {
    font-family: "Microsoft Yahei",
    "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
    color:  #010101;;
    background: #FFFFFF;
}

* {
    box-sizing: border-box;
}

/* 去除列表默认样式 */
ul,
ol {
    list-style: none;
}

/* 去除默认的倾斜效果 */
em,
i {
    font-style: normal;
}

/* 去除a标签默认下划线，并设置默认文字颜色 */
a {
    text-decoration: none;
    color: #010101;
}

/* 设置img的垂直对齐方式为居中对齐，去除img默认下间隙 */
img {
    vertical-align: middle;
}

/* 去除input默认样式 */
input {
    border: none;
    outline: none;
    color: #333;
}

.tmt-container{
    width: 100%;
    max-width: 1920px;
    min-height: calc(100% - 84px - 140px);
    margin: 0 auto;
}
.tmt-content{
    width: 1200px;
    margin: 0 auto;
}
.tmt-spbt{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tmt-end{
    display: flex;
    justify-content: end;
    align-items: center;
}
.tmt-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.tmt-column-center{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/*header*/
.tmt-nav{
    gap: 40px;
}
.tmt-nav a{
    font-size: 16px;
    font-weight: 400;
    height: 40px;

}
.tmt-nav a.tmt-nav-current{
    border-bottom: 2px solid #FF8A00;
}
.tmt-header{
   height: 84px;
   box-shadow: 0px -1px 0px 0px #F0F0F0 inset;
    background: #ffffff;
}
.tmt-header .tmt-content{
    height: 100%;
}
.tmt-header img{
    width: 144px;
    height: 50px;
}

/*footer*/
.tmt-footer{
    height: 172px;
    background: #151515;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.tmt-footer-link{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}
.tmt-footer-link a{
    color: #f0f0f0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 0 14px;
    border-right: 2px solid #8a8a8a;
}
.tmt-footer-link a:hover{
    color: #ffb23f;
}
.tmt-footer-link a:first-child{
    padding-left: 0;
}
.tmt-footer-link a:last-child{
    padding-right: 0;
    border-right: 0;
}
.tmt-footer p{
    color: #8f8f8f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 768px) {
    .tmt-footer{
        height: auto;
        min-height: 142px;
        padding: 28px 16px;
    }
    .tmt-footer-link{
        flex-wrap: wrap;
        row-gap: 10px;
        margin-bottom: 22px;
    }
    .tmt-footer-link a{
        font-size: 14px;
        padding: 0 10px;
    }
    .tmt-footer p{
        font-size: 14px;
        line-height: 1.6;
    }
}
