/*
 * @Author: 大老王
 * @E-mail: 28691039@qq.com
 * @Update: 2024-12-11 23:50
 * @Statement: 尊重原创作者,请保留版权信息！
 *
 *  ┌─────────────────────────────────────────────────────────────┐
 *  │┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐│
 *  ││Esc│!1 │@2 │#3 │$4 │%5 │^6 │&7 │*8 │(9 │)0 │_- │+= │|\ │`~ ││
 *  │├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤│
 *  ││ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │{[ │}] │ BS  ││
 *  │├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤│
 *  ││ Ctrl │ A │ S │ D │ F │ G │ H │ J │ K │ L │: ;│" '│ Enter  ││
 *  │├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┤│
 *  ││ Shift  │ Z │ X │ C │ V │ B │ N │ M │< ,│> .│? /│Shift │Fn ││
 *  │└─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴──┬┴───┴┬──┴┬─────┴───┘│
 *  │      │Fn │ Alt │         Space         │ Alt │Win│  ShanWu  │
 *  │      └───┴─────┴───────────────────────┴─────┴───┘          │
 *  └─────────────────────────────────────────────────────────────┘
 *           键盘在手                          模版我有
 */

:root {
    --main-color: #231f20;
    --hover-color: #c22423;
    --text-color: #333333;
    --des-color: #666666;
    --border-color: #f0f0f0;
    --white-color: #ffffff;
    --weight-color: #999999;
    --bg-color: #f6f8fb;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--main-color);
    cursor: pointer;
}

a:hover,
a:focus {
    color: var(--hover-color);
    outline: none;
}

ul,
ol {
    list-style: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Ubuntu",
        "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB",
        "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 2em;
    font-weight: normal;
}

h2 {
    font-size: 1.5em;
    font-weight: normal;
}

h3 {
    font-size: 1.17em;
    font-weight: normal;
}

h4,
h5,
h6 {
    font-weight: normal;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 1.5em;
}

th,
td {
    border: 1px solid var(--border-color);
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

th {
    background-color: var(--hover-color);
    color: var(--white-color);
    font-weight: normal;
}

label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
    color: var(--main-color);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
    font-family: inherit;
    font-size: 15px;
    line-height: 1.6;
    width: 100%;
    padding: 20px 15px;
    border: none;
    transition: border-color 0.3s ease;
    background-color: var(--white-color);
    color: var(--main-color);
    resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--hover-color);
    outline: none;
}

input[type="submit"],
button {
    font-family: inherit;
    background-color: var(--hover-color);
    color: var(--white-color);
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    text-transform: capitalize;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover,
button:hover,
input[type="submit"]:focus,
button:focus {
    outline: none;
}

input:disabled,
button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

blockquote {
    margin: 1em 0;
    padding-left: 1em;
    border-left: 4px solid var(--hover-color);
    color: var(--weight-color);
    font-style: italic;
}

code,
pre {
    font-family: monospace, monospace;
    background-color: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 90%;
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2em 0;
}

/* reset */
.imgitem {
    position: relative;
    height: 0;
    padding-bottom: 100%;
}

.imgitem img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    border: none;
    cursor: pointer;
    outline: none;
    color: var(--white-color);
    background: var(--hover-color);
    padding: 12px 40px;
    text-transform: capitalize;
    transition: var(--transition);
}

.btn:hover {
    background: var(--main-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.text-title {
    width: 100%;
    height: 44px;
    line-height: 22px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    font-size: 15px;
}

.text-title a {
    color: var(--hover-color);
}

.text-title a:hover {
    color: var(--hover-color);
}

.text-des {
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-title {
    font-size: 15px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
}

.list-title a {
    color: var(--main-color);
}

.list-title a:hover {
    color: var(--hover-color);
}

.text-white {
    color: var(--white-color);
}

.hovermove {
    transition: all 0.4s ease;
}

.hovermove:hover {
    transform: translateY(-10px);
}

.bgcolor {
    background: var(--bg-color);
}

.bgwhite {
    background: var(--white-color);
}

.flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flex5 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.flex10 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flex20 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flex30 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fleximg {
    flex-shrink: 0;
}

.flextext {
    flex: 1;
}

.grid {
    display: grid;
    gap: 15px;
}

.p15 {
    padding: 15px 0;
}

.p30 {
    padding: 30px 0;
}

.ps15 {
    padding: 15px;
}

.m30 {
    margin: 30px 0;
}

.text-center {
    text-align: center;
}

.bigimg {
    overflow: hidden;
}

.bigimg img {
    transition: transform 0.3s ease;
}

.bigimg:hover img {
    transform: scale(1.1);
}

.hide {
    display: none;
}

.btnlist {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btnlist a:nth-child(n+2) {
    background: var(--main-color);
    color: var(--white-color);
}

.btnlist a:nth-child(n+2):hover {
    background: var(--hover-color);
}

.section-title {
    margin: 0 0 15px 0;
}

.section-title>h3 {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--hover-color);
}

.section-title>h2 {
    font-size: 18px;
    font-weight: bold;
    color: var(--hover-color);
}

.section-title>h2>span {
    font-size: 22px;
    margin-left: 5px;
    color: var(--des-color);
    text-transform: uppercase;
}

.section-title>p {
    font-size: 18px;
}

.section-title>h2>a {
    color: var(--hover-color);
}

.section-title>h2>a:hover {
    color: var(--main-color);
}

.section-white-title>h3 {
    color: var(--white-color);
}

.section-white-title>h2 {
    color: var(--white-color);
}

.section-white-title>p {
    color: var(--white-color);
}

.box-title>h3 {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--yellow-color);
}

.box-title>h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
}

.box-title>h2>span {
    color: var(--dark-green);
}

.box {
    box-shadow: var(--shadow);
    border-radius: 10px;
}

.rad {
    border-radius: 5px;
}

/* swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

/* swiper */
/* Fold menu */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 10px;
}

