/* [project]/src/components/layout/layout.module.css [app-client] (css) */
.layout-module__sqqsta__header {
  background: #fff;
  width: 100%;
}

.layout-module__sqqsta__topBar {
  color: #fcfcfc;
  background: #595656;
  height: 30px;
  font-size: 12px;
}

.layout-module__sqqsta__topActions {
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: min(1024px, 100% - 48px);
  height: 30px;
  margin: 0 auto;
  display: flex;
}

.layout-module__sqqsta__topActions a {
  color: #fcfcfc;
}

.layout-module__sqqsta__topActionButton {
  color: #fcfcfc;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

.layout-module__sqqsta__topActionButton:hover {
  color: #fff;
}

.layout-module__sqqsta__sessionNotice {
  color: #ffe2a5;
  white-space: nowrap;
}

.layout-module__sqqsta__accountWrap {
  align-items: center;
  height: 30px;
  display: inline-flex;
  position: relative;
}

.layout-module__sqqsta__accountNameButton {
  color: #fff;
  max-width: 180px;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0 10px 0 0;
  position: relative;
}

.layout-module__sqqsta__accountNameButton:after {
  content: "";
  border: 4px solid #0000;
  border-top-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-20%);
}

.layout-module__sqqsta__accountName {
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 150px;
  display: inline-block;
  overflow: hidden;
}

.layout-module__sqqsta__accountMenu {
  z-index: 950;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  width: 150px;
  padding: 10px 0;
  position: absolute;
  top: 30px;
  right: 0;
  box-shadow: 0 2px 8px #00000029;
}

.layout-module__sqqsta__accountMenu a, .layout-module__sqqsta__accountMenu button {
  color: #666565;
  width: 100%;
  height: 31px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  line-height: 31px;
  display: flex;
}

.layout-module__sqqsta__accountMenu a:hover, .layout-module__sqqsta__accountMenu button:hover {
  color: var(--accent);
  background: #f7f7f7;
}

