@charset "utf-8";

/* base */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* font-size: calc(100vw / 7.5); */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #fff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    -moz-outline-style: none;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none;
}

a:focus {
    text-decoration: none;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

b,
strong {
    font-weight: bold;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

svg:not(:root) {
    overflow: hidden;
}

dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-weight: normal;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
    font-family: inherit;
    line-height: inherit;
    outline: none;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input {
    line-height: normal;
    outline: none;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td,
th {
    padding: 0;
}

.img_h {
    position: relative;
    cursor: pointer;
}

.img_h img {
    display: block;
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.img_h img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.img_h.img_ha:hover img {
    opacity: 1;
}

.img_h.img_ha:hover img:nth-child(2) {
    opacity: 0;
}

a:hover .img_h.img_ha img,
.img_h:hover img {
    opacity: 0;
}

a:hover .img_h.img_ha img:nth-child(2),
.img_h:hover img:nth-child(2) {
    opacity: 1;
}


.visible-xs {
    display: none !important;
}

.clearfix::after {
    content: '';
    height: 0;
    display: block;
    clear: both;
}

.container {
    margin: 0 auto;
    min-height: 1px;
    width: 90%;
}

.line1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 48px;
    line-height: 24px;
}

.line3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 72px;
    line-height: 24px;
}

.o_fit video,
.o_fit img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

[dis-select] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[dis-drag] {
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.f-dr { /*水平*/
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.f-dc { /*垂直*/
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-1 > * {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: inline-block; /* IE10失效的解决办法 */
}

.f-as {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.f-ac {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.f-ae {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.f-js {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.f-jc {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.f-je {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.f-jsb {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.f-warp {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hidden-xs {
        display: none !important;
    }

    .visible-xs {
        display: block !important;
    }
}

/* base */

/* scrollbar */
@media (min-width: 1024px) {
    ::-webkit-scrollbar-track-piece {
        background-color: #ccc;
    }

    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #666;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #333;
    }
}

/* scrollbar */
.pagination {
    margin-top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination span,
.pagination a {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    margin-right: 28px;
}

.pagination span {
    margin-right: 14px;
}
.pagination span:last-child {
    margin-right: 0;
}

.pagination input {
    width: 64px;
    height: 32px;
    border-radius: 4px;
    border: solid 1px #000000;
    text-align: center;
    font-size: 16px;
    margin-right: 28px;
}

.pagination .jumpPage {
    font-size: 16px;
    color: #ffffff;
    width: 76px;
    height: 32px;
    background: #504b3d;
    border-radius: 4px;
    border: 0;
    margin-right: 28px;
}

/* page */

/* common */
.md {
    position: relative;
    top: -100px;
}

/* common */
.wrapper {
    padding-top: 86px;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9;
    width: 100%;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.header.fixed {
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
}
.header .container {
    height: 86px;
    background: #fff;
    display: flex;
    align-items: center;
}

.breadcrumb {
    font-size: 16px;
    line-height: 60px;
    color: #666666;
    height: 60px;
    background-color: #ede9e1;
}

.breadcrumb em,
.breadcrumb a,
.breadcrumb span {
    font-style: normal;
    margin-right: 10px;
}

.search {
    background: url(../images/search_bg.png) center / cover no-repeat;
    padding: 44px 0;
}

.search .box1 {
    display: flex;
    align-items: center;
}

.search .box1 .left {
    display: flex;
    align-items: center;
}

.search .box1 .left label {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 34px;
    color: #504b3d;
    margin-right: 40px;
    cursor: pointer;
}

.search .box1 .left label input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 0;
    background: transparent;
    width: 24px;
    height: 24px;
    border: solid 2px #504b3d;
    border-radius: 50%;
    margin-right: 10px;
}

.search .box1 .left label input:checked {
    background: url(../images/checked.png) center / cover no-repeat;
    border: 0;
}

.search .box1 .right {
    display: flex;
    align-items: center;
}

.search .box1 .right input {
    width: 626px;
    height: 54px;
    background: #ffffff url(../images/search.png) left 34px center no-repeat;
    font-size: 16px;
    padding-left: 70px;
    border: 0;
}

.search .box1 .right input::placeholder {
    color: #9b825e;
}

.search .box1 .right button {
    width: 152px;
    height: 54px;
    background-color: #9b825e;
    margin-left: 10px;
    border: 0;
    font-size: 18px;
    color: #ffffff;
}

.search .b_line {
    height: 1px;
    background-color: #74624b;
    opacity: 0.47;
    width: 100%;
    margin-top: 40px;
}

.search .box2 {
    position: relative;
    padding-left: 106px;
}

.search .box2 .tit {
    font-weight: bold;
    font-size: 20px;
    line-height: 40px;
    color: #9b825e;
    position: absolute;
    left: 0;
    top: 40px;
}

.search .box2 .params {
    display: flex;
    flex-wrap: wrap;
}

.search .box2 .params .item {
    font-size: 18px;
    color: #504b3d;
    line-height: 28px;
    margin-right: 50px;
    margin-top: 40px;
    position: relative;
    cursor: pointer;
}

.search .box2 .params .item.active {
    font-size: 24px;
    font-weight: bold;
    color: #9b825e;
}

.search .box2 .params .item.active::after {
    content: '';
    width: 48px;
    height: 4px;
    background-color: #9b825e;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.list {
    margin: 60px auto 160px;
}

.list .tit {
    font-size: 24px;
    line-height: 34px;
    color: #000000;
    margin-bottom: 15px;
}

.list .container {
}

.list .outer {
    margin: 0 -32px;
    display: flex;
    flex-wrap: wrap;
}

.list .item {
    width: 33.3%;
    margin-bottom: 60px;
    padding: 35px 32px 0;
    border-radius: 10px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.list .item .inner {
    background: #fafafa;
    border-radius: 10px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.list .item .inner .img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding-top: 100%;
}
.list .item .inner .img img {
    width: 100%;
}
.list .item .inner .img .itext {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: solid 1px #9b825e;
    font-size: 36px;
    letter-spacing: 4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.list .item:hover .inner .img .itext {
    opacity: 1;
    visibility: visible;
}
.list .item .inner .img .itext::before,
.list .item .inner .img .itext::after {
    content: '';
    width: 40px;
    height: 1px;
    background-color: #9b825e;
    margin: 0 20px;
}

.list .item:hover {
    background: #fcfaf3;
    box-shadow: 0px 9px 16px rgba(196, 196, 196, 0.14);
}

.list .item:hover .inner {
    background: transparent;
}

.list .item .text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 152px;
}

.list .item .text span {
    font-size: 24px;
    line-height: 34px;
    color: #000000;
    position: relative;
}

.list .item .text span::after {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    width: 100%;
    background: #000;
    bottom: -4px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.list .item:hover .text span::after {
    opacity: 1;
    visibility: visible;
}

.d_line {
    width: 94%;
    height: 1px;
    background-color: #eeeeee;
}

.detail {
}

.detail .top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
}

.detail .top .left {
    width: 50%;
}

.detail .top .left .viewBox {
    width: 100%;
}
.detail .top .left .swiper-scrollbar {
    width: 100%;
    margin-top: 8px;
}
.detail .top .left .swiper-scrollbar .swiper-scrollbar-drag {
    height: 6px;
}
.detail .top .left .viewBox .swiper-slide {
    padding-top: 80%;
    position: relative;
    border-radius: 10px;
    border: solid 1px #74624b;
    overflow: hidden;
}
.detail .top .left .viewBox .swiper-slide a {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 16px;
    background: #fff;
}
.detail .top .left .viewBox .swiper-slide a div {
    height: 100%;
    width: 100%;
}
.detail .top .left .viewBox .swiper-slide a div::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 64px;
    height: 64px;
    background: url(../images/big.png) center / 32px no-repeat;
    /*opacity: 0;*/
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.detail .top .left .viewBox .swiper-slide a:hover div::before {
    opacity: 1;
}

.detail .top .left .clickArea {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.detail .top .left .clickArea .item {
    margin-right: 2%;
    width: 23.5%;
    padding-top: 23.5%;
    border-radius: 10px;
    border: solid 1px #74624b;
    overflow: hidden;
    cursor: pointer;
}
.detail .top .left .clickArea .item:last-child {
    margin-right: 0;
}

.detail .top .left .clickArea .item img {
}

.detail .top .right {
    width: 50%;
    padding-left: 10%;
}

.detail .top .right h4 {
    font-size: 40px;
    font-weight: bold;
    color: #000000;
}

.detail .top .right h5 {
    font-size: 16px;
    line-height: 34px;
    color: #000000;
    margin-top: 30px;
}

.detail .top .right h5 span {
    color: #666666;
}
.detail .top .right h5:nth-child(2) {
    margin-top: 70px;
}
.detail .top .right h5:nth-child(2) span {
    font-size: 24px;
    color: #74624b;
}

.detail .top .right .types {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 120px;
}

.detail .top .right .types .item {
    text-align: center;
    width: 80px;
    cursor: pointer;
    margin-right: 40px;
}

.detail .top .right .types .item img {
}

.detail .top .right .types .item p {
    font-size: 20px;
    line-height: 34px;
    color: #000000;
}

.detail .desc {
    padding-bottom: 44px;
}

.detail .desc .tit {
    font-size: 24px;
    line-height: 34px;
    color: #000000;
}

.detail .desc p {
    font-size: 16px;
    line-height: 34px;
    color: #666666;
    margin-top: 42px;
}

.detail .share {
    padding-bottom: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.detail .share > img {
    width: 26px;
    margin-right: 14px;
}

.detail .share > a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #999;
    margin-left: 10px;
    border-radius: 50%;
}

.detail .share > a img {
    width: 18px;
}
#mtl {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
}

#mtl .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
}

#mtl .video {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 80%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    background: #252525;
}

#mtl .video .close {
    position: absolute;
    right: -50px;
    top: 0;
    width: 40px;
    z-index: 99999;
    cursor: pointer;
}

#mtl .video_inner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#video_model {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
}

#video_model .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
}

#video_model .video {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    width: 80%;
    max-width: 960px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    background: #252525;
}

#video_model .video .close {
    position: absolute;
    right: -50px;
    top: 0;
    width: 40px;
    z-index: 99999;
    cursor: pointer;
}

#video_model .video_inner {
    width: 100%;
    padding: 10px;
    overflow: hidden;
    position: relative;
}

#video_model .video_inner video {
    display: block;
    width: 100%;
    outline: none;
}

#video_model .video .text {
    padding: 16px 10px 30px;
}

#video_model .video .text h6 {
    font-size: 16px;
    color: #fff;
}

#video_model .video .text p {
    font-size: 12px;
    margin-top: 12px;
    color: #666;
}
#mp3_model {
    position: fixed;
    z-index: 9999;
    bottom: 20px;
    right: 20px;
    display: none;
}

