:root {
  --base-color: #001771;
  font-size: 14px;
  font-family: 微软雅黑, "Microsoft YaHei", helvetica, arial, sans-serif;
}
body {
  min-width: 1440px;
}
main {
  width: 1342px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.header {
  --line-height: 8px;
  display: flex;
  flex-direction: column;
  height: 140px;
}
.header-line {
  height: var(--line-height);
  background: var(--base-color);
}
.ssimg {margin-left:-350px;}
.header-wrapper {
  display: flex;
  align-items: center;
  height: calc(100% - var(--line-height));
  background-image: url(../assets/header-bg.png);
}
.header .logo {
  margin: 0 80px;  
}
.header .logo > img {
  width: 187px;
}
.header-wrapper-main {
  flex: 1;
  margin-left: auto;
  height: 100%;
}
.header-wrapper-main-header {
  display: flex;
  align-items: center;
  height: 54px;
}
.header-wrapper-toolbar {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 0 10px;
  height: 100%;
  width: 350px;
  border-bottom: 1px solid #dde4eb;
}
.header-wrapper-toolbar .lang {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-right: 20px;
  color: var(--base-color);
  font-size: 13px;
}
.header-wrapper-toolbar .lang::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  margin: auto;
  width: 1px;
  height: 12px;
  background: var(--base-color);
}
.header-wrapper-toolbar .lang a {
  color: var(--base-color);
  font-size: 14px;
}
.header-wrapper-toolbar .lang .icon-international {
  font-size: 13px;
}
.header-wrapper-toolbar .searchbar {
  position: relative;
  display: flex;
  align-items: center;
  width: 80px;
  height: 30px;
  margin-left: 30px;
  padding: 3px;
  border-radius: 20px;
  font-size: 12px;
  color: #5e5e5e;
  background-color: #fff;
  border: 1px solid #f8f8f8;
  cursor: pointer;
}
.header-wrapper-toolbar .searchbar::before {
  position: relative;
  top: 1px;
  content: "\e747";
  font-family: "iconfont";
  margin: 0 6px;
}
.header-wrapper-main-body {
  display: flex;
  padding-right: 118px;
  height: calc(100% - 54px);
}
.mobile-toolbar {
  display: none;
  align-items: center;
  gap: 6px;
  height: 100%;
  margin-left: auto;
}
.mobile-toolbar .lang {
  color: #000;
  font-size: 12px;
}
.mobile-toolbar .lang a {
  color: #000;
}
.mobile-toolbar .searchbar {
  position: relative;
  display: flex;
  align-items: center;
  height: 20px;
  padding: 6px;
  margin-left: 6px;
  border-radius: 12px;
  font-size: 12px;
  color: #5e5e5e;
  background-color: #fff;
  border: 1px solid #f8f8f8;
  cursor: pointer;
}
.mobile-toolbar .searchbar::before {
  position: relative;
  content: "\e747";
  font-family: "iconfont";
  margin: 0 6px 0 0;
}
.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 24px;
  color: var(--base-color);
}
.slide-container {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, .7);
  overflow: hidden;
  z-index: 10000;
}
.slide-container.show {
  display: block;
}
.slide-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 36%;
  background: #fff;
  float: right;
  color: #333;
}
.slide-menus {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  overflow: auto;
}
.slide-menus a,
.slide-menus .has-menus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 48px;
  color: #333;  
}
.slide-menus .has-menus::after {
  position: absolute;
  inset: 0 6px 0 auto;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-family: "iconfont";
  content: "\e687";
  font-size: 10px;
  transition: transform .3s;
}
.slide-menus .has-menus.expand {
  color: #ffc62d;
}
.slide-menus .has-menus.expand::after {
  transform: rotate(90deg);
}
.slide-submenus {
  display: none;
  background: linear-gradient(rgba(8 52 138), rgba(8,52,138,.01));
  padding-bottom: 30px;
}
.slide-menus .has-menus.expand + .slide-submenus {
  display: block;
}
.slide-submenus > a {
  color: #fff;
}
.slide-wrapper .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: #fff;
  border-bottom: 2px solid #fff;
}
.slide-wrapper .lang > a {
  color: #fff;
}
.slide-wrapper .lang > a::after {
  font-family: "iconfont";
  content: "\e69a";
  margin-left: 6px;
  color: var(--base-color);
}
.nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  height: 64px;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 120px;
  font-size: 17px;
}
.nav-item > a {
  position: relative;
  color: #2c438c;  
  font-weight: bold;
  cursor: pointer;
}
.nav-item:hover > a {
  color: #ffc62d;
}
.nav-item.has-items > a {
  padding-right: 20px;
}
.nav-item.has-items > a::after {
  content: "\e652";
  font-family: "iconfont";
  position: absolute;
  inset: 0 2px 0 auto;
  margin: auto;
  font-size: 11px;
  width: 11px;
  height: 11px;
}
.nav-item.has-items:hover > a::after {
  transform: rotate(180deg);
}
.sub-nav {
  position: absolute;
  top: 100%;
  left: -30%;
  display: none;
  padding: 12px 0 60px;
  width: 150%;
  background: linear-gradient(rgba(8 52 138), rgba(8,52,138,.01));
  z-index: 100;
}
.nav-item.has-items:hover .sub-nav {
  display: block;
}
.sub-nav > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  color: #fff;
}
.sub-nav > a:hover {
  color: #ffc62d;
}
.banner {
  position: relative;
  width: 100%;
  height: fit-content;
  font-size: 0;
  overflow: hidden;
}
.banner-swiper {
  width: 100%;
  height: 100%;
} 
.banner-img {
  width: 100%;
}
.banner-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  aspect-ratio: 1920 / 720;
}
.banner-video-container > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-pagination {  
  position: absolute;
  left: 15%;
  bottom: 50px;
  display: flex;
  align-items: center;
  padding: 0 50px 0 20px;
  width: 590px;
  height: 80px;
  background: rgba(0, 27, 116, .7);
  color: #fff;
  font-size: 14px;
  z-index: 1;
}
.banner-swiper-pagination {
  --swiper-pagination-color: var(--base-color);
  --swiper-pagination-bullet-size: 14px;
}
.page-number {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  font-size: 14px;
}
.page-current {
  font-weight: bold;
  font-size: 16px;
}
.page-line {
  flex: 1;
  height: 1px;
  margin: 0 16px;
  background: #fff;
}
.banner-pagination-btn {
  display: flex;
  gap: 16px;
}
.banner-pagination-btn > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
}
.banner-pagination-btn > div:hover {
  color: #fff;
  border-color: #fff;
}
.section {
  padding: 0 92px;
}
.section-wrapper {
  margin: 0 auto;
  padding: 40px 0;
  max-width: 1728px;
}
.section-header {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  margin-bottom: 40px;
}
.section-title {
  display: flex;
  align-items: center;
  height: 36px;  
  font-size: 30px;
  font-weight: normal;
  color: #1b1b1b;
}
.section-title::before {
  content: "";
  width: 16px;
  height: 27px;
  margin-right: 20px;
  background-image: url(../assets/section-title-icon.png);
  background-repeat: no-repeat;
  background-size: 16px 27px;
  background-position: 0 2px;
}
.section-header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: 100%;  
}
.alink {
  display: flex;
  align-items: center;
  height: 36px;
  color: #828282;
  font-size: 18px;
}
.alink::after {
  content: "\e6c6";
  margin-left: 12px;
  font-family: "iconfont";
  font-size: 20px;
  color: #000;
  transition: transform .3s;
}
.alink:hover::after {
  transform: rotate(405deg);
}
.news-wrapper {
  display: flex;
  gap: 30px;
  height: 430px;
  margin-bottom: 30px;
}
.news-left {
  width: 670px;
  height: 100%;
}
.news-carousel {
  width: 100%;
  height: 374px;
  overflow: hidden;
}
.news-img {
  width: 100%;
max-height:374px;
}
.news-swiper .news-title {
  position: absolute;
  left: 0;
  top: 0;
  padding: 26px;
  width: 100%;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  
}
.news-swiper .news-title::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.36;
  background: linear-gradient(to bottom, var(--base-color), transparent);
  pointer-events: none;
}
.news-swiper .news-title > a > h3 {
  position: relative;
  font-weight: normal;
  z-index: 1;
color: #fff;
}
.news-carousel-footer {
  display: flex;
  align-items: center;
  height: 40px;
  margin-top: 16px;
}
.news-date {
  margin-right: 30px;
  font-size: 19.55px;
  color: var(--base-color);
}
.news-date-day {
  font-size: 31px;
}
/* .news-swiper .swiper-slide > h3 {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 22px;
  font-weight: normal;
  color: #fff;
} */
.news-swiper-pagination {
  --swiper-theme-color: var(--base-color);
  --swiper-pagination-bullet-width: 9px;
  --swiper-pagination-bullet-height: 9px;
  width: fit-content !important;
}
.news-swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  border: 2px solid #d7d7d7;
  opacity: 1;
}
.news-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--swiper-theme-color);
  border-color: var(--base-color);
}
.news-carousel-footer .alink {
  margin-left: auto;
  padding: 0 12px;
  height: 30px;
  border-radius: 20px;
  background: #e8e8e8;
  color: #6f6f6f;
  font-size: 12px;
}
.news-carousel-footer .alink::after {
  font-size: 16px;
}
.news-right {
  flex: 1;
  height: 100%;
}
.news-list {
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
}
.news-item {
  display: flex;
  gap: 10px;
  padding: 12px;
  width: calc((100% - 30px) / 2);
  height: 132px;
  border-bottom: 1px solid #e6e6e6;
}
.news-date-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 58px;
  text-align: center;
  color: var(--base-color);
}
.news-date-wrapper > b {
  font-size: 21.4px;
}
.news-date-wrapper > span {
  font-size: 9.9px;
}
.news-date-wrapper > div {
  position: relative;
  margin-top: 5px;
  height: 8px;
  width: 100%;
}
.news-date-wrapper > div::after {
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  border-radius: 3px;
  background: #f4bd42;
  transition: width .3s;
}
.news-item-main {
  flex: 1;
}
.news-item-main > h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 6px;
  line-height: 24px;
  font-size: 18px;
  color: #2d2d2d;
}
.news-item:hover .news-date-wrapper > div::after {
  width: 100%;
}
.news-item:hover .news-item-main > h3 {
  color: var(--base-color);
}
.news-item-content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 17px;
  color: #5f5f5fb5;
  font-size: 12px;
  line-height:1.5;
}