.layout-module__sqqsta__accountMenuIcon {
  opacity: .78;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.layout-module__sqqsta__orderIcon {
  background-image: url("/images/q1.png");
}

.layout-module__sqqsta__modelIcon {
  background-image: url("/images/q2.png");
}

.layout-module__sqqsta__infoIcon {
  background-image: url("/images/q3.png");
}

.layout-module__sqqsta__studioIcon {
  background-image: url("/images/q4.png");
}

.layout-module__sqqsta__logoutIcon {
  position: relative;
}

.layout-module__sqqsta__logoutIcon:before {
  content: "";
  border: 1px solid #999;
  border-right: 0;
  width: 9px;
  height: 12px;
  position: absolute;
  top: 3px;
  left: 2px;
}

.layout-module__sqqsta__logoutIcon:after {
  content: ">";
  color: #999;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
  top: -1px;
  right: 1px;
}

.layout-module__sqqsta__divider {
  background: #8d8b8b;
  width: 1px;
  height: 15px;
}

.layout-module__sqqsta__searchForm {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.layout-module__sqqsta__cartIcon {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 10px;
  line-height: 1;
  display: inline-flex;
}

.layout-module__sqqsta__cartWrap {
  align-items: center;
  height: 30px;
  display: inline-flex;
  position: relative;
}

.layout-module__sqqsta__cartPopover {
  z-index: 980;
  color: #666565;
  background: #fff;
  border: 1px solid #bfbfbf;
  width: 420px;
  position: absolute;
  top: 30px;
  left: -4px;
  box-shadow: 0 3px 9px #0000001f;
}

.layout-module__sqqsta__cartTableHead, .layout-module__sqqsta__cartRow {
  grid-template-columns: 1fr 96px 54px;
  align-items: center;
  column-gap: 8px;
  display: grid;
}

.layout-module__sqqsta__cartTableHead {
  color: #666565;
  border-bottom: 1px solid #d8d8d8;
  height: 28px;
  padding: 0 14px;
  font-size: 12px;
}

.layout-module__sqqsta__cartRow {
  color: #666565;
  border-bottom: 1px solid #ececec;
  min-height: 74px;
  padding: 10px 14px;
}

.layout-module__sqqsta__cartRow:hover {
  background: #fafafa;
}

.layout-module__sqqsta__cartProduct {
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: grid;
}

.layout-module__sqqsta__cartProduct img {
  object-fit: cover;
  background: #eee;
  width: 50px;
  height: 50px;
}

.layout-module__sqqsta__cartProduct span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.layout-module__sqqsta__cartTotal {
  color: #666565;
  text-align: right;
  padding: 12px 14px;
  display: block;
}

.layout-module__sqqsta__cartTotal strong {
  color: var(--accent);
  font-size: 15px;
}

.layout-module__sqqsta__cartButton {
  background: var(--accent);
  text-align: center;
  height: 44px;
  font-size: 17px;
  font-weight: 700;
  line-height: 44px;
  display: block;
  color: #fff !important;
}

.layout-module__sqqsta__cartMessage {
  color: #777;
  text-align: center;
  padding: 34px 16px;
  display: block;
}

.layout-module__sqqsta__searchIcon {
  cursor: pointer;
  background: none;
  border: 1px solid #bfbfbf;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  padding: 0;
  position: relative;
}

.layout-module__sqqsta__searchIcon:after {
  content: "";
  background: #bfbfbf;
  width: 6px;
  height: 1px;
  position: absolute;
  bottom: -4px;
  right: -5px;
  transform: rotate(45deg);
}

.layout-module__sqqsta__searchIcon:hover {
  border-color: #fff;
}

.layout-module__sqqsta__searchInput {
  color: #fff;
  background: none;
  border: 1px solid #bfbfbf;
  border-radius: 6px;
  outline: none;
  width: 118px;
  height: 16px;
  padding: 0 8px;
  font-size: 10px;
}

.layout-module__sqqsta__searchInput::placeholder {
  color: #cfcfcf;
}

.layout-module__sqqsta__searchOverlay {
  z-index: 900;
  background: #0000006b;
  justify-content: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.layout-module__sqqsta__searchPanel {
  box-sizing: border-box;
  width: min(620px, 100% - 48px);
  margin-top: 48px;
  position: relative;
}

.layout-module__sqqsta__searchPanelTop {
  grid-template-columns: 24px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 7px;
  display: grid;
}

.layout-module__sqqsta__searchPanelTop input {
  box-sizing: border-box;
  color: #777;
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 8px;
  outline: none;
  width: 100%;
  min-width: 0;
  height: 24px;
  padding: 0 38px 0 16px;
}

.layout-module__sqqsta__searchPanelIcon {
  cursor: pointer;
  background: none;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  position: relative;
}

.layout-module__sqqsta__searchPanelIcon:after {
  content: "";
  background: #fff;
  width: 10px;
  height: 2px;
  position: absolute;
  bottom: -5px;
  right: -8px;
  transform: rotate(45deg);
}

.layout-module__sqqsta__searchClose {
  color: #fff;
  cursor: pointer;
  background: none;
  border: 0;
  width: 28px;
  height: 24px;
  font-size: 22px;
  line-height: 24px;
}

.layout-module__sqqsta__quickSearch {
  box-sizing: border-box;
  color: #777;
  background: #ffffffeb;
  width: calc(100% - 63px);
  min-height: 230px;
  margin-left: 31px;
  padding: 32px 64px;
}

.layout-module__sqqsta__quickSearch h2 {
  color: #777;
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 400;
}

.layout-module__sqqsta__quickSearch ul {
  margin: 0;
  padding-left: 18px;
}

.layout-module__sqqsta__quickSearch li {
  margin: 0 0 12px;
}

.layout-module__sqqsta__quickSearch a {
  color: #777;
}

.layout-module__sqqsta__quickSearch a:hover {
  color: var(--accent);
}

.layout-module__sqqsta__cartProduct small {
  color: #999;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
  margin-top: 2px;
  font-size: 11px;
  display: block;
  overflow: hidden;
}

.layout-module__sqqsta__cartDraftThumb {
  color: #aaa;
  background: #f2f2f2;
  flex: 0 0 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 13px;
  display: flex;
}

.layout-module__sqqsta__language {
  color: #bfbfbf;
  white-space: nowrap;
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.layout-module__sqqsta__language a {
  color: #d8d8d8;
}

.layout-module__sqqsta__language .layout-module__sqqsta__activeLanguage, .layout-module__sqqsta__language a:hover {
  color: #fff;
}

.layout-module__sqqsta__logoBlock {
  text-align: center;
  border-bottom: 1px solid #3e3a39;
  width: min(1024px, 100% - 48px);
  margin: 0 auto;
  padding: 44px 0 16px;
}

.layout-module__sqqsta__logoLink {
  line-height: 1;
  display: inline-block;
}

.layout-module__sqqsta__logoImage {
  width: 242px;
  max-width: 58vw;
  height: auto;
  margin: 0 auto;
  display: block;
}

.layout-module__sqqsta__nav {
  justify-content: center;
  align-items: center;
  gap: 54px;
  margin-top: 28px;
  display: flex;
}

.layout-module__sqqsta__nav a {
  color: #666565;
  font-size: 16px;
  line-height: 22px;
}

.layout-module__sqqsta__nav a:hover {
  color: var(--accent);
}

.layout-module__sqqsta__footer {
  color: #fff;
  background: #666464;
  margin-top: 0;
  padding: 105px 24px 32px;
}

.layout-module__sqqsta__footerInner {
  border-bottom: 1px solid #fff;
  grid-template-columns: 1.25fr 1fr 1fr 1.25fr .9fr;
  width: 1024px;
  max-width: 100%;
  margin: 0 auto 15px;
  padding-bottom: 40px;
  display: grid;
}

.layout-module__sqqsta__footerGroup {
  text-align: left;
  border-right: 1px solid #fff;
  min-height: 120px;
  padding-left: 22px;
}

.layout-module__sqqsta__footerGroup:last-child {
  border-right: 0;
}

.layout-module__sqqsta__footerGroup h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.layout-module__sqqsta__footerGroup a {
  color: #fff;
  height: 24px;
  font-size: 13px;
  line-height: 24px;
  display: block;
}

.layout-module__sqqsta__footerGroup a:hover {
  color: var(--accent);
}

.layout-module__sqqsta__copyright {
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 13px;
}

@media (max-width: 760px) {
  .layout-module__sqqsta__topActions, .layout-module__sqqsta__logoBlock {
    width: calc(100% - 28px);
  }

  .layout-module__sqqsta__topActions {
    gap: 6px;
  }

  .layout-module__sqqsta__searchInput {
    display: none;
  }

  .layout-module__sqqsta__nav {
    flex-wrap: wrap;
    gap: 22px;
  }

  .layout-module__sqqsta__footer {
    padding-top: 48px;
  }

  .layout-module__sqqsta__footerInner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .layout-module__sqqsta__footerGroup {
    border-right: 0;
    min-height: auto;
    padding-left: 0;
  }
}

/* [project]/src/components/auth/authDialog.module.css [app-client] (css) */
.authDialog-module__Amh84a__overlay {
  z-index: 1000;
  background: #00000061;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.authDialog-module__Amh84a__embedded {
  background: #0000004d;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  display: flex;
}

.authDialog-module__Amh84a__dialog {
  color: #fff;
  background: #666464;
  border-radius: 0 0 82px 82px;
  width: min(1024px, 100vw - 56px);
  min-height: 433px;
  overflow: hidden;
  box-shadow: 0 24px 72px #00000059;
}

.authDialog-module__Amh84a__titleBar {
  color: #fff;
  background: #f26045;
  align-items: center;
  gap: 8px;
  height: 55px;
  padding: 0 44px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
}

.authDialog-module__Amh84a__tab, .authDialog-module__Amh84a__activeTab {
  color: #fff;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

.authDialog-module__Amh84a__tab {
  opacity: .72;
}

.authDialog-module__Amh84a__activeTab {
  opacity: 1;
}

.authDialog-module__Amh84a__close {
  color: #fff;
  cursor: pointer;
  background: none;
  border: 0;
  margin-left: auto;
  font-size: 32px;
  line-height: 1;
}

.authDialog-module__Amh84a__body {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 44px 52px 58px;
  display: grid;
}

.authDialog-module__Amh84a__copy {
  border-right: 1px solid #fff;
  min-height: 300px;
  padding: 0 46px 0 0;
}

.authDialog-module__Amh84a__copy p {
  color: #fff;
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.55;
}

.authDialog-module__Amh84a__copy button {
  color: #eb5e43;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0 0 0 4px;
  font-weight: 700;
}

.authDialog-module__Amh84a__form {
  align-content: start;
  gap: 13px;
  padding-left: 46px;
  display: grid;
}

.authDialog-module__Amh84a__form label {
  color: #fff;
  gap: 5px;
  font-size: 15px;
  display: grid;
}

.authDialog-module__Amh84a__form input[type="email"], .authDialog-module__Amh84a__form input[type="password"], .authDialog-module__Amh84a__codeRow input {
  color: #333;
  background: none;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  height: 24px;
  padding: 0 8px;
  font-size: 12px;
}

.authDialog-module__Amh84a__codeRow {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  display: grid;
}

.authDialog-module__Amh84a__codeRow button {
  color: #fff;
  cursor: pointer;
  background: none;
  border: 1px solid #fff;
  border-radius: 4px;
  min-width: 96px;
  padding: 0 10px;
}

.authDialog-module__Amh84a__codeRow button:disabled {
  opacity: .65;
  cursor: wait;
}

.authDialog-module__Amh84a__form input::placeholder {
  color: #cfcfcf;
}

.authDialog-module__Amh84a__checkLine {
  align-items: center;
  margin-top: 6px;
  gap: 8px !important;
  font-size: 14px !important;
  display: flex !important;
}

.authDialog-module__Amh84a__checkLine input {
  width: 14px;
  height: 14px;
}

.authDialog-module__Amh84a__checkLine a {
  color: #fff;
  margin-left: auto;
}

.authDialog-module__Amh84a__message {
  color: #ffb8a9;
  min-height: 18px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.authDialog-module__Amh84a__submit {
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: 1px solid #fff;
  border-radius: 5px;
  justify-self: center;
  width: auto;
  min-width: 124px;
  height: 30px;
  margin: 8px 0 0;
  padding: 0 18px;
  font-size: 16px;
  line-height: 28px;
}

.authDialog-module__Amh84a__submit:disabled {
  opacity: .65;
  cursor: wait;
}

@media (max-width: 760px) {
  .authDialog-module__Amh84a__dialog {
    border-radius: 0 0 36px 36px;
  }

  .authDialog-module__Amh84a__body {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .authDialog-module__Amh84a__copy {
    border-bottom: 1px solid #fff;
    border-right: 0;
    min-height: auto;
    padding: 0 0 20px;
  }

  .authDialog-module__Amh84a__form {
    padding: 22px 0 0;
  }
}

/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #fff;
  --foreground: #666565;
  --muted: #8a8a8a;
  --accent: #eb5e43;
  --border: #d8d8d8;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--background);
  min-height: 100%;
  color: var(--foreground);
  margin: 0;
  font-family: Arial, Microsoft YaHei, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.site-main {
  flex: 1;
}

/*# sourceMappingURL=src_1ru027g._.css.map*/