.accordion-item {
    position: relative;
    background: var(--white-color);
    cursor: pointer;
    padding: 15px 10px;
    text-align: left;
    font-size: 17px;
    color: var(--main-color);
    outline: none;
    transition: var(--transition);
}

.accordion-item::before {
    content: "\f058";
    font-family: "FontAwesome";
    margin-right: 5px;
}

.accordion-item.active {
    background: var(--hover-color);
    color: var(--white-color);
}

.accordion-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    margin: 5px 0;
}

.accordion-item.active .accordion-item-content {
    max-height: 500px;
    /* 设置一个合适的数值 */
}

/* Fold menu */
/* --- Header --- */
.header {
    position: relative;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-height: 40px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-transform: capitalize;
    color: var(--text-color);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
}

.nav-link:hover {
    color: var(--hover-color);
}

.nav-link i {
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 14px;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 140%;
    left: 0;
    width: 100%;
    background: var(--white-color);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-content {
    padding: 30px;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.mega-col h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.mega-col h3 a {
    color: var(--primary-color);
}

.mega-col h3 a:hover {
    color: var(--yellow-color);
}

.mega-col ul li {
    margin-bottom: 10px;
}

.mega-col ul li a {
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.2s;
}

.mega-col ul li a:hover {
    color: var(--hover-color);
}

.featured-col {
    background: var(--weight-color);
    padding: 20px;
    border-radius: 8px;
}

.featured-col p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.btn-sm {
    display: inline-block;
    background: var(--hover-color);
    color: var(--white-color);
    font-size: 12px;
    padding: 6px 15px;
    border-radius: 20px;
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: var(--white-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 0 0 4px 4px;
    padding: 10px 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--hover-color);
    transition: var(--transition);
}

/* header */
/* footer */
/* 回到顶部按钮基础样式 */
#backToTop {
    position: fixed;
    right: 20px;
    bottom: 40px;
    width: 40px;
    height: 40px;
    background-color: var(--hover-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    font-size: 20px;

    /* 默认隐藏 */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* 显示状态 */
#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}

/* 悬停效果 */
#backToTop:hover {
    background-color: var(--main-color);
}

.footer {
    background: var(--main-color);
}

.foot {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.foot a {
    color: var(--white-color);
}

.foot a:hover {
    color: var(--hover-color);
}

/* footer */
/* slider */
.slider-ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.slider-ul>li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slider-ul>li:first-child {
    grid-column: span 2;
}

/* slider */
/* layout */

.info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.info>li {
    font-size: 12px;
    color: var(--weight-color);
}

.home-ul-li-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.home-ul-li-item .img {
    width: 32%;
}

/* flink */
.flink {
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.flink span {
    font-size: 18px;
    font-weight: bold;
}

/* flink */
/* layout */
/* page-banner */
.page-banner {
    position: relative;
}

.page-banner img {
    margin: 0 auto;
}

/* page-banner */
/* crumb */
#crumb {
    padding: 20px 0;
}

.crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

/* crumb */
/* about */
/* about-1 */
.about-1-img {
    flex-shrink: 0;
}

.about-1-text {
    flex: 1;
}

/* about-1 */
/* about-4 */
.about-4-content p {
    font-size: 18px;
    font-weight: 500;
}

.about-4-content p:nth-child(2) {
    color: var(--primary-color);
}

/* about-4 */
/* about */
/* message */
.message-text {
    flex: 1;
}

.message-ul>li {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.message-ul>li>i {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    background: var(--yellow-color);
    color: var(--white-color);
}

.message-ul>li>.text {
    flex: 1;
}

.message-ul>li>.text>p {
    font-weight: 700;
}

.message-form form {
    display: grid;
    gap: 15px;
}

.message-form form input,
.message-form form textarea {
    background: var(--white-color);
}

.message-form form textarea {
    grid-column: span 2;
}

.message-form form .btn {
    grid-column: span 2;
    align-items: center;
}

/* message */
/* layout */
/* page */
.page-content {
    flex: 1;
}

/* page */
/* sidebar */
.side-title {
    font-size: 16px;
    font-weight: 600;
}

.side-ul>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.side-ul>li>.img {
    width: 35%;
}

/* sidebar */
/* pagination */
.pagnavi {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagnavi a {
    display: inline-block;
    width: 50px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    margin: 5px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    text-transform: capitalize;
}

.pagnavi a:hover {
    border: 1px solid var(--hover-color);
    background: var(--hover-color);
    color: var(--white-color);
}

.pagnavi .current {
    display: inline-block;
    border: 1px solid var(--hover-color);
    background: var(--hover-color);
    color: var(--white-color);
}

/* pagination */

/* single */
.content-title {
    font-size: 26px;
    font-weight: bold;
}

.single-title h1 {
    font-size: 28px;
    color: var(--main-color);
    line-height: 40px;
}

.single-title .info {
    justify-content: flex-start;
}

.single-title .info li {
    color: var(--des-color);
}

.single-title .info li a {
    color: var(--hover-color);
}

.single-title .info li a:hover {
    color: var(--main-color);
}

.single-arc h2 {
    font-size: 20px;
    color: var(--hover-color);
}

.single-arc h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--hover-color);
}

.single-arc table p {
    margin: 0;
}

.single-arc iframe {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.single-arc ul,
.single-arc ol {
    padding-left: 25px;
}

.single-arc li {
    margin: 15px 0;
    list-style-type: disc;
}

.single-table {
    overflow-x: auto;
    width: 100%;
}

.prenext {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* single */
/* list-blog */
.listblog>li:nth-child(n+2) {
    border-top: 1px solid var(--bg-color);
    padding-top: 20px;
    margin-top: 20px;
}

.listblog-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.listblog-item .img {
    width: 30%;
}

.listblog-item h3 {
    font-size: 20px;
}

.listblog-item .info {
    justify-content: flex-start;
}

/* list-blog */

/* contact */

/* contact */
/* 404 */
.page404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.title404 {
    font-size: 100px;
    font-weight: bold;
    color: var(--hover-color);
}

/* 404 */
@media screen and (min-width: 768px) {
    .container {
        width: 760px;
        margin: 0 auto;
    }

    .container-layout {
        margin-left: 30px;
        margin-right: 30px;
    }

    .m100 {
        margin: 100px 0;
    }

    .m80 {
        margin: 80px 0;
    }

    .m50 {
        margin: 50px 0;
    }

    .p100 {
        padding: 100px 0;
    }

    .p80 {
        padding: 80px 0;
    }

    .p50 {
        padding: 50px 0;
    }

    .ps30 {
        padding: 30px;
    }

    /* .grid {
        gap: 30px;
    } */

    .grid2 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* reset */
    /* layout */
    /* slider */
    .slider-ul {
        grid-template-columns: repeat(4, 1fr);
    }

    .slider-ul>li:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

    /* slider */
    /* layout */

    /* layout */
    /* footer */

    /* footer */

}

@media screen and (min-width: 1200px) {
    .container {
        width: 1170px;
    }

    .grid3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid6 {
        grid-template-columns: repeat(6, 1fr);
    }

    /* reset */
    /* footer */

    /* footer */
    /* layout */
    .home-ul-li {
        flex-direction: row;
        justify-content: space-between;
    }

    .small-list {
        width: 25%;
    }

    /* layout */
    /* page */
    .page {
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
    }

    .sidebar {
        width: 25%;
        align-self: start;
    }

    /* page */
}

@media screen and (min-width: 1400px) {
    .container {
        width: 1370px;
    }

    /* reset */
}
@media (max-width: 992px) {
	.hamburger {
		display: flex;
	}

	.navbar {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--white-color);
		box-shadow: var(--shadow);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease-out;
	}

	.navbar.active {
		max-height: 100vh;
		overflow-y: auto;
	}

	.nav-menu {
		flex-direction: column;
		gap: 0;
		padding: 20px;
	}

	.nav-item {
		width: 100%;
		border-bottom: 1px solid #eee;
	}

	.nav-link {
		justify-content: space-between;
		padding: 15px 0;
	}

	.mega-menu {
		position: static;
		width: 100%;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		padding: 0;
		border-top: none;
		background: #f9f9f9;
	}

	.mega-menu.open {
		display: block;
	}

	.mega-content {
		padding: 15px;
	}

	.mega-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.dropdown-menu {
		position: static;
		width: 100%;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		background: #f9f9f9;
		padding-left: 20px;
	}

	.dropdown-menu.open {
		display: block;
	}

	.hamburger.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.headbtn {
		display: none;
	}

	.top-icon {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.container {
		margin-left: 15px;
		margin-right: 15px;
	}

	.m30 {
		margin: 30px 0;
	}

	.p30 {
		padding: 30px 0;
	}

	/* reset */
	/* layout */
	.home-ul-big-list-li-item {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.home-ul-big-list-li-item .img {
		width: 35%;
	}

	/* layout */
}