/* 清除全局格式 */

* {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

body {
    background-color: rgb(245, 245, 245);
}


/* 最外层盒子居中 */

#bigbox {
    width: 1000px;
    margin: 0 auto;
}


/* 头部logo块样式 */

.title {
    width: 1000px;
    height: 100px;
    background-color: #8EC5FC;
    background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
}

.title img {
    height: 70px;
    margin-top: 15px;
    margin-left: 20px;
}


/* 头部导航栏 */

.titlelist {
    width: 1000px;
    height: 30px;
    background-color: #8EC5FC;
}


/* 导航栏a标签样式 */

.titlelist a {
    line-height: 30px;
    text-decoration: none;
    color: black;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
    font-family: 宋体;
}

.titlelist a:last-child {
    color: #fff;
}


/* a标签hover效果 */

.titlelist a:hover {
    color: #fff;
}


/* banner图 */

.banner {
    width: 1000px;
}

.banner img {
    width: 1000px;
}


/* form块 */

#Main {
    font-size: 12px;
    font-family: 宋体;
    margin-left: 210px;
    margin-top: 20px;
    background-clip: #97FFFF;
}

input[type=text],
[type=password],
select {
    width: 50%;
    padding: 12px 12px;
    margin: 5px 17px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type=submit] {
    width: 25%;
    background-color: #8EC5FC;
    background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%);
    color: white;
    padding: 8px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=button] {
    width: 15%;
    background-color: #C9C9C9;
    padding: 4px 5px;
    cursor: pointer;
}

textarea {
    width: 50%;
    height: 84px;
    padding-bottom: 20px;
    padding-left: 5px;
    border: 3px soild #ccc;
    border-radius: 4px;
    margin-left: 19px;
    margin-top: 0px;
    background-color: #f8f8f8;
    resize: none;
    vertical-align: top
}


/* <!-- 底部版权 --> */

#footer {
    width: 1000px;
    background-color: #8EC5FC;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    color: #fff;
    font-family: 宋体;
}