* {
    box-sizing: border-box;
}
body,html {
    margin: 0;
    padding: 0
}

body {
    font-family: 'Microsoft YaHei','SF Pro Display',Roboto,Noto,Arial,'PingFang SC',sans-serif;
    font-size: .28rem;
    color: #555;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    word-wrap: break-word;
}

a {
    color: #333;
    text-decoration: none;
}
a,input,em,h2{-webkit-tap-highlight-color:rgba(255,0,0,0);}
.Header {
    position: relative;
    z-index: 9999;
    margin: .3rem .3rem 0;
    height: .72rem;
    background-color: rgba(255,255,255,0.85);
    border-radius: .1rem;
    display: flex;
}

.Header_form {
    flex: 1;
    display: flex;
    align-items: center;
}
.Header_input {
    flex: 1;
    height: .72rem;
    border: 0;
    outline: none;
    background-color: transparent;
    font-size: .30rem;
    padding: 0 .20rem;
    color: #555;
}

.Header_btn {
    background: transparent url(./images/search.png) no-repeat center;
    background-size: 100% auto;
    width: .4rem;
    height: .72rem;
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 0 .16rem 0 0;
    outline: none;
}

.Slider {
    margin-top: -1.02rem;
    height: 3.78rem;
    background-color: #666;
}

.Slider .swiper-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.Slider .swiper-slide {
    width: 100%;
}
.Slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.Slider .swiper-pagination-bullet {
    width: .16rem;
    height: .16rem;
    background: #FFF;
    margin: 0 0.1rem!important;
    opacity: 0.4;
}
.Slider .swiper-pagination-bullet-active {
    background-color: #007aff;
    opacity: 1;
}

.Nav {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 999;
    height: .88rem;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #DDD;
    background-color: rgba(255,255,255,0.95);
    margin-bottom: .4rem;
}

.Nav .swiper-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.Nav .swiper-slide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .30rem;
    color: #555;
    text-decoration: none;
}

.Nav .selected a{
    color: #e94544;
}
.Nav .selected:after {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 0.06rem;
    background-color: #e94544;
}

.LoadMore {
    display: block;
    width: 2.5rem;
    margin: .6rem auto;
    border: 1px solid #DDD;
    color: #23527c;
    height: .72rem;
    border-radius: .1rem;
    text-align: center;
    line-height: .72rem;
    transform: .3s;
}
.LoadMore:active {
    background-color: rgba(0,0,0,0.05);
}

.Footer {
    height: 1rem;
    background: #555;
    color: #FFF;
    line-height: 1rem;
    text-align: center;
}

.List dl {
    margin: .3rem;
    display: flex;
    padding-bottom: .3rem;
    border-bottom: 1px solid #DDD;
}

.List dt {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.List dt h2 {
    font-size: .34rem;
    margin: 0;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.3;
}

.List a:active {
    color: #23527c;
}

.List dt p {
    display: none;
}

.List dt ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    margin-top:.2rem;
}
.List dt li {
    display: flex;
    color: #999;
    font-size: .24rem;
    line-height: 1;
}
.List dt li i img {
    width: .28rem;
    height: .28rem;
    margin-right: .5em;
    vertical-align: middle;
}

.List dd {
    width: 2.4rem;
    height: 1.5rem;
    margin-left: .3rem;
}
.List dd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}