.notice-section {
  height: 486px;
  background-image: url(../assets/notice-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.notice-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 55px;  
  margin-top: 50px;
  height: 280px;
}
.notice-item {
  display: flex;
  flex-direction: column;
  padding: 25px;
  height: 100%;
  background: #fff;
  color: #050505;
  font-size: 16px;
  transition: all .5s;
}
.notice-title {
  flex: 1;  
  padding-bottom: 12px;
  padding-top: 18px;
  line-height:1.5;
  border-bottom: 1px solid #dedede;
}
.notice-title > h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  font-weight: normal;
}
.notice-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  margin-top: 16px; 
  font-size: 14px;
  color: var(--base-color);
}
.notice-date i {  
  background: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
  border-radius: 50%;
  color: #fff;
  transition: transform .5s;
}
.notice-item:hover {
  background: var(--base-color);
  color: #fff;
  box-shadow: 2px 5px 12px rgb(0 23 113 / 40%);
}
.notice-item:hover .notice-date {
  color: #fff;
}
.notice-item:hover .notice-date i {
  transform: rotate(360deg);
  background: #fff;
  color: #000;
}
.notice-item:hover .notice-title {
  font-weight: bold;
}

.activity-section {
  overflow: hidden;
}
.activity-wrapper {
  position: relative;
  height: 750px;  
}
.activity-list {
  position: absolute;
  inset: auto 0 0 auto;
  display: flex;
  flex-direction: column;
  padding: 20px 40px;
  width: 800px;
  height: 350px;
  background-color: var(--base-color);
  background-image: url(../assets/xita.png);
  background-position: 30px center;
  background-repeat: no-repeat;
  color: #fff;
  z-index: 2;
}
.activity-main {
  flex: 1;
  padding-left: 150px;
}
.activity-swiper {
  height: 100%;
  overflow: hidden;
}
.activity-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.activity-navigation {
  display: flex;
  gap: 40px;
  font-size: 32px;  
}
.activity-navigation i {
  cursor: pointer;
  color: #fff;
  opacity: 0.7;
}
.activity-navigation i:hover {
  opacity: 1;
}
.activity-more {
    height: 30px;
    position: absolute;
    z-index: 1028;
    bottom: 0px;
    right: 10px;
    padding: 5px 21px;
    border: 1px solid #fff;
    color: #fff;
}
.activity-element {
  position: absolute;
  border-radius: 6px;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes elementAnimationRight {
  from {
    transform: translate3d(33%, -33%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes elementAnimationLeft {
  from {
    transform: translate3d(-33%, 33%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.activity-img-wrapper {
  position: absolute;
  left: 80px;
  width: 1140px;
  height: 617px;
}
.activity-img-swiper {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #f2f2f2;
  z-index: 1;  
}
.activity-img {
  width: 100%;
  height: 100%; 
}
.activity-link {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 0 10px;
  color: #fff;
}
.activity-title {
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 30px;
}
.activity-link > p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: normal;
  line-height: 30px;
  font-size: 16px;
}
.activity-date {
  text-align: right;
  font-size: 20px;
}

.footer-links {
  display: flex;
  gap: 70px;
  margin: 70px 0;
}
.footer-links-title {
  padding: 0 12px;
  font-size: 30px;
  color: #1b1b1b;
}
.footer-links-body {
  flex: 1;
}

.footer-contacts {
  display: flex;
  gap: 40px;
}
.contacts {
  display: flex;
  align-items: center;
  height: 50px;
}
.contacts > i {
  font-size: 48px;
  color: #a9a9a9;
  margin-right: 30px;
}
.contact-list {
  display: flex;
  gap: 40px;
}
.contact-list .alink {
  color: #1b1b1bbf;
  font-size: 19px;
}
.contact-list .alink::after {
  color: #d4d4d4;
}

.friend-links {
  display: grid;
  gap: 20px 85px;
  grid-template-columns: repeat(4, 1fr);
}
.friend-links-item {
  padding-top: 6px;
  height: 75px;
  border-bottom: 1px solid #d5d5d5;
}
.friend-links a {
  display: flex;
  align-items: center;
  line-height: 28px;
  font-size: 16px;
  color: #1b1b1bc4;
}
.friend-links a::after {
  content: "\e687";
  font-family: "iconfont";
  margin-left: auto;
  padding-left: 70px;
}
.friend-links a:hover {
  color: var(--base-color);
}

.footer-section {
  height: 193px;
  background-image: url(../assets/footer-section-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-section .section-wrapper {
  height: 100%;
}
.cooperation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  height: 100%;
}
.coop-list {
  display: flex;
  align-items: center;
  gap: 50px;
  height: 76px;
}
.coop-list img {
  width: 191px;
  height: 51px;
}
.creative {
  width: 306px;
  height: 99px;
  background-image: url(../assets/creative.png);
}

.footer {
  height: 405px;
  background: #001250;
  color: #b2cceb;
}
.footer-wrapper {
  display: flex;
  gap: 70px;
  width: 1640px;
  height: 100%;
  margin: 0 auto;
  padding: 90px 20px 0;
  background-image: url(../assets/footer-bg.png);
  background-repeat: no-repeat;
  background-position: right center;
}
.footer-left {
  font-size: 12px;
  line-height: 24px;    
}
.westa-college {
  margin-bottom: 30px;
}
.footer-texts {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  width: 420px;
}
.footer-qr {
  display: flex;
  flex-direction: column;
  width: 150px;
}
.scan-us {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  margin-top: 32px;
  width: 100%;
  font-size: 17px;
  border: 1px solid #b2cceb;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 16px auto 0;
  padding: 0;
  height: 32px;
  width: 100%;
  color: #7f7f7f;
  font-size: 15px;
}
.breadcrumbs a {
  color: #7f7f7f;
}
.page-title {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 3px solid var(--base-color);
  color: #3d3d3d;
  font-size: 17.78px;
}
.page-title > h2 {
  margin-right: 12px;
  font-size: 35.5px;
}
.page-title > span {
  position: relative;
  top: 6px;
}
.page-title::after {
  content: "\e6c6";
  font-family: "iconfont";
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d9243b;
  color: #fff;
  font-size: 16px;
}
.list-container {
  display: flex;
  gap: 140px;
}
.list-container-main {
  flex: 1;
}
.list-container-right {
  width: 290px;
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.article-item {
  display: flex;
  gap: 46px;
  padding-bottom: 40px;
  border-bottom: 1px solid #fbedd1;
  color: #3d3d3d;
  transition: all .3s;
}
.article-img {
  width: 195px;
  height: 125px;
  background: #FFF;  
}
.article-img > img {
  width: 100%;
  height: 100%;
}
.article-info {
  flex: 1;
  height: 125px;
  padding-top: 30px;
  color: #3d3d3d;
}
.article-info .article-date {
  font-size: 14px;
  font-weight: bold;
  color: #646464;
}
.article-info > h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 23px;
}
.article-item:hover {
  padding: 24px 30px;
  box-shadow: 0px 0px 8px 4px rgba(66, 66, 66, 0.15);
  border-bottom: none;
}

.pagination {
  display: flex;
  gap: 2px;
  margin-top: 30px;
  color: #222;
  font-size: 13px;
}
.pagination > span,
.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.pagination-btn {
  color: #222;
  border-radius: 3px;
  transition: all .3s;
}
.pagination-btn:hover,
.pagination-btn.current {
  background: var(--base-color);
  color: #fff;
}
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.category-item {
  display: flex;
  align-items: center;
  padding: 0 30px;
  width: 100%;
  height: 88px;
  background-color: var(--base-color);
  background-image: url(../assets/xita_logo2.png);
  background-repeat: no-repeat;
  background-position: 12px center;
  color: #fff;
  font-size: 18px;
}
.category-item::after {
  content: "\e687";
  font-family: "iconfont";
  margin-left: auto;
  font-size: 13px;
}
.cat-list .category-item:hover {
  background: #ffc62d;
}
h2.article-title {
width: 100%;
    line-height: 44px;
    margin: 20px 0;
    text-align: center;
    padding-bottom: 20px;
    color: #3d3d3d;
    border-bottom: 3px solid var(--base-color);
    font-size: 28px;
}
.article-datas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  height: 30px;
  color: #646464;
  font-size: 15px;
}
article {
  margin: 60px 0;
  color: #555;
}
article p {
  line-height: 44px;
  text-indent: 2em;
  margin-bottom: 12px;
}
article img {

  max-width: 100%;
}
.team-list {
  margin-bottom: 40px;
}
.team-list .category-item {
  width: 240px;
  height: 64px;
  margin-bottom: 20px;
}
.teacher-list {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 20px;
  color: #505050;
  font-size: 21.16px;
}
.teacher-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  color: #505050;
}
.teacher-link:hover {
  color: var(--base-color);
  box-shadow: 0px 0px 8px 4px rgba(66, 66, 66, 0.15);
}
.topimg > img {
  width: 100%;
}