#mp3_model audio {
    display: block;
    outline: none;
}

#mtl {
}
.magnify-image {
    max-width: inherit;
}
@media (max-width: 1440px) {
    .search .box1 .left label {
        font-size: 16px;
        margin-right: 20px;
    }
    .search .box1 .right input {
        width: 440px;
    }
    .search .box2 .params .item {
        font-size: 16px;
        line-height: 24px;
        margin-right: 40px;
        margin-top: 30px;
    }
    .search .box2 .params .item.active {
        font-size: 20px;
    }
    .list .item .text span {
        font-size: 20px;
    }
    .list .item .inner .img .itext {
        font-size: 28px;
        letter-spacing: 2px;
    }
    .list .item .inner .img .itext::before,
    .list .item .inner .img .itext::after {
        margin: 0 10px;
        width: 30px;
    }
}

@media (max-width: 1280px) {
    .search .box1 .right input {
        width: 340px;
    }
    .list .item .inner .img .itext {
        font-size: 18px;
    }
    .list .item .inner .img .itext::before,
    .list .item .inner .img .itext::after {
        display: none;
    }
}
@media (max-width: 768px) {
    .wrapper {
        padding-top: 50px;
    }
    .search {
        padding: 24px 0;
    }
    .search .container {
        display: flex;
        flex-wrap: wrap;
    }
    .search .box1 {
        flex-direction: column;
        width: 100%;
    }
    .search .box1 .left {
        width: 100%;
        flex-wrap: wrap;
    }
    .search .box1 .left label {
        width: 50%;
        margin-right: 0;
    }
    .search .box1 .left label input {
        width: 20px;
        height: 20px;
    }
    .search .box1 .right {
        width: 100%;
        margin-top: 10px;
    }
    .search .box1 .right input {
        height: 40px;
        width: 80%;
        padding-left: 40px;
        background: #ffffff url(../images/search.png) left 14px center no-repeat;
        font-size: 14px;
    }
    .search .box1 .right button {
        height: 40px;
        width: 20%;
        font-size: 14px;
    }
    .search .box2 {
        padding-left: 0px;
        width: 48%;
        margin-top: 20px;
    }
    .search .box2:last-child {
        margin-left: 4%;
    }
    .search .box2 .params {
        height: 40px;
        width: 100%;
        border: 0;
    }

    .search .box2 .params {
        color: #9b825e;
        padding: 0 14px;
    }
    .header .container {
        height: 50px;
    }
    .list {
        margin: 60px auto;
    }
    .list .outer {
        margin: 0 -3%;
    }
    .list .item {
        width: 100%;
        margin-bottom: 20px;
        padding: 15px 3% 0;
    }
    .list .item .text {
        height: 80px;
    }
    .list .item .text span {
        font-size: 16px;
    }
    .breadcrumb {
        font-size: 14px;
        height: 50px;
        line-height: 50px;
    }
    .breadcrumb em {
        display: none;
    }
    .pagination {
        margin-top: 40px;
    }
    .pagination .page_sj {
        margin-right: 0;
        background: #504b3d;
        color: #fff;
        width: 120px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        text-align: center;
    }
    .detail .top {
        flex-direction: column;
        margin: 40px auto;
    }
    .detail .top .left {
        width: 100%;
    }

    .detail .top .left .clickArea {
        margin-top: 8px;
    }

    .detail .top .left .clickArea .item {
        margin-right: 8px;
    }
    .detail .top .right {
        width: 100%;
        margin-top: 40px;
        padding-left: 0;
    }
    .detail .top .right h4 {
        font-size: 24px;
    }
    .detail .top .right h5 {
        margin-top: 10px;
        font-size: 15px;
    }
    .detail .top .right h5:nth-child(2) {
        margin-top: 20px;
    }
    .detail .top .right h5:nth-child(2) span {
        font-size: 20px;
    }
    .detail .top .right .types {
        margin-top: 40px;
    }
    .detail .top .right .types .item {
        width: 33%;
        margin: 0;
    }
    .detail .top .right .types .item img {
        width: 52px;
    }
    .detail .top .right .types .item p {
        font-size: 16px;
    }
    .list .tit,
    .detail .desc .tit {
        font-size: 20px;
    }
    .detail .desc p {
        font-size: 15px;
        margin-top: 20px;
    }
}
