html,
body {
    height: 100%;
    width: 100%;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Roboto", "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", BlinkMacSystemFont, -apple-system, "Segoe UI", "Microsoft Yahei", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    margin: 0;
}

a {
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    color: #474157;
}

a:hover,
a:focus {
    color: #474157;
}

hr {
    max-width: 100px;
    margin: 25px auto 0;
    border-width: 1px;
    border-color: rgba(34, 34, 34, 0.1);
}

hr.light {
    border-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 200;
    letter-spacing: 1px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}


#mainbody {

    width: 100%;
    overflow: hidden;
    background: #f1f6fd;
    color: #474157;
    min-height:100%;
}

#mainbody > .container > .text-center {
    text-align: center;
    padding: 100px 0px 0 0;
    position: relative;
}

#mainbody > .container > .text-center h1 {
    font-size: 50px;
    font-weight: bold;
    color: #171347;
    margin-bottom: 30px;
}

#mainbody > .container > .text-center > .homeTop_link > a {
    background: #fdcc52;
    background: -webkit-linear-gradient(#fdcc52, #fdc539);
    background: linear-gradient(#fdcc52, #fdc539);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 300px;
    margin-top: 20px;
    padding: 10px 45px;
    font-size: 14px;
    text-decoration: none;
}
#mainbody .container .text-center .homeTop_link a {
    background: #fdcc52;
    background: -webkit-linear-gradient(#fdcc52, #fdc539);
    background: linear-gradient(#fdcc52, #fdc539);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 300px;
    margin-top: 20px;
    padding: 10px 45px;
    font-size: 14px;
    text-decoration: none;
}

@media (max-height: 500px) {
    #mainbody {
        height: inherit;
    }
}

@media (min-width: 768px) {
    .navbar-default {
        background-color: transparent;
        border-color: transparent;
    }

    #mainbody .index-text {
        text-align: left;
    }
}

@media (max-width: 767px) {


    #mainbody > .container > .text-center > h1 {


        font-size: 50px;
        margin-bottom: 20px;
    }
}

.footer {
    background-color: #222222;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.footer p {
    font-size: 14px;
    margin: 0;
}
.homeTop{
 margin-bottom:100px;	
}

.newsList{
 display:flex;	
 flex-wrap: wrap;
 justify-content: space-around;
}
.newsList .news-item{
 width:30%;	
 padding:10px 15px;
 background:#fff;
 border-radius:10px;
 margin-bottom:20px;
 box-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
 display:flex;
 flex-direction: column;
}
.newsList .news-item:hover{
 text-decoration: none;
}
.newsList .news-item .news-item-title{
 font-size:16px;
 font-weight:bold;
 width: 100%;
 word-break: break-all;
 display: -webkit-box;
 -webkit-line-clamp: 1;
 -webkit-box-orient: vertical;
 overflow: hidden;	
}
.newsList .news-item:hover{
 background:#cc9817;
}
.newsList .news-item .news-desc{
	font-size:14px;
	color:#888;
	width: 100%;
 word-break: break-all;
 display: -webkit-box;
 -webkit-line-clamp: 3;
 -webkit-box-orient: vertical;
 overflow: hidden;	
}
.newsList .news-item .news-meta{
 display:flex;	
 justify-content: space-between;
 color:#cc9817;
 font-size:12px;
}
.newsList .news-item:hover .news-item-title,.newsList .news-item:hover .news-desc,.newsList .news-item:hover .news-meta{
 color:#fff;
}

@media (max-width:768px){
	.newsList .news-item{
	  width:47%;	
	}	
}
@media (max-width:512px){
	.newsList .news-item{
	  width:100%;	
	}	
}
.news-more-btn{
 margin-top:50px;	
 margin-bottom:50px;
 text-align:center;
}

.news-more-btn a{
 background: #fdcc52;
    background: -webkit-linear-gradient(#fdcc52, #fdc539);
    background: linear-gradient(#fdcc52, #fdc539);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 300px;
    margin-top: 20px;
    padding: 10px 45px;
    font-size: 14px;
    text-decoration: none;	
}