* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 导航栏+宣传页 */
.main-publicity {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main-publicity .publicity-bgImg {
    position: relative;
}

.publicity-bgImg img {
    position: absolute;
    width: 100%;
    z-index: -999;
}

.main-publicity .publicity-navs {
    display: flex;
    height: 80px;
    justify-content: space-between;
    align-items: center;
}

.publicity-navs .navs-left {
    display: flex;
    align-items: center;
}

.navs-left .navs-logo {
    display: inline-block;
}

.navs-logo img {
    margin-left: 10px;
    width: 50px;
    height: 50px;
}

.navs-ul ul {
    list-style-type: none;
}

.navs-ul ul li {
    float: left;
    color: #fff;
    font-family: '宋体';
    font-size: 20px;
    margin-left: 80px;
    cursor: pointer;
}

.navs-ul ul li a,
.navs-myText a{
    text-decoration: none;
}
.navs-ul ul li a:hover,
.navs-myText a:hover{
    text-decoration: none;
    color: rgb(186, 126, 72);
}
.nav-noactive{
    color: #fff;
}
.nav-active{
    color: rgb(186, 126, 72);
}

.publicity-navs .navs-right {
    display: flex;
    align-items: center;
}

.navs-right .navs-input {
    margin-right: 50px;
    width: 280px;
    position: relative;
}

.navs-input input {
    background-color: transparent;
    width: 100%;
    height: 24px;
    border: 0.1px solid rgb(136, 136, 136);
    border-radius: 50px;
    color: rgb(239, 239, 239);
    padding-left: 10px;
    line-height: 24px;
}

.navs-input img {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 3px;
}

.navs-right .navs-myText {
    color: #fff;
    font-family: '宋体';
    font-size: 20px;
    margin-right: 40px;
    cursor: pointer;
}

/* 中间内容部分 */
.main-content {
    width: 100%;
    background-color: #fff;
}

.main-content .content-bg {
    width: 80%;
    height: 100%;
    background-color: rgb(255, 254, 250);
    margin: auto;
}

/* --笔者区域 */
.content-auth-area {
    width: 100%;
    height: 300px;
    background-color: rgb(205, 214, 211);
    padding: 40px 50px;
}

.content-auth-area .auth-info {
    display: flex;
}

.auth-info .auth-info-portrait {
    width: 180px;
    height: 180px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.auth-info-portrait img {
    width: 150px;
}

.auth-info-portrait p {
    font-size: 26px;
    letter-spacing: 2px;
    font-family: '宋体';
    color: rgb(36, 78, 76);
    position: absolute;
}

.auth-info .auth-infos {
    height: 180px;
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-infos .auth-info-name {
    display: flex;
    margin-bottom: 30px;
}

.auth-info-name p:nth-child(1) {
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 600;
    font-family: '宋体';
    color: rgb(36, 78, 76);
}

.auth-info-name .auth-info-gender {
    width: 30px;
    height: 30px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.auth-info-gender img {
    width: 24px;
}


.auth-info-name .address {
    font-size: 14px;
    letter-spacing: 1px;
    font-family: '宋体';
    color: rgb(36, 78, 76);
    align-self: flex-end;
    margin-left: 10px;
}

.auth-infos .auth-info-introduction p {
    font-size: 18px;
    letter-spacing: 1px;
    font-family: '宋体';
    color: rgb(36, 78, 76);
}

.content-auth-area .auth-function {
    margin-top: 30px;
}

.auth-function ul {
    list-style: none;
}

.auth-function ul li {
    float: left;
    font-size: 18px;
    font-family: '宋体';
    letter-spacing: 2px;
    margin-right: 30px;
    color: rgb(36, 78, 76);
    font-weight: 600;
}

/* --选项栏区域 */
.content-option-bar {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.content-option-bar div {
    font-size: 18px;
    font-family: '宋体';
    letter-spacing: 2px;
    color: rgb(36, 78, 76);
}

.content-option-bar div:nth-child(1) {
    background-color: rgb(205, 214, 211);
    padding: 5px 15px;
    border-radius: 20px;
}

/* --购物车和喜欢区域 */
.content-cartAndLike {
    width: 100%;
    background-color: rgb(205, 214, 211);
    padding: 15px 30px 50px 30px;
}

/* ----购物车区域 */
.content-cart {
    width: 100%;
    height: 300px;
    background-color: rgb(255, 254, 250);
    border-radius: 15px;
    padding: 10px 30px 0 30px;
}

.content-cart .cart-icon {
    width: 50px;
    height: 40px;
    margin-bottom: 30px;
}

.cart-icon img {
    width: 50px;
    height: 40px;
}

.content-cart .cart-info {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
}

.cart-info div:nth-child(1) {
    width: 25px;
    height: 25px;
    background-color: rgb(205, 214, 211);
    border-radius: 50%;
    margin-right: 20px;
    margin-left: 20px;
}

.cart-info div:nth-child(2) {
    width: 160px;
    height: 160px;
    border: 1px solid rgb(205, 214, 211);
    margin-right: 40px;
}

.cart-info div:nth-child(3) {
    font-size: 18px;
    font-family: '宋体';
    letter-spacing: 2px;
    color: rgb(36, 78, 76);
}

/* --喜欢区域 */
.content-like {
    width: 100%;
    background-color: rgb(255, 254, 250);
    border-radius: 15px;
    padding: 10px 30px 0 30px;
    margin-top: 50px;
}

.content-like .like-iconTitle {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.like-iconTitle .like-icon {
    width: 50px;
    height: 50px;
    background-color: rgb(205, 214, 211);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.like-icon img {
    width: 40px;
    margin-top: 3px;
    margin-left: -2px;
}

.like-iconTitle .like-title {
    font-size: 18px;
    font-family: '宋体';
    letter-spacing: 2px;
    color: rgb(36, 78, 76);
    margin-left: 20px;
}

.content-like .like-items {
    width: 100%;
    padding-left: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.like-items .like-item {
    width: 30%;
    height: 350px;
    position: relative;
    margin-bottom: 30px;
}

.like-item img {
    width: 100%;
    height: 350px;
}

.like-item div {
    width: 30px;
    height: 30px;
    background-color: rgb(205, 214, 211);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

/* 脚部 */
.main-foot{
    width: 100%;
    background-color: rgb(205, 214, 211);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(36, 78, 76);
    font-family: '宋体';
    margin-top: 20px;
}

.main-foot .foot-partner{
    font-size: 18px;
    margin: 40px 0 50px 0px;
}

.foot-partner ul{
    list-style: none;
}

.foot-partner ul li{
    float: left;
    margin: 0 50px;
}

.main-foot .foot-copyright{
    text-align: center;
    letter-spacing: 2px;
}
.foot-copyright p{
    margin-bottom: 10px;
}

.foot-copyright p:last-child{
    margin-bottom: 30px;
}