:root {
  --primary: #1e40af;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --secondary: #6366f1;
  --accent: #f59e0b;
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --text: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 10px -4px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, ol {
  list-style: none;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

input, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

.wp {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wpm {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.head {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 20px 0;
  box-shadow: var(--shadow-md);
}

.head .wp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.head .logo {
  flex-shrink: 0;
}

.head .logo img {
  height: 60px;
  width: auto;
}

.head .info {
  flex: 1;
  margin-left: 30px;
}

.head .info h1 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.head .info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.head .right {
  text-align: right;
}

.head .contact {
  margin-bottom: 10px;
}

.head .contact span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-left: 20px;
}

.head .search {
  position: relative;
  max-width: 300px;
}

.head .search form {
  display: flex;
}

.head .search input[type="text"] {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.head .search input[type="text"]::placeholder {
  color: var(--text-muted);
}

.head .search button {
  padding: 10px 20px;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.head .search button:hover {
  background: #d97706;
}

.menu {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu li {
  position: relative;
}

.menu a {
  display: inline-block;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.menu a:hover,
.menu a.c {
  color: var(--primary);
}

.menu a.c::after,
.menu a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  border-radius: 2px;
}

.banner {
  margin: 20px auto;
}

#top_banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

#top_banner .slider {
  display: flex;
  transition: transform 0.5s ease;
}

#top_banner .slider li {
  flex-shrink: 0;
}

#top_banner .slider img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

#top_banner .num {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 10px;
}

#top_banner .num li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

#top_banner .num li:hover,
#top_banner .num li.on {
  background: #ffffff;
  border-color: var(--accent);
}

.main {
  display: flex;
  gap: 24px;
  margin: 30px auto;
}

.main .l {
  width: 280px;
  flex-shrink: 0;
}

.main .r {
  flex: 1;
}

.sidebar-module {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.sidebar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--primary);
  position: relative;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-list li a {
  display: block;
  padding: 10px 12px;
  color: var(--text-secondary);
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.sidebar-list li a:hover,
.sidebar-list li a.c {
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary);
}

.about-box {
  text-align: center;
}

.about-img {
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.about-box p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.about-box a {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.about-box a:hover {
  background: var(--primary-light);
}

.contact-box .info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-box .info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-box .info-list li .icon {
  width: 40px;
  height: 40px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-box .info-list li .text p:first-child {
  font-weight: 600;
  color: var(--text);
}

.contact-box .info-list li .text p:last-child {
  font-size: 12px;
  color: var(--text-muted);
}

.content-module {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.content-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.content-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.content-title .more {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.content-title .more:hover {
  color: var(--primary-light);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.news-item:hover {
  background: rgba(30, 64, 175, 0.05);
  transform: translateY(-2px);
}

.news-img {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-item:hover .news-img img {
  transform: scale(1.05);
}

.news-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-info .meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.news-text-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-text-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.news-text-item:hover {
  color: var(--primary);
  padding-left: 8px;
}

.news-text-item span:first-child {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-text-item .time {
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--text-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-item {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.product-item .info {
  padding: 16px;
}

.product-item .info p {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-item .info .price {
  font-size: 18px;
  font-weight: 700;
  color: #dc2626;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.case-item {
  text-align: center;
  transition: var(--transition);
}

.case-item:hover {
  transform: translateY(-4px);
}

.case-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}

.case-item p {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.links {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  margin: 30px auto;
  box-shadow: var(--shadow);
}

.links span {
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 16px;
}

.links a {
  display: inline-block;
  padding: 8px 16px;
  margin: 4px;
  background: var(--bg);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 13px;
  transition: var(--transition);
}

.links a:hover {
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary);
}

.bottom {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: 30px;
}

.bottom .wp {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bottom .l {
  flex: 1;
}

.bottom .l p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
}

.bottom .r {
  text-align: right;
}

.bottom .r p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.position {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.type-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  position: relative;
}

.type-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.position a {
  color: var(--primary);
}

.position a:hover {
  color: var(--primary-light);
}

.article-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.article-image {
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: auto;
}

.article-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.article-body p {
  margin-bottom: 16px;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--text);
  margin: 24px 0 16px;
  font-weight: 600;
}

.article-pager {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.article-pager a {
  font-size: 14px;
  color: var(--primary);
}

.article-pager a:hover {
  color: var(--primary-light);
}

.comment-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.comment-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.comment-form {
  margin-bottom: 24px;
}

.comment-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  resize: vertical;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}

.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.comment-form textarea::placeholder {
  color: var(--text-muted);
}

.vercode {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}

.vercode input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.vercode img {
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.submit-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--primary-light);
}

.product-detail {
  margin-bottom: 24px;
}

.product-main {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.product-images {
  width: 400px;
  flex-shrink: 0;
}

#imgto {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
}

#imgto .big {
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

#imgto .big img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

#imgto .small {
  display: flex;
  align-items: center;
  gap: 10px;
}

#imgto .small .imgl,
#imgto .small .imgr {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 18px;
  color: var(--text-secondary);
  transition: var(--transition);
}

#imgto .small .imgl:hover,
#imgto .small .imgr:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

#imgto .small .imgc {
  flex: 1;
  overflow: hidden;
}

#imgto .small .imgc ul {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
}

#imgto .small .imgc li {
  flex-shrink: 0;
}

#imgto .small .imgc li img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

#imgto .small .imgc li.the img,
#imgto .small .imgc li img:hover {
  border-color: var(--primary);
}

.product-info {
  flex: 1;
}

.product-info h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.4;
}

.attribute {
  margin-bottom: 24px;
}

.attribute p {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.attribute strong {
  color: var(--text-secondary);
  margin-right: 8px;
}

.attribute .price {
  font-size: 28px;
  font-weight: 700;
  color: #dc2626;
}

.attribute .aprice span {
  display: inline-block;
  padding: 8px 16px;
  margin-right: 8px;
  margin-bottom: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}

.attribute .aprice span:hover,
.attribute .aprice span.c {
  background: rgba(30, 64, 175, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.ins {
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
  background: var(--bg);
}

.buy {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.inbuy,
.incart {
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.inbuy {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
}

.inbuy:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.incart {
  background: var(--primary);
  color: #ffffff;
}

.incart:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.pinfo {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.pinfo span {
  margin-right: 20px;
}

.pinfo strong {
  color: var(--text);
}

.labels {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.labels span {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin-right: 4px;
  transition: var(--transition);
}

.labels span:hover,
.labels span.current {
  color: var(--primary);
  background: rgba(30, 64, 175, 0.1);
}

.p_labels {
  padding: 20px;
}

.record li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-secondary);
}

.record li span {
  float: right;
  color: var(--text-muted);
}

.record li.m {
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid var(--primary);
}

.pages {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.pages li {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.pages li.c {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.pages li a {
  color: inherit;
}

.pages li:hover:not(.c) {
  background: rgba(30, 64, 175, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.field-table {
  margin-bottom: 24px;
}

.field-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.field-name {
  width: 120px;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--text-secondary);
}

.field-value {
  flex: 1;
  color: var(--text);
}

.channel-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.message-form {
  margin-bottom: 24px;
}

.message-form h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.message-form dl {
  display: flex;
  margin-bottom: 16px;
}

.message-form dl dt {
  width: 100px;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 32px;
}

.message-form dl dd {
  flex: 1;
}

.message-form dl dd .inp {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.message-list {
  margin-top: 24px;
}

.message-list h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.message-item {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.message-item .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.message-item .meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.message-item .body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hidden {
  display: none;
}

.none {
  display: none;
}

.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  .head .wp {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .head .info {
    margin-left: 0;
  }

  .head .right {
    text-align: left;
    width: 100%;
  }

  .head .search {
    max-width: 100%;
  }

  .menu ul {
    flex-wrap: wrap;
  }

  .menu a {
    padding: 12px 16px;
    font-size: 14px;
  }

  .main {
    flex-direction: column;
  }

  .main .l {
    width: 100%;
  }

  .product-main {
    flex-direction: column;
  }

  .product-images {
    width: 100%;
  }

  #imgto .big img {
    height: 280px;
  }

  .news-item {
    flex-direction: column;
  }

  .news-img {
    width: 100%;
    height: 180px;
  }
}